code
stringlengths
3
10M
language
stringclasses
31 values
module battle.system.tilehover; import dau.all; import battle.battle; import model.all; import gui.unitinfo; import gui.unitpreview; import gui.terrainpreview; class TileHoverSystem : System!Battle { this(Battle b) { super(b); } @property auto tileUnderMouse() { return _tileUnderMouse; } @property auto unitUnderMouse() { return _unitUnderMouse; } @property auto tileUnderMouseChanged() { return _newTileUnderMouse; } override { void update(float time, InputManager input) { _newTileUnderMouse = false; auto worldMousePos = cast(Vector2i) (input.mousePos + scene.camera.area.topLeft); auto tile = scene.map.tileAt(worldMousePos); if (tile !is null && _tileUnderMouse != tile) { // moved cursor to new tile _newTileUnderMouse = true; _tileUnderMouse = tile; _unitUnderMouse = cast(Unit) tile.entity; } // handle displaying unit info if (_unitUnderMouse is null || !input.inspect) { destroyUnitInfo(); } if (input.inspect && _unitUnderMouse !is null) { if (_unitInfo is null || _unitUnderMouse != _unitInfo.unit) { destroyUnitInfo(); _unitInfo = new UnitInfoGUI(_unitUnderMouse, _unitUnderMouse.center); scene.gui.addElement(_unitInfo); } positionUnitInfo(input.mousePos); } // display unit preview if (_newTileUnderMouse) { if (_unitUnderMouse !is null) { auto unitPreview = cast(UnitPreview) _currentPreview; if (unitPreview is null) { destroyCurrentPreview(); _currentPreview = scene.gui.addElement(new UnitPreview(_unitUnderMouse)); } else { unitPreview.refresh(_unitUnderMouse); } } else if (_tileUnderMouse !is null) { auto terrainPreview = cast(TerrainPreview) _currentPreview; if (terrainPreview is null) { destroyCurrentPreview(); _currentPreview = scene.gui.addElement(new TerrainPreview(_tileUnderMouse)); } else { terrainPreview.refresh(_tileUnderMouse); } } else { destroyCurrentPreview(); } } } void start() { } void stop() { _tileUnderMouse = null; _unitUnderMouse = null; _newTileUnderMouse = false; destroyUnitInfo(); destroyCurrentPreview(); } } private: Tile _tileUnderMouse; Unit _unitUnderMouse; bool _newTileUnderMouse; UnitInfoGUI _unitInfo; DynamicGUIElement _currentPreview; void destroyUnitInfo() { if (_unitInfo !is null) { _unitInfo.active = false; _unitInfo = null; } } void destroyCurrentPreview() { if (_currentPreview !is null) { _currentPreview.transitionActive = false; _currentPreview = null; } } void positionUnitInfo(Vector2i mousePos) { auto center = Vector2i(Settings.screenW, Settings.screenH) / 2; if (mousePos.x < center.x) { if (mousePos.y < center.y) { _unitInfo.area.topLeft = mousePos; } else { _unitInfo.area.topLeft = mousePos - Vector2i(0, _unitInfo.totalSize.y); } } else { if (mousePos.y < center.y) { _unitInfo.area.topRight = mousePos; } else { _unitInfo.area.topRight = mousePos - Vector2i(0, _unitInfo.totalSize.y); } } } }
D
module UnrealScript.TribesGame.TrGameSearchTrDaD; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.TrGameSearchCommon; extern(C++) interface TrGameSearchTrDaD : TrGameSearchCommon { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() { mixin(MGSCC("Class TribesGame.TrGameSearchTrDaD")); } private static __gshared TrGameSearchTrDaD mDefaultProperties; @property final static TrGameSearchTrDaD DefaultProperties() { mixin(MGDPC("TrGameSearchTrDaD", "TrGameSearchTrDaD TribesGame.Default__TrGameSearchTrDaD")); } }
D
import vips.image : VImage; unittest { // auto image = VImage.fromFile("rotated.jpg"); }
D
instance GRD_274_Reondar (Npc_Default) { //-------- primary data -------- name = NAME_Gardist; npctype = Npctype_Main; guild = GIL_GRD; level = 15; voice = 12; id = 274; //-------- abilities -------- attribute[ATR_STRENGTH] = 50; attribute[ATR_DEXTERITY] = 50; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX]= 190; attribute[ATR_HITPOINTS] = 190; //-------- visuals -------- // animations Mdl_SetVisual (self,"HUMANS.MDS"); Mdl_ApplyOverlayMds (self,"Humans_Mage.mds"); // body mesh ,bdytex,skin,head mesh ,headtex,teethtex,ruestung Mdl_SetVisualBody (self,"hum_body_Naked0",0,1,"Hum_Head_FatBald",17,4,GRD_ARMOR_L); B_Scale (self); Mdl_SetModelFatness(self,0); fight_tactic = FAI_HUMAN_RANGED; //-------- Talente -------- Npc_SetTalentSkill (self,NPC_TALENT_1H,2); Npc_SetTalentSkill (self,NPC_TALENT_2H,1); Npc_SetTalentSkill (self,NPC_TALENT_CROSSBOW,2); //-------- inventory -------- EquipItem (self,GRD_MW_01); EquipItem (self,GRD_MW_02); CreateInvItems (self,ItAmBolt,20); CreateInvItem (self,ItFoCheese); CreateInvItem (self,ItFoApple); CreateInvItems (self,ItMiNugget,10); CreateInvItem (self,ItLsTorch); //-------------Daily Routine------------- /*B_InitNPCAddins(self);*/ daily_routine = Rtn_start_274; }; FUNC VOID Rtn_start_274 () { TA_MIS_ChaseHeroCloseGate (07,00,08,00,"OCC_GATE_VWHEEL"); TA_MIS_ChaseHeroCloseGate (08,00,07,00,"OCC_GATE_VWHEEL"); };
D
either of two offspring born at the same time from the same pregnancy (astrology) a person who is born while the sun is in Gemini a waterfall in the Snake River in southern Idaho a duplicate copy duplicate or match bring two objects, ideas, or people together grow as twins give birth to twins being two identical
D
module UnrealScript.TribesGame.TrFlagRabbit; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.Controller; import UnrealScript.TribesGame.TrFlagBase; extern(C++) interface TrFlagRabbit : TrFlagBase { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() { mixin(MGSCC("Class TribesGame.TrFlagRabbit")); } private static __gshared TrFlagRabbit mDefaultProperties; @property final static TrFlagRabbit DefaultProperties() { mixin(MGDPC("TrFlagRabbit", "TrFlagRabbit TribesGame.Default__TrFlagRabbit")); } static struct Functions { private static __gshared { ScriptFunction mSetHolder; ScriptFunction mClearHolder; ScriptFunction mSendHome; ScriptFunction mBroadcastReturnedMessage; } public @property static final { ScriptFunction SetHolder() { mixin(MGF("mSetHolder", "Function TribesGame.TrFlagRabbit.SetHolder")); } ScriptFunction ClearHolder() { mixin(MGF("mClearHolder", "Function TribesGame.TrFlagRabbit.ClearHolder")); } ScriptFunction SendHome() { mixin(MGF("mSendHome", "Function TribesGame.TrFlagRabbit.SendHome")); } ScriptFunction BroadcastReturnedMessage() { mixin(MGF("mBroadcastReturnedMessage", "Function TribesGame.TrFlagRabbit.BroadcastReturnedMessage")); } } } static struct Home { private static __gshared ScriptState mStaticClass; @property final static ScriptState StaticClass() { mixin(MGSCSA("State TribesGame.TrFlagRabbit.Home")); } } static struct Dropped { private static __gshared ScriptState mStaticClass; @property final static ScriptState StaticClass() { mixin(MGSCSA("State TribesGame.TrFlagRabbit.Dropped")); } } static struct Held { private static __gshared ScriptState mStaticClass; @property final static ScriptState StaticClass() { mixin(MGSCSA("State TribesGame.TrFlagRabbit.Held")); } } final: void SetHolder(Controller C) { ubyte params[4]; params[] = 0; *cast(Controller*)params.ptr = C; (cast(ScriptObject)this).ProcessEvent(Functions.SetHolder, params.ptr, cast(void*)0); } void ClearHolder() { (cast(ScriptObject)this).ProcessEvent(Functions.ClearHolder, cast(void*)0, cast(void*)0); } void SendHome(Controller Returner) { ubyte params[4]; params[] = 0; *cast(Controller*)params.ptr = Returner; (cast(ScriptObject)this).ProcessEvent(Functions.SendHome, params.ptr, cast(void*)0); } void BroadcastReturnedMessage() { (cast(ScriptObject)this).ProcessEvent(Functions.BroadcastReturnedMessage, cast(void*)0, cast(void*)0); } }
D
/home/noah/Documents/cFE/apps/rust/fsw/target/debug/deps/libmemchr-4099a2cb812fb99e.rlib: /home/noah/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-1.0.2/src/lib.rs /home/noah/Documents/cFE/apps/rust/fsw/target/debug/deps/memchr-4099a2cb812fb99e.d: /home/noah/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-1.0.2/src/lib.rs /home/noah/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-1.0.2/src/lib.rs:
D
<?xml version="1.0" encoding="ASCII" standalone="no"?> <di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0"> <pageList> <availablePage> <emfPageIdentifier href="VAR_All_agm-8699478213.notation#_copSALmGEeKQQp7P9cQvNQ"/> </availablePage> </pageList> <sashModel currentSelection="//@sashModel/@windows.0/@children.0"> <windows> <children xsi:type="di:TabFolder"> <children> <emfPageIdentifier href="VAR_All_agm-8699478213.notation#_copSALmGEeKQQp7P9cQvNQ"/> </children> </children> </windows> </sashModel> </di:SashWindowsMngr>
D
/* * Copyright (c) 2004-2009 Derelict Developers * 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 names 'Derelict', 'DerelictGL', 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. */ module derelict.opengl.extension.ati.map_object_buffer; private { import derelict.opengl.gltypes; import derelict.opengl.gl; import derelict.opengl.extension.loader; import derelict.util.wrapper; } private bool enabled = false; struct ATIMapObjectBuffer { static bool load(char[] extString) { if(extString.findStr("GL_ATI_map_object_buffer") == -1) return false; if(!glBindExtFunc(cast(void**)&glMapObjectBufferATI, "glMapObjectBufferATI")) return false; if(!glBindExtFunc(cast(void**)&glUnmapObjectBufferATI, "glUnmapObjectBufferATI")) return false; enabled = true; return true; } static bool isEnabled() { return enabled; } } version(DerelictGL_NoExtensionLoaders) { } else { static this() { DerelictGL.registerExtensionLoader(&ATIMapObjectBuffer.load); } } extern(System) { GLvoid* function(GLuint) glMapObjectBufferATI; void function(GLuint) glUnmapObjectBufferATI; }
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/Objects-normal/x86_64/RadarChartDataSet.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuickLook.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/Objects-normal/x86_64/RadarChartDataSet~partial.swiftmodule : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuickLook.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/Objects-normal/x86_64/RadarChartDataSet~partial.swiftdoc : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuickLook.apinotesc
D
/******************************************************************************* * Copyright (c) 2000, 2007 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Port to the D programming language: * Frank Benoit <benoit@tionex.de> *******************************************************************************/ module examples.controlexample.SashTab; import dwt.DWT; import dwt.events.ControlAdapter; import dwt.events.ControlEvent; import dwt.events.SelectionAdapter; import dwt.events.SelectionEvent; import dwt.graphics.Rectangle; import dwt.layout.FillLayout; import dwt.layout.GridData; import dwt.widgets.Button; import dwt.widgets.Composite; import dwt.widgets.Group; import dwt.widgets.List; import dwt.widgets.Sash; import dwt.widgets.Text; import dwt.widgets.Widget; import examples.controlexample.Tab; import examples.controlexample.ControlExample; class SashTab : Tab { /* Example widgets and groups that contain them */ Sash hSash, vSash; Composite sashComp; Group sashGroup; List list1, list2, list3; Text text; Button smoothButton; static char[] [] ListData0; static char[] [] ListData1; /* Constants */ static final int SASH_WIDTH = 3; static final int SASH_LIMIT = 20; /** * Creates the Tab within a given instance of ControlExample. */ this(ControlExample instance) { super(instance); if( ListData0.length is 0 ){ ListData0 = [ ControlExample.getResourceString("ListData0_0"), ControlExample.getResourceString("ListData0_1"), ControlExample.getResourceString("ListData0_2"), ControlExample.getResourceString("ListData0_3"), ControlExample.getResourceString("ListData0_4"), ControlExample.getResourceString("ListData0_5"), ControlExample.getResourceString("ListData0_6"), ControlExample.getResourceString("ListData0_7"), ControlExample.getResourceString("ListData0_8")]; } if( ListData1.length is 0 ){ ListData1 = [ ControlExample.getResourceString("ListData1_0"), ControlExample.getResourceString("ListData1_1"), ControlExample.getResourceString("ListData1_2"), ControlExample.getResourceString("ListData1_3"), ControlExample.getResourceString("ListData1_4"), ControlExample.getResourceString("ListData1_5"), ControlExample.getResourceString("ListData1_6"), ControlExample.getResourceString("ListData1_7"), ControlExample.getResourceString("ListData1_8")]; } } /** * Creates the "Example" group. */ void createExampleGroup () { super.createExampleGroup (); exampleGroup.setLayoutData (new GridData (DWT.FILL, DWT.FILL, true, true)); exampleGroup.setLayout(new FillLayout()); /* Create a group for the sash widgets */ sashGroup = new Group (exampleGroup, DWT.NONE); FillLayout layout = new FillLayout(); layout.marginHeight = layout.marginWidth = 5; sashGroup.setLayout(layout); sashGroup.setText ("Sash"); } /** * Creates the "Example" widgets. */ void createExampleWidgets () { /* * Create the page. This example does not use layouts. */ sashComp = new Composite(sashGroup, DWT.BORDER); /* Create the list and text widgets */ list1 = new List (sashComp, DWT.V_SCROLL | DWT.H_SCROLL | DWT.BORDER); list1.setItems (ListData0); list2 = new List (sashComp, DWT.V_SCROLL | DWT.H_SCROLL | DWT.BORDER); list2.setItems (ListData1); text = new Text (sashComp, DWT.MULTI | DWT.BORDER); text.setText (ControlExample.getResourceString("Multi_line")); /* Create the sashes */ int style = getDefaultStyle(); if (smoothButton.getSelection()) style |= DWT.SMOOTH; vSash = new Sash (sashComp, DWT.VERTICAL | style); hSash = new Sash (sashComp, DWT.HORIZONTAL | style); /* Add the listeners */ hSash.addSelectionListener (new class() SelectionAdapter { public void widgetSelected (SelectionEvent event) { Rectangle rect = vSash.getParent().getClientArea(); event.y = Math.min (Math.max (event.y, SASH_LIMIT), rect.height - SASH_LIMIT); if (event.detail !is DWT.DRAG) { hSash.setBounds (event.x, event.y, event.width, event.height); layout (); } } }); vSash.addSelectionListener (new class() SelectionAdapter { public void widgetSelected (SelectionEvent event) { Rectangle rect = vSash.getParent().getClientArea(); event.x = Math.min (Math.max (event.x, SASH_LIMIT), rect.width - SASH_LIMIT); if (event.detail !is DWT.DRAG) { vSash.setBounds (event.x, event.y, event.width, event.height); layout (); } } }); sashComp.addControlListener (new class() ControlAdapter { public void controlResized (ControlEvent event) { resized (); } }); } /** * Creates the "Size" group. The "Size" group contains * controls that allow the user to change the size of * the example widgets. */ void createSizeGroup () { } /** * Creates the "Style" group. */ void createStyleGroup() { super.createStyleGroup (); /* Create the extra widgets */ smoothButton = new Button (styleGroup, DWT.CHECK); smoothButton.setText("DWT.SMOOTH"); } void disposeExampleWidgets () { sashComp.dispose(); sashComp = null; } /** * Gets the "Example" widget children. */ Widget [] getExampleWidgets () { return [ cast(Widget) hSash, vSash ]; } /** * Returns a list of set/get API method names (without the set/get prefix) * that can be used to set/get values in the example control(s). */ char[][] getMethodNames() { return ["ToolTipText"]; } /** * Gets the text for the tab folder item. */ char[] getTabText () { return "Sash"; } /** * Layout the list and text widgets according to the new * positions of the sashes..events.SelectionEvent */ void layout () { Rectangle clientArea = sashComp.getClientArea (); Rectangle hSashBounds = hSash.getBounds (); Rectangle vSashBounds = vSash.getBounds (); list1.setBounds (0, 0, vSashBounds.x, hSashBounds.y); list2.setBounds (vSashBounds.x + vSashBounds.width, 0, clientArea.width - (vSashBounds.x + vSashBounds.width), hSashBounds.y); text.setBounds (0, hSashBounds.y + hSashBounds.height, clientArea.width, clientArea.height - (hSashBounds.y + hSashBounds.height)); /** * If the horizontal sash has been moved then the vertical * sash is either too long or too short and its size must * be adjusted. */ vSashBounds.height = hSashBounds.y; vSash.setBounds (vSashBounds); } /** * Sets the size of the "Example" widgets. */ void setExampleWidgetSize () { sashGroup.layout (true); } /** * Sets the state of the "Example" widgets. */ void setExampleWidgetState () { super.setExampleWidgetState (); smoothButton.setSelection ((hSash.getStyle () & DWT.SMOOTH) !is 0); } /** * Handle the shell resized event. */ void resized () { /* Get the client area for the shell */ Rectangle clientArea = sashComp.getClientArea (); /* * Make list 1 half the width and half the height of the tab leaving room for the sash. * Place list 1 in the top left quadrant of the tab. */ Rectangle list1Bounds = new Rectangle (0, 0, (clientArea.width - SASH_WIDTH) / 2, (clientArea.height - SASH_WIDTH) / 2); list1.setBounds (list1Bounds); /* * Make list 2 half the width and half the height of the tab leaving room for the sash. * Place list 2 in the top right quadrant of the tab. */ list2.setBounds (list1Bounds.width + SASH_WIDTH, 0, clientArea.width - (list1Bounds.width + SASH_WIDTH), list1Bounds.height); /* * Make the text area the full width and half the height of the tab leaving room for the sash. * Place the text area in the bottom half of the tab. */ text.setBounds (0, list1Bounds.height + SASH_WIDTH, clientArea.width, clientArea.height - (list1Bounds.height + SASH_WIDTH)); /* Position the sashes */ vSash.setBounds (list1Bounds.width, 0, SASH_WIDTH, list1Bounds.height); hSash.setBounds (0, list1Bounds.height, clientArea.width, SASH_WIDTH); } }
D
module imp2; enum X = 2; enum Y = 2; enum Z = 2;
D
/** Reworking of makette. The programmer lost the way. @author Michael Rynn dlua make uses two sorts of information */ module dld; import std.stdio; import std.file; import std.string; import std.path; import std.datetime; import std.conv; import std.stream; import luad.state; import luad.all; import luad.c.lua; import luad.stack; import std.xmlp.xpath1; import std.xml2; import std.xmlp.linkdom; import alt.strutil; import alt.bomstring; string gAppPath; string gAppDirectory; void main(char[][] args) { strutil_unittest(); string defaultFile = "build.xml"; string defaultOut = "_build.lua"; string[] targetlist; string[] varlist; bool noExecute = false; bool doList = false; bool generateBS = false; if (args.length > 1) { int aix = 1; while (aix < args.length) { char[] arg = args[aix]; aix++; switch(arg) { case "--list": case "-l": doList = true; break; case "--file": case "-f": if (aix < args.length) { defaultFile = args[aix].idup; aix++; } break; case "--gen": case "-g": if (aix < args.length) { defaultOut = args[aix].idup; } break; case "--set": case "-s": if (aix < args.length) { // "varname = value" varlist ~= args[aix].idup; aix++; } break; case "--noexec": case "-n": noExecute = true; break; default: targetlist ~= arg.idup; break; } } } gAppPath = getApplicationPath(); gAppDirectory = dirName(gAppPath); writeln("Running ", gAppPath); writeln("Input ", defaultFile); writeln("Working dir = ", getcwd()); if (!exists(defaultFile)) { writeln(defaultFile," not found!"); showUsage(); return; } if (!isFile(defaultFile)) { writeln(defaultFile," is not a file!"); showUsage(); return; } string fileext = extension(defaultFile); if (fileext == ".xml") { writeln("processXml"); processXml(defaultFile,defaultOut); } else if (fileext == ".lua") { writeln("processLua"); processLua(defaultFile,defaultOut); } // get the location of this binary, so as to be able to read default configuration debug {getchar();} } void showUsage() { writefln(r"dxd --file <build.xml> ] [--noexec] [--list] [target,...]* -f, --file : xml build file Default file is makette.xml in current directory. -n, --noexec : No execution, emit commands to stdout -l, --list : List targets to standard output -s, --set : define a variable eg -set build=release Default target is all."); } class LuaSource { string[] lines; void put(string s) { lines ~= s; } void putTableList(string[] slist) { foreach(s ; slist) { this.put(format("'%s',",s)); } } void outputFile(string fname) { auto tattoo = getBomBytes(BOM.UTF8); backupOldFile(fname); auto fout = new std.stream.File(fname, FileMode.OutNew); //fout.writeBlock(tattoo.ptr, tattoo.length); foreach(s ; lines) { fout.writeBlock(s.ptr, s.length); fout.write('\n'); } fout.close(); } } void addAttributeMap(NamedNodeMap amap, LuaSource ss) { foreach(a ; amap) { string aname = a.getNodeName(); string aval = a.getNodeValue(); ss.put(format("%s='%s',",aname,aval)); } } void addTool(Element e, LuaSource ss) { string id = e.getAttribute("id"); ss.put(format(`["%s"] = { id="%s",`,id,id)); auto p = ChildElementRange(e); string val; while(!p.empty) { auto ch = p.front; p.popFront(); string ename = ch.getNodeName(); if (ename=="set") { id = ch.getAttribute("id"); val = ch.getAttribute("value"); if (val.length == 0) { val = ch.getTextContent(); } ss.put(format("%s='%s',",id,val)); } else if (ename=="list") { id = ch.getAttribute("id"); val = ch.getTextContent(); auto list=splitUnquoteList(val,false); ss.put(format(`["%s"]={`,id)); foreach(item ; list) { ss.put(format(`'%s',`,item)); } ss.put("},"); } } ss.put("}, -- end addTool"); } void addToolSet(Element e, LuaSource ss) { string id = e.getAttribute("id"); ss.put(format(`["%s"] = { id="%s", `,id,id)); auto p = ChildElementRange(e); string val; while(!p.empty) { auto ch = p.front; p.popFront(); addTool(ch,ss); } ss.put("}, -- end addToolSet"); } /** target, attributes and source id list */ void addBuilds(Element e, LuaSource ss) { string id = e.getAttribute("id"); ss.put(format(`["%s"] = { id="%s", `,id,id)); auto p = ChildElementRange(e); while(!p.empty) { auto ch = p.front; p.popFront(); string ename = ch.getNodeName(); if(ename == "flags") { ss.put(format("flags = '%s', ", ch.getTextContent())); } } ss.put("},"); } /** target, attributes and source id list */ void addTargets(Element e, LuaSource ss) { string id = e.getAttribute("id"); ss.put(format(`["%s"] = { id="%s", `,id,id)); addAttributeMap(e.getAttributes(),ss); auto p = ChildElementRange(e); string[] srclist; string[] deplist; while(!p.empty) { auto ch = p.front; p.popFront(); string ename = ch.getNodeName(); auto slist = splitUnquoteList(ch.getTextContent()); if (ename == "output") { string result=ch.getTextContent(); if (result.length > 0) { result = strip(result); ss.put(format("output='%s',",result)); } } if (ename == "sources") { srclist ~= slist; } else if (ename == "depends") { deplist ~= slist; } } if (srclist.length > 0) { ss.put("sources = {"); ss.putTableList(srclist); ss.put("},"); } if (deplist.length > 0) { ss.put("depends = {"); ss.putTableList(deplist); ss.put("},"); } ss.put("},"); } /** source, list of import, and directory files */ void addSources(Element e, LuaSource ss) { string id = e.getAttribute("id"); ss.put(format(`["%s"] = {`,id)); auto p = ChildElementRange(e); while(!p.empty) { auto ch = p.front; p.popFront(); string ename = ch.getNodeName(); ss.put(format("{ type='%s',",ename)); addAttributeMap(ch.getAttributes(),ss); if (ename == "dir") { // content list to be parsed string test = ch.getAttribute("ext"); string[] filelist; if (test.length > 0) { string src = ch.getTextContent(); filelist = splitUnquoteList(src); } else { test = ch.getAttribute("filter"); if (test.length > 0) { string dpath = ch.getAttribute("path"); auto dfiles = dirEntries(dpath, SpanMode.shallow, false); foreach(DirEntry df; dfiles) { if (endsWith(df.name, test)) { filelist ~= df.name; } } } } if (filelist.length > 0) { ss.put("list = {"); ss.putTableList(filelist); ss.put("},"); } } ss.put("},"); } ss.put("},"); } void processXml(string defaultFile, string defaultOut) { Document mdoc; try { mdoc = loadFile(defaultFile); } catch(Exception ex) { writeln("Load error ", defaultFile, " ", ex.toString()); debug {getchar();} return; } catch (Throwable t) { writeln("unknown exception"); debug {getchar();} return; } // what platform is this? processDocument(defaultOut, mdoc); processLua(defaultOut, "_luaOut.txt"); } /** Use xml to generate lua code */ void processDocument(string luafile, Document mdoc) { LuaSource srcLua = new LuaSource(); // create sources table srcLua.put("sources = {"); auto root = mdoc.getDocumentElement(); auto nlist = xpathNodeList(root,"sources/source"); foreach(n ; nlist.items) { addSources(cast(Element)n, srcLua); } srcLua.put("}"); // targets nlist = xpathNodeList(root,"targets/target"); srcLua.put("targets = {"); foreach(n ; nlist.items) { addTargets(cast(Element)n, srcLua); } srcLua.put("}"); // builds nlist = xpathNodeList(root,"builds/build"); srcLua.put("builds = {"); foreach(n ; nlist.items) { addBuilds(cast(Element)n, srcLua); } srcLua.put("}"); // toolsets nlist = xpathNodeList(root,"toolsets/toolset"); srcLua.put("toolsets = {"); foreach(n ; nlist.items) { addToolSet(cast(Element)n, srcLua); } srcLua.put("}"); // get real lua source // process includes -- nlist = xpathNodeList(root,"processing-instruction('Lua')"); foreach(n ; nlist.items) { ProcessingInstruction pro = cast(ProcessingInstruction) n; string code = pro.getData(); srcLua.put(code); } srcLua.outputFile(luafile); } static const(char)[] luaFn_getBaseName(const(char)[] fromPath) { return baseName(stripExtension(fromPath)); } /** try everything, delete destination file if exists */ static bool luaFn_MoveFile(const(char)[] fromPath, const(char)[] toPath) { try { auto dirPath = dirName(toPath); if (!exists(dirPath)) { mkdirRecurse(dirPath); } rename(fromPath, toPath); return true; } catch(FileException fex) { return false; } } static bool luaFn_mkdirRecurse(const(char)[] dirPath) { try { if (!exists(dirPath)) { mkdirRecurse(dirPath); } return true; } catch(FileException fex) { return false; } } void processLua(string defaultFile, string defaultOut) { auto LS = new LuaState(); LS.openLibs(); auto L = LS.state; pushValue(L, dirSeparator); lua_setglobal(L, "dirSeparator"); pushValue(L, gAppDirectory); lua_setglobal(L, "gAppDirectory"); pushValue(L, dirSeparator); lua_setglobal(L, "dirSeparator"); pushValue(L, &luaFn_MoveFile); lua_setglobal(L, "moveFile"); pushValue(L, &luaFn_mkdirRecurse); lua_setglobal(L, "mkdirRecurse"); pushValue(L, &luaFn_getBaseName); lua_setglobal(L, "getBaseName"); LS.doFile(defaultFile); }
D
/home/syx/SYXrepo/vacation_homework/percolation/target/debug/deps/arrayvec-7784c0cae8477e47.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/maybe_uninit_nodrop.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array_string.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/char.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/range.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/errors.rs /home/syx/SYXrepo/vacation_homework/percolation/target/debug/deps/arrayvec-7784c0cae8477e47.d: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/maybe_uninit_nodrop.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array_string.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/char.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/range.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/errors.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/lib.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/maybe_uninit_nodrop.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/array_string.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/char.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/range.rs: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/arrayvec-0.4.10/src/errors.rs:
D
module blockie.render.shade_gpgpu_renderer; import blockie.all; /** * Use the fragment shader to perform shade computations * and draw the result to the current frame buffer. */ final class ShadeGPGPURenderer { OpenGL gl; IntRect rect; VAO vao; VBO vbo; Program prog; uint textureID; this(OpenGL gl, IntRect rect) { this.gl = gl; this.rect = rect; this.vao = new VAO(); this.prog = new Program() .fromFile("shaders/shade.gpgpu"); prog.use(); auto cam = new Camera2D(gl.windowSize); prog.setUniform("VP", cam.VP); prog.setUniform("ORIGIN", Vector2(rect.x,rect.y)); prog.setUniform("SIZE", Vector2(rect.w,rect.h)); prog.setUniform("texData0", 0); initVertices(); } void destroy() { prog.destroy(); if(vbo) vbo.destroy(); vao.destroy(); } void setUniform(T)(string name, T value) { prog.use(); prog.setUniform(name, value); } void setSource(uint textureID) { this.textureID = textureID; } void render() { vao.bind(); prog.use(); glActiveTexture(GL_TEXTURE0 + 0); glBindTexture(GL_TEXTURE_2D, textureID); glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); } private: void initVertices() { const int ELEMENT_SIZE = Vector2.sizeof; const long bytesRequired = 4*ELEMENT_SIZE; vao.bind(); vbo = VBO.array(bytesRequired, GL_STATIC_DRAW); // 0--2 (0,1,2) // | /| // |/ | // 1--3 Vector2[] vertices = [ Vector2(rect.x, rect.y), Vector2(rect.x, rect.y+rect.h), Vector2(rect.x+rect.w, rect.y), Vector2(rect.x+rect.w, rect.y+rect.h) ]; vbo.addData(vertices); vao.enableAttrib(0, 2, GL_FLOAT, false, ELEMENT_SIZE, 0); } }
D
/Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/Objects-normal/x86_64/Promise.o : /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/race.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Guarantee.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Catchable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Thenable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/CustomStringConvertible.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/hang.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/when.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Configuration.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/after.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Resolver.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Error.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Deprecations.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Box.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/firstly.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Contacts.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/Target\ Support\ Files/PromiseKit/PromiseKit-umbrella.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/fwd.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/PMKCoreLocation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/PromiseKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/PMKMapKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Contacts.framework/Headers/Contacts.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/Objects-normal/x86_64/Promise~partial.swiftmodule : /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/race.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Guarantee.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Catchable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Thenable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/CustomStringConvertible.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/hang.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/when.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Configuration.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/after.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Resolver.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Error.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Deprecations.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Box.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/firstly.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Contacts.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/Target\ Support\ Files/PromiseKit/PromiseKit-umbrella.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/fwd.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/PMKCoreLocation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/PromiseKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/PMKMapKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Contacts.framework/Headers/Contacts.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/Objects-normal/x86_64/Promise~partial.swiftdoc : /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/race.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Guarantee.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Catchable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Thenable.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/CustomStringConvertible.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Promise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/hang.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/when.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Configuration.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/after.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Resolver.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Error.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Deprecations.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/Box.swift /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/firstly.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Contacts.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/Target\ Support\ Files/PromiseKit/PromiseKit-umbrella.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/fwd.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLGeocoder+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/CLLocationManager+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKMapSnapshotter+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/MKDirections+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/AnyPromise.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/CoreLocation/Sources/PMKCoreLocation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Sources/PromiseKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Pods/PromiseKit/Extensions/MapKit/Sources/PMKMapKit.h /Users/migueljimenez/Downloads/WeatherOrNotApp/WeatherOrNot-Starter/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/PromiseKit.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Contacts.framework/Headers/Contacts.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
const int Value_HpEssenz = 25; const int HP_Essenz = 50; const int Value_HpExtrakt = 35; const int HP_Extrakt = 70; const int Value_HpElixier = 50; const int HP_Elixier = 100; const int Value_ManaEssenz = 25; const int Mana_Essenz = 50; const int Value_ManaExtrakt = 40; const int Mana_Extrakt = 75; const int Value_ManaElixier = 60; const int Mana_Elixier = 100; const int Value_StrElixier = 1200; const int STR_Elixier = 3; const int Value_DexElixier = 1200; const int DEX_Elixier = 3; const int Value_HpMaxElixier = 1500; const int HPMax_Elixier = 20; const int Value_ManaMaxElixier = 1500; const int ManaMax_Elixier = 5; const int Value_MegaDrink = 1800; const int STRorDEX_MegaDrink = 15; const int Value_Speed = 200; const int Time_Speed = 300000; const int Value_ManaTrunk = 200; const int Value_HpTrunk = 150; instance ItPo_Mana_01(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_ManaEssenz; visual = "ItPo_Mana_01.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Mana_01; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_MANAPOTION"; description = "Ёссенци€ маны"; text[1] = NAME_Bonus_Mana; count[1] = Mana_Essenz; text[5] = NAME_Value; count[5] = Value_ManaEssenz; }; func void UseItPo_Mana_01() { Npc_ChangeAttribute(self,ATR_MANA,Mana_Essenz); }; instance ItPo_Mana_02(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_ManaExtrakt; visual = "ItPo_Mana_02.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Mana_02; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_MANAPOTION"; description = "Ёкстракт маны"; text[1] = NAME_Bonus_Mana; count[1] = Mana_Extrakt; text[5] = NAME_Value; count[5] = Value_ManaExtrakt; }; func void UseItPo_Mana_02() { Npc_ChangeAttribute(self,ATR_MANA,Mana_Extrakt); }; instance ItPo_Mana_03(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_ManaElixier; visual = "ItPo_Mana_03.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Mana_03; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_MANAPOTION"; description = "Ёликсир маны"; text[1] = NAME_Bonus_Mana; count[1] = Mana_Elixier; text[5] = NAME_Value; count[5] = Value_ManaElixier; }; func void UseItPo_Mana_03() { Npc_ChangeAttribute(self,ATR_MANA,Mana_Elixier); }; instance ItPo_Health_01(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_HpEssenz; visual = "ItPo_Health_01.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Health_01; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_HEALTHPOTION"; description = "Ћечебна€ эссенци€"; text[1] = NAME_Bonus_HP; count[1] = HP_Essenz; text[5] = NAME_Value; count[5] = Value_HpEssenz; }; func void UseItPo_Health_01() { Npc_ChangeAttribute(self,ATR_HITPOINTS,HP_Essenz); }; instance ItPo_Health_02(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_HpExtrakt; visual = "ItPo_Health_02.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Health_02; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_HEALTHPOTION"; description = "Ћечебный экстракт"; text[1] = NAME_Bonus_HP; count[1] = HP_Extrakt; text[5] = NAME_Value; count[5] = Value_HpExtrakt; }; func void UseItPo_Health_02() { Npc_ChangeAttribute(self,ATR_HITPOINTS,HP_Extrakt); }; instance ItPo_Health_03(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_HpElixier; visual = "ItPo_Health_03.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Health_03; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_HEALTHPOTION"; description = "Ћечебный эликсир"; text[1] = NAME_Bonus_HP; count[1] = HP_Elixier; text[5] = NAME_Value; count[5] = Value_HpElixier; }; func void UseItPo_Health_03() { Npc_ChangeAttribute(self,ATR_HITPOINTS,HP_Elixier); }; instance ItPo_Perm_STR(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_StrElixier; visual = "ItPo_Perm_STR.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Perm_STR; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_ITEMGLIMMER"; description = "Ёликсир силы"; text[1] = NAME_Bonus_Str; count[1] = STR_Elixier; text[5] = NAME_Value; count[5] = Value_StrElixier; }; func void UseItPo_Perm_STR() { B_RaiseAttribute(self,ATR_STRENGTH,STR_Elixier); }; instance ItPo_Perm_DEX(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_DexElixier; visual = "ItPo_Perm_DEX.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Perm_DEX; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_ITEMGLIMMER"; description = "Ёликсир ловкости"; text[1] = NAME_Bonus_Dex; count[1] = DEX_Elixier; text[5] = NAME_Value; count[5] = Value_DexElixier; }; func void UseItPo_Perm_DEX() { B_RaiseAttribute(self,ATR_DEXTERITY,DEX_Elixier); }; instance ItPo_Perm_Health(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_HpMaxElixier; visual = "ItPo_Perm_Health.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Perm_Health; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_HEALTHPOTION"; description = "Ёликсир жизни"; text[1] = NAME_Bonus_HpMax; count[1] = HPMax_Elixier; text[5] = NAME_Value; count[5] = Value_HpMaxElixier; }; func void UseItPo_Perm_Health() { B_RaiseAttribute(self,ATR_HITPOINTS_MAX,HPMax_Elixier); Npc_ChangeAttribute(self,ATR_HITPOINTS,HPMax_Elixier); }; instance ItPo_Perm_Mana(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_ManaMaxElixier; visual = "ItPo_Perm_Mana.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Perm_Mana; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_MANAPOTION"; description = "Ёликсир духа"; text[1] = NAME_Bonus_ManaMax; count[1] = ManaMax_Elixier; text[5] = NAME_Value; count[5] = Value_ManaMaxElixier; }; func void UseItPo_Perm_Mana() { B_RaiseAttribute(self,ATR_MANA_MAX,ManaMax_Elixier); Npc_ChangeAttribute(self,ATR_MANA,ManaMax_Elixier); }; instance ItPo_Speed(C_Item) { name = NAME_Trank; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_Speed; visual = "ItPo_Speed.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_Speed; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_ITEMGLIMMER"; description = "«елье ускорени€"; text[1] = "¬ременно повышает скорость."; text[3] = NAME_Duration; count[3] = Time_Speed / 60000; text[5] = NAME_Value; count[5] = value; }; func void UseItPo_Speed() { Mdl_ApplyOverlayMdsTimed(self,"HUMANS_SPRINT.MDS",Time_Speed); }; instance ItPo_MegaDrink(C_Item) { name = "Ёмбарла фиргасто"; mainflag = ITEM_KAT_POTIONS; flags = ITEM_MULTI; value = Value_MegaDrink; visual = "ItPo_Perm_Mana.3ds"; material = MAT_GLAS; on_state[0] = UseItPo_MegaDrink; scemeName = "POTIONFAST"; wear = WEAR_EFFECT; effect = "SPELLFX_ITEMGLIMMER"; description = name; text[3] = "Ёффект неизвестен."; text[5] = NAME_Value; count[5] = value; }; func void UseItPo_MegaDrink() { if(self.attribute[ATR_STRENGTH] < self.attribute[ATR_DEXTERITY]) { B_RaiseAttribute(self,ATR_DEXTERITY,STRorDEX_MegaDrink); } else { B_RaiseAttribute(self,ATR_STRENGTH,STRorDEX_MegaDrink); }; Npc_ChangeAttribute(self,ATR_MANA,-ATR_MANA); Snd_Play("DEM_Warn"); };
D
/Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Jay.build/NullParser.swift.o : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Jay.build/NullParser~partial.swiftmodule : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/miladmehrpoo/Desktop/Helloworld/.build/debug/Jay.build/NullParser~partial.swiftdoc : /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/miladmehrpoo/Desktop/Helloworld/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule
D
fruit of the oak tree: a smooth thin-walled nut in a woody cup-shaped base
D
/home/areeb/Quarter-02/dec_19_2019/target/debug/build/num-complex-c2fb27159948aada/build_script_build-c2fb27159948aada: /home/areeb/.cargo/registry/src/github.com-1ecc6299db9ec823/num-complex-0.2.3/build.rs /home/areeb/Quarter-02/dec_19_2019/target/debug/build/num-complex-c2fb27159948aada/build_script_build-c2fb27159948aada.d: /home/areeb/.cargo/registry/src/github.com-1ecc6299db9ec823/num-complex-0.2.3/build.rs /home/areeb/.cargo/registry/src/github.com-1ecc6299db9ec823/num-complex-0.2.3/build.rs:
D
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Random.build/Objects-normal/x86_64/RandomProtocol.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/RandomProtocol.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/Array+Random.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/OSRandom.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/URandom.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-ssl-support.git-5405304412507994221/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Random.build/Objects-normal/x86_64/RandomProtocol~partial.swiftmodule : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/RandomProtocol.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/Array+Random.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/OSRandom.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/URandom.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-ssl-support.git-5405304412507994221/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Random.build/Objects-normal/x86_64/RandomProtocol~partial.swiftdoc : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/RandomProtocol.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/Array+Random.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/OSRandom.swift /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/crypto.git--1533935204638955627/Sources/Random/URandom.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/cpp_magic.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/ifaddrs-android.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Headers/CNIODarwin.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Headers/CNIOAtomics.h /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Headers/CNIOLinux.h /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-ssl-support.git-5405304412507994221/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--5226887469817572071/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIODarwin.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOAtomics.framework/Modules/module.modulemap /Users/phungdu/Documents/code/vapor/TILApp/Build/Products/Debug/CNIOLinux.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
// Copyright © 2012, Jakob Bornecrantz. All rights reserved. // See copyright notice in src/volt/license.d (BOOST ver. 1.0). module volt.interfaces; import std.string : indexOf; import std.array : replace; import volt.token.location; import ir = volt.ir.ir; /** * Home to logic for tying Frontend, Pass and Backend together and * abstracts away several IO related functions. Such as looking up * module files and printing error messages. */ interface Controller { ir.Module getModule(ir.QualifiedName name); void close(); } /** * Start of the compile pipeline, it lexes source, parses tokens and do * some very lightweight transformation of internal AST into Volt IR. */ interface Frontend { ir.Module parseNewFile(string source, Location loc); /** * Parse a zero or more statements from a string, does not * need to start with '{' or end with a '}'. * * Used for string mixins in functions. */ ir.Node[] parseStatements(string source, Location loc); void close(); } /** * @defgroup passes Passes * @brief Volt is a passes based compiler. */ /** * Interface implemented by transformation, debug and/or validation passes. * * Transformation passes often lowers high level Volt IR into something * that is easier for backends to handle. * * Validation passes validates the Volt IR, and reports errors, often halting * compilation by throwing CompilerError. * * @ingroup passes */ interface Pass { void transform(ir.Module m); void close(); } /** * @defgroup passLang Language Passes * @ingroup passes * @brief Language Passes verify and slightly transforms parsed modules. * * The language passes are devided into 3 main phases: * 1. PostParse * 2. Exp Type Verification * 3. Misc * * Phase 1, PostParse, works like this: * 1. All of the version statements are resolved for the entire module. * 2. Then for each Module, Class, Struct, Enum's TopLevelBlock. * 1. Apply all attributes in the current block or direct children. * 2. Add symbols to scope in the current block or direct children. * 3. Then do step a-c for for each child TopLevelBlock that * brings in a new scope (Classes, Enums, Structs). * 3. Resolve the imports. * 4. Going from top to bottom resolving static if (applying step 2 * to the selected TopLevelBlock). * * Phase 2, ExpTyper, is just a single complex step that resolves and typechecks * any expressions, this pass is only run for modules that are called * directly by the LanguagePass.transform function, or functions that * are invoked by static ifs. * * Phase 3, Misc, are various lowering and transformation passes, some can * inoke Phase 1 and 2 on newly generated code. */ /** * Center point for all language passes. * @ingroup passes passLang */ class LanguagePass { public: Settings settings; Frontend frontend; Controller controller; public: this(Settings settings, Frontend frontend, Controller controller) out { assert(this.settings !is null); assert(this.frontend !is null); assert(this.controller !is null); } body { this.settings = settings; this.frontend = frontend; this.controller = controller; } abstract void close(); /** * Helper function, often just routed to the Controller. */ abstract ir.Module getModule(ir.QualifiedName name); /* * * Resolve functions. * */ /** * Gathers all the symbols and adds scopes where needed from * the given block statement. * * This function is intended to be used for inserting new * block statements into already gathered functions, for * instance when processing mixin statemetns. */ abstract void gather(ir.Scope current, ir.BlockStatement bs); /** * Resolves a Variable making it usable externaly. * * @throws CompilerError on failure to resolve variable. */ abstract void resolve(ir.Scope current, ir.Variable v); /** * Resolves a Function making it usable externaly, * * @throws CompilerError on failure to resolve function. */ abstract void resolve(ir.Scope current, ir.Function fn); /** * Resolves a unresolved TypeReference in the given scope. * The TypeReference's type is set to the looked up type, * should type be not null nothing is done. */ abstract void resolve(ir.Scope s, ir.TypeReference tr); /** * Resolves a unresolved alias store, the store can * change type to Type, either the field myAlias or * type is set. * * @throws CompilerError on failure to resolve alias. * @{ */ abstract void resolve(ir.Store s); abstract void resolve(ir.Alias a); /* @} */ /** * Resovles a Struct, done on lookup of it. */ abstract void resolve(ir.Struct c); /** * Resovles a Union, done on lookup of it. */ abstract void resolve(ir.Union u); /** * Resovles a Class, making sure the parent is populated. */ abstract void resolve(ir.Class c); /** * Resovles a Attribute, for UserAttribute usages. */ abstract void resolve(ir.Scope current, ir.Attribute a); /** * Resovles a UserAttribute, done on lookup of it. */ abstract void resolve(ir.UserAttribute au); /** * Resolves a Enum making it usable externaly. * * @throws CompilerError on failure to resolve the enum. */ abstract void resolve(ir.Enum e); /** * Resolves a EnumDeclaration setting its value. * * @throws CompilerError on failure to resolve the enum value. */ abstract void resolve(ir.Scope current, ir.EnumDeclaration ed); /** * Resoltes a AAType and checks if the Key-Type is compatible * * @throws CompilerError on invalid Key-Type */ abstract void resolve(ir.Scope current, ir.AAType at); /** * Actualize a Struct, making sure all its fields and methods * are populated, and any embedded structs (not referenced * via pointers) are resolved as well. */ abstract void actualize(ir.Struct c); /** * Actualize a Union, making sure all its fields and methods * are populated, and any embedded structs (not referenced * via pointers) are resolved as well. */ abstract void actualize(ir.Union u); /** * Actualize a Class, making sure all its fields and methods * are populated, Any embedded structs (not referenced via * pointers) are resolved as well. Parent classes are * resolved to. * * Any lowering structs and internal variables are also * generated by this function. */ abstract void actualize(ir.Class c); /** * Actualize a Class, making sure all its fields are * populated, thus making sure it can be used for * validation of annotations. * * Any lowering classes/structs and internal variables * are also generated by this function. */ abstract void actualize(ir.UserAttribute ua); /* * * General phases functions. * */ abstract void phase1(ir.Module m); abstract void phase2(ir.Module[] m); abstract void phase3(ir.Module[] m); } /** * @defgroup passLower Lowering Passes * @ingroup passes * @brief Lowers ir before being passed of to backends. */ /** * Used to determin the output of the backend. */ enum TargetType { DebugPrinting, LlvmBitcode, ElfObject, VoltCode, CCode, } /** * Interface implemented by backends. Often the last stage of the compile * pipe that is implemented in this compiler, optimization and linking * are often done outside of the compiler, either invoked directly by us * or a build system. */ interface Backend { /** * Return the supported target types. */ TargetType[] supported(); /** * Set the target file and output type. Backends usually only * suppports one or two output types @see supported. */ void setTarget(string filename, TargetType type); /** * Compile the given module. You need to have called setTarget before * calling this function. setTarget needs to be called for each * invocation of this function. */ void compile(ir.Module m); void close(); } /** * Each of these listed platforms corresponds * to a Version identifier. * * Posix and Windows are not listed here as they * they are available on multiple platforms. * * Posix on Linux and OSX. * Windows on MinGW. */ enum Platform { MinGW, Linux, OSX, EMSCRIPTEN, } /** * Each of these listed architectures corresponds * to a Version identifier. */ enum Arch { X86, X86_64, LE32, // Generic little endian } /** * Holds a set of compiler settings. * * Things like version/debug identifiers, warning mode, * debug/release, import paths, and so on. */ final class Settings { public: bool warningsEnabled; ///< The -w argument. bool debugEnabled; ///< The -d argument. bool noBackend; ///< The -S argument. bool noLink; ///< The -c argument bool emitBitCode; ///< The --emit-bitcode argument. bool noCatch; ///< The --no-catch argument. bool internalDebug; ///< The --internal-dbg argument. bool noStdLib; ///< The --no-stdlib argument. bool removeConditionalsOnly; ///< The -E argument. Platform platform; Arch arch; string execDir; ///< Set on create. string platformStr; ///< Derived from platform. string archStr; ///< Derived from arch. string linker; ///< The --linker argument string outputFile; string[] includePaths; ///< The -I arguments. string[] libraryPaths; ///< The -L arguements. string[] libraryFiles; ///< The -l arguments. string[] stdFiles; ///< The --stdlib-file arguements. string[] stdIncludePaths; ///< The --stdlib-I arguments. private: /// If the ident exists and is true, it's set, if false it's reserved. bool[string] mVersionIdentifiers; /// If the ident exists, it's set. bool[string] mDebugIdentifiers; public: this(string execDir) { setDefaultVersionIdentifiers(); this.execDir = execDir; } final void processConfigs() { setVersionsFromOptions(); replaceMacros(); } final void replaceMacros() { foreach (ref f; includePaths) f = replaceEscapes(f); foreach (ref f; libraryPaths) f = replaceEscapes(f); foreach (ref f; libraryFiles) f = replaceEscapes(f); foreach (ref f; stdFiles) f = replaceEscapes(f); foreach (ref f; stdIncludePaths) f = replaceEscapes(f); } final void setVersionsFromOptions() { final switch (platform) with (Platform) { case MinGW: platformStr = "mingw"; setVersionIdentifier("Windows"); setVersionIdentifier("MinGW"); break; case Linux: platformStr = "linux"; setVersionIdentifier("Linux"); setVersionIdentifier("Posix"); break; case OSX: platformStr = "osx"; setVersionIdentifier("OSX"); setVersionIdentifier("Posix"); break; case EMSCRIPTEN: platformStr = "emscripten"; setVersionIdentifier("Emscripten"); break; } final switch (arch) with (Arch) { case X86: archStr = "x86"; setVersionIdentifier("X86"); setVersionIdentifier("LittleEndian"); setVersionIdentifier("V_P32"); break; case X86_64: archStr = "x86_64"; setVersionIdentifier("X86_64"); setVersionIdentifier("LittleEndian"); setVersionIdentifier("V_P64"); break; case LE32: archStr = "le32"; setVersionIdentifier("LE32"); setVersionIdentifier("LittleEndian"); setVersionIdentifier("V_P32"); } } final string replaceEscapes(string file) { enum e = "%@execdir%"; enum a = "%@arch%"; enum p = "%@platform%"; size_t ret; ret = indexOf(file, e); if (ret != size_t.max) file = replace(file, e, execDir); ret = indexOf(file, a); if (ret != size_t.max) file = replace(file, a, archStr); ret = indexOf(file, p); if (ret != size_t.max) file = replace(file, p, platformStr); return file; } /// Throws: Exception if ident is reserved. final void setVersionIdentifier(string ident) { if (auto p = ident in mVersionIdentifiers) { if (!(*p)) { throw new Exception("cannot set reserved identifier."); } } mVersionIdentifiers[ident] = true; } /// Doesn't throw, debug identifiers can't be reserved. final void setDebugIdentifier(string ident) { mDebugIdentifiers[ident] = true; } /** * Check if a given version identifier is set. * Params: * ident = the identifier to check. * Returns: true if set, false otherwise. */ final bool isVersionSet(string ident) { if (auto p = ident in mVersionIdentifiers) { return *p; } else { return false; } } /** * Check if a given debug identifier is set. * Params: * ident = the identifier to check. * Returns: true if set, false otherwise. */ final bool isDebugSet(string ident) { return (ident in mDebugIdentifiers) !is null; } final ir.PrimitiveType getSizeT(Location loc) { ir.PrimitiveType pt; if (isVersionSet("V_P64")) { pt = new ir.PrimitiveType(ir.PrimitiveType.Kind.Ulong); } else { pt = new ir.PrimitiveType(ir.PrimitiveType.Kind.Uint); } pt.location = loc; return pt; } private: final void setDefaultVersionIdentifiers() { setVersionIdentifier("Volt"); setVersionIdentifier("all"); reserveVersionIdentifier("none"); } /// Marks an identifier as unable to be set. Doesn't set the identifier. final void reserveVersionIdentifier(string ident) { mVersionIdentifiers[ident] = false; } } unittest { auto settings = new Settings(); assert(!settings.isVersionSet("none")); assert(settings.isVersionSet("all")); settings.setVersionIdentifier("foo"); assert(settings.isVersionSet("foo")); assert(!settings.isDebugSet("foo")); settings.setDebugIdentifier("foo"); assert(settings.isDebugSet("foo")); try { settings.setVersionIdentifier("none"); assert(false); } catch (Exception e) { } }
D
module libs.utils.hydraulics; import std.math : pow; import libs.utils.constants; import libs.utils.tables; import libs.utils.geometry_calculators; /** Calculates the velocity head. Params: v = Velocity */ double velocityHead(double v) { return pow(v, 2) / (2 * GRAVITY); } /** Calculates the length of hydraulic jump. Params: f = Froude number Returns: Length of jump */ float hydraulicJump(float f) { double length = 0; // Get the first and second row of the table float[23] froudeNumbers = HYDRAULIC_JUMP_RATIO[0]; float[23] hydraulicJumps = HYDRAULIC_JUMP_RATIO[1]; for (int i = 0; i < (froudeNumbers.length - 1); i++) { if (f >= froudeNumbers[i] && f < froudeNumbers[i+1]) { length = interpolate(hydraulicJumps[i], hydraulicJumps[i + 1], froudeNumbers[i], f, froudeNumbers[i + 1]); } } return length; }
D
a military engineer who lays or detects and disarms mines a military engineer who does sapping (digging trenches or undermining fortifications)
D
module gui.newgame.page4;
D
; Copyright (C) 2008 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. .source T_monitor_enter_8.java .class public dot.junit.opcodes.monitor_enter.d.T_monitor_enter_8 .super java/lang/Object .method public <init>()V .limit regs 1 invoke-direct {v0}, java/lang/Object/<init>()V return-void .end method .method public run()V .limit regs 6 const-wide v4, 1.79 monitor-enter v4 return-void .end method
D
/** * Droits d’auteur: Enalye * Licence: Zlib * Auteur: Enalye */ module grimoire.stdlib.io; import std.conv : to; import grimoire.assembly, grimoire.compiler, grimoire.runtime; import grimoire.stdlib.util; void grLoadStdLibIo(GrLibDefinition library) { library.setModule(["std", "io"]); library.setDescription(GrLocale.fr_FR, "Affiche le contenu de `valeur`."); library.setDescription(GrLocale.en_US, "Display `value`'s content."); library.setParameters(GrLocale.fr_FR, ["valeur"]); library.setParameters(GrLocale.en_US, ["value"]); library.addFunction(&_print, "print", [grPure(grAny("T"))]); } private void _print(GrCall call) { string formatValue(GrType type, GrValue value) { final switch (type.base) with (GrType.Base) { case int_: return to!string(value.getInt()); case uint_: return to!string(value.getUInt()); case char_: return to!string(value.getChar()); case byte_: return to!string(value.getByte()); case bool_: return value.getBool() ? "true" : "false"; case func: case task: case event: return grGetPrettyType(type, false); case enum_: return type.mangledType ~ "." ~ call.getEnumFieldName(type.mangledType, value.getInt()); case float_: return to!string(value.getFloat()); case double_: return to!string(value.getDouble()); case string_: return value.getString().str; case optional: if (value.isNull()) return "null"; return formatValue(grUnmangle(type.mangledType), value); case list: GrType subType = grUnmangle(type.mangledType); GrList list = value.getList(); string txt = "["; for (GrInt i; i < list.size(); ++i) { if (i != 0) { txt ~= ", "; } txt ~= formatValue(subType, list[i]); } txt ~= "]"; return txt; case class_: case native: return grGetPrettyType(type, false); case channel: GrType subType = grUnmangle(type.mangledType); GrChannel channel = value.getChannel(); string txt = "{"; for (GrInt i; i < channel.size(); ++i) { if (i != 0) { txt ~= ", "; } txt ~= formatValue(subType, channel.data[i]); } txt ~= "}"; return txt; case internalTuple: return "(tuple)"; case reference: return "(ref)"; case null_: return "null"; case void_: return "void"; } } grPrint(formatValue(grUnmangle(call.getInType(0)), call.getValue(0))); }
D
module org.serviio.library.online.metadata.FeedItem; import java.lang.String; import java.io.Serializable; import java.net.URL; import java.util.HashMap; import java.util.Map; import org.serviio.library.online.metadata.OnlineContainerItem; import org.serviio.library.online.metadata.Feed; public class FeedItem : OnlineContainerItem!(Feed), Serializable { private static immutable long serialVersionUID = -1114391919989682022L; private Map!(String, URL) links = new HashMap!(String, URL)(); public this(Feed parentFeed, int feedOrder) { this.parentContainer = parentFeed; this.order = feedOrder; } public Map!(String, URL) getLinks() { return this.links; } } /* Location: C:\Users\Main\Downloads\serviio.jar * Qualified Name: org.serviio.library.online.metadata.FeedItem * JD-Core Version: 0.7.0.1 */
D
/* * Copyright (c) 2004-2008 Derelict Developers * 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 names 'Derelict', 'DerelictAL', 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. */ module derelict.openal.alfuncs; private { import derelict.openal.altypes; import derelict.openal.alctypes; import derelict.util.loader; } private void loadAL(SharedLib lib) { // al functions bindFunc(alEnable)("alEnable", lib); bindFunc(alDisable)("alDisable", lib); bindFunc(alIsEnabled)("alIsEnabled", lib); // bindFunc(alHint)("alHint", lib); bindFunc(alGetBooleanv)("alGetBooleanv", lib); bindFunc(alGetIntegerv)("alGetIntegerv", lib); bindFunc(alGetFloatv)("alGetFloatv", lib); bindFunc(alGetDoublev)("alGetDoublev", lib); bindFunc(alGetString)("alGetString", lib); bindFunc(alGetInteger)("alGetInteger", lib); bindFunc(alGetFloat)("alGetFloat", lib); bindFunc(alGetDouble)("alGetDouble", lib); bindFunc(alGetError)("alGetError", lib); bindFunc(alIsExtensionPresent)("alIsExtensionPresent", lib); bindFunc(alGetProcAddress)("alGetProcAddress", lib); bindFunc(alGetEnumValue)("alGetEnumValue", lib); bindFunc(alListenerf)("alListenerf", lib); bindFunc(alListeneri)("alListeneri", lib); bindFunc(alListener3f)("alListener3f", lib); bindFunc(alListenerfv)("alListenerfv", lib); bindFunc(alGetListeneri)("alGetListeneri", lib); bindFunc(alGetListenerf)("alGetListenerf", lib); // bindFunc(alGetListeneriv)("alGetListeneriv", lib); bindFunc(alGetListenerfv)("alGetListenerfv", lib); bindFunc(alGetListener3f)("alGetListener3f", lib); bindFunc(alGenSources)("alGenSources", lib); bindFunc(alDeleteSources)("alDeleteSources", lib); bindFunc(alIsSource)("alIsSource", lib); bindFunc(alSourcei)("alSourcei", lib); bindFunc(alSourcef)("alSourcef", lib); bindFunc(alSource3f)("alSource3f", lib); bindFunc(alSourcefv)("alSourcefv", lib); bindFunc(alGetSourcei)("alGetSourcei", lib); bindFunc(alGetSourcef)("alGetSourcef", lib); // bindFunc(alGetSourceiv)("alGetSourceiv", lib); bindFunc(alGetSourcefv)("alGetSourcefv", lib); bindFunc(alGetSource3f)("alGetSource3f", lib); bindFunc(alSourcePlayv)("alSourcePlayv", lib); bindFunc(alSourceStopv)("alSourceStopv", lib); bindFunc(alSourceRewindv)("alSourceRewindv", lib); bindFunc(alSourcePausev)("alSourcePausev", lib); bindFunc(alSourcePlay)("alSourcePlay", lib); bindFunc(alSourcePause)("alSourcePause", lib); bindFunc(alSourceRewind)("alSourceRewind", lib); bindFunc(alSourceStop)("alSourceStop", lib); bindFunc(alGenBuffers)("alGenBuffers", lib); bindFunc(alDeleteBuffers)("alDeleteBuffers", lib); bindFunc(alIsBuffer)("alIsBuffer", lib); bindFunc(alBufferData)("alBufferData", lib); bindFunc(alGetBufferi)("alGetBufferi", lib); bindFunc(alGetBufferf)("alGetBufferf", lib); version(linux) { bindFunc(alGetBufferfv)("alGetBufferfv", lib); bindFunc(alGetBufferiv)("alGetBufferiv", lib); } bindFunc(alSourceQueueBuffers)("alSourceQueueBuffers", lib); bindFunc(alSourceUnqueueBuffers)("alSourceUnqueueBuffers", lib); bindFunc(alDopplerFactor)("alDopplerFactor", lib); bindFunc(alDopplerVelocity)("alDopplerVelocity", lib); bindFunc(alDistanceModel)("alDistanceModel", lib); bindFunc(alcGetString)("alcGetString", lib); bindFunc(alcGetIntegerv)("alcGetIntegerv", lib); bindFunc(alcOpenDevice)("alcOpenDevice", lib); bindFunc(alcCloseDevice)("alcCloseDevice", lib); bindFunc(alcCreateContext)("alcCreateContext", lib); bindFunc(alcMakeContextCurrent)("alcMakeContextCurrent", lib); bindFunc(alcProcessContext)("alcProcessContext", lib); bindFunc(alcGetCurrentContext)("alcGetCurrentContext", lib); bindFunc(alcGetContextsDevice)("alcGetContextsDevice", lib); bindFunc(alcSuspendContext)("alcSuspendContext", lib); bindFunc(alcDestroyContext)("alcDestroyContext", lib); bindFunc(alcGetError)("alcGetError", lib); bindFunc(alcIsExtensionPresent)("alcIsExtensionPresent", lib); bindFunc(alcGetProcAddress)("alcGetProcAddress", lib); bindFunc(alcGetEnumValue)("alcGetEnumValue", lib); } public void loadALU(SharedLib lib) { version(Windows) { bindFunc(aluF2L)("aluF2L", lib); bindFunc(aluF2S)("aluF2S", lib); bindFunc(aluCrossproduct)("aluCrossproduct", lib); bindFunc(aluDotproduct)("aluDotproduct", lib); bindFunc(aluNormalize)("aluNormalize", lib); bindFunc(aluMatrixVector)("aluMatrixVector", lib); bindFunc(aluCalculateSourceParameters)("aluCalculateSourceParameters", lib); bindFunc(aluMixData)("aluMixData", lib); bindFunc(aluSetReverb)("aluSetReverb", lib); bindFunc(aluReverb)("aluReverb", lib); } } GenericLoader DerelictAL; GenericDependentLoader DerelictALU; static this() { DerelictAL.setup( "OpenAL32.dll", "libal.so, libAL.so, libopenal.so, libopenal.so.0", "", &loadAL ); DerelictALU.setup(&DerelictAL, &loadALU); } extern(C): typedef void function(ALenum) pfalEnable; typedef void function(ALenum) pfalDisable; typedef ALboolean function(ALenum) pfalIsEnabled; //typedef void function(ALenum, ALenum) pfalHint; typedef void function(ALenum, ALboolean*) pfalGetBooleanv; typedef void function(ALenum, ALint*) pfalGetIntegerv; typedef void function(ALenum, ALfloat*) pfalGetFloatv; typedef void function(ALenum, ALdouble*) pfalGetDoublev; typedef char* function(ALenum) pfalGetString; typedef ALboolean function(ALenum) pfalGetBoolean; typedef ALint function(ALenum) pfalGetInteger; typedef ALfloat function(ALenum) pfalGetFloat; typedef ALdouble function(ALenum) pfalGetDouble; typedef ALenum function() pfalGetError; pfalEnable alEnable; pfalDisable alDisable; pfalIsEnabled alIsEnabled; //pfalHint alHint; pfalGetBooleanv alGetBooleanv; pfalGetIntegerv alGetIntegerv; pfalGetFloatv alGetFloatv; pfalGetDoublev alGetDoublev; pfalGetString alGetString; pfalGetInteger alGetInteger; pfalGetFloat alGetFloat; pfalGetDouble alGetDouble; pfalGetError alGetError; typedef ALboolean function(char*) pfalIsExtensionPresent; typedef ALboolean function(char*) pfalGetProcAddress; typedef ALenum function(char*) pfalGetEnumValue; pfalIsExtensionPresent alIsExtensionPresent; pfalGetProcAddress alGetProcAddress; pfalGetEnumValue alGetEnumValue; typedef void function(ALenum, ALfloat) pfalListenerf; typedef void function(ALenum, ALint) pfalListeneri; typedef void function(ALenum, ALfloat, ALfloat, ALfloat) pfalListener3f; typedef void function(ALenum, ALfloat*) pfalListenerfv; typedef void function(ALenum, ALint*) pfalGetListeneri; typedef void function(ALenum, ALfloat*) pfalGetListenerf; //typedef void function(ALenum, ALint*) pfalGetListeneriv; typedef void function(ALenum, ALfloat*) pfalGetListenerfv; typedef void function(ALenum, ALfloat*, ALfloat*, ALfloat*) pfalGetListener3f; pfalListenerf alListenerf; pfalListeneri alListeneri; pfalListener3f alListener3f; pfalListenerfv alListenerfv; pfalGetListeneri alGetListeneri; pfalGetListenerf alGetListenerf; //pfalGetListeneriv alGetListeneriv; pfalGetListenerfv alGetListenerfv; pfalGetListener3f alGetListener3f; typedef void function(ALsizei, ALuint*) pfalGenSources; typedef void function(ALsizei, ALuint*) pfalDeleteSources; typedef void function(ALuint) pfalIsSource; typedef void function(ALuint, ALenum, ALint) pfalSourcei; typedef void function(ALuint, ALenum, ALfloat) pfalSourcef; typedef void function(ALuint, ALenum, ALfloat, ALfloat, ALfloat) pfalSource3f; typedef void function(ALuint, ALenum, ALfloat*) pfalSourcefv; typedef void function(ALuint, ALenum, ALint*) pfalGetSourcei; typedef void function(ALuint, ALenum, ALfloat*) pfalGetSourcef; //typedef void function(ALuint, ALenum, ALint*) pfalGetSourceiv; typedef void function(ALuint, ALenum, ALfloat*) pfalGetSourcefv; typedef void function(ALuint, ALenum, ALfloat*, ALfloat*, ALfloat*) pfalGetSource3f; pfalGenSources alGenSources; pfalDeleteSources alDeleteSources; pfalIsSource alIsSource; pfalSourcei alSourcei; pfalSourcef alSourcef; pfalSource3f alSource3f; pfalSourcefv alSourcefv; pfalGetSourcei alGetSourcei; pfalGetSourcef alGetSourcef; //pfalGetSourceiv alGetSourceiv; pfalGetSourcefv alGetSourcefv; pfalGetSource3f alGetSource3f; typedef void function(ALsizei, ALuint*) pfalSourcePlayv; typedef void function(ALsizei, ALuint*) pfalSourceStopv; typedef void function(ALsizei, ALuint*) pfalSourceRewindv; typedef void function(ALsizei, ALuint*) pfalSourcePausev; typedef void function(ALuint) pfalSourcePlay; typedef void function(ALuint) pfalSourcePause; typedef void function(ALuint) pfalSourceRewind; typedef void function(ALuint) pfalSourceStop; pfalSourcePlayv alSourcePlayv; pfalSourceStopv alSourceStopv; pfalSourceRewindv alSourceRewindv; pfalSourcePausev alSourcePausev; pfalSourcePlay alSourcePlay; pfalSourcePause alSourcePause; pfalSourceRewind alSourceRewind; pfalSourceStop alSourceStop; typedef void function(ALsizei, ALuint*) pfalGenBuffers; typedef void function(ALsizei, ALuint*) pfalDeleteBuffers; typedef ALboolean function(ALuint) pfalIsBuffer; typedef void function(ALuint, ALenum, ALvoid*, ALsizei, ALsizei) pfalBufferData; typedef void function(ALuint, ALenum, ALint*) pfalGetBufferi; typedef void function(ALuint, ALenum, ALfloat*) pfalGetBufferf; pfalGenBuffers alGenBuffers; pfalDeleteBuffers alDeleteBuffers; pfalIsBuffer alIsBuffer; pfalBufferData alBufferData; pfalGetBufferi alGetBufferi; pfalGetBufferf alGetBufferf; typedef void function(ALuint, ALsizei, ALuint*) pfalSourceQueueBuffers; typedef void function(ALuint, ALsizei, ALuint*) pfalSourceUnqueueBuffers; pfalSourceQueueBuffers alSourceQueueBuffers; pfalSourceUnqueueBuffers alSourceUnqueueBuffers; typedef void function(ALfloat) pfalDopplerFactor; typedef void function(ALfloat) pfalDopplerVelocity; typedef void function(ALenum) pfalDistanceModel; pfalDopplerFactor alDopplerFactor; pfalDopplerVelocity alDopplerVelocity; pfalDistanceModel alDistanceModel; version(linux) { extern(C): typedef void function(ALuint, ALenum, ALint*) pfalGetBufferiv; typedef void function(ALuint, ALenum, ALfloat*) pfalGetBufferfv; pfalGetBufferiv alGetBufferiv; pfalGetBufferfv alGetBufferfv; } // ALC typedef char* function(ALCdevice*, ALCenum) pfalcGetString; typedef ALCvoid function(ALCdevice*, ALCenum, ALCsizei, ALCint*) pfalcGetIntegerv; pfalcGetString alcGetString; pfalcGetIntegerv alcGetIntegerv; typedef ALCdevice* function(char*) pfalcOpenDevice; typedef ALCboolean function(ALCdevice*) pfalcCloseDevice; pfalcOpenDevice alcOpenDevice; pfalcCloseDevice alcCloseDevice; typedef ALCcontext* function(ALCdevice*, ALCint*) pfalcCreateContext; typedef ALCboolean function(ALCcontext*) pfalcMakeContextCurrent; typedef ALCvoid function(ALCcontext*) pfalcProcessContext; typedef ALCcontext* function() pfalcGetCurrentContext; typedef ALCdevice* function(ALCcontext*) pfalcGetContextsDevice; typedef ALCvoid function(ALCcontext*) pfalcSuspendContext; typedef ALCvoid function(ALCcontext*) pfalcDestroyContext; pfalcCreateContext alcCreateContext; pfalcMakeContextCurrent alcMakeContextCurrent; pfalcProcessContext alcProcessContext; pfalcGetCurrentContext alcGetCurrentContext; pfalcGetContextsDevice alcGetContextsDevice; pfalcSuspendContext alcSuspendContext; pfalcDestroyContext alcDestroyContext; typedef ALCenum function(ALCdevice*) pfalcGetError; pfalcGetError alcGetError; typedef ALCboolean function(ALCdevice*, char*) pfalcIsExtensionPresent; typedef ALCvoid* function(ALCdevice*, char*) pfalcGetProcAddress; typedef ALCenum function(ALCdevice*, char*) pfalcGetEnumValue; pfalcIsExtensionPresent alcIsExtensionPresent; pfalcGetProcAddress alcGetProcAddress; pfalcGetEnumValue alcGetEnumValue; // ALU version(Windows) { // extern(Windows): extern(C): typedef ALint function(ALfloat) pfaluF2L; typedef ALshort function(ALfloat) pfaluF2S; typedef ALvoid function(ALfloat*, ALfloat*, ALfloat*) pfaluCrossproduct; typedef ALfloat function(ALfloat*, ALfloat*) pfaluDotproduct; typedef ALvoid function(ALfloat*) pfaluNormalize; typedef ALvoid function(ALfloat*, ALfloat[3][3]) pfaluMatrixVector; typedef ALvoid function(ALuint, ALuint, ALfloat*, ALfloat*, ALfloat*) pfaluCalculateSourceParameters; typedef ALvoid function(ALvoid*, ALvoid*, ALsizei, ALenum) pfaluMixData; typedef ALvoid function(ALvoid*, ALuint) pfaluSetReverb; typedef ALvoid function(ALvoid*, ALfloat[][2], ALsizei) pfaluReverb; pfaluF2L aluF2L; pfaluF2S aluF2S; pfaluCrossproduct aluCrossproduct; pfaluDotproduct aluDotproduct; pfaluNormalize aluNormalize; pfaluMatrixVector aluMatrixVector; pfaluCalculateSourceParameters aluCalculateSourceParameters; pfaluMixData aluMixData; pfaluSetReverb aluSetReverb; pfaluReverb aluReverb; } // version(Windows)
D
void main() { string str = q"_DLANG 123 _DLANG"; assert( str == "123\n" ); }
D
module cmsed.base.internal.nodes; import cmsed.base.internal.models.nodes; import cmsed.base.util; import vibe.core.core : sleep; import std.datetime : SysTime; import core.time : Duration, dur; /** * Logic for node communication */ __gshared private { SystemNodesModel node; } void configureNodes() { node = SystemNodesModel.findOne(hostname); if (node is null) { node = new SystemNodesModel(); } node.generate(); SystemNodesModel.findAll(); SystemNodeIpModel.findAll(); } void rebuildNodes() { // update our nodes information. // makes sure ours is up to date. node.update(); // check for all outdated node info. // delete it. SysTime time = utc0SysTime(); time -= dur!"minutes"(4); ulong tocheck = time.toUnixTime(); SystemNodesModel.query().lastTick_lt(tocheck).remove(); SystemNodeIpModel.query().lastTick_lt(tocheck).remove(); }
D
func void B_DS_ClearGold() { Npc_RemoveInvItems(self,ItMi_Gold,Npc_HasItems(self,ItMi_Gold)); }; func void B_DS_ClearNugget() { Npc_RemoveInvItems(self,ItMi_Nugget,Npc_HasItems(self,ItMi_Nugget)); }; func void B_DS_ClearGoldNugget() { B_DS_ClearGold(); B_DS_ClearNugget(); };
D
/******************************************************************************* * Copyright (c) 2000, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Port to the D programming language: * Frank Benoit <benoit@tionex.de> *******************************************************************************/ module dwtx.jface.text.source.JFaceTextMessages; import dwt.dwthelper.utils; import dwt.dwthelper.ResourceBundle; import dwtx.dwtxhelper.MessageFormat; /** * Accessor for the <code>JFaceTextMessages.properties</code> file in * package <code>dwtx.jface.text</code>. * @since 2.0 */ class JFaceTextMessages { /** The resource bundle name. */ // private static const String RESOURCE_BUNDLE= "dwtx.jface.text.JFaceTextMessages";//$NON-NLS-1$ /** The resource bundle. */ private static ResourceBundle fgResourceBundle_;//= ResourceBundle.getBundle(RESOURCE_BUNDLE); private static ResourceBundle fgResourceBundle(){ if( fgResourceBundle_ is null ){ synchronized(JFaceTextMessages.classinfo ){ if( fgResourceBundle_ is null ){ fgResourceBundle_ = ResourceBundle.getBundle( getImportData!("dwtx.jface.text.JFaceTextMessages.properties")); } } } return fgResourceBundle_; } /** * Prohibits the creation of accessor objects. */ private this() { } /** * Returns the string found in the resource bundle under the given key or a place holder string. * * @param key the look up key * @return the value found under the given key */ public static String getString(String key) { try { return fgResourceBundle.getString(key); } catch (MissingResourceException e) { return "!" ~ key ~ "!";//$NON-NLS-2$ //$NON-NLS-1$ } } /** * Gets a string from the resource bundle and formats it with the argument * * @param key the string used to get the bundle value, must not be null * @param args arguments used when formatting the string * @return the formatted string * @since 3.0 */ public static String getFormattedString(String key, Object[] args...) { String format= null; try { format= fgResourceBundle.getString(key); } catch (MissingResourceException e) { return "!" ~ key ~ "!";//$NON-NLS-2$ //$NON-NLS-1$ } return MessageFormat.format(format, args); } }
D
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.0 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ module vtkUnsignedShortRectT; static import vtkd_im; static import core.stdc.config; static import std.conv; static import std.string; static import std.conv; static import std.string; static import vtkVectorUShort4T; class vtkUnsignedShortRectT : vtkVectorUShort4T.vtkVectorUShort4T { private void* swigCPtr; public this(void* cObject, bool ownCObject) { super(vtkd_im.vtkUnsignedShortRectT_Upcast(cObject), ownCObject); swigCPtr = cObject; } public static void* swigGetCPtr(vtkUnsignedShortRectT obj) { return (obj is null) ? null : obj.swigCPtr; } mixin vtkd_im.SwigOperatorDefinitions; ~this() { dispose(); } public override void dispose() { synchronized(this) { if (swigCPtr !is null) { if (swigCMemOwn) { swigCMemOwn = false; vtkd_im.delete_vtkUnsignedShortRectT(cast(void*)swigCPtr); } swigCPtr = null; super.dispose(); } } } public this() { this(vtkd_im.new_vtkUnsignedShortRectT__SWIG_0(), true); } public this(ushort x, ushort y, ushort width, ushort height) { this(vtkd_im.new_vtkUnsignedShortRectT__SWIG_1(x, y, width, height), true); } public this(ushort* init) { this(vtkd_im.new_vtkUnsignedShortRectT__SWIG_2(cast(void*)init), true); } public void Set(ushort x, ushort y, ushort width, ushort height) { vtkd_im.vtkUnsignedShortRectT_Set(cast(void*)swigCPtr, x, y, width, height); } public void SetX(ushort x) { vtkd_im.vtkUnsignedShortRectT_SetX(cast(void*)swigCPtr, x); } public ushort GetX() const { auto ret = vtkd_im.vtkUnsignedShortRectT_GetX(cast(void*)swigCPtr); return ret; } public void SetY(ushort y) { vtkd_im.vtkUnsignedShortRectT_SetY(cast(void*)swigCPtr, y); } public ushort GetY() const { auto ret = vtkd_im.vtkUnsignedShortRectT_GetY(cast(void*)swigCPtr); return ret; } public void SetWidth(ushort width) { vtkd_im.vtkUnsignedShortRectT_SetWidth(cast(void*)swigCPtr, width); } public ushort GetWidth() const { auto ret = vtkd_im.vtkUnsignedShortRectT_GetWidth(cast(void*)swigCPtr); return ret; } public void SetHeight(ushort height) { vtkd_im.vtkUnsignedShortRectT_SetHeight(cast(void*)swigCPtr, height); } public ushort GetHeight() const { auto ret = vtkd_im.vtkUnsignedShortRectT_GetHeight(cast(void*)swigCPtr); return ret; } public ushort X() const { auto ret = vtkd_im.vtkUnsignedShortRectT_X(cast(void*)swigCPtr); return ret; } public ushort Y() const { auto ret = vtkd_im.vtkUnsignedShortRectT_Y(cast(void*)swigCPtr); return ret; } public ushort Width() const { auto ret = vtkd_im.vtkUnsignedShortRectT_Width(cast(void*)swigCPtr); return ret; } public ushort Height() const { auto ret = vtkd_im.vtkUnsignedShortRectT_Height(cast(void*)swigCPtr); return ret; } }
D
/Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/Objects-normal/x86_64/QRCode.o : /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/SwiftQRCode/QRCode/Source/QRCode.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/Target\ Support\ Files/SwiftQRCode/SwiftQRCode-umbrella.h /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/Objects-normal/x86_64/QRCode~partial.swiftmodule : /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/SwiftQRCode/QRCode/Source/QRCode.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/Target\ Support\ Files/SwiftQRCode/SwiftQRCode-umbrella.h /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/Objects-normal/x86_64/QRCode~partial.swiftdoc : /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/SwiftQRCode/QRCode/Source/QRCode.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/Pods/Target\ Support\ Files/SwiftQRCode/SwiftQRCode-umbrella.h /Users/Avinash/Documents/Code/CodeCollab/CodeCollab/DerivedData/CodeCollab/Build/Intermediates/Pods.build/Debug-iphonesimulator/SwiftQRCode.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule
D
/home/codedchai/TheRustBook/references_and_borrowing/target/rls/debug/deps/references_and_borrowing-b31d231989b02774.rmeta: src/main.rs /home/codedchai/TheRustBook/references_and_borrowing/target/rls/debug/deps/references_and_borrowing-b31d231989b02774.d: src/main.rs src/main.rs:
D
// PERMUTE_ARGS: -O -fPIC extern(C) int printf(const char*, ...); /****************************************************/ class Abc : Exception { this() { super(""); } int i; } int y; alias int boo; void foo(int x) { y = cast(boo)1; L6: try { printf("try 1\n"); y += 4; if (y == 5) goto L6; y += 3; } finally { y += 5; printf("finally 1\n"); } try { printf("try 2\n"); y = 1; if (y == 4) goto L6; y++; } catch (Abc c) { printf("catch 2\n"); y = 2 + c.i; } y++; printf("done\n"); } /****************************************************/ class IntException : Exception { this(int i) { m_i = i; super(""); } int getValue() { return m_i; } int m_i; } void test2() { int cIterations = 10; int i; long total_x = 0; long total_nox = 0; for(int WARMUPS = 2; WARMUPS-- > 0; ) { for(total_x = 0, i = 0; i < cIterations; ++i) { total_nox += fn2_nox(); } printf("foo\n"); for(total_nox = 0, i = 0; i < cIterations; ++i) { printf("i = %d\n", i); try { int z = 1; throw new IntException(z); } catch(IntException x) { printf("catch, i = %d\n", i); total_x += x.getValue(); } } } printf("iterations %d totals: %ld, %ld\n", cIterations, total_x, total_nox); } int fn2_nox() { return 47; } /****************************************************/ void test3() { static int x; try { } finally { printf("a\n"); assert(x == 0); x++; } printf("--\n"); assert(x == 1); try { printf("tb\n"); assert(x == 1); } finally { printf("b\n"); assert(x == 1); x++; } assert(x == 2); } /****************************************************/ class Tester { this(void delegate() dg_) { dg = dg_; } void delegate() dg; void stuff() { dg(); } } void test4() { printf("Starting test\n"); int a = 0; int b = 0; int c = 0; int d = 0; try { a++; throw new Exception("test1"); a++; } catch(Exception e) { auto es = e.toString(); printf("%.*s\n", es.length, es.ptr); b++; } finally { c++; } printf("initial test.\n"); assert(a == 1); assert(b == 1); assert(c == 1); printf("pass\n"); Tester t = new Tester( delegate void() { try { a++; throw new Exception("test2"); a++; } catch(Exception e) { b++; throw e; b++; } }); try { c++; t.stuff(); c++; } catch(Exception e) { d++; string es = e.toString; printf("%.*s\n", es.length, es.ptr); } assert(a == 2); assert(b == 2); assert(c == 2); assert(d == 1); int q0 = 0; int q1 = 0; int q2 = 0; int q3 = 0; Tester t2 = new Tester( delegate void() { try { q0++; throw new Exception("test3"); q0++; } catch(Exception e) { printf("Never called.\n"); q1++; throw e; q1++; } }); try { q2++; t2.stuff(); q2++; } catch(Exception e) { q3++; string es = e.toString; printf("%.*s\n", es.length, es.ptr); } assert(q0 == 1); assert(q1 == 1); assert(q2 == 1); assert(q3 == 1); printf("Passed!\n"); } /****************************************************/ void test5() { char[] result; int i = 3; while(i--) { try { printf("i: %d\n", i); result ~= 't'; if (i == 1) continue; } finally { printf("finally\n"); result ~= cast(char)('a' + i); } } printf("--- %.*s", result.length, result.ptr); if (result != "tctbta") assert(0); } /****************************************************/ void test6() { char[] result; while (true) { try { printf("one\n"); result ~= 'a'; break; } finally { printf("two\n"); result ~= 'b'; } } printf("three\n"); result ~= 'c'; if (result != "abc") assert(0); } /****************************************************/ string a7; void doScan(int i) { a7 ~= "a"; try { try { a7 ~= "b"; return; } finally { a7 ~= "c"; } } finally { a7 ~= "d"; } } void test7() { doScan(0); assert(a7 == "abcd"); } /**************************************************** * Exception chaining tests. See also test4.d * Don writes about the complexity: I can explain this, since I did the original implementation. When I originally implemented this, I discovered that the idea of "chained exceptions" was hopeless naive. The idea was that while processing one exception, if you encounter a second one, and you chain them together. Then you get a third, fourth, etc. The problem is that it's much more complicated than that. Each of the exceptions can be a chain of exceptions themselves. This means that you don't end up with a chain of exceptions, but rather a tree of exceptions. That's why there are those really nasty test cases in the test suite. The examples in the test suite are very difficult to understand if you expect it to be a simple chain! On the one hand, I was very proud that I was able to work out the barely-documented behaviour of Windows SEH, and it was really thorough. In the initial implementation, all the complexity was covered. It wasn't the bugfix-driven-development which dmd usually operates under <g>. But on the other hand, once you can see all of the complexity, exception chaining becomes much less convincing as a concept. Sure, the full exception tree is available in the final exception which you catch. But, is it of any use? I doubt it very much. It's pretty clearly a nett loss to the language, it increases complexity with negligible benefit. Fortunately in this case, the cost isn't really high. https://digitalmars.com/d/archives/digitalmars/D/Dicebot_on_leaving_D_It_is_anarchy_driven_development_in_all_its_317950.html#N318305 ****************************************************/ int result1513; void bug1513a() { throw new Exception("d"); } void bug1513b() { try { try { bug1513a(); } finally { result1513 |=4; throw new Exception("f"); } } catch(Exception e) { assert(e.msg == "d"); assert(e.next.msg == "f"); assert(!e.next.next); int i; foreach (u; e) { if (i) assert(u.msg == "f"); else assert(u.msg == "d"); ++i; } } } void bug1513c() { try { try { throw new Exception("a"); } finally { result1513 |= 1; throw new Exception("b"); } } finally { bug1513b(); result1513 |= 2; throw new Exception("c"); } } void bug1513() { result1513 = 0; try { bug1513c(); } catch(Exception e) { assert(result1513 == 7); assert(e.msg == "a"); assert(e.next.msg == "b"); assert(e.next.next.msg == "c"); } } void collideone() { try { throw new Exception("x"); } finally { throw new Exception("y"); } } void doublecollide() { try { try { try { throw new Exception("p"); } finally { throw new Exception("q"); } } finally { collideone(); } } catch(Exception e) { assert(e.msg == "p"); assert(e.next.msg == "q"); assert(e.next.next.msg == "x"); assert(e.next.next.next.msg == "y"); assert(!e.next.next.next.next); } } void collidetwo() { try { try { throw new Exception("p2"); } finally { throw new Exception("q2"); } } finally { collideone(); } } void collideMixed() { int works = 6; try { try { try { throw new Exception("e"); } finally { throw new Error("t"); } } catch(Exception f) { // Doesn't catch, because Error is chained to it. works += 2; } } catch(Error z) { works += 4; assert(z.msg=="t"); // Error comes first assert(z.next is null); assert(z.bypassedException.msg == "e"); } assert(works == 10); } class AnotherException : Exception { this(string s) { super(s); } } void multicollide() { try { try { try { try { throw new Exception("m2"); } finally { throw new AnotherException("n2"); } } catch(AnotherException s) { // Not caught -- we needed to catch the root cause "m2", not // just the collateral "n2" (which would leave m2 uncaught). assert(0); } } finally { collidetwo(); } } catch(Exception f) { assert(f.msg == "m2"); assert(f.next.msg == "n2"); Throwable e = f.next.next; assert(e.msg == "p2"); assert(e.next.msg == "q2"); assert(e.next.next.msg == "x"); assert(e.next.next.next.msg == "y"); assert(!e.next.next.next.next); } } /****************************************************/ void use9568(char [] x, char [] y) {} int bug9568() { try return 7; finally use9568(null,null); } void test9568() { assert( bug9568() == 7 ); } /****************************************************/ version (DigitalMars) { void test8a() { int a; goto L2; // L2 is not addressable. try { a += 2; } catch (Exception) { a += 3; L2: ; a += 100; } assert(a == 100); } void test8b() { int a; goto L2; // L2 is not addressable. try { } catch (Exception) { a += 3; L2: ; a += 100; } assert(a == 100); } void test8c() { int a; goto L2; // L2 is not addressable. try static assert(true); catch (Exception) { a += 3; L2: ; a += 100; } assert(a == 100); } void test8() { test8a(); test8b(); test8c(); } } /****************************************************/ uint foo9(uint i) { try { ++i; return 3; } catch (Exception e) { debug printf("Exception happened\n"); } return 4; } void test9() { assert(foo9(7) == 3); } /****************************************************/ // https://issues.dlang.org/show_bug.cgi?id=10964 void test10964() { static struct S { this(this) { throw new Exception("BOOM!"); } } S ss; S[1] sa; int result; result = 0; try { ss = ss; } catch (Exception e) result = 1; catch (Error e) result = 2; catch (Throwable e) result = 3; assert(result == 1); try { sa = ss; } catch (Exception e) result = 1; catch (Error e) result = 2; catch (Throwable e) result = 3; assert(result == 1); try { sa = sa; } catch (Exception e) result = 1; catch (Error e) result = 2; catch (Throwable e) result = 3; assert(result == 1); } /****************************************************/ alias Action = void delegate(); class A10 { invariant() { } public Action foo(Action a) { synchronized { B10 elements = new B10; Action[] actions = [a]; elements.bar(actions); if (actions.length > 1) elements.bar(actions); return actions[0]; } return null; } } class B10 { public bool bar(ref Action[]) { return false; } } class D10 { void baz() { } } void test12989() { auto a = new A10; auto d = new D10; assert(a.foo(&d.baz) == &d.baz); } /****************************************************/ int bar10(int c) { if (c <= 0xFFFF) { L3: return 3; } throw new Exception("msg"); goto L3; } void test10() { int x; try { bar10(0x110000); } catch (Exception e) { printf("caught\n"); x = 1; } assert(x == 1); printf("test10 success\n"); } /****************************************************/ class ParseException : Exception { @safe pure nothrow this( string msg ) { super( msg ); } } class OverflowException : Exception { @safe pure nothrow this( string msg ) { super( msg ); } } void test11() { int x; try { printf("test11()\n"); throw new ParseException("msg"); } catch( OverflowException e ) { printf( "catch OverflowException\n" ); } catch( ParseException e ) { printf( "catch ParseException: %.*s\n", cast(int) e.msg.length, e.msg.ptr ); x = 1; } assert(x == 1); } /****************************************************/ // https://issues.dlang.org/show_bug.cgi?id=17481 class C17481 { synchronized void trigger(){ new ubyte[1]; } } void test17481() { auto k = new shared C17481; k.trigger; } /****************************************************/ // a nothrow function, even though it is not marked as nothrow void test12() { int i = 3; try { try { ++i; goto L10; } finally { i *= 2; printf("f1\n"); } } finally { i += 5; printf("f2\n"); } L10: printf("3\n"); assert(i == (3 + 1) * 2 + 5); } /****************************************************/ void foo13() { } void test13() { int i = 3; try { try { foo13(); // compiler assumes it throws ++i; goto L10; } finally { i *= 2; printf("f1\n"); } } finally { i += 5; printf("f2\n"); } L10: printf("3\n"); assert(i == (3 + 1) * 2 + 5); } /****************************************************/ int main() { printf("start\n"); foo(3); test2(); test3(); test4(); test5(); test6(); test7(); bug1513(); doublecollide(); collideMixed(); multicollide(); test9568(); version(DigitalMars) test8(); test9(); test10964(); test12989(); test10(); test11(); test17481(); test12(); test13(); printf("finish\n"); return 0; }
D
import vibe.d; import std.string; void handleRequest(HttpServerRequest req, HttpServerResponse res) { string response = format("Hello, %s", req.query["name"]); res.writeBody(cast(ubyte[])response, "text/plain"); } shared static this() { version(Debug) { logInfo("Debug"); } auto settings = new HttpServerSettings; settings.port = 8080; listenHttp(settings, &handleRequest); }
D
/** * test reading data and then apply HMM * (intercross example: listeria) */ module test.hmm.test_hmm_f2; import std.math, std.stdio, std.path; import std.exception, std.conv; import std.random; import std.algorithm; import qtl.core.primitives; import qtl.core.phenotype, qtl.core.chromosome, qtl.core.genotype; import qtl.plugins.qtab.read_qtab; import qtl.core.map.make_map, qtl.core.map.map; import qtl.core.map.genetic_map_functions; import qtl.core.hmm.cross; import qtl.core.hmm.calcgenoprob; import qtl.core.hmm.estmap; unittest { writeln("Unit test " ~ __FILE__); } unittest { alias std.path.buildPath buildPath; auto dir = to!string(dirName(__FILE__) ~ dirSeparator ~ buildPath("..","..","..","..","test","data", "input", "listeria_qtab")); // load founder info auto founder_fn = to!string(buildPath(dir, "listeria_founder.qtab")); writeln("reading ", founder_fn); auto info = get_section_key_values(founder_fn,"Set Founder"); assert(info["Cross"] == "F2"); // assert(info["Phase"] == "unknown"); // load symbols auto symbol_fn = to!string(buildPath(dir,"listeria_symbol.qtab")); // First read symbol information (the GenotypeSymbolMappers) writeln("reading ",symbol_fn); auto fs = File(symbol_fn,"r"); auto symbols = read_genotype_symbol_qtab(fs); // Test working of symbols assert(symbols.decode("A") == symbols.decode("AA")); assert(to!string(symbols.decode("NA")) == "[NA]"); assert(to!string(symbols.decode("A")) == "[(0,0)]"); assert(to!string(symbols.decode("H")) == "[(0,1), (1,0)]"); assert(to!string(symbols.decode("B")) == "[(1,1)]"); assert(to!string(symbols.decode("HorA")) == "[(0,0), (0,1), (1,0)]"); assert(to!string(symbols.decode("HorB")) == "[(0,1), (1,0), (1,1)]"); // Read genotype matrix auto genotype_fn = to!string(buildPath(dir,"listeria_genotype.qtab")); writeln("reading ",genotype_fn); auto fg = File(genotype_fn,"r"); auto ret = read_genotype_qtab(fg, symbols); auto individuals = ret[0]; auto genotype_matrix = ret[1]; // Show the first individual and genotypes assert(individuals.list.length == 120); assert(individuals.list[15].name == "16"); assert(genotype_matrix[119].length == 133); // by symbol assert(genotype_matrix[0][0] == symbols.decode("B")); assert(genotype_matrix[0][3] == symbols.decode("H")); assert(genotype_matrix[15][0] == symbols.decode("H")); assert(genotype_matrix[15][130] == symbols.decode("HorB")); assert(genotype_matrix[18][129] == symbols.decode("B")); assert(genotype_matrix[18][130] == symbols.decode("NA")); assert(genotype_matrix[18][131] == symbols.decode("A")); // by founders assert(genotype_matrix[0][0].list[0].homozygous == true); assert(genotype_matrix[0][0].list[0].heterozygous == false); assert(genotype_matrix[0][0].list[0].founders[0] == 1); assert(genotype_matrix[0][0].list[0].founders[1] == 1); assert(genotype_matrix[0][3].list[0].homozygous == false); assert(genotype_matrix[0][3].list[0].heterozygous == true); assert(genotype_matrix[0][3].list[0].founders[0] == 0); assert(genotype_matrix[0][3].list[0].founders[1] == 1); assert(genotype_matrix[15][0].list[0].homozygous == false); assert(genotype_matrix[15][0].list[0].heterozygous == true); assert(genotype_matrix[15][0].list[0].founders[0] == 0); assert(genotype_matrix[15][0].list[0].founders[1] == 1); assert(genotype_matrix[18][129].list[0].homozygous == true); assert(genotype_matrix[18][129].list[0].heterozygous == false); assert(genotype_matrix[18][129].list[0].founders[0] == 1); assert(genotype_matrix[18][129].list[0].founders[1] == 1); assert(genotype_matrix[18][131].list[0].homozygous == true); assert(genotype_matrix[18][131].list[0].heterozygous == false); assert(genotype_matrix[18][131].list[0].founders[0] == 0); assert(genotype_matrix[18][131].list[0].founders[1] == 0); // reading phenotypes auto pheno_fn = to!string(buildPath(dir,"listeria_phenotype.qtab")); writeln("reading ",pheno_fn); auto p_res = read_phenotype_qtab!(Phenotype)(pheno_fn); Phenotype[][] pheno = p_res[0]; assert(pheno.length == 120); foreach(p; pheno) assert(p.length == 1); // 1st ind, 1st phenotype assert(pheno[0][0].value == 118.317); // 3rd ind, 1st phenotype assert(pheno[2][0].value == 194.917); assert(isNA(pheno[29][0])); // missing value // Marker map reader auto marker_map_fn = to!string(buildPath(dir,"listeria_marker_map.qtab")); writeln("reading ",marker_map_fn); auto markers = read_marker_map_qtab!(Marker)(marker_map_fn); assert(markers.length == 133); assert(markers[0].name == "D10M44"); assert(markers[0].chromosome.name == "1"); assert(markers[3].get_position == 40.4136); assert(markers[128].name == "D19M117"); assert(markers[128].chromosome.name == "19"); assert(markers[128].get_position == 16.364); // marker id == numeric index foreach(i, m; markers) assert(m.id == i); // test splitting up of markers into chromosomes // note: chromosomes not necessarily ordered auto markers_by_chr = get_markers_by_chromosome(markers); foreach(chr; markers_by_chr) { // check that markers within chromosome are in order: // contiguous ids; non-decreasing position assert(chr[1][0].chromosome.name == chr[0].name); for(auto i=1; i<chr[1].length; i++) { assert(chr[1][i].id == chr[1][i-1].id+1); assert(chr[1][i].get_position >= chr[1][i-1].get_position); assert(chr[1][i].chromosome.name == chr[0].name); } } auto markers_by_chr_sorted = sort_chromosomes_by_marker_id(markers_by_chr); Marker[] pmap_stepped, pmap_minimal; foreach(chr; markers_by_chr_sorted) { // check that markers within chromosome are in order: // contiguous ids; non-decreasing position assert(chr[1][0].chromosome.name == chr[0].name); for(auto i=1; i<chr[1].length; i++) { assert(chr[1][i].id == chr[1][i-1].id+1); assert(chr[1][i].get_position >= chr[1][i-1].get_position); assert(chr[1][i].chromosome.name == chr[0].name); } pmap_stepped = add_stepped_markers(chr[1], 5.0, 0.0); pmap_minimal = add_minimal_markers(chr[1], 5.0, 0.0); } // create cross auto f2 = form_cross("F2"); // test calc_geno_prob with listeria data, chr 4 writeln("Test calc_geno_prob with listeria data, chr 4"); auto chr4_map = markers_by_chr_sorted[3][1]; auto rec_frac = recombination_fractions(chr4_map, GeneticMapFunc.Haldane); auto genoprobs = calc_geno_prob(f2, genotype_matrix, chr4_map, rec_frac, 0.002); /****************************** * in R: data(listeria) for(i in seq(along=listeria$geno)) { m <- listeria$geno[[i]]$map listeria$geno[[i]]$map <- round(m, ifelse(m < 10, 5, 4)) } listeria <- calc.genoprob(listeria, err=0.002, map="haldane") for(ind in c(1, 27, 120)) print(paste0("genoprobs_from_rqtl = [", paste(apply(listeria$geno[["4"]]$prob[ind,,], 1, function(a) paste0("[", paste(sprintf("%.20f", a), collapse=", "), "]")), collapse=", "), "];")) * ******************************/ double[][] genoprobs_from_rqtl; // probs from R/qtl for individual 1 genoprobs_from_rqtl = [[0.99365258220779917320, 0.00536677960696724590, 0.00098063818523398574], [0.01597333397028120536, 0.98401049774880899879, 0.00001616828090931726], [0.98819059738489645195, 0.01083423736055390621, 0.00097516525454971611], [0.00156449607177869504, 0.99827438804771617686, 0.00016111588050444554]]; auto ind = 0; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 27 genoprobs_from_rqtl = [[0.99572456085363969525, 0.00327771914550501397, 0.00099772000085535150], [0.44357685866023488508, 0.53992256196411336777, 0.01650057937565204552], [0.00084713351110069163, 0.99905404146062604109, 0.00009882502827408544], [0.00028922118598153989, 0.99942262138906567959, 0.00028815742495473404]]; ind = 26; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 120 genoprobs_from_rqtl = [[0.23363198854294833784, 0.53273602291410349086, 0.23363198854294822682], [0.21477497000974676844, 0.57045005998050635210, 0.21477497000974687946], [0.18276695221386124457, 0.63446609557227739984, 0.18276695221386132784], [0.00050050050050050071, 0.99899899899899902156, 0.00050050050050050071]]; ind = 119; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // test calc_geno_prob with listeria data, chr 13 writeln("Test calc_geno_prob with listeria data, chr 13"); auto chr13_map = markers_by_chr_sorted[12][1]; auto pmap_minimal_chr13 = add_minimal_markers(chr13_map, 1.0, 0.0); rec_frac = recombination_fractions(pmap_minimal_chr13, GeneticMapFunc.Kosambi); genoprobs = calc_geno_prob(f2, genotype_matrix, pmap_minimal_chr13, rec_frac, 0.01); /****************************** * in R: data(listeria) for(i in seq(along=listeria$geno)) { m <- listeria$geno[[i]]$map listeria$geno[[i]]$map <- round(m, ifelse(m < 10, 5, 4)) } listeria <- calc.genoprob(listeria, err=0.01, map="kosambi", step=1, stepwidth="max") for(ind in c(1, 27, 120)) print(paste0("genoprobs_from_rqtl = [", paste(apply(listeria$geno[["13"]]$prob[ind,,], 1, function(a) paste0("[", paste(sprintf("%.20f", a), collapse=", "), "]")), collapse=", "), "];")) * ******************************/ // probs from R/qtl for ind'l 1 genoprobs_from_rqtl = [[0.00093947107625960398, 0.90558411629036694723, 0.09347641263337422290], [0.00143673628278441273, 0.90716611076223829802, 0.09139715295497738423], [0.00284269548888373700, 0.91261920421548403670, 0.08453810029563157968], [0.00395240827329715761, 0.91863684870278916605, 0.07741074302391390272], [0.00476316656224347410, 0.92522727764939738382, 0.07000955578835917070], [0.00527186613949289905, 0.93239950817225436541, 0.06232862568825337651], [0.00547500095801338200, 0.94016335341734613706, 0.05436164562464058242], [0.00536865690574284127, 0.94852943598618932874, 0.04610190710806810754], [0.00494850501646558125, 0.95750920246981618966, 0.03754229251371796888], [0.00420979411601392958, 0.96711493911016666036, 0.02867526677381966246], [0.00314734289324383743, 0.97735978861028893760, 0.01949286849646659700], [0.00175553138444746004, 0.98825776811637933150, 0.00998670049917382494], [0.00002829185906360500, 0.99982378839622554345, 0.00014791974471212432], [0.00034827697608168175, 0.99922765902610044542, 0.00042406399781799356], [0.00034281683234591346, 0.99928239547773700657, 0.00037478768991672820], [0.00001188288670022903, 0.99998806911357218663, 0.00000004799972708634], [0.00001273335891325602, 0.99998721865804607312, 0.00000004798304246031], [0.16640051348570888967, 0.83319365802336298188, 0.00040582849092848716], [0.33256145562981453967, 0.66691830951651742687, 0.00052023485366803595], [0.49865714107855779735, 0.50090256688409262598, 0.00044029203734922111], [0.66484897433273848488, 0.33488822763488579337, 0.00026279803237497153], [0.83129839645540981596, 0.16861709146035977480, 0.00008451208423047219], [0.99816709843359330279, 0.00183055865849329844, 0.00000234290791413904], [0.99857001668520317672, 0.00142877194844409682, 0.00000121136635273716], [0.99917244060904486513, 0.00082717019334513093, 0.00000038919760998130], [0.99997467040259235826, 0.00002527333486086176, 0.00000005626254644545], [0.99940976291048444491, 0.00059011829345908379, 0.00000011879605689591], [0.99922487609915811024, 0.00077495921785188256, 0.00000016468298988366], [0.99941983421793822995, 0.00058007728655026553, 0.00000008849551185294], [0.99999482257527672058, 0.00000517604674517197, 0.00000000137797747915], [0.99991240696087180240, 0.00008759064421436322, 0.00000000239491315976], [0.99999701765677528886, 0.00000298188250862147, 0.00000000046071588527], [0.99977307437441531590, 0.00022691252940187630, 0.00000001309618227604], [0.99977403607549575337, 0.00022595103945125257, 0.00000001288505279842], [0.99999990330085108958, 0.00000009654738680160, 0.00000000015176226783], [0.99999989730634541996, 0.00000010254177301965, 0.00000000015188087766], [0.99861476440920760034, 0.00138429973782670432, 0.00000093585296610758], [0.99759777725941722881, 0.00239895406706655111, 0.00000326867351589371], [0.99694800333274069537, 0.00304555622484908124, 0.00000644044241103091], [0.99666484774664199087, 0.00332505617689790242, 0.00001009607646016828], [0.99674805251843434650, 0.00323786455496086331, 0.00001408292660535025], [0.99719769624428256094, 0.00278385326009609503, 0.00001845049562126714], [0.99801419419865466942, 0.00196235527447341995, 0.00002345052687215618], [0.99919829885432287497, 0.00077216368141466826, 0.00002953746426263702]]; ind = 0; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 27 genoprobs_from_rqtl = [[0.00001706063466553371, 0.99996359264873346806, 0.00001934671660100166], [0.00000542729907139706, 0.99998425590939321594, 0.00001031679153513373], [0.00167431980159984365, 0.99498883477563293543, 0.00333684542276671764], [0.00300430267305644731, 0.99067066427994321387, 0.00632503304700018140], [0.00399804643092083623, 0.98702383624113243510, 0.00897811732794714240], [0.00465776212837853195, 0.98404336101813516535, 0.01129887685348606070], [0.00498520467071393927, 0.98172516068311965753, 0.01328963464616587757], [0.00498167550789427403, 0.98006606344200652980, 0.01495226105009991521], [0.00464802470712830876, 0.97906379929477149737, 0.01628817599810009412], [0.00398465240833526489, 0.97871699692961144912, 0.01729835066205359650], [0.00299150966461544845, 0.97902518184668385626, 0.01798330848870059381], [0.00166809866897262341, 0.97998877570889908473, 0.01834312562212889880], [0.00001347236769887946, 0.98160909691883757588, 0.01837743071346389576], [0.00011263177102181188, 0.65436580946881661713, 0.34552155876016116265], [0.00005487815236952483, 0.32732377584639010815, 0.67262134600124012795], [0.00000008945179434168, 0.00005661626397888805, 0.99994329428422679129], [0.00000008945354484454, 0.00005478964492995142, 0.99994512090152476436], [0.00000032118183143107, 0.00101791385226538138, 0.99898176496590362916], [0.00000067538225346972, 0.00159240460307560243, 0.99840692001467068462], [0.00000081711944192661, 0.00177915539661966629, 0.99822002748393812155], [0.00000063752566405884, 0.00157845668438947500, 0.99842090578994657779], [0.00000025358909081293, 0.00098999632184585762, 0.99900975008906323094], [0.00000000838133904767, 0.00001285908294353619, 0.99998713253571780424], [0.00000001534477949811, 0.00021081985160242796, 0.99978916480361812447], [0.00000001363661676841, 0.00020935822761357633, 0.99979062813577035396], [0.00000000369389026148, 0.00000847304464930174, 0.99999152326145956948], [0.00000008558029292317, 0.00057750414441595701, 0.99942241027529099551], [0.00000014826103009595, 0.00076653150621263104, 0.99923332023275723834], [0.00000008392643814716, 0.00057584267692486308, 0.99942407339663685839], [0.00000000133336090595, 0.00000514758225627987, 0.99999485108438224135], [0.00000000238242727110, 0.00008757626840377222, 0.99991242134916868967], [0.00000000045998229883, 0.00000298163372753310, 0.99999701790629047515], [0.00000001309583730291, 0.00022691236328265449, 0.99977307454087993577], [0.00000001288496149169, 0.00022595095622626409, 0.99977403615881199617], [0.00000000015176176266, 0.00000009654736301179, 0.99999990330087418222], [0.00000000015188037252, 0.00000010254174979134, 0.99999989730636762442], [0.00000093585296563868, 0.00138429973780618992, 0.99861476440922791742], [0.00000326867351546000, 0.00239895406704874288, 0.99759777725943576954], [0.00000644044241062990, 0.00304555622483396833, 0.99694800333275579440], [0.00001009607645979595, 0.00332505617688550175, 0.99666484774665442536], [0.00001408292660500108, 0.00323786455495118615, 0.99674805251844411647], [0.00001845049562093424, 0.00278385326008914443, 0.99719769624428966637], [0.00002345052687183109, 0.00196235527446920891, 0.99801419419865911031], [0.00002953746426230961, 0.00077216368141321294, 0.99919829885432465133]]; ind = 26; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 120 genoprobs_from_rqtl = [[0.00003389923748556352, 0.99659312663270072097, 0.00337297412981356608], [0.00000801711540126647, 0.99948197331100663288, 0.00051000957359357223], [0.00169906069207385337, 0.99614587613805960498, 0.00215506316986592257], [0.00305060942768221356, 0.99348861268333943375, 0.00346077788897814669], [0.00406448901288740394, 0.99150654724186593203, 0.00442896374524633790], [0.00474206320668295756, 0.99019696792401612484, 0.00506096886930077535], [0.00508423569429013438, 0.98955808294507385803, 0.00535768136063597290], [0.00509145131559570266, 0.98958901817368594145, 0.00531953051071768108], [0.00476369666581028407, 0.99028981593586640209, 0.00494648739832338844], [0.00410050006916634190, 0.99166143507290094306, 0.00423806485793321204], [0.00310093092561705697, 0.99370575225325252777, 0.00319331682113098815], [0.00176359842963963909, 0.99642556454024300283, 0.00181083703011698121], [0.00008664965938729717, 0.99982459321903727201, 0.00008875712157480426], [0.00145817276314296937, 0.99708176916663004974, 0.00146005807022706199], [0.00250566134181485134, 0.99498701354994911750, 0.00250732510823592405], [0.00323048094627445591, 0.99353759533945518179, 0.00323192371427058825], [0.00323110540854978662, 0.99353634665946966020, 0.00323254793198096647], [0.00365480154485681944, 0.99268919522739251793, 0.00365600322775114662], [0.00369536035592773040, 0.99260831797859161441, 0.00369632166548090196], [0.00335284478224494179, 0.99329358912555554273, 0.00335356609219922448], [0.00262672197305625433, 0.99474607446309881720, 0.00262720356384578456], [0.00151586245758338826, 0.99696803302597425400, 0.00151610451644320927], [0.00001853838831395025, 0.99996292060233327170, 0.00001854100935279364], [0.00021451648394345767, 0.99957096527700384225, 0.00021451823905302008], [0.00021117401222328137, 0.99957765108602236737, 0.00021117490175367508], [0.00000850830571234144, 0.99998298336444824130, 0.00000850832984101149], [0.00057665418936913529, 0.99884669160316319481, 0.00057665420746776097], [0.00076537930777502981, 0.99846924137237402785, 0.00076537931985049218], [0.00057497074804194193, 0.99885005849785890586, 0.00057497075409883216], [0.00000513886221383076, 0.99998972227553140080, 0.00000513886225445101], [0.00008755536404365867, 0.99982488927189328010, 0.00008755536406414409], [0.00000297950103348627, 0.99999404099793309797, 0.00000297950103384004], [0.00022679493039349830, 0.99954641013921241566, 0.00022679493039373360], [0.00022583292150520363, 0.99954833415698840504, 0.00022583292150532157], [0.00000009260863165112, 0.99999981478273824997, 0.00000009260863165115], [0.00000009826277582890, 0.99999980347444794582, 0.00000009826277582893], [0.00132162994166935550, 0.99735674011666097805, 0.00132162994166935550], [0.00227781188437427761, 0.99544437623125237025, 0.00227781188437427545], [0.00287004888062133024, 0.99425990223875770901, 0.00287004888062132764], [0.00309921102470255309, 0.99380157795059442805, 0.00309921102470255309], [0.00296563499378398781, 0.99406873001243212240, 0.00296563499378398260], [0.00246912454254019642, 0.99506175091491966267, 0.00246912454254019642], [0.00160895021483740703, 0.99678209957032515298, 0.00160895021483740703], [0.00038384827204154993, 0.99923230345591729229, 0.00038384827204154993]]; ind = 119; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // test calc_geno_prob with listeria data, chr 19 writeln("Test calc_geno_prob with listeria data, chr 19"); auto chr19_map = markers_by_chr_sorted[18][1]; auto pmap_stepped_chr19 = add_stepped_markers(chr19_map, 1.0, 0.0); rec_frac = recombination_fractions(pmap_stepped_chr19, GeneticMapFunc.Carter_Falconer); genoprobs = calc_geno_prob(f2, genotype_matrix, pmap_stepped_chr19, rec_frac, 0.001); /****************************** * in R: data(listeria) for(i in seq(along=listeria$geno)) { m <- listeria$geno[[i]]$map listeria$geno[[i]]$map <- round(m, ifelse(m < 10, 5, 4)) } listeria <- calc.genoprob(listeria, err=0.001, map="c-f", step=1) for(ind in c(1, 27, 120)) print(paste0("genoprobs_from_rqtl = [", paste(apply(listeria$geno[["19"]]$prob[ind,,], 1, function(a) paste0("[", paste(sprintf("%.20f", a), collapse=", "), "]")), collapse=", "), "];")) * ******************************/ // probs from R/qtl for ind'l 1 genoprobs_from_rqtl = [[0.00007985688594897228, 0.99984028617910125636, 0.00007985693494935986], [0.00309506433484527804, 0.99380986930326298268, 0.00309506636189124749], [0.00570712057830845710, 0.98858575483746391477, 0.00570712458422738267], [0.00792029063405797797, 0.98415941274545726269, 0.00792029662048491546], [0.00973818821064758797, 0.98052361560932632667, 0.00973819618002597781], [0.01116378160799983213, 0.97767242682841715151, 0.01116379156358248727], [0.01219939856410467462, 0.97560119092593988732, 0.01219941050995508418], [0.01284673005579609756, 0.97430652594741395944, 0.01284674399679014943], [0.01310683305981266700, 0.97378631793854697474, 0.01310684900164054041], [0.01298013227865027139, 0.97403971749353113196, 0.01298015022781884298], [0.01246642083402523145, 0.97506713836811431673, 0.01246644079786068428], [0.01156485992907981680, 0.97687025815518979677, 0.01156488191573065358], [0.01027397747877887083, 0.97945202102400186206, 0.01027400149721924803], [0.00859166570626111910, 0.98281664252744405097, 0.00859169176629446391], [0.00651517770122035569, 0.98696961648529624167, 0.00651520581348343127], [0.00404112293469711687, 0.99191772395463861933, 0.00404115311066430890], [0.00116546172295720995, 0.99766904430209668586, 0.00116549397494523270], [0.00002565445937128223, 0.99994865807524779822, 0.00002568746538197370], [0.00199691677597619872, 0.99600349077507954743, 0.00199959244894413980], [0.00477757276033847524, 0.99043800724551855907, 0.00478441999414322503], [0.00715782896343562097, 0.98567332048369815656, 0.00716885055286629880], [0.00914157447021257327, 0.98170165061591019295, 0.00915677491387682091], [0.01073205093795100672, 0.97851651262193872771, 0.01075143644011115028], [0.01193185789035507670, 0.97611270574618469453, 0.01195543636346044561], [0.01274295696315062669, 0.97448630500578226066, 0.01277073803106717684], [0.01316667510813022621, 0.97363465478180166723, 0.01319867011006863912], [0.01320370676087640437, 0.97355636448310323150, 0.01323992875602027566], [0.01285411497570280136, 0.97425130627575817766, 0.01289457874853898629], [0.01211733152966697202, 0.97572061487431360760, 0.01216205359602006396], [0.01099215599582490689, 0.97796668939457664926, 0.01104115460959836058], [0.00947675378421487455, 0.98099319727094358434, 0.00953004894484159835], [0.00756865314737178736, 0.98480508024465085448, 0.00762626660797716301], [0.00526474114548347496, 0.98940856243275276949, 0.00532669642176418403], [0.00256125856460096913, 0.99481116049097573217, 0.00262758094442324362], [0.00001769779733962415, 0.99989464625498236661, 0.00008765594767863333], [0.00038833732318512563, 0.99766408356325508855, 0.00194757911355950041], [0.00234161290541819644, 0.98495863762378854656, 0.01269974947079359311], [0.00389684960942390194, 0.97304504163020577590, 0.02305810876037012874], [0.00506197725593077619, 0.96190384283002439147, 0.03303417991404490606], [0.00584429347694099145, 0.95151684965599969690, 0.04263885686705991968], [0.00625047783356429652, 0.94186710202257872826, 0.05188242014385630041], [0.00628660492750730653, 0.93293884363314893982, 0.06077455143934452214], [0.00595815652852659580, 0.92471749625283317098, 0.06932434721863989235], [0.00527003273854935537, 0.91718963590488111759, 0.07754033135656965281], [0.00422656221159377690, 0.91034297095172289627, 0.08543046683668345520], [0.00283151144708228752, 0.90416632202495106352, 0.09300216652796691741], [0.00108809317263019404, 0.89864960377142555359, 0.10026230305594403813], [0.00010377221271818312, 0.89617590117545808948, 0.10372032661182394031]]; ind = 0; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 27 genoprobs_from_rqtl = [[0.00007982113970065615, 0.99983965943298969137, 0.00008051942730967115], [0.00309358836227369453, 0.99378393654305474669, 0.00312247509467102622], [0.00570421965633514071, 0.98853447371964187074, 0.00576130662402303800], [0.00791599497950557646, 0.98408269953720906020, 0.00800130548328567212], [0.00973254304384524489, 0.98042134505182565452, 0.00984611190432908324], [0.01115684724793996468, 0.97754443193229856313, 0.01129872081976147045], [0.01219125055531529445, 0.97544726269863346602, 0.01236148674605105219], [0.01283745932714727006, 0.97412641305190039720, 0.01303612762095230845], [0.01309654611553114946, 0.97357972628296918227, 0.01332372760149970990], [0.01296895142187126822, 0.97380630975099413682, 0.01322473882713451170], [0.01245448442326684176, 0.97480653342589274057, 0.01273898215084056512], [0.01155232266808195983, 0.97658203049243841321, 0.01186564683948010054], [0.01026101074020601377, 0.97913570001695671152, 0.01060328924283721226], [0.00857845788982649834, 0.98247171168098079708, 0.00894983042919302030], [0.00650193462684835709, 0.98659551258958311237, 0.00690255278356871876], [0.00402806827140060001, 0.99151383616552013489, 0.00445809556307922693], [0.00115283745416807563, 0.99723471314369516172, 0.00161244940213715730], [0.00001324906528099612, 0.99950314460473521638, 0.00048360632998410122], [0.00099277486973804794, 0.95988435843565089733, 0.03912286669461199906], [0.00222943738684370802, 0.89796355993727416944, 0.09980700267588185626], [0.00312128477538778804, 0.83669256412092640751, 0.16018615110368533694], [0.00370619901063546330, 0.77597132650660871622, 0.22032247448275563140], [0.00402160015659525170, 0.71570070027026566617, 0.28027769957313952709], [0.00410452234990563505, 0.65578227435490810127, 0.34011320329518601735], [0.00399168917566933897, 0.59611821278312093764, 0.39989009804120950742], [0.00371958856439451747, 0.53661109490856173654, 0.45966931652704406952], [0.00332454733843149958, 0.47716375634562285812, 0.51951169631594518172], [0.00284280553573541860, 0.41767913031752956776, 0.57947806414673497244], [0.00231059063843799687, 0.35806008916380283047, 0.63962932019775908810], [0.00176419183357534766, 0.29820928574831856439, 0.70002652241810592315], [0.00124003443339253897, 0.23802899450900003031, 0.76073097105760756342], [0.00077475458293033270, 0.17742095188960935181, 0.82180429352746031668], [0.00040527438309510296, 0.11628619589309154014, 0.88330852972381335153], [0.00016887755812040550, 0.05452490449449045457, 0.94530621794738922681], [0.00010075332123046163, 0.00284904240074571090, 0.99705020427802304450], [0.00010082803540370832, 0.00596142434981001765, 0.99393774761478592694], [0.00012177162091641632, 0.02407086934020438371, 0.97580735903887927396], [0.00016981668151678204, 0.04172787239088514982, 0.95810231092759823301], [0.00023417094729600167, 0.05896126420167991516, 0.94080456485102426090], [0.00030430819425308935, 0.07579918379170108578, 0.92389650801404554770], [0.00036994671756348304, 0.09226912444528637125, 0.90736092883715002699], [0.00042102830005297210, 0.10839797860357058834, 0.89118099309637632821], [0.00044769763980428111, 0.12421208177499035163, 0.87534022058520521981], [0.00044028220161177129, 0.13973725553641630492, 0.85982246226197189820], [0.00038927245772956933, 0.15499884969512889299, 0.84461187784714153448], [0.00028530248403114977, 0.17002178368047998758, 0.82969291383548893215], [0.00011913087831515256, 0.18483058723282314029, 0.81505028188886197160], [0.00001180873179606715, 0.19204202457343882982, 0.80794616669476471138]]; ind = 26; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // probs from R/qtl for ind'l 120 genoprobs_from_rqtl = [[0.24999999999999988898, 0.50000000000000011102, 0.25000000000000011102], [0.24999999999999977796, 0.50000000000000022204, 0.25000000000000000000], [0.24999999999999977796, 0.50000000000000033307, 0.24999999999999994449], [0.24999999999999972244, 0.50000000000000033307, 0.24999999999999994449], [0.24999999999999972244, 0.50000000000000033307, 0.24999999999999994449], [0.24999999999999961142, 0.50000000000000033307, 0.24999999999999994449], [0.24999999999999961142, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999950040, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999955591, 0.50000000000000044409, 0.25000000000000000000], [0.24999999999999961142, 0.50000000000000033307, 0.25000000000000005551], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999994449], [0.24999999999999972244, 0.50000000000000033307, 0.24999999999999994449], [0.24999999999999961142, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999961142, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999961142, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999961142, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999961142, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999972244, 0.50000000000000044409, 0.24999999999999983347], [0.24999999999999972244, 0.50000000000000044409, 0.24999999999999983347], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999983347], [0.24999999999999966693, 0.50000000000000066613, 0.24999999999999966693], [0.24999999999999972244, 0.50000000000000066613, 0.24999999999999972244], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999972244, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999983347, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999983347, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999983347, 0.50000000000000055511, 0.24999999999999961142], [0.24999999999999977796, 0.50000000000000066613, 0.24999999999999961142], [0.24999999999999983347, 0.50000000000000055511, 0.24999999999999977796]]; ind = 119; assert(genoprobs.length == genoprobs_from_rqtl.length); foreach(i; 0..genoprobs.length) { assert(genoprobs[i][ind].length == genoprobs_from_rqtl[i].length); foreach(j; 0..1) { assert(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j]) < 1e-10, to!string(i) ~ " " ~ to!string(genoprobs[i][ind][j]) ~ " " ~ to!string(genoprobs_from_rqtl[i][j]) ~ " " ~ to!string(log10(abs(genoprobs[i][ind][j] - genoprobs_from_rqtl[i][j])))); } } // test estmap with listeria data, chr 13 writeln("Test estmap with listeria data, chr 13"); chr13_map = markers_by_chr_sorted[12][1]; rec_frac = recombination_fractions(chr13_map, GeneticMapFunc.Kosambi); auto rec_frac_rev = estmap(f2, genotype_matrix, chr13_map, rec_frac, 0.002, 100, 1e-6, false); /****************************** * in R: data(listeria) for(i in seq(along=listeria$geno)) { m <- listeria$geno[[i]]$map listeria$geno[[i]]$map <- round(m, ifelse(m < 10, 5, 4)) } listeria <- listeria["13",] rf <- mf.k(diff(unlist(pull.map(listeria)))) map <- est.map(listeria, err=0.002, map.function="haldane", tol=1e-7) rfrev <- mf.h(diff(unlist(map))) paste0("auto rec_frac_rqtl = [", paste(sprintf("%.20f", rf), collapse=", "), "];") paste0("auto rec_frac_rev_rqtl = [", paste(sprintf("%.20f", rfrev), collapse=", "), "];") * ******************************/ auto rec_frac_rqtl = [0.00286746856284019434, 0.09944808740648146406, 0.02681325235664829693, 0.00000999999999867889, 0.05831343140397290958, 0.02102559363219945812, 0.03855033870325273726, 0.01283917692671171160, 0.02231716200601452718, 0.00000999999999864336, 0.07535555806962258851]; auto rec_frac_rev_rqtl = [0.01183048207281117703, 0.10662947366989505849, 0.03230106006563365773, 0.00000000010000000827, 0.05675828936512006262, 0.02110557519841715912, 0.03833376626430756717, 0.01427505015825597523, 0.02370366835248577386, 0.00000000010000000827, 0.08059502076315694374]; assert(rec_frac_rqtl.length == rec_frac.length); foreach(i; 0..rec_frac.length) { assert(abs(rec_frac[i] - rec_frac_rqtl[i]) < 1e-10); } assert(rec_frac_rev_rqtl.length == rec_frac_rev.length); foreach(i; 0..rec_frac_rev.length) { assert(abs(rec_frac_rev[i] - rec_frac_rev_rqtl[i]) < 1e-7); } // test estmap with listeria data, chr 7 writeln("Test estmap with listeria data, chr 7"); auto chr7_map = markers_by_chr_sorted[6][1]; rec_frac = recombination_fractions(chr7_map, GeneticMapFunc.Haldane); rec_frac_rev = estmap(f2, genotype_matrix, chr7_map, rec_frac, 0.01, 100, 1e-6, false); /****************************** * in R: data(listeria) for(i in seq(along=listeria$geno)) { m <- listeria$geno[[i]]$map listeria$geno[[i]]$map <- round(m, ifelse(m < 10, 5, 4)) } listeria <- listeria["7",] # pull out chr 7 rf <- mf.h(diff(unlist(pull.map(listeria)))) map <- est.map(listeria, err=0.01, map.function="kosambi", tol=1e-7) rfrev <- mf.k(diff(unlist(map))) paste0("rec_frac_rqtl = [", paste(sprintf("%.20f", rf), collapse=", "), "];") paste0("rec_frac_rev_rqtl = [", paste(sprintf("%.20f", rfrev), collapse=", "), "];") * ******************************/ rec_frac_rqtl = [0.15661986512953757211, 0.13781102774534148558, 0.05760192522590779074, 0.15864052585018517672, 0.10645079739692664411]; rec_frac_rev_rqtl = [0.17951889354759650863, 0.15585635626654303909, 0.06089437521095571182, 0.18207986319588378987, 0.11747108802069636257]; assert(rec_frac_rqtl.length == rec_frac.length); foreach(i; 0..rec_frac.length) { assert(abs(rec_frac[i] - rec_frac_rqtl[i]) < 1e-10); } assert(rec_frac_rev_rqtl.length == rec_frac_rev.length); foreach(i; 0..rec_frac_rev.length) { assert(abs(rec_frac_rev[i] - rec_frac_rev_rqtl[i]) < 1e-7); } // X chromosome... writeln("\nCheck for X chromosome:"); foreach(chr; markers_by_chr_sorted) { writeln("chr ", chr[1][0].chromosome.name, " -- is X?:", is_X_chr(chr[1][0].chromosome)); writeln("typeid(chr[1][0].chromosome): ", typeid(chr[1][0].chromosome)); } writeln(); }
D
/** * Copyright: Copyright (c) 2011 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Jan 29, 2012 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module dstep.translator.objc.ObjcInterface; import clang.c.Index; import clang.Cursor; import clang.Type; import clang.Util; import clang.Visitor; import dstep.translator.Translator; import dstep.translator.Declaration; import dstep.translator.Output; import dstep.translator.Type; import std.string; import std.exception : assumeUnique; class ObjcInterface (Data) : Declaration { ClassData currentClass; this (Cursor cursor, Cursor parent, Translator translator) { super(cursor, parent, translator); } override void translate (Output output) { auto outCursor = cursor.objc; writeClass(output, spelling, outCursor.superClass.spelling, collectInterfaces(outCursor.objc), { foreach (cursor, parent ; outCursor.declarations) { with (CXCursorKind) switch (cursor.kind) { case objCInstanceMethodDecl: translateMethod(cursor.func); break; case objCClassMethodDecl: translateMethod(cursor.func, true); break; case objCPropertyDecl: translateProperty(cursor); break; case objCIvarDecl: translateInstanceVariable(cursor); break; default: break; } } }); output.output(currentClass.data()); } protected string[] collectInterfaces (ObjcCursor objcCursor) { string[] interfaces; foreach (cursor, parent ; objcCursor.protocols) interfaces ~= translateIdentifier(cursor.spelling); return interfaces; } private: void writeClass ( Output output, string name, string superClassName, string[] interfaces, void delegate () dg) { currentClass = new Data(translator.context); currentClass.name = translateIdentifier(name); currentClass.interfaces = interfaces; if (superClassName.length) currentClass.superclass ~= translateIdentifier(superClassName); dg(); } void translateMethod ( FunctionCursor func, bool classMethod = false, string name = null) { import std.format : format; auto cls = currentClass; if (cls.propertyList.contains(func.spelling)) return; name = cls.getMethodName(func, name, false); if (isGetter(func, name)) translateGetter(func, func.resultType, name, cls, classMethod); else if (isSetter(func, name)) { auto param = func.parameters.first; name = toDSetterName(name); translateSetter(param, param.type, name, cls, classMethod, param.spelling); } else { Output output = new Output(); output.adaptiveSourceNode(translateFunction(translator.context, func, name, classMethod)); output.append(" "); writeSelector(output, func.spelling); output.append(";"); cls.members ~= output; } } void translateProperty (Cursor cursor) { auto cls = currentClass; auto name = cls.getMethodName(cursor.func, "", false); translateGetter(cursor, cursor.type, name, cls, false); translateSetter(cursor, cursor.type, name, cls, false); } void translateInstanceVariable (Cursor cursor) { Output output = new Output(); translator.variable(output, cursor); currentClass.instanceVariables ~= output; } void translateGetter (Cursor cursor, Type type, string name, ClassData cls, bool classMethod) { import std.format : format; auto dName = name == "class" ? name : translateIdentifier(name); Output output = new Output(); output.singleLine( "@property %s%s %s () ", classMethod ? "static " : "", translateType(translator.context, cursor, type).makeString(), dName); writeSelector(output, name); output.append(";"); cls.members ~= output; cls.propertyList.add(name); } void translateSetter (Cursor cursor, Type type, string name, ClassData cls, bool classMethod, string parameterName = "") { import std.format : format; auto selector = toObjcSetterName(name) ~ ':'; Output output = new Output(); output.singleLine( "@property %svoid %s (%s", classMethod ? "static " : "", translateIdentifier(name), translateType(translator.context, cursor, type).makeString()); if (parameterName.length) output.append(" %s", parameterName); output.append(") "); writeSelector(output, selector); output.append(";"); cls.members ~= output; cls.propertyList.add(selector); } string toDSetterName (string name) { assert(isSetter(name)); name = name[3 .. $]; auto firstLetter = name[0 .. 1]; auto r = firstLetter.toLower ~ name[1 .. $]; return r.assumeUnique; } string toObjcSetterName (string name) { auto r = "set" ~ name[0 .. 1].toUpper ~ name[1 .. $]; return r.assumeUnique; } bool isGetter (FunctionCursor cursor, string name) { return cursor.resultType.kind != CXTypeKind.void_ && cursor.parameters.isEmpty; } bool isSetter (string name) { import std.ascii; if (name.length > 3 && name.startsWith("set")) { auto firstLetter = name[3 .. $][0]; return firstLetter.isUpper; } return false; } bool isSetter (FunctionCursor cursor, string name) { return isSetter(name) && cursor.resultType.kind == CXTypeKind.void_ && cursor.parameters.length == 1; } void writeSelector (Output output, string selector) { import std.format : format; output.append(`@selector("%s")`, selector); } }
D
/******************************************************************************* @file File.d Copyright (c) 2004 Kris Bell This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for damages of any kind arising from the use of this software. Permission is hereby granted to anyone to use this software for any purpose, including commercial applications, and to alter it and/or redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment within documentation of said product would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any distribution of the source. 4. Derivative works are permitted, but they must carry this notice in full and credit the original source. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @version Initial version; March 2005 @author Kris *******************************************************************************/ module mango.io.File; public import mango.io.FilePath; private import mango.io.FileProxy, mango.io.Exception, mango.io.FileConduit; /******************************************************************************* A wrapper atop of FileConduit to expose a simpler API. This one returns the entire file content as a void[], and sets the content to reflect a given void[]. Method read() returns the current content of the file, whilst write() sets the file content, and file length, to the provided array. Method append() adds content to the tail of the file. Methods to inspect the file system, check the status of a file or directory, and other facilities are made available via the FileProxy superclass. *******************************************************************************/ class File : FileProxy { /*********************************************************************** Construct a File from a text string ***********************************************************************/ this (char[] path) { super (path); } /*********************************************************************** Construct a File from the provided FilePath ***********************************************************************/ this (FilePath path) { super (path); } /*********************************************************************** Return the content of the file. ***********************************************************************/ void[] read () { ubyte[] content; auto conduit = new FileConduit (this); try { content = new ubyte[cast(int) conduit.length]; // read the entire file into memory and return it if (conduit.read (content) != content.length) throw new IOException ("eof whilst reading"); } finally { conduit.close (); } return content; } /*********************************************************************** Set the file content and length to reflect the given array. ***********************************************************************/ File write (void[] content) { return write (content, FileStyle.WriteTruncate); } /*********************************************************************** Append content to the file. ***********************************************************************/ File append (void[] content) { return write (content, FileStyle.WriteAppending); } /*********************************************************************** Set the file content and length to reflect the given array. ***********************************************************************/ private File write (void[] content, FileStyle.Bits style) { auto conduit = new FileConduit (this, style); try { conduit.flush (content); } finally { conduit.close (); } return this; } }
D
module android.java.java.security.KeyStore_Entry_Attribute_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.java.lang.Class_d_interface; @JavaName("KeyStore$Entry$Attribute") final class KeyStore_Entry_Attribute : IJavaObject { static immutable string[] _d_canCastTo = [ ]; @Import string getName(); @Import string getValue(); @Import import0.Class getClass(); @Import int hashCode(); @Import bool equals(IJavaObject); @Import @JavaName("toString") string toString_(); override string toString() { return arsd.jni.javaObjectToString(this); } @Import void notify(); @Import void notifyAll(); @Import void wait(long); @Import void wait(long, int); @Import void wait(); mixin IJavaObjectImplementation!(false); public static immutable string _javaParameterString = "Ljava/security/KeyStore$Entry$Attribute;"; }
D
import core.stdc.config; import core.stdc.stdarg: va_list; static import core.simd; static import std.conv; struct Int128 { long lower; long upper; } struct UInt128 { ulong lower; ulong upper; } struct __locale_data { int dummy; } alias _Bool = bool; struct dpp { static struct Opaque(int N) { void[N] bytes; } static bool isEmpty(T)() { return T.tupleof.length == 0; } static struct Move(T) { T* ptr; } static auto move(T)(ref T value) { return Move!T(&value); } mixin template EnumD(string name, T, string prefix) if(is(T == enum)) { private static string _memberMixinStr(string member) { import std.conv: text; import std.array: replace; return text(` `, member.replace(prefix, ""), ` = `, T.stringof, `.`, member, `,`); } private static string _enumMixinStr() { import std.array: join; string[] ret; ret ~= "enum " ~ name ~ "{"; static foreach(member; __traits(allMembers, T)) { ret ~= _memberMixinStr(member); } ret ~= "}"; return ret.join("\n"); } mixin(_enumMixinStr()); } } extern(C) { alias size_t = c_ulong; alias fsfilcnt_t = c_ulong; alias fsblkcnt_t = c_ulong; alias blkcnt_t = c_long; alias blksize_t = c_long; alias register_t = c_long; alias u_int64_t = c_ulong; alias u_int32_t = uint; alias u_int16_t = ushort; alias u_int8_t = ubyte; alias key_t = int; alias caddr_t = char*; alias daddr_t = int; alias ssize_t = c_long; alias id_t = uint; alias pid_t = int; alias off_t = c_long; alias uid_t = uint; alias nlink_t = c_ulong; alias mode_t = uint; alias gid_t = uint; alias dev_t = c_ulong; alias ino_t = c_ulong; alias loff_t = c_long; alias fsid_t = __fsid_t; alias u_quad_t = c_ulong; alias quad_t = c_long; alias u_long = c_ulong; alias u_int = uint; alias u_short = ushort; alias u_char = ubyte; int isfdtype(int, int) @nogc nothrow; int sockatmark(int) @nogc nothrow; int shutdown(int, int) @nogc nothrow; int accept(int, sockaddr*, uint*) @nogc nothrow; int listen(int, int) @nogc nothrow; int setsockopt(int, int, int, const(void)*, uint) @nogc nothrow; int getsockopt(int, int, int, void*, uint*) @nogc nothrow; c_long recvmsg(int, msghdr*, int) @nogc nothrow; c_long sendmsg(int, const(msghdr)*, int) @nogc nothrow; c_long recvfrom(int, void*, c_ulong, int, sockaddr*, uint*) @nogc nothrow; c_long sendto(int, const(void)*, c_ulong, int, const(sockaddr)*, uint) @nogc nothrow; c_long recv(int, void*, c_ulong, int) @nogc nothrow; c_long send(int, const(void)*, c_ulong, int) @nogc nothrow; int getpeername(int, sockaddr*, uint*) @nogc nothrow; int connect(int, const(sockaddr)*, uint) @nogc nothrow; int getsockname(int, sockaddr*, uint*) @nogc nothrow; int bind(int, const(sockaddr)*, uint) @nogc nothrow; int socketpair(int, int, int, int*) @nogc nothrow; int socket(int, int, int) @nogc nothrow; enum _Anonymous_0 { SHUT_RD = 0, SHUT_WR = 1, SHUT_RDWR = 2, } enum SHUT_RD = _Anonymous_0.SHUT_RD; enum SHUT_WR = _Anonymous_0.SHUT_WR; enum SHUT_RDWR = _Anonymous_0.SHUT_RDWR; int pselect(int, fd_set*, fd_set*, fd_set*, const(timespec)*, const(__sigset_t)*) @nogc nothrow; int select(int, fd_set*, fd_set*, fd_set*, timeval*) @nogc nothrow; alias fd_mask = c_long; struct fd_set { c_long[16] __fds_bits; } alias __fd_mask = c_long; alias suseconds_t = c_long; int strncasecmp_l(const(char)*, const(char)*, c_ulong, __locale_struct*) @nogc nothrow; int strcasecmp_l(const(char)*, const(char)*, __locale_struct*) @nogc nothrow; int strncasecmp(const(char)*, const(char)*, c_ulong) @nogc nothrow; int strcasecmp(const(char)*, const(char)*) @nogc nothrow; int ffsll(long) @nogc nothrow; int ffsl(c_long) @nogc nothrow; int ffs(int) @nogc nothrow; char* rindex(const(char)*, int) @nogc nothrow; char* index(const(char)*, int) @nogc nothrow; void bzero(void*, c_ulong) @nogc nothrow; void bcopy(const(void)*, void*, c_ulong) @nogc nothrow; int bcmp(const(void)*, const(void)*, c_ulong) @nogc nothrow; char* stpncpy(char*, const(char)*, c_ulong) @nogc nothrow; char* __stpncpy(char*, const(char)*, c_ulong) @nogc nothrow; char* stpcpy(char*, const(char)*) @nogc nothrow; char* __stpcpy(char*, const(char)*) @nogc nothrow; char* strsignal(int) @nogc nothrow; char* strsep(char**, const(char)*) @nogc nothrow; void explicit_bzero(void*, c_ulong) @nogc nothrow; char* strerror_l(int, __locale_struct*) @nogc nothrow; int strerror_r(int, char*, c_ulong) @nogc nothrow; char* strerror(int) @nogc nothrow; c_ulong strnlen(const(char)*, c_ulong) @nogc nothrow; c_ulong strlen(const(char)*) @nogc nothrow; char* strtok_r(char*, const(char)*, char**) @nogc nothrow; char* __strtok_r(char*, const(char)*, char**) @nogc nothrow; char* strtok(char*, const(char)*) @nogc nothrow; alias SYSSOCKET = int; alias UDPSOCKET = int; alias UDTSOCKET = int; enum UDT_UDTSTATUS { UDT_INIT = 1, UDT_OPENED = 2, UDT_LISTENING = 3, UDT_CONNECTING = 4, UDT_CONNECTED = 5, UDT_BROKEN = 6, UDT_CLOSING = 7, UDT_CLOSED = 8, UDT_NONEXIST = 9, } enum UDT_INIT = UDT_UDTSTATUS.UDT_INIT; enum UDT_OPENED = UDT_UDTSTATUS.UDT_OPENED; enum UDT_LISTENING = UDT_UDTSTATUS.UDT_LISTENING; enum UDT_CONNECTING = UDT_UDTSTATUS.UDT_CONNECTING; enum UDT_CONNECTED = UDT_UDTSTATUS.UDT_CONNECTED; enum UDT_BROKEN = UDT_UDTSTATUS.UDT_BROKEN; enum UDT_CLOSING = UDT_UDTSTATUS.UDT_CLOSING; enum UDT_CLOSED = UDT_UDTSTATUS.UDT_CLOSED; enum UDT_NONEXIST = UDT_UDTSTATUS.UDT_NONEXIST; enum UDT_UDTOpt { UDT_UDT_MSS = 0, UDT_UDT_SNDSYN = 1, UDT_UDT_RCVSYN = 2, UDT_UDT_CC = 3, UDT_UDT_FC = 4, UDT_UDT_SNDBUF = 5, UDT_UDT_RCVBUF = 6, UDT_UDT_LINGER = 7, UDT_UDP_SNDBUF = 8, UDT_UDP_RCVBUF = 9, UDT_UDT_MAXMSG = 10, UDT_UDT_MSGTTL = 11, UDT_UDT_RENDEZVOUS = 12, UDT_UDT_SNDTIMEO = 13, UDT_UDT_RCVTIMEO = 14, UDT_UDT_REUSEADDR = 15, UDT_UDT_MAXBW = 16, UDT_UDT_STATE = 17, UDT_UDT_EVENT = 18, UDT_UDT_SNDDATA = 19, UDT_UDT_RCVDATA = 20, } enum UDT_UDT_MSS = UDT_UDTOpt.UDT_UDT_MSS; enum UDT_UDT_SNDSYN = UDT_UDTOpt.UDT_UDT_SNDSYN; enum UDT_UDT_RCVSYN = UDT_UDTOpt.UDT_UDT_RCVSYN; enum UDT_UDT_CC = UDT_UDTOpt.UDT_UDT_CC; enum UDT_UDT_FC = UDT_UDTOpt.UDT_UDT_FC; enum UDT_UDT_SNDBUF = UDT_UDTOpt.UDT_UDT_SNDBUF; enum UDT_UDT_RCVBUF = UDT_UDTOpt.UDT_UDT_RCVBUF; enum UDT_UDT_LINGER = UDT_UDTOpt.UDT_UDT_LINGER; enum UDT_UDP_SNDBUF = UDT_UDTOpt.UDT_UDP_SNDBUF; enum UDT_UDP_RCVBUF = UDT_UDTOpt.UDT_UDP_RCVBUF; enum UDT_UDT_MAXMSG = UDT_UDTOpt.UDT_UDT_MAXMSG; enum UDT_UDT_MSGTTL = UDT_UDTOpt.UDT_UDT_MSGTTL; enum UDT_UDT_RENDEZVOUS = UDT_UDTOpt.UDT_UDT_RENDEZVOUS; enum UDT_UDT_SNDTIMEO = UDT_UDTOpt.UDT_UDT_SNDTIMEO; enum UDT_UDT_RCVTIMEO = UDT_UDTOpt.UDT_UDT_RCVTIMEO; enum UDT_UDT_REUSEADDR = UDT_UDTOpt.UDT_UDT_REUSEADDR; enum UDT_UDT_MAXBW = UDT_UDTOpt.UDT_UDT_MAXBW; enum UDT_UDT_STATE = UDT_UDTOpt.UDT_UDT_STATE; enum UDT_UDT_EVENT = UDT_UDTOpt.UDT_UDT_EVENT; enum UDT_UDT_SNDDATA = UDT_UDTOpt.UDT_UDT_SNDDATA; enum UDT_UDT_RCVDATA = UDT_UDTOpt.UDT_UDT_RCVDATA; enum UDT_ERRNO { UDT_SUCCESS = 0, UDT_ECONNSETUP = 1000, UDT_ENOSERVER = 1001, UDT_ECONNREJ = 1002, UDT_ESOCKFAIL = 1003, UDT_ESECFAIL = 1004, UDT_ECONNFAIL = 2000, UDT_ECONNLOST = 2001, UDT_ENOCONN = 2002, UDT_ERESOURCE = 3000, UDT_ETHREAD = 3001, UDT_ENOBUF = 3002, UDT_EFILE = 4000, UDT_EINVRDOFF = 4001, UDT_ERDPERM = 4002, UDT_EINVWROFF = 4003, UDT_EWRPERM = 4004, UDT_EINVOP = 5000, UDT_EBOUNDSOCK = 5001, UDT_ECONNSOCK = 5002, UDT_EINVPARAM = 5003, UDT_EINVSOCK = 5004, UDT_EUNBOUNDSOCK = 5005, UDT_ENOLISTEN = 5006, UDT_ERDVNOSERV = 5007, UDT_ERDVUNBOUND = 5008, UDT_ESTREAMILL = 5009, UDT_EDGRAMILL = 5010, UDT_EDUPLISTEN = 5011, UDT_ELARGEMSG = 5012, UDT_EINVPOLLID = 5013, UDT_EASYNCFAIL = 6000, UDT_EASYNCSND = 6001, UDT_EASYNCRCV = 6002, UDT_ETIMEOUT = 6003, UDT_EPEERERR = 7000, UDT_EUNKNOWN = -1, } enum UDT_SUCCESS = UDT_ERRNO.UDT_SUCCESS; enum UDT_ECONNSETUP = UDT_ERRNO.UDT_ECONNSETUP; enum UDT_ENOSERVER = UDT_ERRNO.UDT_ENOSERVER; enum UDT_ECONNREJ = UDT_ERRNO.UDT_ECONNREJ; enum UDT_ESOCKFAIL = UDT_ERRNO.UDT_ESOCKFAIL; enum UDT_ESECFAIL = UDT_ERRNO.UDT_ESECFAIL; enum UDT_ECONNFAIL = UDT_ERRNO.UDT_ECONNFAIL; enum UDT_ECONNLOST = UDT_ERRNO.UDT_ECONNLOST; enum UDT_ENOCONN = UDT_ERRNO.UDT_ENOCONN; enum UDT_ERESOURCE = UDT_ERRNO.UDT_ERESOURCE; enum UDT_ETHREAD = UDT_ERRNO.UDT_ETHREAD; enum UDT_ENOBUF = UDT_ERRNO.UDT_ENOBUF; enum UDT_EFILE = UDT_ERRNO.UDT_EFILE; enum UDT_EINVRDOFF = UDT_ERRNO.UDT_EINVRDOFF; enum UDT_ERDPERM = UDT_ERRNO.UDT_ERDPERM; enum UDT_EINVWROFF = UDT_ERRNO.UDT_EINVWROFF; enum UDT_EWRPERM = UDT_ERRNO.UDT_EWRPERM; enum UDT_EINVOP = UDT_ERRNO.UDT_EINVOP; enum UDT_EBOUNDSOCK = UDT_ERRNO.UDT_EBOUNDSOCK; enum UDT_ECONNSOCK = UDT_ERRNO.UDT_ECONNSOCK; enum UDT_EINVPARAM = UDT_ERRNO.UDT_EINVPARAM; enum UDT_EINVSOCK = UDT_ERRNO.UDT_EINVSOCK; enum UDT_EUNBOUNDSOCK = UDT_ERRNO.UDT_EUNBOUNDSOCK; enum UDT_ENOLISTEN = UDT_ERRNO.UDT_ENOLISTEN; enum UDT_ERDVNOSERV = UDT_ERRNO.UDT_ERDVNOSERV; enum UDT_ERDVUNBOUND = UDT_ERRNO.UDT_ERDVUNBOUND; enum UDT_ESTREAMILL = UDT_ERRNO.UDT_ESTREAMILL; enum UDT_EDGRAMILL = UDT_ERRNO.UDT_EDGRAMILL; enum UDT_EDUPLISTEN = UDT_ERRNO.UDT_EDUPLISTEN; enum UDT_ELARGEMSG = UDT_ERRNO.UDT_ELARGEMSG; enum UDT_EINVPOLLID = UDT_ERRNO.UDT_EINVPOLLID; enum UDT_EASYNCFAIL = UDT_ERRNO.UDT_EASYNCFAIL; enum UDT_EASYNCSND = UDT_ERRNO.UDT_EASYNCSND; enum UDT_EASYNCRCV = UDT_ERRNO.UDT_EASYNCRCV; enum UDT_ETIMEOUT = UDT_ERRNO.UDT_ETIMEOUT; enum UDT_EPEERERR = UDT_ERRNO.UDT_EPEERERR; enum UDT_EUNKNOWN = UDT_ERRNO.UDT_EUNKNOWN; alias UDT_TRACEINFO = UDT_CPerfMon_; struct UDT_CPerfMon_ { c_long msTimeStamp; c_long pktSentTotal; c_long pktRecvTotal; int pktSndLossTotal; int pktRcvLossTotal; int pktRetransTotal; int pktSentACKTotal; int pktRecvACKTotal; int pktSentNAKTotal; int pktRecvNAKTotal; c_long usSndDurationTotal; c_long pktSent; c_long pktRecv; int pktSndLoss; int pktRcvLoss; int pktRetrans; int pktSentACK; int pktRecvACK; int pktSentNAK; int pktRecvNAK; double mbpsSendRate; double mbpsRecvRate; c_long usSndDuration; double usPktSndPeriod; int pktFlowWindow; int pktCongestionWindow; int pktFlightSize; double msRTT; double mbpsBandwidth; int byteAvailSndBuf; int byteAvailRcvBuf; } extern __gshared const(int) UDT_INVALID_SOCK; extern __gshared const(int) UDT_ERROR; int udt_startup() @nogc nothrow; int udt_cleanup() @nogc nothrow; int udt_socket(int, int, int) @nogc nothrow; int udt_bind(int, const(sockaddr)*, int) @nogc nothrow; int udt_bind2(int, int) @nogc nothrow; int udt_listen(int, int) @nogc nothrow; int udt_accept(int, sockaddr*, int*) @nogc nothrow; int udt_connect(int, const(sockaddr)*, int) @nogc nothrow; int udt_close(int) @nogc nothrow; int udt_getpeername(int, sockaddr*, int*) @nogc nothrow; int udt_getsockname(int, sockaddr*, int*) @nogc nothrow; int udt_getsockopt(int, int, int, void*, int*) @nogc nothrow; int udt_setsockopt(int, int, int, const(void)*, int) @nogc nothrow; int udt_send(int, const(char)*, int, int) @nogc nothrow; int udt_recv(int, char*, int, int) @nogc nothrow; int udt_sendmsg(int, const(char)*, int, int, int) @nogc nothrow; int udt_recvmsg(int, char*, int) @nogc nothrow; c_long udt_sendfile2(int, const(char)*, c_long*, c_long, int) @nogc nothrow; c_long udt_recvfile2(int, const(char)*, c_long*, c_long, int) @nogc nothrow; const(char)* udt_getlasterror_desc() @nogc nothrow; int udt_getlasterror_code() @nogc nothrow; void udt_clearlasterror() @nogc nothrow; int udt_perfmon(int, UDT_CPerfMon_*, int) @nogc nothrow; int udt_getsockstate(int) @nogc nothrow; enum UDT_EPOLLOpt { UDT_UDT_EPOLL_IN = 1, UDT_UDT_EPOLL_OUT = 4, UDT_UDT_EPOLL_ERR = 8, } enum UDT_UDT_EPOLL_IN = UDT_EPOLLOpt.UDT_UDT_EPOLL_IN; enum UDT_UDT_EPOLL_OUT = UDT_EPOLLOpt.UDT_UDT_EPOLL_OUT; enum UDT_UDT_EPOLL_ERR = UDT_EPOLLOpt.UDT_UDT_EPOLL_ERR; int udt_epoll_create() @nogc nothrow; int udt_epoll_add_usock(int, int, const(int)*) @nogc nothrow; int udt_epoll_add_ssock(int, int, const(int)*) @nogc nothrow; int udt_epoll_remove_usock(int, int) @nogc nothrow; int udt_epoll_remove_ssock(int, int) @nogc nothrow; int udt_epoll_wait2(int, int*, int*, int*, int*, c_long, int*, int*, int*, int*) @nogc nothrow; int udt_epoll_release(int) @nogc nothrow; uint inet_addr(const(char)*) @nogc nothrow; uint inet_lnaof(in_addr) @nogc nothrow; in_addr inet_makeaddr(uint, uint) @nogc nothrow; uint inet_netof(in_addr) @nogc nothrow; uint inet_network(const(char)*) @nogc nothrow; char* inet_ntoa(in_addr) @nogc nothrow; int inet_pton(int, const(char)*, void*) @nogc nothrow; const(char)* inet_ntop(int, const(void)*, char*, uint) @nogc nothrow; int inet_aton(const(char)*, in_addr*) @nogc nothrow; char* inet_neta(uint, char*, c_ulong) @nogc nothrow; char* inet_net_ntop(int, const(void)*, int, char*, c_ulong) @nogc nothrow; int inet_net_pton(int, const(char)*, void*, c_ulong) @nogc nothrow; uint inet_nsap_addr(const(char)*, ubyte*, int) @nogc nothrow; char* inet_nsap_ntoa(int, const(ubyte)*, char*) @nogc nothrow; alias __kernel_long_t = c_long; alias __kernel_ulong_t = c_ulong; alias __kernel_ino_t = c_ulong; alias __kernel_mode_t = uint; alias __kernel_pid_t = int; alias __kernel_ipc_pid_t = int; alias __kernel_uid_t = uint; alias __kernel_gid_t = uint; alias __kernel_suseconds_t = c_long; alias __kernel_daddr_t = int; alias __kernel_uid32_t = uint; alias __kernel_gid32_t = uint; alias __kernel_size_t = c_ulong; alias __kernel_ssize_t = c_long; alias __kernel_ptrdiff_t = c_long; struct __kernel_fsid_t { int[2] val; } alias __kernel_off_t = c_long; alias __kernel_loff_t = long; alias __kernel_old_time_t = c_long; alias __kernel_time_t = c_long; alias __kernel_time64_t = long; alias __kernel_clock_t = c_long; alias __kernel_timer_t = int; alias __kernel_clockid_t = int; alias __kernel_caddr_t = char*; alias __kernel_uid16_t = ushort; alias __kernel_gid16_t = ushort; char* strstr(const(char)*, const(char)*) @nogc nothrow; char* strpbrk(const(char)*, const(char)*) @nogc nothrow; c_ulong strspn(const(char)*, const(char)*) @nogc nothrow; c_ulong strcspn(const(char)*, const(char)*) @nogc nothrow; char* strrchr(const(char)*, int) @nogc nothrow; char* strchr(const(char)*, int) @nogc nothrow; char* strndup(const(char)*, c_ulong) @nogc nothrow; char* strdup(const(char)*) @nogc nothrow; c_ulong strxfrm_l(char*, const(char)*, c_ulong, __locale_struct*) @nogc nothrow; int strcoll_l(const(char)*, const(char)*, __locale_struct*) @nogc nothrow; c_ulong strxfrm(char*, const(char)*, c_ulong) @nogc nothrow; int strcoll(const(char)*, const(char)*) @nogc nothrow; int strncmp(const(char)*, const(char)*, c_ulong) @nogc nothrow; int strcmp(const(char)*, const(char)*) @nogc nothrow; char* strncat(char*, const(char)*, c_ulong) @nogc nothrow; char* strcat(char*, const(char)*) @nogc nothrow; char* strncpy(char*, const(char)*, c_ulong) @nogc nothrow; char* strcpy(char*, const(char)*) @nogc nothrow; void* memchr(const(void)*, int, c_ulong) @nogc nothrow; int memcmp(const(void)*, const(void)*, c_ulong) @nogc nothrow; void* memset(void*, int, c_ulong) @nogc nothrow; void* memccpy(void*, const(void)*, int, c_ulong) @nogc nothrow; alias __kernel_old_uid_t = ushort; alias __kernel_old_gid_t = ushort; void* memmove(void*, const(void)*, c_ulong) @nogc nothrow; alias __kernel_old_dev_t = c_ulong; void* memcpy(void*, const(void)*, c_ulong) @nogc nothrow; static ushort __bswap_16(ushort) @nogc nothrow; static uint __bswap_32(uint) @nogc nothrow; static c_ulong __bswap_64(c_ulong) @nogc nothrow; int bindresvport6(int, sockaddr_in6*) @nogc nothrow; int bindresvport(int, sockaddr_in*) @nogc nothrow; ushort htons(ushort) @nogc nothrow; uint htonl(uint) @nogc nothrow; ushort ntohs(ushort) @nogc nothrow; uint ntohl(uint) @nogc nothrow; struct group_filter { uint gf_interface; sockaddr_storage gf_group; uint gf_fmode; uint gf_numsrc; sockaddr_storage[1] gf_slist; } struct ip_msfilter { in_addr imsf_multiaddr; in_addr imsf_interface; uint imsf_fmode; uint imsf_numsrc; in_addr[1] imsf_slist; } struct group_source_req { uint gsr_interface; sockaddr_storage gsr_group; sockaddr_storage gsr_source; } struct group_req { uint gr_interface; sockaddr_storage gr_group; } struct ipv6_mreq { in6_addr ipv6mr_multiaddr; uint ipv6mr_interface; } struct ip_mreq_source { in_addr imr_multiaddr; in_addr imr_interface; in_addr imr_sourceaddr; } struct ip_mreq { in_addr imr_multiaddr; in_addr imr_interface; } struct sockaddr_in6 { ushort sin6_family; ushort sin6_port; uint sin6_flowinfo; in6_addr sin6_addr; uint sin6_scope_id; } struct sockaddr_in { ushort sin_family; ushort sin_port; in_addr sin_addr; ubyte[8] sin_zero; } extern __gshared const(in6_addr) in6addr_loopback; extern __gshared const(in6_addr) in6addr_any; struct in6_addr { static union _Anonymous_1 { ubyte[16] __u6_addr8; ushort[8] __u6_addr16; uint[4] __u6_addr32; } _Anonymous_1 __in6_u; } enum _Anonymous_2 { IPPORT_ECHO = 7, IPPORT_DISCARD = 9, IPPORT_SYSTAT = 11, IPPORT_DAYTIME = 13, IPPORT_NETSTAT = 15, IPPORT_FTP = 21, IPPORT_TELNET = 23, IPPORT_SMTP = 25, IPPORT_TIMESERVER = 37, IPPORT_NAMESERVER = 42, IPPORT_WHOIS = 43, IPPORT_MTP = 57, IPPORT_TFTP = 69, IPPORT_RJE = 77, IPPORT_FINGER = 79, IPPORT_TTYLINK = 87, IPPORT_SUPDUP = 95, IPPORT_EXECSERVER = 512, IPPORT_LOGINSERVER = 513, IPPORT_CMDSERVER = 514, IPPORT_EFSSERVER = 520, IPPORT_BIFFUDP = 512, IPPORT_WHOSERVER = 513, IPPORT_ROUTESERVER = 520, IPPORT_RESERVED = 1024, IPPORT_USERRESERVED = 5000, } enum IPPORT_ECHO = _Anonymous_2.IPPORT_ECHO; enum IPPORT_DISCARD = _Anonymous_2.IPPORT_DISCARD; enum IPPORT_SYSTAT = _Anonymous_2.IPPORT_SYSTAT; enum IPPORT_DAYTIME = _Anonymous_2.IPPORT_DAYTIME; enum IPPORT_NETSTAT = _Anonymous_2.IPPORT_NETSTAT; enum IPPORT_FTP = _Anonymous_2.IPPORT_FTP; enum IPPORT_TELNET = _Anonymous_2.IPPORT_TELNET; enum IPPORT_SMTP = _Anonymous_2.IPPORT_SMTP; enum IPPORT_TIMESERVER = _Anonymous_2.IPPORT_TIMESERVER; enum IPPORT_NAMESERVER = _Anonymous_2.IPPORT_NAMESERVER; enum IPPORT_WHOIS = _Anonymous_2.IPPORT_WHOIS; enum IPPORT_MTP = _Anonymous_2.IPPORT_MTP; enum IPPORT_TFTP = _Anonymous_2.IPPORT_TFTP; enum IPPORT_RJE = _Anonymous_2.IPPORT_RJE; enum IPPORT_FINGER = _Anonymous_2.IPPORT_FINGER; enum IPPORT_TTYLINK = _Anonymous_2.IPPORT_TTYLINK; enum IPPORT_SUPDUP = _Anonymous_2.IPPORT_SUPDUP; enum IPPORT_EXECSERVER = _Anonymous_2.IPPORT_EXECSERVER; enum IPPORT_LOGINSERVER = _Anonymous_2.IPPORT_LOGINSERVER; enum IPPORT_CMDSERVER = _Anonymous_2.IPPORT_CMDSERVER; enum IPPORT_EFSSERVER = _Anonymous_2.IPPORT_EFSSERVER; enum IPPORT_BIFFUDP = _Anonymous_2.IPPORT_BIFFUDP; enum IPPORT_WHOSERVER = _Anonymous_2.IPPORT_WHOSERVER; enum IPPORT_ROUTESERVER = _Anonymous_2.IPPORT_ROUTESERVER; enum IPPORT_RESERVED = _Anonymous_2.IPPORT_RESERVED; enum IPPORT_USERRESERVED = _Anonymous_2.IPPORT_USERRESERVED; alias in_port_t = ushort; enum _Anonymous_3 { IPPROTO_HOPOPTS = 0, IPPROTO_ROUTING = 43, IPPROTO_FRAGMENT = 44, IPPROTO_ICMPV6 = 58, IPPROTO_NONE = 59, IPPROTO_DSTOPTS = 60, IPPROTO_MH = 135, } enum IPPROTO_HOPOPTS = _Anonymous_3.IPPROTO_HOPOPTS; enum IPPROTO_ROUTING = _Anonymous_3.IPPROTO_ROUTING; enum IPPROTO_FRAGMENT = _Anonymous_3.IPPROTO_FRAGMENT; enum IPPROTO_ICMPV6 = _Anonymous_3.IPPROTO_ICMPV6; enum IPPROTO_NONE = _Anonymous_3.IPPROTO_NONE; enum IPPROTO_DSTOPTS = _Anonymous_3.IPPROTO_DSTOPTS; enum IPPROTO_MH = _Anonymous_3.IPPROTO_MH; enum _Anonymous_4 { IPPROTO_IP = 0, IPPROTO_ICMP = 1, IPPROTO_IGMP = 2, IPPROTO_IPIP = 4, IPPROTO_TCP = 6, IPPROTO_EGP = 8, IPPROTO_PUP = 12, IPPROTO_UDP = 17, IPPROTO_IDP = 22, IPPROTO_TP = 29, IPPROTO_DCCP = 33, IPPROTO_IPV6 = 41, IPPROTO_RSVP = 46, IPPROTO_GRE = 47, IPPROTO_ESP = 50, IPPROTO_AH = 51, IPPROTO_MTP = 92, IPPROTO_BEETPH = 94, IPPROTO_ENCAP = 98, IPPROTO_PIM = 103, IPPROTO_COMP = 108, IPPROTO_SCTP = 132, IPPROTO_UDPLITE = 136, IPPROTO_MPLS = 137, IPPROTO_ETHERNET = 143, IPPROTO_RAW = 255, IPPROTO_MPTCP = 262, IPPROTO_MAX = 263, } enum IPPROTO_IP = _Anonymous_4.IPPROTO_IP; enum IPPROTO_ICMP = _Anonymous_4.IPPROTO_ICMP; enum IPPROTO_IGMP = _Anonymous_4.IPPROTO_IGMP; enum IPPROTO_IPIP = _Anonymous_4.IPPROTO_IPIP; enum IPPROTO_TCP = _Anonymous_4.IPPROTO_TCP; enum IPPROTO_EGP = _Anonymous_4.IPPROTO_EGP; enum IPPROTO_PUP = _Anonymous_4.IPPROTO_PUP; enum IPPROTO_UDP = _Anonymous_4.IPPROTO_UDP; enum IPPROTO_IDP = _Anonymous_4.IPPROTO_IDP; enum IPPROTO_TP = _Anonymous_4.IPPROTO_TP; enum IPPROTO_DCCP = _Anonymous_4.IPPROTO_DCCP; enum IPPROTO_IPV6 = _Anonymous_4.IPPROTO_IPV6; enum IPPROTO_RSVP = _Anonymous_4.IPPROTO_RSVP; enum IPPROTO_GRE = _Anonymous_4.IPPROTO_GRE; enum IPPROTO_ESP = _Anonymous_4.IPPROTO_ESP; enum IPPROTO_AH = _Anonymous_4.IPPROTO_AH; enum IPPROTO_MTP = _Anonymous_4.IPPROTO_MTP; enum IPPROTO_BEETPH = _Anonymous_4.IPPROTO_BEETPH; enum IPPROTO_ENCAP = _Anonymous_4.IPPROTO_ENCAP; enum IPPROTO_PIM = _Anonymous_4.IPPROTO_PIM; enum IPPROTO_COMP = _Anonymous_4.IPPROTO_COMP; enum IPPROTO_SCTP = _Anonymous_4.IPPROTO_SCTP; enum IPPROTO_UDPLITE = _Anonymous_4.IPPROTO_UDPLITE; enum IPPROTO_MPLS = _Anonymous_4.IPPROTO_MPLS; enum IPPROTO_ETHERNET = _Anonymous_4.IPPROTO_ETHERNET; enum IPPROTO_RAW = _Anonymous_4.IPPROTO_RAW; enum IPPROTO_MPTCP = _Anonymous_4.IPPROTO_MPTCP; enum IPPROTO_MAX = _Anonymous_4.IPPROTO_MAX; struct in_addr { uint s_addr; } alias in_addr_t = uint; alias __kernel_mqd_t = int; alias __kernel_key_t = int; alias __kernel_sighandler_t = void function(int); struct __kernel_fd_set { c_ulong[16] fds_bits; } struct ip_opts { in_addr ip_dst; char[40] ip_opts_; } struct ip_mreqn { in_addr imr_multiaddr; in_addr imr_address; int imr_ifindex; } struct in_pktinfo { int ipi_ifindex; in_addr ipi_spec_dst; in_addr ipi_addr; } static c_ulong __uint64_identity(c_ulong) @nogc nothrow; static uint __uint32_identity(uint) @nogc nothrow; static ushort __uint16_identity(ushort) @nogc nothrow; alias timer_t = void*; alias time_t = c_long; struct timeval { c_long tv_sec; c_long tv_usec; } struct timespec { c_long tv_sec; c_long tv_nsec; } struct osockaddr { ushort sa_family; ubyte[14] sa_data; } struct iovec { void* iov_base; c_ulong iov_len; } alias sigset_t = __sigset_t; alias locale_t = __locale_struct*; alias clockid_t = int; alias clock_t = c_long; struct __sigset_t { c_ulong[16] __val; } alias __locale_t = __locale_struct*; struct __locale_struct { __locale_data*[13] __locales; const(ushort)* __ctype_b; const(int)* __ctype_tolower; const(int)* __ctype_toupper; const(char)*[13] __names; } alias __sig_atomic_t = int; alias __socklen_t = uint; alias pthread_t = c_ulong; union pthread_mutexattr_t { char[4] __size; int __align; } union pthread_condattr_t { char[4] __size; int __align; } alias pthread_key_t = uint; alias pthread_once_t = int; union pthread_attr_t { char[56] __size; c_long __align; } union pthread_mutex_t { __pthread_mutex_s __data; char[40] __size; c_long __align; } union pthread_cond_t { __pthread_cond_s __data; char[48] __size; long __align; } union pthread_rwlock_t { __pthread_rwlock_arch_t __data; char[56] __size; c_long __align; } union pthread_rwlockattr_t { char[8] __size; c_long __align; } alias pthread_spinlock_t = int; union pthread_barrier_t { char[32] __size; c_long __align; } union pthread_barrierattr_t { char[4] __size; int __align; } alias __intptr_t = c_long; alias __caddr_t = char*; alias __loff_t = c_long; alias sa_family_t = ushort; alias __syscall_ulong_t = c_ulong; alias __syscall_slong_t = c_long; alias socklen_t = uint; alias __ssize_t = c_long; alias __fsword_t = c_long; alias __fsfilcnt64_t = c_ulong; alias __fsfilcnt_t = c_ulong; alias __fsblkcnt64_t = c_ulong; alias __fsblkcnt_t = c_ulong; alias __blkcnt64_t = c_long; alias __blkcnt_t = c_long; alias __blksize_t = c_long; alias __timer_t = void*; alias __clockid_t = int; alias __key_t = int; alias __daddr_t = int; alias __suseconds64_t = c_long; alias __suseconds_t = c_long; alias __useconds_t = uint; alias __time_t = c_long; alias __id_t = uint; alias __rlim64_t = c_ulong; alias __rlim_t = c_ulong; alias __clock_t = c_long; struct __fsid_t { int[2] __val; } alias __pid_t = int; alias __off64_t = c_long; alias __off_t = c_long; alias __nlink_t = c_ulong; alias __mode_t = uint; alias __ino64_t = c_ulong; alias __ino_t = c_ulong; alias __gid_t = uint; alias __uid_t = uint; alias __dev_t = c_ulong; alias __uintmax_t = c_ulong; alias __intmax_t = c_long; alias __u_quad_t = c_ulong; alias __quad_t = c_long; alias __uint_least64_t = c_ulong; alias __int_least64_t = c_long; alias __uint_least32_t = uint; alias __int_least32_t = int; alias __uint_least16_t = ushort; alias __int_least16_t = short; alias __uint_least8_t = ubyte; alias __int_least8_t = byte; alias __uint64_t = c_ulong; alias __int64_t = c_long; alias __uint32_t = uint; alias __int32_t = int; alias __uint16_t = ushort; alias __int16_t = short; alias __uint8_t = ubyte; alias __int8_t = byte; struct sockaddr { ushort sa_family; char[14] sa_data; } alias __u_long = c_ulong; alias __u_int = uint; struct sockaddr_storage { ushort ss_family; char[118] __ss_padding; c_ulong __ss_align; } enum _Anonymous_5 { MSG_OOB = 1, MSG_PEEK = 2, MSG_DONTROUTE = 4, MSG_CTRUNC = 8, MSG_PROXY = 16, MSG_TRUNC = 32, MSG_DONTWAIT = 64, MSG_EOR = 128, MSG_WAITALL = 256, MSG_FIN = 512, MSG_SYN = 1024, MSG_CONFIRM = 2048, MSG_RST = 4096, MSG_ERRQUEUE = 8192, MSG_NOSIGNAL = 16384, MSG_MORE = 32768, MSG_WAITFORONE = 65536, MSG_BATCH = 262144, MSG_ZEROCOPY = 67108864, MSG_FASTOPEN = 536870912, MSG_CMSG_CLOEXEC = 1073741824, } enum MSG_OOB = _Anonymous_5.MSG_OOB; enum MSG_PEEK = _Anonymous_5.MSG_PEEK; enum MSG_DONTROUTE = _Anonymous_5.MSG_DONTROUTE; enum MSG_CTRUNC = _Anonymous_5.MSG_CTRUNC; enum MSG_PROXY = _Anonymous_5.MSG_PROXY; enum MSG_TRUNC = _Anonymous_5.MSG_TRUNC; enum MSG_DONTWAIT = _Anonymous_5.MSG_DONTWAIT; enum MSG_EOR = _Anonymous_5.MSG_EOR; enum MSG_WAITALL = _Anonymous_5.MSG_WAITALL; enum MSG_FIN = _Anonymous_5.MSG_FIN; enum MSG_SYN = _Anonymous_5.MSG_SYN; enum MSG_CONFIRM = _Anonymous_5.MSG_CONFIRM; enum MSG_RST = _Anonymous_5.MSG_RST; enum MSG_ERRQUEUE = _Anonymous_5.MSG_ERRQUEUE; enum MSG_NOSIGNAL = _Anonymous_5.MSG_NOSIGNAL; enum MSG_MORE = _Anonymous_5.MSG_MORE; enum MSG_WAITFORONE = _Anonymous_5.MSG_WAITFORONE; enum MSG_BATCH = _Anonymous_5.MSG_BATCH; enum MSG_ZEROCOPY = _Anonymous_5.MSG_ZEROCOPY; enum MSG_FASTOPEN = _Anonymous_5.MSG_FASTOPEN; enum MSG_CMSG_CLOEXEC = _Anonymous_5.MSG_CMSG_CLOEXEC; alias __u_short = ushort; alias __u_char = ubyte; struct __once_flag { int __data; } alias __thrd_t = c_ulong; alias __tss_t = uint; struct __pthread_cond_s { static union _Anonymous_6 { ulong __wseq; static struct _Anonymous_7 { uint __low; uint __high; } _Anonymous_7 __wseq32; } _Anonymous_6 _anonymous_8; ref auto __wseq() @property @nogc pure nothrow { return _anonymous_8.__wseq; } void __wseq(_T_)(auto ref _T_ val) @property @nogc pure nothrow { _anonymous_8.__wseq = val; } ref auto __wseq32() @property @nogc pure nothrow { return _anonymous_8.__wseq32; } void __wseq32(_T_)(auto ref _T_ val) @property @nogc pure nothrow { _anonymous_8.__wseq32 = val; } static union _Anonymous_9 { ulong __g1_start; static struct _Anonymous_10 { uint __low; uint __high; } _Anonymous_10 __g1_start32; } _Anonymous_9 _anonymous_11; ref auto __g1_start() @property @nogc pure nothrow { return _anonymous_11.__g1_start; } void __g1_start(_T_)(auto ref _T_ val) @property @nogc pure nothrow { _anonymous_11.__g1_start = val; } ref auto __g1_start32() @property @nogc pure nothrow { return _anonymous_11.__g1_start32; } void __g1_start32(_T_)(auto ref _T_ val) @property @nogc pure nothrow { _anonymous_11.__g1_start32 = val; } uint[2] __g_refs; uint[2] __g_size; uint __g1_orig_size; uint __wrefs; uint[2] __g_signals; } struct __pthread_internal_slist { __pthread_internal_slist* __next; } alias __pthread_slist_t = __pthread_internal_slist; struct __pthread_internal_list { __pthread_internal_list* __prev; __pthread_internal_list* __next; } alias __pthread_list_t = __pthread_internal_list; struct msghdr { void* msg_name; uint msg_namelen; iovec* msg_iov; c_ulong msg_iovlen; void* msg_control; c_ulong msg_controllen; int msg_flags; } struct cmsghdr { c_ulong cmsg_len; int cmsg_level; int cmsg_type; ubyte[0] __cmsg_data; } struct __pthread_rwlock_arch_t { uint __readers; uint __writers; uint __wrphase_futex; uint __writers_futex; uint __pad3; uint __pad4; int __cur_writer; int __shared; byte __rwelision; ubyte[7] __pad1; c_ulong __pad2; uint __flags; } cmsghdr* __cmsg_nxthdr(msghdr*, cmsghdr*) @nogc nothrow; enum _Anonymous_12 { SCM_RIGHTS = 1, } enum SCM_RIGHTS = _Anonymous_12.SCM_RIGHTS; struct linger { int l_onoff; int l_linger; } enum __socket_type { SOCK_STREAM = 1, SOCK_DGRAM = 2, SOCK_RAW = 3, SOCK_RDM = 4, SOCK_SEQPACKET = 5, SOCK_DCCP = 6, SOCK_PACKET = 10, SOCK_CLOEXEC = 524288, SOCK_NONBLOCK = 2048, } enum SOCK_STREAM = __socket_type.SOCK_STREAM; enum SOCK_DGRAM = __socket_type.SOCK_DGRAM; enum SOCK_RAW = __socket_type.SOCK_RAW; enum SOCK_RDM = __socket_type.SOCK_RDM; enum SOCK_SEQPACKET = __socket_type.SOCK_SEQPACKET; enum SOCK_DCCP = __socket_type.SOCK_DCCP; enum SOCK_PACKET = __socket_type.SOCK_PACKET; enum SOCK_CLOEXEC = __socket_type.SOCK_CLOEXEC; enum SOCK_NONBLOCK = __socket_type.SOCK_NONBLOCK; struct __pthread_mutex_s { int __lock; uint __count; int __owner; uint __nusers; int __kind; short __spins; short __elision; __pthread_internal_list __list; } alias uint64_t = ulong; alias uint32_t = uint; alias uint16_t = ushort; alias uint8_t = ubyte; alias int64_t = c_long; alias int32_t = int; alias int16_t = short; alias int8_t = byte; static if(!is(typeof(_BITS_STDINT_INTN_H))) { private enum enumMixinStr__BITS_STDINT_INTN_H = `enum _BITS_STDINT_INTN_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_STDINT_INTN_H); }))) { mixin(enumMixinStr__BITS_STDINT_INTN_H); } } static if(!is(typeof(SOCK_NONBLOCK))) { private enum enumMixinStr_SOCK_NONBLOCK = `enum SOCK_NONBLOCK = SOCK_NONBLOCK;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_NONBLOCK); }))) { mixin(enumMixinStr_SOCK_NONBLOCK); } } static if(!is(typeof(SOCK_CLOEXEC))) { private enum enumMixinStr_SOCK_CLOEXEC = `enum SOCK_CLOEXEC = SOCK_CLOEXEC;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_CLOEXEC); }))) { mixin(enumMixinStr_SOCK_CLOEXEC); } } static if(!is(typeof(SOCK_PACKET))) { private enum enumMixinStr_SOCK_PACKET = `enum SOCK_PACKET = SOCK_PACKET;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_PACKET); }))) { mixin(enumMixinStr_SOCK_PACKET); } } static if(!is(typeof(_BITS_STDINT_UINTN_H))) { private enum enumMixinStr__BITS_STDINT_UINTN_H = `enum _BITS_STDINT_UINTN_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_STDINT_UINTN_H); }))) { mixin(enumMixinStr__BITS_STDINT_UINTN_H); } } static if(!is(typeof(SOCK_DCCP))) { private enum enumMixinStr_SOCK_DCCP = `enum SOCK_DCCP = SOCK_DCCP;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_DCCP); }))) { mixin(enumMixinStr_SOCK_DCCP); } } static if(!is(typeof(SOCK_SEQPACKET))) { private enum enumMixinStr_SOCK_SEQPACKET = `enum SOCK_SEQPACKET = SOCK_SEQPACKET;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_SEQPACKET); }))) { mixin(enumMixinStr_SOCK_SEQPACKET); } } static if(!is(typeof(SOCK_RDM))) { private enum enumMixinStr_SOCK_RDM = `enum SOCK_RDM = SOCK_RDM;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_RDM); }))) { mixin(enumMixinStr_SOCK_RDM); } } static if(!is(typeof(SOCK_RAW))) { private enum enumMixinStr_SOCK_RAW = `enum SOCK_RAW = SOCK_RAW;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_RAW); }))) { mixin(enumMixinStr_SOCK_RAW); } } static if(!is(typeof(SOCK_DGRAM))) { private enum enumMixinStr_SOCK_DGRAM = `enum SOCK_DGRAM = SOCK_DGRAM;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_DGRAM); }))) { mixin(enumMixinStr_SOCK_DGRAM); } } static if(!is(typeof(_THREAD_MUTEX_INTERNAL_H))) { private enum enumMixinStr__THREAD_MUTEX_INTERNAL_H = `enum _THREAD_MUTEX_INTERNAL_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__THREAD_MUTEX_INTERNAL_H); }))) { mixin(enumMixinStr__THREAD_MUTEX_INTERNAL_H); } } static if(!is(typeof(SOCK_STREAM))) { private enum enumMixinStr_SOCK_STREAM = `enum SOCK_STREAM = SOCK_STREAM;`; static if(is(typeof({ mixin(enumMixinStr_SOCK_STREAM); }))) { mixin(enumMixinStr_SOCK_STREAM); } } static if(!is(typeof(SCM_RIGHTS))) { private enum enumMixinStr_SCM_RIGHTS = `enum SCM_RIGHTS = SCM_RIGHTS;`; static if(is(typeof({ mixin(enumMixinStr_SCM_RIGHTS); }))) { mixin(enumMixinStr_SCM_RIGHTS); } } static if(!is(typeof(__PTHREAD_MUTEX_HAVE_PREV))) { private enum enumMixinStr___PTHREAD_MUTEX_HAVE_PREV = `enum __PTHREAD_MUTEX_HAVE_PREV = 1;`; static if(is(typeof({ mixin(enumMixinStr___PTHREAD_MUTEX_HAVE_PREV); }))) { mixin(enumMixinStr___PTHREAD_MUTEX_HAVE_PREV); } } static if(!is(typeof(__PTHREAD_RWLOCK_ELISION_EXTRA))) { private enum enumMixinStr___PTHREAD_RWLOCK_ELISION_EXTRA = `enum __PTHREAD_RWLOCK_ELISION_EXTRA = 0 , { 0 , 0 , 0 , 0 , 0 , 0 , 0 };`; static if(is(typeof({ mixin(enumMixinStr___PTHREAD_RWLOCK_ELISION_EXTRA); }))) { mixin(enumMixinStr___PTHREAD_RWLOCK_ELISION_EXTRA); } } static if(!is(typeof(_THREAD_SHARED_TYPES_H))) { private enum enumMixinStr__THREAD_SHARED_TYPES_H = `enum _THREAD_SHARED_TYPES_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__THREAD_SHARED_TYPES_H); }))) { mixin(enumMixinStr__THREAD_SHARED_TYPES_H); } } static if(!is(typeof(MSG_CMSG_CLOEXEC))) { private enum enumMixinStr_MSG_CMSG_CLOEXEC = `enum MSG_CMSG_CLOEXEC = MSG_CMSG_CLOEXEC;`; static if(is(typeof({ mixin(enumMixinStr_MSG_CMSG_CLOEXEC); }))) { mixin(enumMixinStr_MSG_CMSG_CLOEXEC); } } static if(!is(typeof(MSG_FASTOPEN))) { private enum enumMixinStr_MSG_FASTOPEN = `enum MSG_FASTOPEN = MSG_FASTOPEN;`; static if(is(typeof({ mixin(enumMixinStr_MSG_FASTOPEN); }))) { mixin(enumMixinStr_MSG_FASTOPEN); } } static if(!is(typeof(MSG_ZEROCOPY))) { private enum enumMixinStr_MSG_ZEROCOPY = `enum MSG_ZEROCOPY = MSG_ZEROCOPY;`; static if(is(typeof({ mixin(enumMixinStr_MSG_ZEROCOPY); }))) { mixin(enumMixinStr_MSG_ZEROCOPY); } } static if(!is(typeof(MSG_BATCH))) { private enum enumMixinStr_MSG_BATCH = `enum MSG_BATCH = MSG_BATCH;`; static if(is(typeof({ mixin(enumMixinStr_MSG_BATCH); }))) { mixin(enumMixinStr_MSG_BATCH); } } static if(!is(typeof(MSG_WAITFORONE))) { private enum enumMixinStr_MSG_WAITFORONE = `enum MSG_WAITFORONE = MSG_WAITFORONE;`; static if(is(typeof({ mixin(enumMixinStr_MSG_WAITFORONE); }))) { mixin(enumMixinStr_MSG_WAITFORONE); } } static if(!is(typeof(MSG_MORE))) { private enum enumMixinStr_MSG_MORE = `enum MSG_MORE = MSG_MORE;`; static if(is(typeof({ mixin(enumMixinStr_MSG_MORE); }))) { mixin(enumMixinStr_MSG_MORE); } } static if(!is(typeof(MSG_NOSIGNAL))) { private enum enumMixinStr_MSG_NOSIGNAL = `enum MSG_NOSIGNAL = MSG_NOSIGNAL;`; static if(is(typeof({ mixin(enumMixinStr_MSG_NOSIGNAL); }))) { mixin(enumMixinStr_MSG_NOSIGNAL); } } static if(!is(typeof(MSG_ERRQUEUE))) { private enum enumMixinStr_MSG_ERRQUEUE = `enum MSG_ERRQUEUE = MSG_ERRQUEUE;`; static if(is(typeof({ mixin(enumMixinStr_MSG_ERRQUEUE); }))) { mixin(enumMixinStr_MSG_ERRQUEUE); } } static if(!is(typeof(MSG_RST))) { private enum enumMixinStr_MSG_RST = `enum MSG_RST = MSG_RST;`; static if(is(typeof({ mixin(enumMixinStr_MSG_RST); }))) { mixin(enumMixinStr_MSG_RST); } } static if(!is(typeof(MSG_CONFIRM))) { private enum enumMixinStr_MSG_CONFIRM = `enum MSG_CONFIRM = MSG_CONFIRM;`; static if(is(typeof({ mixin(enumMixinStr_MSG_CONFIRM); }))) { mixin(enumMixinStr_MSG_CONFIRM); } } static if(!is(typeof(MSG_SYN))) { private enum enumMixinStr_MSG_SYN = `enum MSG_SYN = MSG_SYN;`; static if(is(typeof({ mixin(enumMixinStr_MSG_SYN); }))) { mixin(enumMixinStr_MSG_SYN); } } static if(!is(typeof(MSG_FIN))) { private enum enumMixinStr_MSG_FIN = `enum MSG_FIN = MSG_FIN;`; static if(is(typeof({ mixin(enumMixinStr_MSG_FIN); }))) { mixin(enumMixinStr_MSG_FIN); } } static if(!is(typeof(MSG_WAITALL))) { private enum enumMixinStr_MSG_WAITALL = `enum MSG_WAITALL = MSG_WAITALL;`; static if(is(typeof({ mixin(enumMixinStr_MSG_WAITALL); }))) { mixin(enumMixinStr_MSG_WAITALL); } } static if(!is(typeof(__ONCE_FLAG_INIT))) { private enum enumMixinStr___ONCE_FLAG_INIT = `enum __ONCE_FLAG_INIT = { 0 };`; static if(is(typeof({ mixin(enumMixinStr___ONCE_FLAG_INIT); }))) { mixin(enumMixinStr___ONCE_FLAG_INIT); } } static if(!is(typeof(MSG_EOR))) { private enum enumMixinStr_MSG_EOR = `enum MSG_EOR = MSG_EOR;`; static if(is(typeof({ mixin(enumMixinStr_MSG_EOR); }))) { mixin(enumMixinStr_MSG_EOR); } } static if(!is(typeof(_BITS_TIME64_H))) { private enum enumMixinStr__BITS_TIME64_H = `enum _BITS_TIME64_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_TIME64_H); }))) { mixin(enumMixinStr__BITS_TIME64_H); } } static if(!is(typeof(MSG_DONTWAIT))) { private enum enumMixinStr_MSG_DONTWAIT = `enum MSG_DONTWAIT = MSG_DONTWAIT;`; static if(is(typeof({ mixin(enumMixinStr_MSG_DONTWAIT); }))) { mixin(enumMixinStr_MSG_DONTWAIT); } } static if(!is(typeof(__TIME64_T_TYPE))) { private enum enumMixinStr___TIME64_T_TYPE = `enum __TIME64_T_TYPE = __TIME_T_TYPE;`; static if(is(typeof({ mixin(enumMixinStr___TIME64_T_TYPE); }))) { mixin(enumMixinStr___TIME64_T_TYPE); } } static if(!is(typeof(MSG_TRUNC))) { private enum enumMixinStr_MSG_TRUNC = `enum MSG_TRUNC = MSG_TRUNC;`; static if(is(typeof({ mixin(enumMixinStr_MSG_TRUNC); }))) { mixin(enumMixinStr_MSG_TRUNC); } } static if(!is(typeof(__TIMESIZE))) { private enum enumMixinStr___TIMESIZE = `enum __TIMESIZE = __WORDSIZE;`; static if(is(typeof({ mixin(enumMixinStr___TIMESIZE); }))) { mixin(enumMixinStr___TIMESIZE); } } static if(!is(typeof(_BITS_TYPES_H))) { private enum enumMixinStr__BITS_TYPES_H = `enum _BITS_TYPES_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_TYPES_H); }))) { mixin(enumMixinStr__BITS_TYPES_H); } } static if(!is(typeof(MSG_PROXY))) { private enum enumMixinStr_MSG_PROXY = `enum MSG_PROXY = MSG_PROXY;`; static if(is(typeof({ mixin(enumMixinStr_MSG_PROXY); }))) { mixin(enumMixinStr_MSG_PROXY); } } static if(!is(typeof(MSG_CTRUNC))) { private enum enumMixinStr_MSG_CTRUNC = `enum MSG_CTRUNC = MSG_CTRUNC;`; static if(is(typeof({ mixin(enumMixinStr_MSG_CTRUNC); }))) { mixin(enumMixinStr_MSG_CTRUNC); } } static if(!is(typeof(MSG_DONTROUTE))) { private enum enumMixinStr_MSG_DONTROUTE = `enum MSG_DONTROUTE = MSG_DONTROUTE;`; static if(is(typeof({ mixin(enumMixinStr_MSG_DONTROUTE); }))) { mixin(enumMixinStr_MSG_DONTROUTE); } } static if(!is(typeof(MSG_PEEK))) { private enum enumMixinStr_MSG_PEEK = `enum MSG_PEEK = MSG_PEEK;`; static if(is(typeof({ mixin(enumMixinStr_MSG_PEEK); }))) { mixin(enumMixinStr_MSG_PEEK); } } static if(!is(typeof(MSG_OOB))) { private enum enumMixinStr_MSG_OOB = `enum MSG_OOB = MSG_OOB;`; static if(is(typeof({ mixin(enumMixinStr_MSG_OOB); }))) { mixin(enumMixinStr_MSG_OOB); } } static if(!is(typeof(_SS_PADSIZE))) { private enum enumMixinStr__SS_PADSIZE = `enum _SS_PADSIZE = ( _SS_SIZE - __SOCKADDR_COMMON_SIZE - ( __ss_aligntype ) .sizeof );`; static if(is(typeof({ mixin(enumMixinStr__SS_PADSIZE); }))) { mixin(enumMixinStr__SS_PADSIZE); } } static if(!is(typeof(__ss_aligntype))) { private enum enumMixinStr___ss_aligntype = `enum __ss_aligntype = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___ss_aligntype); }))) { mixin(enumMixinStr___ss_aligntype); } } static if(!is(typeof(SOMAXCONN))) { private enum enumMixinStr_SOMAXCONN = `enum SOMAXCONN = 4096;`; static if(is(typeof({ mixin(enumMixinStr_SOMAXCONN); }))) { mixin(enumMixinStr_SOMAXCONN); } } static if(!is(typeof(SOL_XDP))) { private enum enumMixinStr_SOL_XDP = `enum SOL_XDP = 283;`; static if(is(typeof({ mixin(enumMixinStr_SOL_XDP); }))) { mixin(enumMixinStr_SOL_XDP); } } static if(!is(typeof(SOL_TLS))) { private enum enumMixinStr_SOL_TLS = `enum SOL_TLS = 282;`; static if(is(typeof({ mixin(enumMixinStr_SOL_TLS); }))) { mixin(enumMixinStr_SOL_TLS); } } static if(!is(typeof(SOL_KCM))) { private enum enumMixinStr_SOL_KCM = `enum SOL_KCM = 281;`; static if(is(typeof({ mixin(enumMixinStr_SOL_KCM); }))) { mixin(enumMixinStr_SOL_KCM); } } static if(!is(typeof(SOL_NFC))) { private enum enumMixinStr_SOL_NFC = `enum SOL_NFC = 280;`; static if(is(typeof({ mixin(enumMixinStr_SOL_NFC); }))) { mixin(enumMixinStr_SOL_NFC); } } static if(!is(typeof(SOL_ALG))) { private enum enumMixinStr_SOL_ALG = `enum SOL_ALG = 279;`; static if(is(typeof({ mixin(enumMixinStr_SOL_ALG); }))) { mixin(enumMixinStr_SOL_ALG); } } static if(!is(typeof(SOL_CAIF))) { private enum enumMixinStr_SOL_CAIF = `enum SOL_CAIF = 278;`; static if(is(typeof({ mixin(enumMixinStr_SOL_CAIF); }))) { mixin(enumMixinStr_SOL_CAIF); } } static if(!is(typeof(SOL_IUCV))) { private enum enumMixinStr_SOL_IUCV = `enum SOL_IUCV = 277;`; static if(is(typeof({ mixin(enumMixinStr_SOL_IUCV); }))) { mixin(enumMixinStr_SOL_IUCV); } } static if(!is(typeof(SOL_RDS))) { private enum enumMixinStr_SOL_RDS = `enum SOL_RDS = 276;`; static if(is(typeof({ mixin(enumMixinStr_SOL_RDS); }))) { mixin(enumMixinStr_SOL_RDS); } } static if(!is(typeof(SOL_PNPIPE))) { private enum enumMixinStr_SOL_PNPIPE = `enum SOL_PNPIPE = 275;`; static if(is(typeof({ mixin(enumMixinStr_SOL_PNPIPE); }))) { mixin(enumMixinStr_SOL_PNPIPE); } } static if(!is(typeof(SOL_BLUETOOTH))) { private enum enumMixinStr_SOL_BLUETOOTH = `enum SOL_BLUETOOTH = 274;`; static if(is(typeof({ mixin(enumMixinStr_SOL_BLUETOOTH); }))) { mixin(enumMixinStr_SOL_BLUETOOTH); } } static if(!is(typeof(SOL_PPPOL2TP))) { private enum enumMixinStr_SOL_PPPOL2TP = `enum SOL_PPPOL2TP = 273;`; static if(is(typeof({ mixin(enumMixinStr_SOL_PPPOL2TP); }))) { mixin(enumMixinStr_SOL_PPPOL2TP); } } static if(!is(typeof(SOL_RXRPC))) { private enum enumMixinStr_SOL_RXRPC = `enum SOL_RXRPC = 272;`; static if(is(typeof({ mixin(enumMixinStr_SOL_RXRPC); }))) { mixin(enumMixinStr_SOL_RXRPC); } } static if(!is(typeof(SOL_TIPC))) { private enum enumMixinStr_SOL_TIPC = `enum SOL_TIPC = 271;`; static if(is(typeof({ mixin(enumMixinStr_SOL_TIPC); }))) { mixin(enumMixinStr_SOL_TIPC); } } static if(!is(typeof(SOL_NETLINK))) { private enum enumMixinStr_SOL_NETLINK = `enum SOL_NETLINK = 270;`; static if(is(typeof({ mixin(enumMixinStr_SOL_NETLINK); }))) { mixin(enumMixinStr_SOL_NETLINK); } } static if(!is(typeof(SOL_DCCP))) { private enum enumMixinStr_SOL_DCCP = `enum SOL_DCCP = 269;`; static if(is(typeof({ mixin(enumMixinStr_SOL_DCCP); }))) { mixin(enumMixinStr_SOL_DCCP); } } static if(!is(typeof(SOL_LLC))) { private enum enumMixinStr_SOL_LLC = `enum SOL_LLC = 268;`; static if(is(typeof({ mixin(enumMixinStr_SOL_LLC); }))) { mixin(enumMixinStr_SOL_LLC); } } static if(!is(typeof(SOL_NETBEUI))) { private enum enumMixinStr_SOL_NETBEUI = `enum SOL_NETBEUI = 267;`; static if(is(typeof({ mixin(enumMixinStr_SOL_NETBEUI); }))) { mixin(enumMixinStr_SOL_NETBEUI); } } static if(!is(typeof(SOL_IRDA))) { private enum enumMixinStr_SOL_IRDA = `enum SOL_IRDA = 266;`; static if(is(typeof({ mixin(enumMixinStr_SOL_IRDA); }))) { mixin(enumMixinStr_SOL_IRDA); } } static if(!is(typeof(SOL_AAL))) { private enum enumMixinStr_SOL_AAL = `enum SOL_AAL = 265;`; static if(is(typeof({ mixin(enumMixinStr_SOL_AAL); }))) { mixin(enumMixinStr_SOL_AAL); } } static if(!is(typeof(SOL_ATM))) { private enum enumMixinStr_SOL_ATM = `enum SOL_ATM = 264;`; static if(is(typeof({ mixin(enumMixinStr_SOL_ATM); }))) { mixin(enumMixinStr_SOL_ATM); } } static if(!is(typeof(SOL_PACKET))) { private enum enumMixinStr_SOL_PACKET = `enum SOL_PACKET = 263;`; static if(is(typeof({ mixin(enumMixinStr_SOL_PACKET); }))) { mixin(enumMixinStr_SOL_PACKET); } } static if(!is(typeof(SOL_X25))) { private enum enumMixinStr_SOL_X25 = `enum SOL_X25 = 262;`; static if(is(typeof({ mixin(enumMixinStr_SOL_X25); }))) { mixin(enumMixinStr_SOL_X25); } } static if(!is(typeof(__S16_TYPE))) { private enum enumMixinStr___S16_TYPE = `enum __S16_TYPE = short int;`; static if(is(typeof({ mixin(enumMixinStr___S16_TYPE); }))) { mixin(enumMixinStr___S16_TYPE); } } static if(!is(typeof(__U16_TYPE))) { private enum enumMixinStr___U16_TYPE = `enum __U16_TYPE = unsigned short int;`; static if(is(typeof({ mixin(enumMixinStr___U16_TYPE); }))) { mixin(enumMixinStr___U16_TYPE); } } static if(!is(typeof(__S32_TYPE))) { private enum enumMixinStr___S32_TYPE = `enum __S32_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___S32_TYPE); }))) { mixin(enumMixinStr___S32_TYPE); } } static if(!is(typeof(__U32_TYPE))) { private enum enumMixinStr___U32_TYPE = `enum __U32_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___U32_TYPE); }))) { mixin(enumMixinStr___U32_TYPE); } } static if(!is(typeof(__SLONGWORD_TYPE))) { private enum enumMixinStr___SLONGWORD_TYPE = `enum __SLONGWORD_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SLONGWORD_TYPE); }))) { mixin(enumMixinStr___SLONGWORD_TYPE); } } static if(!is(typeof(__ULONGWORD_TYPE))) { private enum enumMixinStr___ULONGWORD_TYPE = `enum __ULONGWORD_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___ULONGWORD_TYPE); }))) { mixin(enumMixinStr___ULONGWORD_TYPE); } } static if(!is(typeof(SOL_DECNET))) { private enum enumMixinStr_SOL_DECNET = `enum SOL_DECNET = 261;`; static if(is(typeof({ mixin(enumMixinStr_SOL_DECNET); }))) { mixin(enumMixinStr_SOL_DECNET); } } static if(!is(typeof(SOL_RAW))) { private enum enumMixinStr_SOL_RAW = `enum SOL_RAW = 255;`; static if(is(typeof({ mixin(enumMixinStr_SOL_RAW); }))) { mixin(enumMixinStr_SOL_RAW); } } static if(!is(typeof(__SQUAD_TYPE))) { private enum enumMixinStr___SQUAD_TYPE = `enum __SQUAD_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SQUAD_TYPE); }))) { mixin(enumMixinStr___SQUAD_TYPE); } } static if(!is(typeof(__UQUAD_TYPE))) { private enum enumMixinStr___UQUAD_TYPE = `enum __UQUAD_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___UQUAD_TYPE); }))) { mixin(enumMixinStr___UQUAD_TYPE); } } static if(!is(typeof(__SWORD_TYPE))) { private enum enumMixinStr___SWORD_TYPE = `enum __SWORD_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SWORD_TYPE); }))) { mixin(enumMixinStr___SWORD_TYPE); } } static if(!is(typeof(__UWORD_TYPE))) { private enum enumMixinStr___UWORD_TYPE = `enum __UWORD_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___UWORD_TYPE); }))) { mixin(enumMixinStr___UWORD_TYPE); } } static if(!is(typeof(__SLONG32_TYPE))) { private enum enumMixinStr___SLONG32_TYPE = `enum __SLONG32_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___SLONG32_TYPE); }))) { mixin(enumMixinStr___SLONG32_TYPE); } } static if(!is(typeof(__ULONG32_TYPE))) { private enum enumMixinStr___ULONG32_TYPE = `enum __ULONG32_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___ULONG32_TYPE); }))) { mixin(enumMixinStr___ULONG32_TYPE); } } static if(!is(typeof(__S64_TYPE))) { private enum enumMixinStr___S64_TYPE = `enum __S64_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___S64_TYPE); }))) { mixin(enumMixinStr___S64_TYPE); } } static if(!is(typeof(__U64_TYPE))) { private enum enumMixinStr___U64_TYPE = `enum __U64_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___U64_TYPE); }))) { mixin(enumMixinStr___U64_TYPE); } } static if(!is(typeof(__STD_TYPE))) { private enum enumMixinStr___STD_TYPE = `enum __STD_TYPE = typedef;`; static if(is(typeof({ mixin(enumMixinStr___STD_TYPE); }))) { mixin(enumMixinStr___STD_TYPE); } } static if(!is(typeof(AF_MAX))) { private enum enumMixinStr_AF_MAX = `enum AF_MAX = PF_MAX;`; static if(is(typeof({ mixin(enumMixinStr_AF_MAX); }))) { mixin(enumMixinStr_AF_MAX); } } static if(!is(typeof(AF_XDP))) { private enum enumMixinStr_AF_XDP = `enum AF_XDP = PF_XDP;`; static if(is(typeof({ mixin(enumMixinStr_AF_XDP); }))) { mixin(enumMixinStr_AF_XDP); } } static if(!is(typeof(AF_SMC))) { private enum enumMixinStr_AF_SMC = `enum AF_SMC = PF_SMC;`; static if(is(typeof({ mixin(enumMixinStr_AF_SMC); }))) { mixin(enumMixinStr_AF_SMC); } } static if(!is(typeof(AF_QIPCRTR))) { private enum enumMixinStr_AF_QIPCRTR = `enum AF_QIPCRTR = PF_QIPCRTR;`; static if(is(typeof({ mixin(enumMixinStr_AF_QIPCRTR); }))) { mixin(enumMixinStr_AF_QIPCRTR); } } static if(!is(typeof(AF_KCM))) { private enum enumMixinStr_AF_KCM = `enum AF_KCM = PF_KCM;`; static if(is(typeof({ mixin(enumMixinStr_AF_KCM); }))) { mixin(enumMixinStr_AF_KCM); } } static if(!is(typeof(AF_VSOCK))) { private enum enumMixinStr_AF_VSOCK = `enum AF_VSOCK = PF_VSOCK;`; static if(is(typeof({ mixin(enumMixinStr_AF_VSOCK); }))) { mixin(enumMixinStr_AF_VSOCK); } } static if(!is(typeof(AF_NFC))) { private enum enumMixinStr_AF_NFC = `enum AF_NFC = PF_NFC;`; static if(is(typeof({ mixin(enumMixinStr_AF_NFC); }))) { mixin(enumMixinStr_AF_NFC); } } static if(!is(typeof(AF_ALG))) { private enum enumMixinStr_AF_ALG = `enum AF_ALG = PF_ALG;`; static if(is(typeof({ mixin(enumMixinStr_AF_ALG); }))) { mixin(enumMixinStr_AF_ALG); } } static if(!is(typeof(AF_CAIF))) { private enum enumMixinStr_AF_CAIF = `enum AF_CAIF = PF_CAIF;`; static if(is(typeof({ mixin(enumMixinStr_AF_CAIF); }))) { mixin(enumMixinStr_AF_CAIF); } } static if(!is(typeof(AF_IEEE802154))) { private enum enumMixinStr_AF_IEEE802154 = `enum AF_IEEE802154 = PF_IEEE802154;`; static if(is(typeof({ mixin(enumMixinStr_AF_IEEE802154); }))) { mixin(enumMixinStr_AF_IEEE802154); } } static if(!is(typeof(AF_PHONET))) { private enum enumMixinStr_AF_PHONET = `enum AF_PHONET = PF_PHONET;`; static if(is(typeof({ mixin(enumMixinStr_AF_PHONET); }))) { mixin(enumMixinStr_AF_PHONET); } } static if(!is(typeof(AF_ISDN))) { private enum enumMixinStr_AF_ISDN = `enum AF_ISDN = PF_ISDN;`; static if(is(typeof({ mixin(enumMixinStr_AF_ISDN); }))) { mixin(enumMixinStr_AF_ISDN); } } static if(!is(typeof(AF_RXRPC))) { private enum enumMixinStr_AF_RXRPC = `enum AF_RXRPC = PF_RXRPC;`; static if(is(typeof({ mixin(enumMixinStr_AF_RXRPC); }))) { mixin(enumMixinStr_AF_RXRPC); } } static if(!is(typeof(AF_IUCV))) { private enum enumMixinStr_AF_IUCV = `enum AF_IUCV = PF_IUCV;`; static if(is(typeof({ mixin(enumMixinStr_AF_IUCV); }))) { mixin(enumMixinStr_AF_IUCV); } } static if(!is(typeof(AF_BLUETOOTH))) { private enum enumMixinStr_AF_BLUETOOTH = `enum AF_BLUETOOTH = PF_BLUETOOTH;`; static if(is(typeof({ mixin(enumMixinStr_AF_BLUETOOTH); }))) { mixin(enumMixinStr_AF_BLUETOOTH); } } static if(!is(typeof(AF_TIPC))) { private enum enumMixinStr_AF_TIPC = `enum AF_TIPC = PF_TIPC;`; static if(is(typeof({ mixin(enumMixinStr_AF_TIPC); }))) { mixin(enumMixinStr_AF_TIPC); } } static if(!is(typeof(AF_CAN))) { private enum enumMixinStr_AF_CAN = `enum AF_CAN = PF_CAN;`; static if(is(typeof({ mixin(enumMixinStr_AF_CAN); }))) { mixin(enumMixinStr_AF_CAN); } } static if(!is(typeof(AF_MPLS))) { private enum enumMixinStr_AF_MPLS = `enum AF_MPLS = PF_MPLS;`; static if(is(typeof({ mixin(enumMixinStr_AF_MPLS); }))) { mixin(enumMixinStr_AF_MPLS); } } static if(!is(typeof(AF_IB))) { private enum enumMixinStr_AF_IB = `enum AF_IB = PF_IB;`; static if(is(typeof({ mixin(enumMixinStr_AF_IB); }))) { mixin(enumMixinStr_AF_IB); } } static if(!is(typeof(AF_LLC))) { private enum enumMixinStr_AF_LLC = `enum AF_LLC = PF_LLC;`; static if(is(typeof({ mixin(enumMixinStr_AF_LLC); }))) { mixin(enumMixinStr_AF_LLC); } } static if(!is(typeof(AF_WANPIPE))) { private enum enumMixinStr_AF_WANPIPE = `enum AF_WANPIPE = PF_WANPIPE;`; static if(is(typeof({ mixin(enumMixinStr_AF_WANPIPE); }))) { mixin(enumMixinStr_AF_WANPIPE); } } static if(!is(typeof(AF_PPPOX))) { private enum enumMixinStr_AF_PPPOX = `enum AF_PPPOX = PF_PPPOX;`; static if(is(typeof({ mixin(enumMixinStr_AF_PPPOX); }))) { mixin(enumMixinStr_AF_PPPOX); } } static if(!is(typeof(AF_IRDA))) { private enum enumMixinStr_AF_IRDA = `enum AF_IRDA = PF_IRDA;`; static if(is(typeof({ mixin(enumMixinStr_AF_IRDA); }))) { mixin(enumMixinStr_AF_IRDA); } } static if(!is(typeof(AF_SNA))) { private enum enumMixinStr_AF_SNA = `enum AF_SNA = PF_SNA;`; static if(is(typeof({ mixin(enumMixinStr_AF_SNA); }))) { mixin(enumMixinStr_AF_SNA); } } static if(!is(typeof(AF_RDS))) { private enum enumMixinStr_AF_RDS = `enum AF_RDS = PF_RDS;`; static if(is(typeof({ mixin(enumMixinStr_AF_RDS); }))) { mixin(enumMixinStr_AF_RDS); } } static if(!is(typeof(AF_ATMSVC))) { private enum enumMixinStr_AF_ATMSVC = `enum AF_ATMSVC = PF_ATMSVC;`; static if(is(typeof({ mixin(enumMixinStr_AF_ATMSVC); }))) { mixin(enumMixinStr_AF_ATMSVC); } } static if(!is(typeof(AF_ECONET))) { private enum enumMixinStr_AF_ECONET = `enum AF_ECONET = PF_ECONET;`; static if(is(typeof({ mixin(enumMixinStr_AF_ECONET); }))) { mixin(enumMixinStr_AF_ECONET); } } static if(!is(typeof(AF_ASH))) { private enum enumMixinStr_AF_ASH = `enum AF_ASH = PF_ASH;`; static if(is(typeof({ mixin(enumMixinStr_AF_ASH); }))) { mixin(enumMixinStr_AF_ASH); } } static if(!is(typeof(AF_PACKET))) { private enum enumMixinStr_AF_PACKET = `enum AF_PACKET = PF_PACKET;`; static if(is(typeof({ mixin(enumMixinStr_AF_PACKET); }))) { mixin(enumMixinStr_AF_PACKET); } } static if(!is(typeof(AF_ROUTE))) { private enum enumMixinStr_AF_ROUTE = `enum AF_ROUTE = PF_ROUTE;`; static if(is(typeof({ mixin(enumMixinStr_AF_ROUTE); }))) { mixin(enumMixinStr_AF_ROUTE); } } static if(!is(typeof(AF_NETLINK))) { private enum enumMixinStr_AF_NETLINK = `enum AF_NETLINK = PF_NETLINK;`; static if(is(typeof({ mixin(enumMixinStr_AF_NETLINK); }))) { mixin(enumMixinStr_AF_NETLINK); } } static if(!is(typeof(AF_KEY))) { private enum enumMixinStr_AF_KEY = `enum AF_KEY = PF_KEY;`; static if(is(typeof({ mixin(enumMixinStr_AF_KEY); }))) { mixin(enumMixinStr_AF_KEY); } } static if(!is(typeof(AF_SECURITY))) { private enum enumMixinStr_AF_SECURITY = `enum AF_SECURITY = PF_SECURITY;`; static if(is(typeof({ mixin(enumMixinStr_AF_SECURITY); }))) { mixin(enumMixinStr_AF_SECURITY); } } static if(!is(typeof(AF_NETBEUI))) { private enum enumMixinStr_AF_NETBEUI = `enum AF_NETBEUI = PF_NETBEUI;`; static if(is(typeof({ mixin(enumMixinStr_AF_NETBEUI); }))) { mixin(enumMixinStr_AF_NETBEUI); } } static if(!is(typeof(AF_DECnet))) { private enum enumMixinStr_AF_DECnet = `enum AF_DECnet = PF_DECnet;`; static if(is(typeof({ mixin(enumMixinStr_AF_DECnet); }))) { mixin(enumMixinStr_AF_DECnet); } } static if(!is(typeof(AF_ROSE))) { private enum enumMixinStr_AF_ROSE = `enum AF_ROSE = PF_ROSE;`; static if(is(typeof({ mixin(enumMixinStr_AF_ROSE); }))) { mixin(enumMixinStr_AF_ROSE); } } static if(!is(typeof(AF_INET6))) { private enum enumMixinStr_AF_INET6 = `enum AF_INET6 = PF_INET6;`; static if(is(typeof({ mixin(enumMixinStr_AF_INET6); }))) { mixin(enumMixinStr_AF_INET6); } } static if(!is(typeof(AF_X25))) { private enum enumMixinStr_AF_X25 = `enum AF_X25 = PF_X25;`; static if(is(typeof({ mixin(enumMixinStr_AF_X25); }))) { mixin(enumMixinStr_AF_X25); } } static if(!is(typeof(AF_ATMPVC))) { private enum enumMixinStr_AF_ATMPVC = `enum AF_ATMPVC = PF_ATMPVC;`; static if(is(typeof({ mixin(enumMixinStr_AF_ATMPVC); }))) { mixin(enumMixinStr_AF_ATMPVC); } } static if(!is(typeof(AF_BRIDGE))) { private enum enumMixinStr_AF_BRIDGE = `enum AF_BRIDGE = PF_BRIDGE;`; static if(is(typeof({ mixin(enumMixinStr_AF_BRIDGE); }))) { mixin(enumMixinStr_AF_BRIDGE); } } static if(!is(typeof(AF_NETROM))) { private enum enumMixinStr_AF_NETROM = `enum AF_NETROM = PF_NETROM;`; static if(is(typeof({ mixin(enumMixinStr_AF_NETROM); }))) { mixin(enumMixinStr_AF_NETROM); } } static if(!is(typeof(AF_APPLETALK))) { private enum enumMixinStr_AF_APPLETALK = `enum AF_APPLETALK = PF_APPLETALK;`; static if(is(typeof({ mixin(enumMixinStr_AF_APPLETALK); }))) { mixin(enumMixinStr_AF_APPLETALK); } } static if(!is(typeof(AF_IPX))) { private enum enumMixinStr_AF_IPX = `enum AF_IPX = PF_IPX;`; static if(is(typeof({ mixin(enumMixinStr_AF_IPX); }))) { mixin(enumMixinStr_AF_IPX); } } static if(!is(typeof(AF_AX25))) { private enum enumMixinStr_AF_AX25 = `enum AF_AX25 = PF_AX25;`; static if(is(typeof({ mixin(enumMixinStr_AF_AX25); }))) { mixin(enumMixinStr_AF_AX25); } } static if(!is(typeof(AF_INET))) { private enum enumMixinStr_AF_INET = `enum AF_INET = PF_INET;`; static if(is(typeof({ mixin(enumMixinStr_AF_INET); }))) { mixin(enumMixinStr_AF_INET); } } static if(!is(typeof(AF_FILE))) { private enum enumMixinStr_AF_FILE = `enum AF_FILE = PF_FILE;`; static if(is(typeof({ mixin(enumMixinStr_AF_FILE); }))) { mixin(enumMixinStr_AF_FILE); } } static if(!is(typeof(AF_UNIX))) { private enum enumMixinStr_AF_UNIX = `enum AF_UNIX = PF_UNIX;`; static if(is(typeof({ mixin(enumMixinStr_AF_UNIX); }))) { mixin(enumMixinStr_AF_UNIX); } } static if(!is(typeof(AF_LOCAL))) { private enum enumMixinStr_AF_LOCAL = `enum AF_LOCAL = PF_LOCAL;`; static if(is(typeof({ mixin(enumMixinStr_AF_LOCAL); }))) { mixin(enumMixinStr_AF_LOCAL); } } static if(!is(typeof(AF_UNSPEC))) { private enum enumMixinStr_AF_UNSPEC = `enum AF_UNSPEC = PF_UNSPEC;`; static if(is(typeof({ mixin(enumMixinStr_AF_UNSPEC); }))) { mixin(enumMixinStr_AF_UNSPEC); } } static if(!is(typeof(PF_MAX))) { private enum enumMixinStr_PF_MAX = `enum PF_MAX = 45;`; static if(is(typeof({ mixin(enumMixinStr_PF_MAX); }))) { mixin(enumMixinStr_PF_MAX); } } static if(!is(typeof(PF_XDP))) { private enum enumMixinStr_PF_XDP = `enum PF_XDP = 44;`; static if(is(typeof({ mixin(enumMixinStr_PF_XDP); }))) { mixin(enumMixinStr_PF_XDP); } } static if(!is(typeof(PF_SMC))) { private enum enumMixinStr_PF_SMC = `enum PF_SMC = 43;`; static if(is(typeof({ mixin(enumMixinStr_PF_SMC); }))) { mixin(enumMixinStr_PF_SMC); } } static if(!is(typeof(PF_QIPCRTR))) { private enum enumMixinStr_PF_QIPCRTR = `enum PF_QIPCRTR = 42;`; static if(is(typeof({ mixin(enumMixinStr_PF_QIPCRTR); }))) { mixin(enumMixinStr_PF_QIPCRTR); } } static if(!is(typeof(PF_KCM))) { private enum enumMixinStr_PF_KCM = `enum PF_KCM = 41;`; static if(is(typeof({ mixin(enumMixinStr_PF_KCM); }))) { mixin(enumMixinStr_PF_KCM); } } static if(!is(typeof(PF_VSOCK))) { private enum enumMixinStr_PF_VSOCK = `enum PF_VSOCK = 40;`; static if(is(typeof({ mixin(enumMixinStr_PF_VSOCK); }))) { mixin(enumMixinStr_PF_VSOCK); } } static if(!is(typeof(PF_NFC))) { private enum enumMixinStr_PF_NFC = `enum PF_NFC = 39;`; static if(is(typeof({ mixin(enumMixinStr_PF_NFC); }))) { mixin(enumMixinStr_PF_NFC); } } static if(!is(typeof(PF_ALG))) { private enum enumMixinStr_PF_ALG = `enum PF_ALG = 38;`; static if(is(typeof({ mixin(enumMixinStr_PF_ALG); }))) { mixin(enumMixinStr_PF_ALG); } } static if(!is(typeof(PF_CAIF))) { private enum enumMixinStr_PF_CAIF = `enum PF_CAIF = 37;`; static if(is(typeof({ mixin(enumMixinStr_PF_CAIF); }))) { mixin(enumMixinStr_PF_CAIF); } } static if(!is(typeof(PF_IEEE802154))) { private enum enumMixinStr_PF_IEEE802154 = `enum PF_IEEE802154 = 36;`; static if(is(typeof({ mixin(enumMixinStr_PF_IEEE802154); }))) { mixin(enumMixinStr_PF_IEEE802154); } } static if(!is(typeof(PF_PHONET))) { private enum enumMixinStr_PF_PHONET = `enum PF_PHONET = 35;`; static if(is(typeof({ mixin(enumMixinStr_PF_PHONET); }))) { mixin(enumMixinStr_PF_PHONET); } } static if(!is(typeof(PF_ISDN))) { private enum enumMixinStr_PF_ISDN = `enum PF_ISDN = 34;`; static if(is(typeof({ mixin(enumMixinStr_PF_ISDN); }))) { mixin(enumMixinStr_PF_ISDN); } } static if(!is(typeof(PF_RXRPC))) { private enum enumMixinStr_PF_RXRPC = `enum PF_RXRPC = 33;`; static if(is(typeof({ mixin(enumMixinStr_PF_RXRPC); }))) { mixin(enumMixinStr_PF_RXRPC); } } static if(!is(typeof(PF_IUCV))) { private enum enumMixinStr_PF_IUCV = `enum PF_IUCV = 32;`; static if(is(typeof({ mixin(enumMixinStr_PF_IUCV); }))) { mixin(enumMixinStr_PF_IUCV); } } static if(!is(typeof(PF_BLUETOOTH))) { private enum enumMixinStr_PF_BLUETOOTH = `enum PF_BLUETOOTH = 31;`; static if(is(typeof({ mixin(enumMixinStr_PF_BLUETOOTH); }))) { mixin(enumMixinStr_PF_BLUETOOTH); } } static if(!is(typeof(PF_TIPC))) { private enum enumMixinStr_PF_TIPC = `enum PF_TIPC = 30;`; static if(is(typeof({ mixin(enumMixinStr_PF_TIPC); }))) { mixin(enumMixinStr_PF_TIPC); } } static if(!is(typeof(PF_CAN))) { private enum enumMixinStr_PF_CAN = `enum PF_CAN = 29;`; static if(is(typeof({ mixin(enumMixinStr_PF_CAN); }))) { mixin(enumMixinStr_PF_CAN); } } static if(!is(typeof(PF_MPLS))) { private enum enumMixinStr_PF_MPLS = `enum PF_MPLS = 28;`; static if(is(typeof({ mixin(enumMixinStr_PF_MPLS); }))) { mixin(enumMixinStr_PF_MPLS); } } static if(!is(typeof(PF_IB))) { private enum enumMixinStr_PF_IB = `enum PF_IB = 27;`; static if(is(typeof({ mixin(enumMixinStr_PF_IB); }))) { mixin(enumMixinStr_PF_IB); } } static if(!is(typeof(PF_LLC))) { private enum enumMixinStr_PF_LLC = `enum PF_LLC = 26;`; static if(is(typeof({ mixin(enumMixinStr_PF_LLC); }))) { mixin(enumMixinStr_PF_LLC); } } static if(!is(typeof(PF_WANPIPE))) { private enum enumMixinStr_PF_WANPIPE = `enum PF_WANPIPE = 25;`; static if(is(typeof({ mixin(enumMixinStr_PF_WANPIPE); }))) { mixin(enumMixinStr_PF_WANPIPE); } } static if(!is(typeof(PF_PPPOX))) { private enum enumMixinStr_PF_PPPOX = `enum PF_PPPOX = 24;`; static if(is(typeof({ mixin(enumMixinStr_PF_PPPOX); }))) { mixin(enumMixinStr_PF_PPPOX); } } static if(!is(typeof(PF_IRDA))) { private enum enumMixinStr_PF_IRDA = `enum PF_IRDA = 23;`; static if(is(typeof({ mixin(enumMixinStr_PF_IRDA); }))) { mixin(enumMixinStr_PF_IRDA); } } static if(!is(typeof(PF_SNA))) { private enum enumMixinStr_PF_SNA = `enum PF_SNA = 22;`; static if(is(typeof({ mixin(enumMixinStr_PF_SNA); }))) { mixin(enumMixinStr_PF_SNA); } } static if(!is(typeof(PF_RDS))) { private enum enumMixinStr_PF_RDS = `enum PF_RDS = 21;`; static if(is(typeof({ mixin(enumMixinStr_PF_RDS); }))) { mixin(enumMixinStr_PF_RDS); } } static if(!is(typeof(PF_ATMSVC))) { private enum enumMixinStr_PF_ATMSVC = `enum PF_ATMSVC = 20;`; static if(is(typeof({ mixin(enumMixinStr_PF_ATMSVC); }))) { mixin(enumMixinStr_PF_ATMSVC); } } static if(!is(typeof(PF_ECONET))) { private enum enumMixinStr_PF_ECONET = `enum PF_ECONET = 19;`; static if(is(typeof({ mixin(enumMixinStr_PF_ECONET); }))) { mixin(enumMixinStr_PF_ECONET); } } static if(!is(typeof(PF_ASH))) { private enum enumMixinStr_PF_ASH = `enum PF_ASH = 18;`; static if(is(typeof({ mixin(enumMixinStr_PF_ASH); }))) { mixin(enumMixinStr_PF_ASH); } } static if(!is(typeof(PF_PACKET))) { private enum enumMixinStr_PF_PACKET = `enum PF_PACKET = 17;`; static if(is(typeof({ mixin(enumMixinStr_PF_PACKET); }))) { mixin(enumMixinStr_PF_PACKET); } } static if(!is(typeof(PF_ROUTE))) { private enum enumMixinStr_PF_ROUTE = `enum PF_ROUTE = PF_NETLINK;`; static if(is(typeof({ mixin(enumMixinStr_PF_ROUTE); }))) { mixin(enumMixinStr_PF_ROUTE); } } static if(!is(typeof(PF_NETLINK))) { private enum enumMixinStr_PF_NETLINK = `enum PF_NETLINK = 16;`; static if(is(typeof({ mixin(enumMixinStr_PF_NETLINK); }))) { mixin(enumMixinStr_PF_NETLINK); } } static if(!is(typeof(PF_KEY))) { private enum enumMixinStr_PF_KEY = `enum PF_KEY = 15;`; static if(is(typeof({ mixin(enumMixinStr_PF_KEY); }))) { mixin(enumMixinStr_PF_KEY); } } static if(!is(typeof(PF_SECURITY))) { private enum enumMixinStr_PF_SECURITY = `enum PF_SECURITY = 14;`; static if(is(typeof({ mixin(enumMixinStr_PF_SECURITY); }))) { mixin(enumMixinStr_PF_SECURITY); } } static if(!is(typeof(PF_NETBEUI))) { private enum enumMixinStr_PF_NETBEUI = `enum PF_NETBEUI = 13;`; static if(is(typeof({ mixin(enumMixinStr_PF_NETBEUI); }))) { mixin(enumMixinStr_PF_NETBEUI); } } static if(!is(typeof(PF_DECnet))) { private enum enumMixinStr_PF_DECnet = `enum PF_DECnet = 12;`; static if(is(typeof({ mixin(enumMixinStr_PF_DECnet); }))) { mixin(enumMixinStr_PF_DECnet); } } static if(!is(typeof(PF_ROSE))) { private enum enumMixinStr_PF_ROSE = `enum PF_ROSE = 11;`; static if(is(typeof({ mixin(enumMixinStr_PF_ROSE); }))) { mixin(enumMixinStr_PF_ROSE); } } static if(!is(typeof(PF_INET6))) { private enum enumMixinStr_PF_INET6 = `enum PF_INET6 = 10;`; static if(is(typeof({ mixin(enumMixinStr_PF_INET6); }))) { mixin(enumMixinStr_PF_INET6); } } static if(!is(typeof(PF_X25))) { private enum enumMixinStr_PF_X25 = `enum PF_X25 = 9;`; static if(is(typeof({ mixin(enumMixinStr_PF_X25); }))) { mixin(enumMixinStr_PF_X25); } } static if(!is(typeof(PF_ATMPVC))) { private enum enumMixinStr_PF_ATMPVC = `enum PF_ATMPVC = 8;`; static if(is(typeof({ mixin(enumMixinStr_PF_ATMPVC); }))) { mixin(enumMixinStr_PF_ATMPVC); } } static if(!is(typeof(PF_BRIDGE))) { private enum enumMixinStr_PF_BRIDGE = `enum PF_BRIDGE = 7;`; static if(is(typeof({ mixin(enumMixinStr_PF_BRIDGE); }))) { mixin(enumMixinStr_PF_BRIDGE); } } static if(!is(typeof(PF_NETROM))) { private enum enumMixinStr_PF_NETROM = `enum PF_NETROM = 6;`; static if(is(typeof({ mixin(enumMixinStr_PF_NETROM); }))) { mixin(enumMixinStr_PF_NETROM); } } static if(!is(typeof(PF_APPLETALK))) { private enum enumMixinStr_PF_APPLETALK = `enum PF_APPLETALK = 5;`; static if(is(typeof({ mixin(enumMixinStr_PF_APPLETALK); }))) { mixin(enumMixinStr_PF_APPLETALK); } } static if(!is(typeof(PF_IPX))) { private enum enumMixinStr_PF_IPX = `enum PF_IPX = 4;`; static if(is(typeof({ mixin(enumMixinStr_PF_IPX); }))) { mixin(enumMixinStr_PF_IPX); } } static if(!is(typeof(PF_AX25))) { private enum enumMixinStr_PF_AX25 = `enum PF_AX25 = 3;`; static if(is(typeof({ mixin(enumMixinStr_PF_AX25); }))) { mixin(enumMixinStr_PF_AX25); } } static if(!is(typeof(PF_INET))) { private enum enumMixinStr_PF_INET = `enum PF_INET = 2;`; static if(is(typeof({ mixin(enumMixinStr_PF_INET); }))) { mixin(enumMixinStr_PF_INET); } } static if(!is(typeof(PF_FILE))) { private enum enumMixinStr_PF_FILE = `enum PF_FILE = PF_LOCAL;`; static if(is(typeof({ mixin(enumMixinStr_PF_FILE); }))) { mixin(enumMixinStr_PF_FILE); } } static if(!is(typeof(PF_UNIX))) { private enum enumMixinStr_PF_UNIX = `enum PF_UNIX = PF_LOCAL;`; static if(is(typeof({ mixin(enumMixinStr_PF_UNIX); }))) { mixin(enumMixinStr_PF_UNIX); } } static if(!is(typeof(PF_LOCAL))) { private enum enumMixinStr_PF_LOCAL = `enum PF_LOCAL = 1;`; static if(is(typeof({ mixin(enumMixinStr_PF_LOCAL); }))) { mixin(enumMixinStr_PF_LOCAL); } } static if(!is(typeof(PF_UNSPEC))) { private enum enumMixinStr_PF_UNSPEC = `enum PF_UNSPEC = 0;`; static if(is(typeof({ mixin(enumMixinStr_PF_UNSPEC); }))) { mixin(enumMixinStr_PF_UNSPEC); } } static if(!is(typeof(_SS_SIZE))) { private enum enumMixinStr__SS_SIZE = `enum _SS_SIZE = 128;`; static if(is(typeof({ mixin(enumMixinStr__SS_SIZE); }))) { mixin(enumMixinStr__SS_SIZE); } } static if(!is(typeof(__SOCKADDR_COMMON_SIZE))) { private enum enumMixinStr___SOCKADDR_COMMON_SIZE = `enum __SOCKADDR_COMMON_SIZE = ( ( unsigned short int ) .sizeof );`; static if(is(typeof({ mixin(enumMixinStr___SOCKADDR_COMMON_SIZE); }))) { mixin(enumMixinStr___SOCKADDR_COMMON_SIZE); } } static if(!is(typeof(_BITS_SOCKADDR_H))) { private enum enumMixinStr__BITS_SOCKADDR_H = `enum _BITS_SOCKADDR_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_SOCKADDR_H); }))) { mixin(enumMixinStr__BITS_SOCKADDR_H); } } static if(!is(typeof(__have_pthread_attr_t))) { private enum enumMixinStr___have_pthread_attr_t = `enum __have_pthread_attr_t = 1;`; static if(is(typeof({ mixin(enumMixinStr___have_pthread_attr_t); }))) { mixin(enumMixinStr___have_pthread_attr_t); } } static if(!is(typeof(_BITS_PTHREADTYPES_COMMON_H))) { private enum enumMixinStr__BITS_PTHREADTYPES_COMMON_H = `enum _BITS_PTHREADTYPES_COMMON_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_PTHREADTYPES_COMMON_H); }))) { mixin(enumMixinStr__BITS_PTHREADTYPES_COMMON_H); } } static if(!is(typeof(__SIZEOF_PTHREAD_BARRIERATTR_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_BARRIERATTR_T = `enum __SIZEOF_PTHREAD_BARRIERATTR_T = 4;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_BARRIERATTR_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_BARRIERATTR_T); } } static if(!is(typeof(__SIZEOF_PTHREAD_RWLOCKATTR_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_RWLOCKATTR_T = `enum __SIZEOF_PTHREAD_RWLOCKATTR_T = 8;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_RWLOCKATTR_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_RWLOCKATTR_T); } } static if(!is(typeof(__SIZEOF_PTHREAD_CONDATTR_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_CONDATTR_T = `enum __SIZEOF_PTHREAD_CONDATTR_T = 4;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_CONDATTR_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_CONDATTR_T); } } static if(!is(typeof(_BITS_TYPES___LOCALE_T_H))) { private enum enumMixinStr__BITS_TYPES___LOCALE_T_H = `enum _BITS_TYPES___LOCALE_T_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_TYPES___LOCALE_T_H); }))) { mixin(enumMixinStr__BITS_TYPES___LOCALE_T_H); } } static if(!is(typeof(__SIZEOF_PTHREAD_COND_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_COND_T = `enum __SIZEOF_PTHREAD_COND_T = 48;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_COND_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_COND_T); } } static if(!is(typeof(__SIZEOF_PTHREAD_MUTEXATTR_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_MUTEXATTR_T = `enum __SIZEOF_PTHREAD_MUTEXATTR_T = 4;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_MUTEXATTR_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_MUTEXATTR_T); } } static if(!is(typeof(_SIGSET_NWORDS))) { private enum enumMixinStr__SIGSET_NWORDS = `enum _SIGSET_NWORDS = ( 1024 / ( 8 * ( unsigned long int ) .sizeof ) );`; static if(is(typeof({ mixin(enumMixinStr__SIGSET_NWORDS); }))) { mixin(enumMixinStr__SIGSET_NWORDS); } } static if(!is(typeof(__SIZEOF_PTHREAD_BARRIER_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_BARRIER_T = `enum __SIZEOF_PTHREAD_BARRIER_T = 32;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_BARRIER_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_BARRIER_T); } } static if(!is(typeof(__SIZEOF_PTHREAD_RWLOCK_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_RWLOCK_T = `enum __SIZEOF_PTHREAD_RWLOCK_T = 56;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_RWLOCK_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_RWLOCK_T); } } static if(!is(typeof(__SIZEOF_PTHREAD_ATTR_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_ATTR_T = `enum __SIZEOF_PTHREAD_ATTR_T = 56;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_ATTR_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_ATTR_T); } } static if(!is(typeof(__clock_t_defined))) { private enum enumMixinStr___clock_t_defined = `enum __clock_t_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___clock_t_defined); }))) { mixin(enumMixinStr___clock_t_defined); } } static if(!is(typeof(__SIZEOF_PTHREAD_MUTEX_T))) { private enum enumMixinStr___SIZEOF_PTHREAD_MUTEX_T = `enum __SIZEOF_PTHREAD_MUTEX_T = 40;`; static if(is(typeof({ mixin(enumMixinStr___SIZEOF_PTHREAD_MUTEX_T); }))) { mixin(enumMixinStr___SIZEOF_PTHREAD_MUTEX_T); } } static if(!is(typeof(_BITS_PTHREADTYPES_ARCH_H))) { private enum enumMixinStr__BITS_PTHREADTYPES_ARCH_H = `enum _BITS_PTHREADTYPES_ARCH_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_PTHREADTYPES_ARCH_H); }))) { mixin(enumMixinStr__BITS_PTHREADTYPES_ARCH_H); } } static if(!is(typeof(__clockid_t_defined))) { private enum enumMixinStr___clockid_t_defined = `enum __clockid_t_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___clockid_t_defined); }))) { mixin(enumMixinStr___clockid_t_defined); } } static if(!is(typeof(__LDOUBLE_REDIRECTS_TO_FLOAT128_ABI))) { private enum enumMixinStr___LDOUBLE_REDIRECTS_TO_FLOAT128_ABI = `enum __LDOUBLE_REDIRECTS_TO_FLOAT128_ABI = 0;`; static if(is(typeof({ mixin(enumMixinStr___LDOUBLE_REDIRECTS_TO_FLOAT128_ABI); }))) { mixin(enumMixinStr___LDOUBLE_REDIRECTS_TO_FLOAT128_ABI); } } static if(!is(typeof(__GLIBC_USE_IEC_60559_TYPES_EXT))) { private enum enumMixinStr___GLIBC_USE_IEC_60559_TYPES_EXT = `enum __GLIBC_USE_IEC_60559_TYPES_EXT = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_IEC_60559_TYPES_EXT); }))) { mixin(enumMixinStr___GLIBC_USE_IEC_60559_TYPES_EXT); } } static if(!is(typeof(_BITS_TYPES_LOCALE_T_H))) { private enum enumMixinStr__BITS_TYPES_LOCALE_T_H = `enum _BITS_TYPES_LOCALE_T_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_TYPES_LOCALE_T_H); }))) { mixin(enumMixinStr__BITS_TYPES_LOCALE_T_H); } } static if(!is(typeof(__GLIBC_USE_IEC_60559_FUNCS_EXT_C2X))) { private enum enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT_C2X = `enum __GLIBC_USE_IEC_60559_FUNCS_EXT_C2X = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT_C2X); }))) { mixin(enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT_C2X); } } static if(!is(typeof(__GLIBC_USE_IEC_60559_FUNCS_EXT))) { private enum enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT = `enum __GLIBC_USE_IEC_60559_FUNCS_EXT = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT); }))) { mixin(enumMixinStr___GLIBC_USE_IEC_60559_FUNCS_EXT); } } static if(!is(typeof(__sigset_t_defined))) { private enum enumMixinStr___sigset_t_defined = `enum __sigset_t_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___sigset_t_defined); }))) { mixin(enumMixinStr___sigset_t_defined); } } static if(!is(typeof(__GLIBC_USE_IEC_60559_BFP_EXT_C2X))) { private enum enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT_C2X = `enum __GLIBC_USE_IEC_60559_BFP_EXT_C2X = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT_C2X); }))) { mixin(enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT_C2X); } } static if(!is(typeof(__GLIBC_USE_IEC_60559_BFP_EXT))) { private enum enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT = `enum __GLIBC_USE_IEC_60559_BFP_EXT = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT); }))) { mixin(enumMixinStr___GLIBC_USE_IEC_60559_BFP_EXT); } } static if(!is(typeof(__iovec_defined))) { private enum enumMixinStr___iovec_defined = `enum __iovec_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___iovec_defined); }))) { mixin(enumMixinStr___iovec_defined); } } static if(!is(typeof(__GLIBC_USE_LIB_EXT2))) { private enum enumMixinStr___GLIBC_USE_LIB_EXT2 = `enum __GLIBC_USE_LIB_EXT2 = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_LIB_EXT2); }))) { mixin(enumMixinStr___GLIBC_USE_LIB_EXT2); } } static if(!is(typeof(IPV6_RTHDR_TYPE_0))) { private enum enumMixinStr_IPV6_RTHDR_TYPE_0 = `enum IPV6_RTHDR_TYPE_0 = 0;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RTHDR_TYPE_0); }))) { mixin(enumMixinStr_IPV6_RTHDR_TYPE_0); } } static if(!is(typeof(__osockaddr_defined))) { private enum enumMixinStr___osockaddr_defined = `enum __osockaddr_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___osockaddr_defined); }))) { mixin(enumMixinStr___osockaddr_defined); } } static if(!is(typeof(IPV6_RTHDR_STRICT))) { private enum enumMixinStr_IPV6_RTHDR_STRICT = `enum IPV6_RTHDR_STRICT = 1;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RTHDR_STRICT); }))) { mixin(enumMixinStr_IPV6_RTHDR_STRICT); } } static if(!is(typeof(_STRUCT_TIMESPEC))) { private enum enumMixinStr__STRUCT_TIMESPEC = `enum _STRUCT_TIMESPEC = 1;`; static if(is(typeof({ mixin(enumMixinStr__STRUCT_TIMESPEC); }))) { mixin(enumMixinStr__STRUCT_TIMESPEC); } } static if(!is(typeof(IPV6_RTHDR_LOOSE))) { private enum enumMixinStr_IPV6_RTHDR_LOOSE = `enum IPV6_RTHDR_LOOSE = 0;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RTHDR_LOOSE); }))) { mixin(enumMixinStr_IPV6_RTHDR_LOOSE); } } static if(!is(typeof(SOL_ICMPV6))) { private enum enumMixinStr_SOL_ICMPV6 = `enum SOL_ICMPV6 = 58;`; static if(is(typeof({ mixin(enumMixinStr_SOL_ICMPV6); }))) { mixin(enumMixinStr_SOL_ICMPV6); } } static if(!is(typeof(SOL_IPV6))) { private enum enumMixinStr_SOL_IPV6 = `enum SOL_IPV6 = 41;`; static if(is(typeof({ mixin(enumMixinStr_SOL_IPV6); }))) { mixin(enumMixinStr_SOL_IPV6); } } static if(!is(typeof(IPV6_PMTUDISC_OMIT))) { private enum enumMixinStr_IPV6_PMTUDISC_OMIT = `enum IPV6_PMTUDISC_OMIT = 5;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_OMIT); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_OMIT); } } static if(!is(typeof(IPV6_PMTUDISC_INTERFACE))) { private enum enumMixinStr_IPV6_PMTUDISC_INTERFACE = `enum IPV6_PMTUDISC_INTERFACE = 4;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_INTERFACE); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_INTERFACE); } } static if(!is(typeof(IPV6_PMTUDISC_PROBE))) { private enum enumMixinStr_IPV6_PMTUDISC_PROBE = `enum IPV6_PMTUDISC_PROBE = 3;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_PROBE); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_PROBE); } } static if(!is(typeof(IPV6_PMTUDISC_DO))) { private enum enumMixinStr_IPV6_PMTUDISC_DO = `enum IPV6_PMTUDISC_DO = 2;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_DO); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_DO); } } static if(!is(typeof(__timeval_defined))) { private enum enumMixinStr___timeval_defined = `enum __timeval_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___timeval_defined); }))) { mixin(enumMixinStr___timeval_defined); } } static if(!is(typeof(IPV6_PMTUDISC_WANT))) { private enum enumMixinStr_IPV6_PMTUDISC_WANT = `enum IPV6_PMTUDISC_WANT = 1;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_WANT); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_WANT); } } static if(!is(typeof(IPV6_PMTUDISC_DONT))) { private enum enumMixinStr_IPV6_PMTUDISC_DONT = `enum IPV6_PMTUDISC_DONT = 0;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PMTUDISC_DONT); }))) { mixin(enumMixinStr_IPV6_PMTUDISC_DONT); } } static if(!is(typeof(__time_t_defined))) { private enum enumMixinStr___time_t_defined = `enum __time_t_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___time_t_defined); }))) { mixin(enumMixinStr___time_t_defined); } } static if(!is(typeof(IPV6_RXDSTOPTS))) { private enum enumMixinStr_IPV6_RXDSTOPTS = `enum IPV6_RXDSTOPTS = IPV6_DSTOPTS;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RXDSTOPTS); }))) { mixin(enumMixinStr_IPV6_RXDSTOPTS); } } static if(!is(typeof(IPV6_RXHOPOPTS))) { private enum enumMixinStr_IPV6_RXHOPOPTS = `enum IPV6_RXHOPOPTS = IPV6_HOPOPTS;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RXHOPOPTS); }))) { mixin(enumMixinStr_IPV6_RXHOPOPTS); } } static if(!is(typeof(__timer_t_defined))) { private enum enumMixinStr___timer_t_defined = `enum __timer_t_defined = 1;`; static if(is(typeof({ mixin(enumMixinStr___timer_t_defined); }))) { mixin(enumMixinStr___timer_t_defined); } } static if(!is(typeof(IPV6_DROP_MEMBERSHIP))) { private enum enumMixinStr_IPV6_DROP_MEMBERSHIP = `enum IPV6_DROP_MEMBERSHIP = IPV6_LEAVE_GROUP;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_DROP_MEMBERSHIP); }))) { mixin(enumMixinStr_IPV6_DROP_MEMBERSHIP); } } static if(!is(typeof(IPV6_ADD_MEMBERSHIP))) { private enum enumMixinStr_IPV6_ADD_MEMBERSHIP = `enum IPV6_ADD_MEMBERSHIP = IPV6_JOIN_GROUP;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ADD_MEMBERSHIP); }))) { mixin(enumMixinStr_IPV6_ADD_MEMBERSHIP); } } static if(!is(typeof(IPV6_FREEBIND))) { private enum enumMixinStr_IPV6_FREEBIND = `enum IPV6_FREEBIND = 78;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_FREEBIND); }))) { mixin(enumMixinStr_IPV6_FREEBIND); } } static if(!is(typeof(_BITS_TYPESIZES_H))) { private enum enumMixinStr__BITS_TYPESIZES_H = `enum _BITS_TYPESIZES_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_TYPESIZES_H); }))) { mixin(enumMixinStr__BITS_TYPESIZES_H); } } static if(!is(typeof(IPV6_RECVFRAGSIZE))) { private enum enumMixinStr_IPV6_RECVFRAGSIZE = `enum IPV6_RECVFRAGSIZE = 77;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVFRAGSIZE); }))) { mixin(enumMixinStr_IPV6_RECVFRAGSIZE); } } static if(!is(typeof(__SYSCALL_SLONG_TYPE))) { private enum enumMixinStr___SYSCALL_SLONG_TYPE = `enum __SYSCALL_SLONG_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SYSCALL_SLONG_TYPE); }))) { mixin(enumMixinStr___SYSCALL_SLONG_TYPE); } } static if(!is(typeof(__SYSCALL_ULONG_TYPE))) { private enum enumMixinStr___SYSCALL_ULONG_TYPE = `enum __SYSCALL_ULONG_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___SYSCALL_ULONG_TYPE); }))) { mixin(enumMixinStr___SYSCALL_ULONG_TYPE); } } static if(!is(typeof(__DEV_T_TYPE))) { private enum enumMixinStr___DEV_T_TYPE = `enum __DEV_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___DEV_T_TYPE); }))) { mixin(enumMixinStr___DEV_T_TYPE); } } static if(!is(typeof(__UID_T_TYPE))) { private enum enumMixinStr___UID_T_TYPE = `enum __UID_T_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___UID_T_TYPE); }))) { mixin(enumMixinStr___UID_T_TYPE); } } static if(!is(typeof(__GID_T_TYPE))) { private enum enumMixinStr___GID_T_TYPE = `enum __GID_T_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___GID_T_TYPE); }))) { mixin(enumMixinStr___GID_T_TYPE); } } static if(!is(typeof(__INO_T_TYPE))) { private enum enumMixinStr___INO_T_TYPE = `enum __INO_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___INO_T_TYPE); }))) { mixin(enumMixinStr___INO_T_TYPE); } } static if(!is(typeof(__INO64_T_TYPE))) { private enum enumMixinStr___INO64_T_TYPE = `enum __INO64_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___INO64_T_TYPE); }))) { mixin(enumMixinStr___INO64_T_TYPE); } } static if(!is(typeof(__MODE_T_TYPE))) { private enum enumMixinStr___MODE_T_TYPE = `enum __MODE_T_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___MODE_T_TYPE); }))) { mixin(enumMixinStr___MODE_T_TYPE); } } static if(!is(typeof(IPV6_UNICAST_IF))) { private enum enumMixinStr_IPV6_UNICAST_IF = `enum IPV6_UNICAST_IF = 76;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_UNICAST_IF); }))) { mixin(enumMixinStr_IPV6_UNICAST_IF); } } static if(!is(typeof(__NLINK_T_TYPE))) { private enum enumMixinStr___NLINK_T_TYPE = `enum __NLINK_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___NLINK_T_TYPE); }))) { mixin(enumMixinStr___NLINK_T_TYPE); } } static if(!is(typeof(__FSWORD_T_TYPE))) { private enum enumMixinStr___FSWORD_T_TYPE = `enum __FSWORD_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___FSWORD_T_TYPE); }))) { mixin(enumMixinStr___FSWORD_T_TYPE); } } static if(!is(typeof(__OFF_T_TYPE))) { private enum enumMixinStr___OFF_T_TYPE = `enum __OFF_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___OFF_T_TYPE); }))) { mixin(enumMixinStr___OFF_T_TYPE); } } static if(!is(typeof(__OFF64_T_TYPE))) { private enum enumMixinStr___OFF64_T_TYPE = `enum __OFF64_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___OFF64_T_TYPE); }))) { mixin(enumMixinStr___OFF64_T_TYPE); } } static if(!is(typeof(__PID_T_TYPE))) { private enum enumMixinStr___PID_T_TYPE = `enum __PID_T_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___PID_T_TYPE); }))) { mixin(enumMixinStr___PID_T_TYPE); } } static if(!is(typeof(__RLIM_T_TYPE))) { private enum enumMixinStr___RLIM_T_TYPE = `enum __RLIM_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___RLIM_T_TYPE); }))) { mixin(enumMixinStr___RLIM_T_TYPE); } } static if(!is(typeof(__RLIM64_T_TYPE))) { private enum enumMixinStr___RLIM64_T_TYPE = `enum __RLIM64_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___RLIM64_T_TYPE); }))) { mixin(enumMixinStr___RLIM64_T_TYPE); } } static if(!is(typeof(__BLKCNT_T_TYPE))) { private enum enumMixinStr___BLKCNT_T_TYPE = `enum __BLKCNT_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___BLKCNT_T_TYPE); }))) { mixin(enumMixinStr___BLKCNT_T_TYPE); } } static if(!is(typeof(__BLKCNT64_T_TYPE))) { private enum enumMixinStr___BLKCNT64_T_TYPE = `enum __BLKCNT64_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___BLKCNT64_T_TYPE); }))) { mixin(enumMixinStr___BLKCNT64_T_TYPE); } } static if(!is(typeof(__FSBLKCNT_T_TYPE))) { private enum enumMixinStr___FSBLKCNT_T_TYPE = `enum __FSBLKCNT_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___FSBLKCNT_T_TYPE); }))) { mixin(enumMixinStr___FSBLKCNT_T_TYPE); } } static if(!is(typeof(__FSBLKCNT64_T_TYPE))) { private enum enumMixinStr___FSBLKCNT64_T_TYPE = `enum __FSBLKCNT64_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___FSBLKCNT64_T_TYPE); }))) { mixin(enumMixinStr___FSBLKCNT64_T_TYPE); } } static if(!is(typeof(__FSFILCNT_T_TYPE))) { private enum enumMixinStr___FSFILCNT_T_TYPE = `enum __FSFILCNT_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___FSFILCNT_T_TYPE); }))) { mixin(enumMixinStr___FSFILCNT_T_TYPE); } } static if(!is(typeof(__FSFILCNT64_T_TYPE))) { private enum enumMixinStr___FSFILCNT64_T_TYPE = `enum __FSFILCNT64_T_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___FSFILCNT64_T_TYPE); }))) { mixin(enumMixinStr___FSFILCNT64_T_TYPE); } } static if(!is(typeof(__ID_T_TYPE))) { private enum enumMixinStr___ID_T_TYPE = `enum __ID_T_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___ID_T_TYPE); }))) { mixin(enumMixinStr___ID_T_TYPE); } } static if(!is(typeof(__CLOCK_T_TYPE))) { private enum enumMixinStr___CLOCK_T_TYPE = `enum __CLOCK_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___CLOCK_T_TYPE); }))) { mixin(enumMixinStr___CLOCK_T_TYPE); } } static if(!is(typeof(__TIME_T_TYPE))) { private enum enumMixinStr___TIME_T_TYPE = `enum __TIME_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___TIME_T_TYPE); }))) { mixin(enumMixinStr___TIME_T_TYPE); } } static if(!is(typeof(__USECONDS_T_TYPE))) { private enum enumMixinStr___USECONDS_T_TYPE = `enum __USECONDS_T_TYPE = unsigned int;`; static if(is(typeof({ mixin(enumMixinStr___USECONDS_T_TYPE); }))) { mixin(enumMixinStr___USECONDS_T_TYPE); } } static if(!is(typeof(__SUSECONDS_T_TYPE))) { private enum enumMixinStr___SUSECONDS_T_TYPE = `enum __SUSECONDS_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SUSECONDS_T_TYPE); }))) { mixin(enumMixinStr___SUSECONDS_T_TYPE); } } static if(!is(typeof(__SUSECONDS64_T_TYPE))) { private enum enumMixinStr___SUSECONDS64_T_TYPE = `enum __SUSECONDS64_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SUSECONDS64_T_TYPE); }))) { mixin(enumMixinStr___SUSECONDS64_T_TYPE); } } static if(!is(typeof(__DADDR_T_TYPE))) { private enum enumMixinStr___DADDR_T_TYPE = `enum __DADDR_T_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___DADDR_T_TYPE); }))) { mixin(enumMixinStr___DADDR_T_TYPE); } } static if(!is(typeof(__KEY_T_TYPE))) { private enum enumMixinStr___KEY_T_TYPE = `enum __KEY_T_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___KEY_T_TYPE); }))) { mixin(enumMixinStr___KEY_T_TYPE); } } static if(!is(typeof(__CLOCKID_T_TYPE))) { private enum enumMixinStr___CLOCKID_T_TYPE = `enum __CLOCKID_T_TYPE = int;`; static if(is(typeof({ mixin(enumMixinStr___CLOCKID_T_TYPE); }))) { mixin(enumMixinStr___CLOCKID_T_TYPE); } } static if(!is(typeof(__TIMER_T_TYPE))) { private enum enumMixinStr___TIMER_T_TYPE = `enum __TIMER_T_TYPE = void *;`; static if(is(typeof({ mixin(enumMixinStr___TIMER_T_TYPE); }))) { mixin(enumMixinStr___TIMER_T_TYPE); } } static if(!is(typeof(__BLKSIZE_T_TYPE))) { private enum enumMixinStr___BLKSIZE_T_TYPE = `enum __BLKSIZE_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___BLKSIZE_T_TYPE); }))) { mixin(enumMixinStr___BLKSIZE_T_TYPE); } } static if(!is(typeof(__FSID_T_TYPE))) { private enum enumMixinStr___FSID_T_TYPE = `enum __FSID_T_TYPE = { int __val [ 2 ] ; };`; static if(is(typeof({ mixin(enumMixinStr___FSID_T_TYPE); }))) { mixin(enumMixinStr___FSID_T_TYPE); } } static if(!is(typeof(__SSIZE_T_TYPE))) { private enum enumMixinStr___SSIZE_T_TYPE = `enum __SSIZE_T_TYPE = long int;`; static if(is(typeof({ mixin(enumMixinStr___SSIZE_T_TYPE); }))) { mixin(enumMixinStr___SSIZE_T_TYPE); } } static if(!is(typeof(__CPU_MASK_TYPE))) { private enum enumMixinStr___CPU_MASK_TYPE = `enum __CPU_MASK_TYPE = unsigned long int;`; static if(is(typeof({ mixin(enumMixinStr___CPU_MASK_TYPE); }))) { mixin(enumMixinStr___CPU_MASK_TYPE); } } static if(!is(typeof(IPV6_TRANSPARENT))) { private enum enumMixinStr_IPV6_TRANSPARENT = `enum IPV6_TRANSPARENT = 75;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_TRANSPARENT); }))) { mixin(enumMixinStr_IPV6_TRANSPARENT); } } static if(!is(typeof(__OFF_T_MATCHES_OFF64_T))) { private enum enumMixinStr___OFF_T_MATCHES_OFF64_T = `enum __OFF_T_MATCHES_OFF64_T = 1;`; static if(is(typeof({ mixin(enumMixinStr___OFF_T_MATCHES_OFF64_T); }))) { mixin(enumMixinStr___OFF_T_MATCHES_OFF64_T); } } static if(!is(typeof(__INO_T_MATCHES_INO64_T))) { private enum enumMixinStr___INO_T_MATCHES_INO64_T = `enum __INO_T_MATCHES_INO64_T = 1;`; static if(is(typeof({ mixin(enumMixinStr___INO_T_MATCHES_INO64_T); }))) { mixin(enumMixinStr___INO_T_MATCHES_INO64_T); } } static if(!is(typeof(__RLIM_T_MATCHES_RLIM64_T))) { private enum enumMixinStr___RLIM_T_MATCHES_RLIM64_T = `enum __RLIM_T_MATCHES_RLIM64_T = 1;`; static if(is(typeof({ mixin(enumMixinStr___RLIM_T_MATCHES_RLIM64_T); }))) { mixin(enumMixinStr___RLIM_T_MATCHES_RLIM64_T); } } static if(!is(typeof(__STATFS_MATCHES_STATFS64))) { private enum enumMixinStr___STATFS_MATCHES_STATFS64 = `enum __STATFS_MATCHES_STATFS64 = 1;`; static if(is(typeof({ mixin(enumMixinStr___STATFS_MATCHES_STATFS64); }))) { mixin(enumMixinStr___STATFS_MATCHES_STATFS64); } } static if(!is(typeof(__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64))) { private enum enumMixinStr___KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 = `enum __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 = 1;`; static if(is(typeof({ mixin(enumMixinStr___KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64); }))) { mixin(enumMixinStr___KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64); } } static if(!is(typeof(__FD_SETSIZE))) { private enum enumMixinStr___FD_SETSIZE = `enum __FD_SETSIZE = 1024;`; static if(is(typeof({ mixin(enumMixinStr___FD_SETSIZE); }))) { mixin(enumMixinStr___FD_SETSIZE); } } static if(!is(typeof(IPV6_RECVORIGDSTADDR))) { private enum enumMixinStr_IPV6_RECVORIGDSTADDR = `enum IPV6_RECVORIGDSTADDR = IPV6_ORIGDSTADDR;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVORIGDSTADDR); }))) { mixin(enumMixinStr_IPV6_RECVORIGDSTADDR); } } static if(!is(typeof(IPV6_ORIGDSTADDR))) { private enum enumMixinStr_IPV6_ORIGDSTADDR = `enum IPV6_ORIGDSTADDR = 74;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ORIGDSTADDR); }))) { mixin(enumMixinStr_IPV6_ORIGDSTADDR); } } static if(!is(typeof(IPV6_MINHOPCOUNT))) { private enum enumMixinStr_IPV6_MINHOPCOUNT = `enum IPV6_MINHOPCOUNT = 73;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MINHOPCOUNT); }))) { mixin(enumMixinStr_IPV6_MINHOPCOUNT); } } static if(!is(typeof(IPV6_ADDR_PREFERENCES))) { private enum enumMixinStr_IPV6_ADDR_PREFERENCES = `enum IPV6_ADDR_PREFERENCES = 72;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ADDR_PREFERENCES); }))) { mixin(enumMixinStr_IPV6_ADDR_PREFERENCES); } } static if(!is(typeof(_BITS_UINTN_IDENTITY_H))) { private enum enumMixinStr__BITS_UINTN_IDENTITY_H = `enum _BITS_UINTN_IDENTITY_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_UINTN_IDENTITY_H); }))) { mixin(enumMixinStr__BITS_UINTN_IDENTITY_H); } } static if(!is(typeof(IPV6_AUTOFLOWLABEL))) { private enum enumMixinStr_IPV6_AUTOFLOWLABEL = `enum IPV6_AUTOFLOWLABEL = 70;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_AUTOFLOWLABEL); }))) { mixin(enumMixinStr_IPV6_AUTOFLOWLABEL); } } static if(!is(typeof(IPV6_TCLASS))) { private enum enumMixinStr_IPV6_TCLASS = `enum IPV6_TCLASS = 67;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_TCLASS); }))) { mixin(enumMixinStr_IPV6_TCLASS); } } static if(!is(typeof(IPV6_RECVTCLASS))) { private enum enumMixinStr_IPV6_RECVTCLASS = `enum IPV6_RECVTCLASS = 66;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVTCLASS); }))) { mixin(enumMixinStr_IPV6_RECVTCLASS); } } static if(!is(typeof(IPV6_DONTFRAG))) { private enum enumMixinStr_IPV6_DONTFRAG = `enum IPV6_DONTFRAG = 62;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_DONTFRAG); }))) { mixin(enumMixinStr_IPV6_DONTFRAG); } } static if(!is(typeof(IPV6_PATHMTU))) { private enum enumMixinStr_IPV6_PATHMTU = `enum IPV6_PATHMTU = 61;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PATHMTU); }))) { mixin(enumMixinStr_IPV6_PATHMTU); } } static if(!is(typeof(IPV6_RECVPATHMTU))) { private enum enumMixinStr_IPV6_RECVPATHMTU = `enum IPV6_RECVPATHMTU = 60;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVPATHMTU); }))) { mixin(enumMixinStr_IPV6_RECVPATHMTU); } } static if(!is(typeof(IPV6_DSTOPTS))) { private enum enumMixinStr_IPV6_DSTOPTS = `enum IPV6_DSTOPTS = 59;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_DSTOPTS); }))) { mixin(enumMixinStr_IPV6_DSTOPTS); } } static if(!is(typeof(__WORDSIZE))) { private enum enumMixinStr___WORDSIZE = `enum __WORDSIZE = 64;`; static if(is(typeof({ mixin(enumMixinStr___WORDSIZE); }))) { mixin(enumMixinStr___WORDSIZE); } } static if(!is(typeof(IPV6_RECVDSTOPTS))) { private enum enumMixinStr_IPV6_RECVDSTOPTS = `enum IPV6_RECVDSTOPTS = 58;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVDSTOPTS); }))) { mixin(enumMixinStr_IPV6_RECVDSTOPTS); } } static if(!is(typeof(IPV6_RTHDR))) { private enum enumMixinStr_IPV6_RTHDR = `enum IPV6_RTHDR = 57;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RTHDR); }))) { mixin(enumMixinStr_IPV6_RTHDR); } } static if(!is(typeof(IPV6_RECVRTHDR))) { private enum enumMixinStr_IPV6_RECVRTHDR = `enum IPV6_RECVRTHDR = 56;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVRTHDR); }))) { mixin(enumMixinStr_IPV6_RECVRTHDR); } } static if(!is(typeof(__WORDSIZE_TIME64_COMPAT32))) { private enum enumMixinStr___WORDSIZE_TIME64_COMPAT32 = `enum __WORDSIZE_TIME64_COMPAT32 = 1;`; static if(is(typeof({ mixin(enumMixinStr___WORDSIZE_TIME64_COMPAT32); }))) { mixin(enumMixinStr___WORDSIZE_TIME64_COMPAT32); } } static if(!is(typeof(__SYSCALL_WORDSIZE))) { private enum enumMixinStr___SYSCALL_WORDSIZE = `enum __SYSCALL_WORDSIZE = 64;`; static if(is(typeof({ mixin(enumMixinStr___SYSCALL_WORDSIZE); }))) { mixin(enumMixinStr___SYSCALL_WORDSIZE); } } static if(!is(typeof(_ENDIAN_H))) { private enum enumMixinStr__ENDIAN_H = `enum _ENDIAN_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__ENDIAN_H); }))) { mixin(enumMixinStr__ENDIAN_H); } } static if(!is(typeof(IPV6_RTHDRDSTOPTS))) { private enum enumMixinStr_IPV6_RTHDRDSTOPTS = `enum IPV6_RTHDRDSTOPTS = 55;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RTHDRDSTOPTS); }))) { mixin(enumMixinStr_IPV6_RTHDRDSTOPTS); } } static if(!is(typeof(IPV6_HOPOPTS))) { private enum enumMixinStr_IPV6_HOPOPTS = `enum IPV6_HOPOPTS = 54;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_HOPOPTS); }))) { mixin(enumMixinStr_IPV6_HOPOPTS); } } static if(!is(typeof(IPV6_RECVHOPOPTS))) { private enum enumMixinStr_IPV6_RECVHOPOPTS = `enum IPV6_RECVHOPOPTS = 53;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVHOPOPTS); }))) { mixin(enumMixinStr_IPV6_RECVHOPOPTS); } } static if(!is(typeof(LITTLE_ENDIAN))) { private enum enumMixinStr_LITTLE_ENDIAN = `enum LITTLE_ENDIAN = __LITTLE_ENDIAN;`; static if(is(typeof({ mixin(enumMixinStr_LITTLE_ENDIAN); }))) { mixin(enumMixinStr_LITTLE_ENDIAN); } } static if(!is(typeof(BIG_ENDIAN))) { private enum enumMixinStr_BIG_ENDIAN = `enum BIG_ENDIAN = __BIG_ENDIAN;`; static if(is(typeof({ mixin(enumMixinStr_BIG_ENDIAN); }))) { mixin(enumMixinStr_BIG_ENDIAN); } } static if(!is(typeof(PDP_ENDIAN))) { private enum enumMixinStr_PDP_ENDIAN = `enum PDP_ENDIAN = __PDP_ENDIAN;`; static if(is(typeof({ mixin(enumMixinStr_PDP_ENDIAN); }))) { mixin(enumMixinStr_PDP_ENDIAN); } } static if(!is(typeof(BYTE_ORDER))) { private enum enumMixinStr_BYTE_ORDER = `enum BYTE_ORDER = __BYTE_ORDER;`; static if(is(typeof({ mixin(enumMixinStr_BYTE_ORDER); }))) { mixin(enumMixinStr_BYTE_ORDER); } } static if(!is(typeof(IPV6_HOPLIMIT))) { private enum enumMixinStr_IPV6_HOPLIMIT = `enum IPV6_HOPLIMIT = 52;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_HOPLIMIT); }))) { mixin(enumMixinStr_IPV6_HOPLIMIT); } } static if(!is(typeof(IPV6_RECVHOPLIMIT))) { private enum enumMixinStr_IPV6_RECVHOPLIMIT = `enum IPV6_RECVHOPLIMIT = 51;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVHOPLIMIT); }))) { mixin(enumMixinStr_IPV6_RECVHOPLIMIT); } } static if(!is(typeof(IPV6_PKTINFO))) { private enum enumMixinStr_IPV6_PKTINFO = `enum IPV6_PKTINFO = 50;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_PKTINFO); }))) { mixin(enumMixinStr_IPV6_PKTINFO); } } static if(!is(typeof(IPV6_RECVPKTINFO))) { private enum enumMixinStr_IPV6_RECVPKTINFO = `enum IPV6_RECVPKTINFO = 49;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVPKTINFO); }))) { mixin(enumMixinStr_IPV6_RECVPKTINFO); } } static if(!is(typeof(IPV6_HDRINCL))) { private enum enumMixinStr_IPV6_HDRINCL = `enum IPV6_HDRINCL = 36;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_HDRINCL); }))) { mixin(enumMixinStr_IPV6_HDRINCL); } } static if(!is(typeof(_FEATURES_H))) { private enum enumMixinStr__FEATURES_H = `enum _FEATURES_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__FEATURES_H); }))) { mixin(enumMixinStr__FEATURES_H); } } static if(!is(typeof(IPV6_XFRM_POLICY))) { private enum enumMixinStr_IPV6_XFRM_POLICY = `enum IPV6_XFRM_POLICY = 35;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_XFRM_POLICY); }))) { mixin(enumMixinStr_IPV6_XFRM_POLICY); } } static if(!is(typeof(IPV6_IPSEC_POLICY))) { private enum enumMixinStr_IPV6_IPSEC_POLICY = `enum IPV6_IPSEC_POLICY = 34;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_IPSEC_POLICY); }))) { mixin(enumMixinStr_IPV6_IPSEC_POLICY); } } static if(!is(typeof(IPV6_RECVERR_RFC4884))) { private enum enumMixinStr_IPV6_RECVERR_RFC4884 = `enum IPV6_RECVERR_RFC4884 = 31;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVERR_RFC4884); }))) { mixin(enumMixinStr_IPV6_RECVERR_RFC4884); } } static if(!is(typeof(IPV6_ROUTER_ALERT_ISOLATE))) { private enum enumMixinStr_IPV6_ROUTER_ALERT_ISOLATE = `enum IPV6_ROUTER_ALERT_ISOLATE = 30;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ROUTER_ALERT_ISOLATE); }))) { mixin(enumMixinStr_IPV6_ROUTER_ALERT_ISOLATE); } } static if(!is(typeof(_DEFAULT_SOURCE))) { private enum enumMixinStr__DEFAULT_SOURCE = `enum _DEFAULT_SOURCE = 1;`; static if(is(typeof({ mixin(enumMixinStr__DEFAULT_SOURCE); }))) { mixin(enumMixinStr__DEFAULT_SOURCE); } } static if(!is(typeof(IPV6_MULTICAST_ALL))) { private enum enumMixinStr_IPV6_MULTICAST_ALL = `enum IPV6_MULTICAST_ALL = 29;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MULTICAST_ALL); }))) { mixin(enumMixinStr_IPV6_MULTICAST_ALL); } } static if(!is(typeof(IPV6_LEAVE_ANYCAST))) { private enum enumMixinStr_IPV6_LEAVE_ANYCAST = `enum IPV6_LEAVE_ANYCAST = 28;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_LEAVE_ANYCAST); }))) { mixin(enumMixinStr_IPV6_LEAVE_ANYCAST); } } static if(!is(typeof(__GLIBC_USE_ISOC2X))) { private enum enumMixinStr___GLIBC_USE_ISOC2X = `enum __GLIBC_USE_ISOC2X = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_ISOC2X); }))) { mixin(enumMixinStr___GLIBC_USE_ISOC2X); } } static if(!is(typeof(IPV6_JOIN_ANYCAST))) { private enum enumMixinStr_IPV6_JOIN_ANYCAST = `enum IPV6_JOIN_ANYCAST = 27;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_JOIN_ANYCAST); }))) { mixin(enumMixinStr_IPV6_JOIN_ANYCAST); } } static if(!is(typeof(IPV6_V6ONLY))) { private enum enumMixinStr_IPV6_V6ONLY = `enum IPV6_V6ONLY = 26;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_V6ONLY); }))) { mixin(enumMixinStr_IPV6_V6ONLY); } } static if(!is(typeof(__USE_ISOC11))) { private enum enumMixinStr___USE_ISOC11 = `enum __USE_ISOC11 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_ISOC11); }))) { mixin(enumMixinStr___USE_ISOC11); } } static if(!is(typeof(IPV6_RECVERR))) { private enum enumMixinStr_IPV6_RECVERR = `enum IPV6_RECVERR = 25;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_RECVERR); }))) { mixin(enumMixinStr_IPV6_RECVERR); } } static if(!is(typeof(IPV6_MTU))) { private enum enumMixinStr_IPV6_MTU = `enum IPV6_MTU = 24;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MTU); }))) { mixin(enumMixinStr_IPV6_MTU); } } static if(!is(typeof(__USE_ISOC99))) { private enum enumMixinStr___USE_ISOC99 = `enum __USE_ISOC99 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_ISOC99); }))) { mixin(enumMixinStr___USE_ISOC99); } } static if(!is(typeof(IPV6_MTU_DISCOVER))) { private enum enumMixinStr_IPV6_MTU_DISCOVER = `enum IPV6_MTU_DISCOVER = 23;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MTU_DISCOVER); }))) { mixin(enumMixinStr_IPV6_MTU_DISCOVER); } } static if(!is(typeof(IPV6_ROUTER_ALERT))) { private enum enumMixinStr_IPV6_ROUTER_ALERT = `enum IPV6_ROUTER_ALERT = 22;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ROUTER_ALERT); }))) { mixin(enumMixinStr_IPV6_ROUTER_ALERT); } } static if(!is(typeof(__USE_ISOC95))) { private enum enumMixinStr___USE_ISOC95 = `enum __USE_ISOC95 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_ISOC95); }))) { mixin(enumMixinStr___USE_ISOC95); } } static if(!is(typeof(IPV6_LEAVE_GROUP))) { private enum enumMixinStr_IPV6_LEAVE_GROUP = `enum IPV6_LEAVE_GROUP = 21;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_LEAVE_GROUP); }))) { mixin(enumMixinStr_IPV6_LEAVE_GROUP); } } static if(!is(typeof(__USE_POSIX_IMPLICITLY))) { private enum enumMixinStr___USE_POSIX_IMPLICITLY = `enum __USE_POSIX_IMPLICITLY = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_POSIX_IMPLICITLY); }))) { mixin(enumMixinStr___USE_POSIX_IMPLICITLY); } } static if(!is(typeof(_POSIX_SOURCE))) { private enum enumMixinStr__POSIX_SOURCE = `enum _POSIX_SOURCE = 1;`; static if(is(typeof({ mixin(enumMixinStr__POSIX_SOURCE); }))) { mixin(enumMixinStr__POSIX_SOURCE); } } static if(!is(typeof(_POSIX_C_SOURCE))) { private enum enumMixinStr__POSIX_C_SOURCE = `enum _POSIX_C_SOURCE = 200809L;`; static if(is(typeof({ mixin(enumMixinStr__POSIX_C_SOURCE); }))) { mixin(enumMixinStr__POSIX_C_SOURCE); } } static if(!is(typeof(IPV6_JOIN_GROUP))) { private enum enumMixinStr_IPV6_JOIN_GROUP = `enum IPV6_JOIN_GROUP = 20;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_JOIN_GROUP); }))) { mixin(enumMixinStr_IPV6_JOIN_GROUP); } } static if(!is(typeof(IPV6_MULTICAST_LOOP))) { private enum enumMixinStr_IPV6_MULTICAST_LOOP = `enum IPV6_MULTICAST_LOOP = 19;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MULTICAST_LOOP); }))) { mixin(enumMixinStr_IPV6_MULTICAST_LOOP); } } static if(!is(typeof(IPV6_MULTICAST_HOPS))) { private enum enumMixinStr_IPV6_MULTICAST_HOPS = `enum IPV6_MULTICAST_HOPS = 18;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MULTICAST_HOPS); }))) { mixin(enumMixinStr_IPV6_MULTICAST_HOPS); } } static if(!is(typeof(IPV6_MULTICAST_IF))) { private enum enumMixinStr_IPV6_MULTICAST_IF = `enum IPV6_MULTICAST_IF = 17;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_MULTICAST_IF); }))) { mixin(enumMixinStr_IPV6_MULTICAST_IF); } } static if(!is(typeof(IPV6_UNICAST_HOPS))) { private enum enumMixinStr_IPV6_UNICAST_HOPS = `enum IPV6_UNICAST_HOPS = 16;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_UNICAST_HOPS); }))) { mixin(enumMixinStr_IPV6_UNICAST_HOPS); } } static if(!is(typeof(IPV6_AUTHHDR))) { private enum enumMixinStr_IPV6_AUTHHDR = `enum IPV6_AUTHHDR = 10;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_AUTHHDR); }))) { mixin(enumMixinStr_IPV6_AUTHHDR); } } static if(!is(typeof(IPV6_NEXTHOP))) { private enum enumMixinStr_IPV6_NEXTHOP = `enum IPV6_NEXTHOP = 9;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_NEXTHOP); }))) { mixin(enumMixinStr_IPV6_NEXTHOP); } } static if(!is(typeof(__USE_POSIX))) { private enum enumMixinStr___USE_POSIX = `enum __USE_POSIX = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_POSIX); }))) { mixin(enumMixinStr___USE_POSIX); } } static if(!is(typeof(SCM_SRCRT))) { private enum enumMixinStr_SCM_SRCRT = `enum SCM_SRCRT = IPV6_RXSRCRT;`; static if(is(typeof({ mixin(enumMixinStr_SCM_SRCRT); }))) { mixin(enumMixinStr_SCM_SRCRT); } } static if(!is(typeof(IPV6_2292HOPLIMIT))) { private enum enumMixinStr_IPV6_2292HOPLIMIT = `enum IPV6_2292HOPLIMIT = 8;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292HOPLIMIT); }))) { mixin(enumMixinStr_IPV6_2292HOPLIMIT); } } static if(!is(typeof(__USE_POSIX2))) { private enum enumMixinStr___USE_POSIX2 = `enum __USE_POSIX2 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_POSIX2); }))) { mixin(enumMixinStr___USE_POSIX2); } } static if(!is(typeof(IPV6_CHECKSUM))) { private enum enumMixinStr_IPV6_CHECKSUM = `enum IPV6_CHECKSUM = 7;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_CHECKSUM); }))) { mixin(enumMixinStr_IPV6_CHECKSUM); } } static if(!is(typeof(IPV6_2292PKTOPTIONS))) { private enum enumMixinStr_IPV6_2292PKTOPTIONS = `enum IPV6_2292PKTOPTIONS = 6;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292PKTOPTIONS); }))) { mixin(enumMixinStr_IPV6_2292PKTOPTIONS); } } static if(!is(typeof(__USE_POSIX199309))) { private enum enumMixinStr___USE_POSIX199309 = `enum __USE_POSIX199309 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_POSIX199309); }))) { mixin(enumMixinStr___USE_POSIX199309); } } static if(!is(typeof(IPV6_2292RTHDR))) { private enum enumMixinStr_IPV6_2292RTHDR = `enum IPV6_2292RTHDR = 5;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292RTHDR); }))) { mixin(enumMixinStr_IPV6_2292RTHDR); } } static if(!is(typeof(IPV6_2292DSTOPTS))) { private enum enumMixinStr_IPV6_2292DSTOPTS = `enum IPV6_2292DSTOPTS = 4;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292DSTOPTS); }))) { mixin(enumMixinStr_IPV6_2292DSTOPTS); } } static if(!is(typeof(__USE_POSIX199506))) { private enum enumMixinStr___USE_POSIX199506 = `enum __USE_POSIX199506 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_POSIX199506); }))) { mixin(enumMixinStr___USE_POSIX199506); } } static if(!is(typeof(IPV6_2292HOPOPTS))) { private enum enumMixinStr_IPV6_2292HOPOPTS = `enum IPV6_2292HOPOPTS = 3;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292HOPOPTS); }))) { mixin(enumMixinStr_IPV6_2292HOPOPTS); } } static if(!is(typeof(IPV6_2292PKTINFO))) { private enum enumMixinStr_IPV6_2292PKTINFO = `enum IPV6_2292PKTINFO = 2;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_2292PKTINFO); }))) { mixin(enumMixinStr_IPV6_2292PKTINFO); } } static if(!is(typeof(__USE_XOPEN2K))) { private enum enumMixinStr___USE_XOPEN2K = `enum __USE_XOPEN2K = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_XOPEN2K); }))) { mixin(enumMixinStr___USE_XOPEN2K); } } static if(!is(typeof(IPV6_ADDRFORM))) { private enum enumMixinStr_IPV6_ADDRFORM = `enum IPV6_ADDRFORM = 1;`; static if(is(typeof({ mixin(enumMixinStr_IPV6_ADDRFORM); }))) { mixin(enumMixinStr_IPV6_ADDRFORM); } } static if(!is(typeof(IP_MAX_MEMBERSHIPS))) { private enum enumMixinStr_IP_MAX_MEMBERSHIPS = `enum IP_MAX_MEMBERSHIPS = 20;`; static if(is(typeof({ mixin(enumMixinStr_IP_MAX_MEMBERSHIPS); }))) { mixin(enumMixinStr_IP_MAX_MEMBERSHIPS); } } static if(!is(typeof(__USE_XOPEN2K8))) { private enum enumMixinStr___USE_XOPEN2K8 = `enum __USE_XOPEN2K8 = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_XOPEN2K8); }))) { mixin(enumMixinStr___USE_XOPEN2K8); } } static if(!is(typeof(_ATFILE_SOURCE))) { private enum enumMixinStr__ATFILE_SOURCE = `enum _ATFILE_SOURCE = 1;`; static if(is(typeof({ mixin(enumMixinStr__ATFILE_SOURCE); }))) { mixin(enumMixinStr__ATFILE_SOURCE); } } static if(!is(typeof(IP_DEFAULT_MULTICAST_LOOP))) { private enum enumMixinStr_IP_DEFAULT_MULTICAST_LOOP = `enum IP_DEFAULT_MULTICAST_LOOP = 1;`; static if(is(typeof({ mixin(enumMixinStr_IP_DEFAULT_MULTICAST_LOOP); }))) { mixin(enumMixinStr_IP_DEFAULT_MULTICAST_LOOP); } } static if(!is(typeof(__USE_MISC))) { private enum enumMixinStr___USE_MISC = `enum __USE_MISC = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_MISC); }))) { mixin(enumMixinStr___USE_MISC); } } static if(!is(typeof(IP_DEFAULT_MULTICAST_TTL))) { private enum enumMixinStr_IP_DEFAULT_MULTICAST_TTL = `enum IP_DEFAULT_MULTICAST_TTL = 1;`; static if(is(typeof({ mixin(enumMixinStr_IP_DEFAULT_MULTICAST_TTL); }))) { mixin(enumMixinStr_IP_DEFAULT_MULTICAST_TTL); } } static if(!is(typeof(__USE_ATFILE))) { private enum enumMixinStr___USE_ATFILE = `enum __USE_ATFILE = 1;`; static if(is(typeof({ mixin(enumMixinStr___USE_ATFILE); }))) { mixin(enumMixinStr___USE_ATFILE); } } static if(!is(typeof(__USE_FORTIFY_LEVEL))) { private enum enumMixinStr___USE_FORTIFY_LEVEL = `enum __USE_FORTIFY_LEVEL = 0;`; static if(is(typeof({ mixin(enumMixinStr___USE_FORTIFY_LEVEL); }))) { mixin(enumMixinStr___USE_FORTIFY_LEVEL); } } static if(!is(typeof(SOL_IP))) { private enum enumMixinStr_SOL_IP = `enum SOL_IP = 0;`; static if(is(typeof({ mixin(enumMixinStr_SOL_IP); }))) { mixin(enumMixinStr_SOL_IP); } } static if(!is(typeof(__GLIBC_USE_DEPRECATED_GETS))) { private enum enumMixinStr___GLIBC_USE_DEPRECATED_GETS = `enum __GLIBC_USE_DEPRECATED_GETS = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_DEPRECATED_GETS); }))) { mixin(enumMixinStr___GLIBC_USE_DEPRECATED_GETS); } } static if(!is(typeof(IP_UNICAST_IF))) { private enum enumMixinStr_IP_UNICAST_IF = `enum IP_UNICAST_IF = 50;`; static if(is(typeof({ mixin(enumMixinStr_IP_UNICAST_IF); }))) { mixin(enumMixinStr_IP_UNICAST_IF); } } static if(!is(typeof(IP_MULTICAST_ALL))) { private enum enumMixinStr_IP_MULTICAST_ALL = `enum IP_MULTICAST_ALL = 49;`; static if(is(typeof({ mixin(enumMixinStr_IP_MULTICAST_ALL); }))) { mixin(enumMixinStr_IP_MULTICAST_ALL); } } static if(!is(typeof(__GLIBC_USE_DEPRECATED_SCANF))) { private enum enumMixinStr___GLIBC_USE_DEPRECATED_SCANF = `enum __GLIBC_USE_DEPRECATED_SCANF = 0;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_USE_DEPRECATED_SCANF); }))) { mixin(enumMixinStr___GLIBC_USE_DEPRECATED_SCANF); } } static if(!is(typeof(IP_MSFILTER))) { private enum enumMixinStr_IP_MSFILTER = `enum IP_MSFILTER = 41;`; static if(is(typeof({ mixin(enumMixinStr_IP_MSFILTER); }))) { mixin(enumMixinStr_IP_MSFILTER); } } static if(!is(typeof(__GNU_LIBRARY__))) { private enum enumMixinStr___GNU_LIBRARY__ = `enum __GNU_LIBRARY__ = 6;`; static if(is(typeof({ mixin(enumMixinStr___GNU_LIBRARY__); }))) { mixin(enumMixinStr___GNU_LIBRARY__); } } static if(!is(typeof(__GLIBC__))) { private enum enumMixinStr___GLIBC__ = `enum __GLIBC__ = 2;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC__); }))) { mixin(enumMixinStr___GLIBC__); } } static if(!is(typeof(__GLIBC_MINOR__))) { private enum enumMixinStr___GLIBC_MINOR__ = `enum __GLIBC_MINOR__ = 33;`; static if(is(typeof({ mixin(enumMixinStr___GLIBC_MINOR__); }))) { mixin(enumMixinStr___GLIBC_MINOR__); } } static if(!is(typeof(IP_DROP_SOURCE_MEMBERSHIP))) { private enum enumMixinStr_IP_DROP_SOURCE_MEMBERSHIP = `enum IP_DROP_SOURCE_MEMBERSHIP = 40;`; static if(is(typeof({ mixin(enumMixinStr_IP_DROP_SOURCE_MEMBERSHIP); }))) { mixin(enumMixinStr_IP_DROP_SOURCE_MEMBERSHIP); } } static if(!is(typeof(IP_ADD_SOURCE_MEMBERSHIP))) { private enum enumMixinStr_IP_ADD_SOURCE_MEMBERSHIP = `enum IP_ADD_SOURCE_MEMBERSHIP = 39;`; static if(is(typeof({ mixin(enumMixinStr_IP_ADD_SOURCE_MEMBERSHIP); }))) { mixin(enumMixinStr_IP_ADD_SOURCE_MEMBERSHIP); } } static if(!is(typeof(IP_BLOCK_SOURCE))) { private enum enumMixinStr_IP_BLOCK_SOURCE = `enum IP_BLOCK_SOURCE = 38;`; static if(is(typeof({ mixin(enumMixinStr_IP_BLOCK_SOURCE); }))) { mixin(enumMixinStr_IP_BLOCK_SOURCE); } } static if(!is(typeof(IP_UNBLOCK_SOURCE))) { private enum enumMixinStr_IP_UNBLOCK_SOURCE = `enum IP_UNBLOCK_SOURCE = 37;`; static if(is(typeof({ mixin(enumMixinStr_IP_UNBLOCK_SOURCE); }))) { mixin(enumMixinStr_IP_UNBLOCK_SOURCE); } } static if(!is(typeof(IP_DROP_MEMBERSHIP))) { private enum enumMixinStr_IP_DROP_MEMBERSHIP = `enum IP_DROP_MEMBERSHIP = 36;`; static if(is(typeof({ mixin(enumMixinStr_IP_DROP_MEMBERSHIP); }))) { mixin(enumMixinStr_IP_DROP_MEMBERSHIP); } } static if(!is(typeof(IP_ADD_MEMBERSHIP))) { private enum enumMixinStr_IP_ADD_MEMBERSHIP = `enum IP_ADD_MEMBERSHIP = 35;`; static if(is(typeof({ mixin(enumMixinStr_IP_ADD_MEMBERSHIP); }))) { mixin(enumMixinStr_IP_ADD_MEMBERSHIP); } } static if(!is(typeof(IP_MULTICAST_LOOP))) { private enum enumMixinStr_IP_MULTICAST_LOOP = `enum IP_MULTICAST_LOOP = 34;`; static if(is(typeof({ mixin(enumMixinStr_IP_MULTICAST_LOOP); }))) { mixin(enumMixinStr_IP_MULTICAST_LOOP); } } static if(!is(typeof(IP_MULTICAST_TTL))) { private enum enumMixinStr_IP_MULTICAST_TTL = `enum IP_MULTICAST_TTL = 33;`; static if(is(typeof({ mixin(enumMixinStr_IP_MULTICAST_TTL); }))) { mixin(enumMixinStr_IP_MULTICAST_TTL); } } static if(!is(typeof(IP_MULTICAST_IF))) { private enum enumMixinStr_IP_MULTICAST_IF = `enum IP_MULTICAST_IF = 32;`; static if(is(typeof({ mixin(enumMixinStr_IP_MULTICAST_IF); }))) { mixin(enumMixinStr_IP_MULTICAST_IF); } } static if(!is(typeof(IP_PMTUDISC_OMIT))) { private enum enumMixinStr_IP_PMTUDISC_OMIT = `enum IP_PMTUDISC_OMIT = 5;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_OMIT); }))) { mixin(enumMixinStr_IP_PMTUDISC_OMIT); } } static if(!is(typeof(IP_PMTUDISC_INTERFACE))) { private enum enumMixinStr_IP_PMTUDISC_INTERFACE = `enum IP_PMTUDISC_INTERFACE = 4;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_INTERFACE); }))) { mixin(enumMixinStr_IP_PMTUDISC_INTERFACE); } } static if(!is(typeof(IP_PMTUDISC_PROBE))) { private enum enumMixinStr_IP_PMTUDISC_PROBE = `enum IP_PMTUDISC_PROBE = 3;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_PROBE); }))) { mixin(enumMixinStr_IP_PMTUDISC_PROBE); } } static if(!is(typeof(IP_PMTUDISC_DO))) { private enum enumMixinStr_IP_PMTUDISC_DO = `enum IP_PMTUDISC_DO = 2;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_DO); }))) { mixin(enumMixinStr_IP_PMTUDISC_DO); } } static if(!is(typeof(IP_PMTUDISC_WANT))) { private enum enumMixinStr_IP_PMTUDISC_WANT = `enum IP_PMTUDISC_WANT = 1;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_WANT); }))) { mixin(enumMixinStr_IP_PMTUDISC_WANT); } } static if(!is(typeof(IP_PMTUDISC_DONT))) { private enum enumMixinStr_IP_PMTUDISC_DONT = `enum IP_PMTUDISC_DONT = 0;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC_DONT); }))) { mixin(enumMixinStr_IP_PMTUDISC_DONT); } } static if(!is(typeof(IP_RECVERR_RFC4884))) { private enum enumMixinStr_IP_RECVERR_RFC4884 = `enum IP_RECVERR_RFC4884 = 26;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVERR_RFC4884); }))) { mixin(enumMixinStr_IP_RECVERR_RFC4884); } } static if(!is(typeof(IP_RECVFRAGSIZE))) { private enum enumMixinStr_IP_RECVFRAGSIZE = `enum IP_RECVFRAGSIZE = 25;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVFRAGSIZE); }))) { mixin(enumMixinStr_IP_RECVFRAGSIZE); } } static if(!is(typeof(IP_BIND_ADDRESS_NO_PORT))) { private enum enumMixinStr_IP_BIND_ADDRESS_NO_PORT = `enum IP_BIND_ADDRESS_NO_PORT = 24;`; static if(is(typeof({ mixin(enumMixinStr_IP_BIND_ADDRESS_NO_PORT); }))) { mixin(enumMixinStr_IP_BIND_ADDRESS_NO_PORT); } } static if(!is(typeof(IP_CHECKSUM))) { private enum enumMixinStr_IP_CHECKSUM = `enum IP_CHECKSUM = 23;`; static if(is(typeof({ mixin(enumMixinStr_IP_CHECKSUM); }))) { mixin(enumMixinStr_IP_CHECKSUM); } } static if(!is(typeof(IP_NODEFRAG))) { private enum enumMixinStr_IP_NODEFRAG = `enum IP_NODEFRAG = 22;`; static if(is(typeof({ mixin(enumMixinStr_IP_NODEFRAG); }))) { mixin(enumMixinStr_IP_NODEFRAG); } } static if(!is(typeof(_NETINET_IN_H))) { private enum enumMixinStr__NETINET_IN_H = `enum _NETINET_IN_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__NETINET_IN_H); }))) { mixin(enumMixinStr__NETINET_IN_H); } } static if(!is(typeof(IP_MINTTL))) { private enum enumMixinStr_IP_MINTTL = `enum IP_MINTTL = 21;`; static if(is(typeof({ mixin(enumMixinStr_IP_MINTTL); }))) { mixin(enumMixinStr_IP_MINTTL); } } static if(!is(typeof(IP_RECVORIGDSTADDR))) { private enum enumMixinStr_IP_RECVORIGDSTADDR = `enum IP_RECVORIGDSTADDR = IP_ORIGDSTADDR;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVORIGDSTADDR); }))) { mixin(enumMixinStr_IP_RECVORIGDSTADDR); } } static if(!is(typeof(IP_ORIGDSTADDR))) { private enum enumMixinStr_IP_ORIGDSTADDR = `enum IP_ORIGDSTADDR = 20;`; static if(is(typeof({ mixin(enumMixinStr_IP_ORIGDSTADDR); }))) { mixin(enumMixinStr_IP_ORIGDSTADDR); } } static if(!is(typeof(IP_TRANSPARENT))) { private enum enumMixinStr_IP_TRANSPARENT = `enum IP_TRANSPARENT = 19;`; static if(is(typeof({ mixin(enumMixinStr_IP_TRANSPARENT); }))) { mixin(enumMixinStr_IP_TRANSPARENT); } } static if(!is(typeof(IP_PASSSEC))) { private enum enumMixinStr_IP_PASSSEC = `enum IP_PASSSEC = 18;`; static if(is(typeof({ mixin(enumMixinStr_IP_PASSSEC); }))) { mixin(enumMixinStr_IP_PASSSEC); } } static if(!is(typeof(IP_XFRM_POLICY))) { private enum enumMixinStr_IP_XFRM_POLICY = `enum IP_XFRM_POLICY = 17;`; static if(is(typeof({ mixin(enumMixinStr_IP_XFRM_POLICY); }))) { mixin(enumMixinStr_IP_XFRM_POLICY); } } static if(!is(typeof(IP_IPSEC_POLICY))) { private enum enumMixinStr_IP_IPSEC_POLICY = `enum IP_IPSEC_POLICY = 16;`; static if(is(typeof({ mixin(enumMixinStr_IP_IPSEC_POLICY); }))) { mixin(enumMixinStr_IP_IPSEC_POLICY); } } static if(!is(typeof(IP_FREEBIND))) { private enum enumMixinStr_IP_FREEBIND = `enum IP_FREEBIND = 15;`; static if(is(typeof({ mixin(enumMixinStr_IP_FREEBIND); }))) { mixin(enumMixinStr_IP_FREEBIND); } } static if(!is(typeof(IPPROTO_IP))) { private enum enumMixinStr_IPPROTO_IP = `enum IPPROTO_IP = IPPROTO_IP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_IP); }))) { mixin(enumMixinStr_IPPROTO_IP); } } static if(!is(typeof(IPPROTO_ICMP))) { private enum enumMixinStr_IPPROTO_ICMP = `enum IPPROTO_ICMP = IPPROTO_ICMP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ICMP); }))) { mixin(enumMixinStr_IPPROTO_ICMP); } } static if(!is(typeof(IPPROTO_IGMP))) { private enum enumMixinStr_IPPROTO_IGMP = `enum IPPROTO_IGMP = IPPROTO_IGMP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_IGMP); }))) { mixin(enumMixinStr_IPPROTO_IGMP); } } static if(!is(typeof(IPPROTO_IPIP))) { private enum enumMixinStr_IPPROTO_IPIP = `enum IPPROTO_IPIP = IPPROTO_IPIP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_IPIP); }))) { mixin(enumMixinStr_IPPROTO_IPIP); } } static if(!is(typeof(IPPROTO_TCP))) { private enum enumMixinStr_IPPROTO_TCP = `enum IPPROTO_TCP = IPPROTO_TCP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_TCP); }))) { mixin(enumMixinStr_IPPROTO_TCP); } } static if(!is(typeof(IPPROTO_EGP))) { private enum enumMixinStr_IPPROTO_EGP = `enum IPPROTO_EGP = IPPROTO_EGP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_EGP); }))) { mixin(enumMixinStr_IPPROTO_EGP); } } static if(!is(typeof(IPPROTO_PUP))) { private enum enumMixinStr_IPPROTO_PUP = `enum IPPROTO_PUP = IPPROTO_PUP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_PUP); }))) { mixin(enumMixinStr_IPPROTO_PUP); } } static if(!is(typeof(IPPROTO_UDP))) { private enum enumMixinStr_IPPROTO_UDP = `enum IPPROTO_UDP = IPPROTO_UDP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_UDP); }))) { mixin(enumMixinStr_IPPROTO_UDP); } } static if(!is(typeof(IPPROTO_IDP))) { private enum enumMixinStr_IPPROTO_IDP = `enum IPPROTO_IDP = IPPROTO_IDP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_IDP); }))) { mixin(enumMixinStr_IPPROTO_IDP); } } static if(!is(typeof(IPPROTO_TP))) { private enum enumMixinStr_IPPROTO_TP = `enum IPPROTO_TP = IPPROTO_TP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_TP); }))) { mixin(enumMixinStr_IPPROTO_TP); } } static if(!is(typeof(IPPROTO_DCCP))) { private enum enumMixinStr_IPPROTO_DCCP = `enum IPPROTO_DCCP = IPPROTO_DCCP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_DCCP); }))) { mixin(enumMixinStr_IPPROTO_DCCP); } } static if(!is(typeof(IPPROTO_IPV6))) { private enum enumMixinStr_IPPROTO_IPV6 = `enum IPPROTO_IPV6 = IPPROTO_IPV6;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_IPV6); }))) { mixin(enumMixinStr_IPPROTO_IPV6); } } static if(!is(typeof(IPPROTO_RSVP))) { private enum enumMixinStr_IPPROTO_RSVP = `enum IPPROTO_RSVP = IPPROTO_RSVP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_RSVP); }))) { mixin(enumMixinStr_IPPROTO_RSVP); } } static if(!is(typeof(IPPROTO_GRE))) { private enum enumMixinStr_IPPROTO_GRE = `enum IPPROTO_GRE = IPPROTO_GRE;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_GRE); }))) { mixin(enumMixinStr_IPPROTO_GRE); } } static if(!is(typeof(IPPROTO_ESP))) { private enum enumMixinStr_IPPROTO_ESP = `enum IPPROTO_ESP = IPPROTO_ESP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ESP); }))) { mixin(enumMixinStr_IPPROTO_ESP); } } static if(!is(typeof(IPPROTO_AH))) { private enum enumMixinStr_IPPROTO_AH = `enum IPPROTO_AH = IPPROTO_AH;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_AH); }))) { mixin(enumMixinStr_IPPROTO_AH); } } static if(!is(typeof(IPPROTO_MTP))) { private enum enumMixinStr_IPPROTO_MTP = `enum IPPROTO_MTP = IPPROTO_MTP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_MTP); }))) { mixin(enumMixinStr_IPPROTO_MTP); } } static if(!is(typeof(IPPROTO_BEETPH))) { private enum enumMixinStr_IPPROTO_BEETPH = `enum IPPROTO_BEETPH = IPPROTO_BEETPH;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_BEETPH); }))) { mixin(enumMixinStr_IPPROTO_BEETPH); } } static if(!is(typeof(IPPROTO_ENCAP))) { private enum enumMixinStr_IPPROTO_ENCAP = `enum IPPROTO_ENCAP = IPPROTO_ENCAP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ENCAP); }))) { mixin(enumMixinStr_IPPROTO_ENCAP); } } static if(!is(typeof(IPPROTO_PIM))) { private enum enumMixinStr_IPPROTO_PIM = `enum IPPROTO_PIM = IPPROTO_PIM;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_PIM); }))) { mixin(enumMixinStr_IPPROTO_PIM); } } static if(!is(typeof(IPPROTO_COMP))) { private enum enumMixinStr_IPPROTO_COMP = `enum IPPROTO_COMP = IPPROTO_COMP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_COMP); }))) { mixin(enumMixinStr_IPPROTO_COMP); } } static if(!is(typeof(IPPROTO_SCTP))) { private enum enumMixinStr_IPPROTO_SCTP = `enum IPPROTO_SCTP = IPPROTO_SCTP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_SCTP); }))) { mixin(enumMixinStr_IPPROTO_SCTP); } } static if(!is(typeof(IPPROTO_UDPLITE))) { private enum enumMixinStr_IPPROTO_UDPLITE = `enum IPPROTO_UDPLITE = IPPROTO_UDPLITE;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_UDPLITE); }))) { mixin(enumMixinStr_IPPROTO_UDPLITE); } } static if(!is(typeof(IPPROTO_MPLS))) { private enum enumMixinStr_IPPROTO_MPLS = `enum IPPROTO_MPLS = IPPROTO_MPLS;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_MPLS); }))) { mixin(enumMixinStr_IPPROTO_MPLS); } } static if(!is(typeof(IPPROTO_ETHERNET))) { private enum enumMixinStr_IPPROTO_ETHERNET = `enum IPPROTO_ETHERNET = IPPROTO_ETHERNET;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ETHERNET); }))) { mixin(enumMixinStr_IPPROTO_ETHERNET); } } static if(!is(typeof(IPPROTO_RAW))) { private enum enumMixinStr_IPPROTO_RAW = `enum IPPROTO_RAW = IPPROTO_RAW;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_RAW); }))) { mixin(enumMixinStr_IPPROTO_RAW); } } static if(!is(typeof(IPPROTO_MPTCP))) { private enum enumMixinStr_IPPROTO_MPTCP = `enum IPPROTO_MPTCP = IPPROTO_MPTCP;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_MPTCP); }))) { mixin(enumMixinStr_IPPROTO_MPTCP); } } static if(!is(typeof(IP_MTU))) { private enum enumMixinStr_IP_MTU = `enum IP_MTU = 14;`; static if(is(typeof({ mixin(enumMixinStr_IP_MTU); }))) { mixin(enumMixinStr_IP_MTU); } } static if(!is(typeof(IP_RECVTOS))) { private enum enumMixinStr_IP_RECVTOS = `enum IP_RECVTOS = 13;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVTOS); }))) { mixin(enumMixinStr_IP_RECVTOS); } } static if(!is(typeof(IPPROTO_HOPOPTS))) { private enum enumMixinStr_IPPROTO_HOPOPTS = `enum IPPROTO_HOPOPTS = IPPROTO_HOPOPTS;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_HOPOPTS); }))) { mixin(enumMixinStr_IPPROTO_HOPOPTS); } } static if(!is(typeof(IPPROTO_ROUTING))) { private enum enumMixinStr_IPPROTO_ROUTING = `enum IPPROTO_ROUTING = IPPROTO_ROUTING;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ROUTING); }))) { mixin(enumMixinStr_IPPROTO_ROUTING); } } static if(!is(typeof(IPPROTO_FRAGMENT))) { private enum enumMixinStr_IPPROTO_FRAGMENT = `enum IPPROTO_FRAGMENT = IPPROTO_FRAGMENT;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_FRAGMENT); }))) { mixin(enumMixinStr_IPPROTO_FRAGMENT); } } static if(!is(typeof(IPPROTO_ICMPV6))) { private enum enumMixinStr_IPPROTO_ICMPV6 = `enum IPPROTO_ICMPV6 = IPPROTO_ICMPV6;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_ICMPV6); }))) { mixin(enumMixinStr_IPPROTO_ICMPV6); } } static if(!is(typeof(IPPROTO_NONE))) { private enum enumMixinStr_IPPROTO_NONE = `enum IPPROTO_NONE = IPPROTO_NONE;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_NONE); }))) { mixin(enumMixinStr_IPPROTO_NONE); } } static if(!is(typeof(IPPROTO_DSTOPTS))) { private enum enumMixinStr_IPPROTO_DSTOPTS = `enum IPPROTO_DSTOPTS = IPPROTO_DSTOPTS;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_DSTOPTS); }))) { mixin(enumMixinStr_IPPROTO_DSTOPTS); } } static if(!is(typeof(IPPROTO_MH))) { private enum enumMixinStr_IPPROTO_MH = `enum IPPROTO_MH = IPPROTO_MH;`; static if(is(typeof({ mixin(enumMixinStr_IPPROTO_MH); }))) { mixin(enumMixinStr_IPPROTO_MH); } } static if(!is(typeof(IP_RECVTTL))) { private enum enumMixinStr_IP_RECVTTL = `enum IP_RECVTTL = 12;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVTTL); }))) { mixin(enumMixinStr_IP_RECVTTL); } } static if(!is(typeof(IP_RECVERR))) { private enum enumMixinStr_IP_RECVERR = `enum IP_RECVERR = 11;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVERR); }))) { mixin(enumMixinStr_IP_RECVERR); } } static if(!is(typeof(IN_CLASSA_NET))) { private enum enumMixinStr_IN_CLASSA_NET = `enum IN_CLASSA_NET = 0xff000000;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSA_NET); }))) { mixin(enumMixinStr_IN_CLASSA_NET); } } static if(!is(typeof(IN_CLASSA_NSHIFT))) { private enum enumMixinStr_IN_CLASSA_NSHIFT = `enum IN_CLASSA_NSHIFT = 24;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSA_NSHIFT); }))) { mixin(enumMixinStr_IN_CLASSA_NSHIFT); } } static if(!is(typeof(IN_CLASSA_HOST))) { private enum enumMixinStr_IN_CLASSA_HOST = `enum IN_CLASSA_HOST = ( 0xffffffff & ~ 0xff000000 );`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSA_HOST); }))) { mixin(enumMixinStr_IN_CLASSA_HOST); } } static if(!is(typeof(IN_CLASSA_MAX))) { private enum enumMixinStr_IN_CLASSA_MAX = `enum IN_CLASSA_MAX = 128;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSA_MAX); }))) { mixin(enumMixinStr_IN_CLASSA_MAX); } } static if(!is(typeof(IN_CLASSB_NET))) { private enum enumMixinStr_IN_CLASSB_NET = `enum IN_CLASSB_NET = 0xffff0000;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSB_NET); }))) { mixin(enumMixinStr_IN_CLASSB_NET); } } static if(!is(typeof(IN_CLASSB_NSHIFT))) { private enum enumMixinStr_IN_CLASSB_NSHIFT = `enum IN_CLASSB_NSHIFT = 16;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSB_NSHIFT); }))) { mixin(enumMixinStr_IN_CLASSB_NSHIFT); } } static if(!is(typeof(IN_CLASSB_HOST))) { private enum enumMixinStr_IN_CLASSB_HOST = `enum IN_CLASSB_HOST = ( 0xffffffff & ~ 0xffff0000 );`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSB_HOST); }))) { mixin(enumMixinStr_IN_CLASSB_HOST); } } static if(!is(typeof(IN_CLASSB_MAX))) { private enum enumMixinStr_IN_CLASSB_MAX = `enum IN_CLASSB_MAX = 65536;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSB_MAX); }))) { mixin(enumMixinStr_IN_CLASSB_MAX); } } static if(!is(typeof(IN_CLASSC_NET))) { private enum enumMixinStr_IN_CLASSC_NET = `enum IN_CLASSC_NET = 0xffffff00;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSC_NET); }))) { mixin(enumMixinStr_IN_CLASSC_NET); } } static if(!is(typeof(IN_CLASSC_NSHIFT))) { private enum enumMixinStr_IN_CLASSC_NSHIFT = `enum IN_CLASSC_NSHIFT = 8;`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSC_NSHIFT); }))) { mixin(enumMixinStr_IN_CLASSC_NSHIFT); } } static if(!is(typeof(IN_CLASSC_HOST))) { private enum enumMixinStr_IN_CLASSC_HOST = `enum IN_CLASSC_HOST = ( 0xffffffff & ~ 0xffffff00 );`; static if(is(typeof({ mixin(enumMixinStr_IN_CLASSC_HOST); }))) { mixin(enumMixinStr_IN_CLASSC_HOST); } } static if(!is(typeof(INADDR_ANY))) { private enum enumMixinStr_INADDR_ANY = `enum INADDR_ANY = ( cast( in_addr_t ) 0x00000000 );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_ANY); }))) { mixin(enumMixinStr_INADDR_ANY); } } static if(!is(typeof(INADDR_BROADCAST))) { private enum enumMixinStr_INADDR_BROADCAST = `enum INADDR_BROADCAST = ( cast( in_addr_t ) 0xffffffff );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_BROADCAST); }))) { mixin(enumMixinStr_INADDR_BROADCAST); } } static if(!is(typeof(INADDR_NONE))) { private enum enumMixinStr_INADDR_NONE = `enum INADDR_NONE = ( cast( in_addr_t ) 0xffffffff );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_NONE); }))) { mixin(enumMixinStr_INADDR_NONE); } } static if(!is(typeof(IN_LOOPBACKNET))) { private enum enumMixinStr_IN_LOOPBACKNET = `enum IN_LOOPBACKNET = 127;`; static if(is(typeof({ mixin(enumMixinStr_IN_LOOPBACKNET); }))) { mixin(enumMixinStr_IN_LOOPBACKNET); } } static if(!is(typeof(INADDR_LOOPBACK))) { private enum enumMixinStr_INADDR_LOOPBACK = `enum INADDR_LOOPBACK = ( cast( in_addr_t ) 0x7f000001 );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_LOOPBACK); }))) { mixin(enumMixinStr_INADDR_LOOPBACK); } } static if(!is(typeof(INADDR_UNSPEC_GROUP))) { private enum enumMixinStr_INADDR_UNSPEC_GROUP = `enum INADDR_UNSPEC_GROUP = ( cast( in_addr_t ) 0xe0000000 );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_UNSPEC_GROUP); }))) { mixin(enumMixinStr_INADDR_UNSPEC_GROUP); } } static if(!is(typeof(INADDR_ALLHOSTS_GROUP))) { private enum enumMixinStr_INADDR_ALLHOSTS_GROUP = `enum INADDR_ALLHOSTS_GROUP = ( cast( in_addr_t ) 0xe0000001 );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_ALLHOSTS_GROUP); }))) { mixin(enumMixinStr_INADDR_ALLHOSTS_GROUP); } } static if(!is(typeof(INADDR_ALLRTRS_GROUP))) { private enum enumMixinStr_INADDR_ALLRTRS_GROUP = `enum INADDR_ALLRTRS_GROUP = ( cast( in_addr_t ) 0xe0000002 );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_ALLRTRS_GROUP); }))) { mixin(enumMixinStr_INADDR_ALLRTRS_GROUP); } } static if(!is(typeof(INADDR_ALLSNOOPERS_GROUP))) { private enum enumMixinStr_INADDR_ALLSNOOPERS_GROUP = `enum INADDR_ALLSNOOPERS_GROUP = ( cast( in_addr_t ) 0xe000006a );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_ALLSNOOPERS_GROUP); }))) { mixin(enumMixinStr_INADDR_ALLSNOOPERS_GROUP); } } static if(!is(typeof(INADDR_MAX_LOCAL_GROUP))) { private enum enumMixinStr_INADDR_MAX_LOCAL_GROUP = `enum INADDR_MAX_LOCAL_GROUP = ( cast( in_addr_t ) 0xe00000ff );`; static if(is(typeof({ mixin(enumMixinStr_INADDR_MAX_LOCAL_GROUP); }))) { mixin(enumMixinStr_INADDR_MAX_LOCAL_GROUP); } } static if(!is(typeof(IP_MTU_DISCOVER))) { private enum enumMixinStr_IP_MTU_DISCOVER = `enum IP_MTU_DISCOVER = 10;`; static if(is(typeof({ mixin(enumMixinStr_IP_MTU_DISCOVER); }))) { mixin(enumMixinStr_IP_MTU_DISCOVER); } } static if(!is(typeof(IP_PMTUDISC))) { private enum enumMixinStr_IP_PMTUDISC = `enum IP_PMTUDISC = 10;`; static if(is(typeof({ mixin(enumMixinStr_IP_PMTUDISC); }))) { mixin(enumMixinStr_IP_PMTUDISC); } } static if(!is(typeof(s6_addr))) { private enum enumMixinStr_s6_addr = `enum s6_addr = __in6_u . __u6_addr8;`; static if(is(typeof({ mixin(enumMixinStr_s6_addr); }))) { mixin(enumMixinStr_s6_addr); } } static if(!is(typeof(IP_PKTOPTIONS))) { private enum enumMixinStr_IP_PKTOPTIONS = `enum IP_PKTOPTIONS = 9;`; static if(is(typeof({ mixin(enumMixinStr_IP_PKTOPTIONS); }))) { mixin(enumMixinStr_IP_PKTOPTIONS); } } static if(!is(typeof(s6_addr16))) { private enum enumMixinStr_s6_addr16 = `enum s6_addr16 = __in6_u . __u6_addr16;`; static if(is(typeof({ mixin(enumMixinStr_s6_addr16); }))) { mixin(enumMixinStr_s6_addr16); } } static if(!is(typeof(s6_addr32))) { private enum enumMixinStr_s6_addr32 = `enum s6_addr32 = __in6_u . __u6_addr32;`; static if(is(typeof({ mixin(enumMixinStr_s6_addr32); }))) { mixin(enumMixinStr_s6_addr32); } } static if(!is(typeof(IP_PKTINFO))) { private enum enumMixinStr_IP_PKTINFO = `enum IP_PKTINFO = 8;`; static if(is(typeof({ mixin(enumMixinStr_IP_PKTINFO); }))) { mixin(enumMixinStr_IP_PKTINFO); } } static if(!is(typeof(IP_ROUTER_ALERT))) { private enum enumMixinStr_IP_ROUTER_ALERT = `enum IP_ROUTER_ALERT = 5;`; static if(is(typeof({ mixin(enumMixinStr_IP_ROUTER_ALERT); }))) { mixin(enumMixinStr_IP_ROUTER_ALERT); } } static if(!is(typeof(IN6ADDR_ANY_INIT))) { private enum enumMixinStr_IN6ADDR_ANY_INIT = `enum IN6ADDR_ANY_INIT = { { { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } } };`; static if(is(typeof({ mixin(enumMixinStr_IN6ADDR_ANY_INIT); }))) { mixin(enumMixinStr_IN6ADDR_ANY_INIT); } } static if(!is(typeof(IN6ADDR_LOOPBACK_INIT))) { private enum enumMixinStr_IN6ADDR_LOOPBACK_INIT = `enum IN6ADDR_LOOPBACK_INIT = { { { 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 1 } } };`; static if(is(typeof({ mixin(enumMixinStr_IN6ADDR_LOOPBACK_INIT); }))) { mixin(enumMixinStr_IN6ADDR_LOOPBACK_INIT); } } static if(!is(typeof(INET_ADDRSTRLEN))) { private enum enumMixinStr_INET_ADDRSTRLEN = `enum INET_ADDRSTRLEN = 16;`; static if(is(typeof({ mixin(enumMixinStr_INET_ADDRSTRLEN); }))) { mixin(enumMixinStr_INET_ADDRSTRLEN); } } static if(!is(typeof(INET6_ADDRSTRLEN))) { private enum enumMixinStr_INET6_ADDRSTRLEN = `enum INET6_ADDRSTRLEN = 46;`; static if(is(typeof({ mixin(enumMixinStr_INET6_ADDRSTRLEN); }))) { mixin(enumMixinStr_INET6_ADDRSTRLEN); } } static if(!is(typeof(MCAST_INCLUDE))) { private enum enumMixinStr_MCAST_INCLUDE = `enum MCAST_INCLUDE = 1;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_INCLUDE); }))) { mixin(enumMixinStr_MCAST_INCLUDE); } } static if(!is(typeof(MCAST_EXCLUDE))) { private enum enumMixinStr_MCAST_EXCLUDE = `enum MCAST_EXCLUDE = 0;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_EXCLUDE); }))) { mixin(enumMixinStr_MCAST_EXCLUDE); } } static if(!is(typeof(MCAST_MSFILTER))) { private enum enumMixinStr_MCAST_MSFILTER = `enum MCAST_MSFILTER = 48;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_MSFILTER); }))) { mixin(enumMixinStr_MCAST_MSFILTER); } } static if(!is(typeof(MCAST_LEAVE_SOURCE_GROUP))) { private enum enumMixinStr_MCAST_LEAVE_SOURCE_GROUP = `enum MCAST_LEAVE_SOURCE_GROUP = 47;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_LEAVE_SOURCE_GROUP); }))) { mixin(enumMixinStr_MCAST_LEAVE_SOURCE_GROUP); } } static if(!is(typeof(MCAST_JOIN_SOURCE_GROUP))) { private enum enumMixinStr_MCAST_JOIN_SOURCE_GROUP = `enum MCAST_JOIN_SOURCE_GROUP = 46;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_JOIN_SOURCE_GROUP); }))) { mixin(enumMixinStr_MCAST_JOIN_SOURCE_GROUP); } } static if(!is(typeof(MCAST_LEAVE_GROUP))) { private enum enumMixinStr_MCAST_LEAVE_GROUP = `enum MCAST_LEAVE_GROUP = 45;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_LEAVE_GROUP); }))) { mixin(enumMixinStr_MCAST_LEAVE_GROUP); } } static if(!is(typeof(MCAST_UNBLOCK_SOURCE))) { private enum enumMixinStr_MCAST_UNBLOCK_SOURCE = `enum MCAST_UNBLOCK_SOURCE = 44;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_UNBLOCK_SOURCE); }))) { mixin(enumMixinStr_MCAST_UNBLOCK_SOURCE); } } static if(!is(typeof(MCAST_BLOCK_SOURCE))) { private enum enumMixinStr_MCAST_BLOCK_SOURCE = `enum MCAST_BLOCK_SOURCE = 43;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_BLOCK_SOURCE); }))) { mixin(enumMixinStr_MCAST_BLOCK_SOURCE); } } static if(!is(typeof(MCAST_JOIN_GROUP))) { private enum enumMixinStr_MCAST_JOIN_GROUP = `enum MCAST_JOIN_GROUP = 42;`; static if(is(typeof({ mixin(enumMixinStr_MCAST_JOIN_GROUP); }))) { mixin(enumMixinStr_MCAST_JOIN_GROUP); } } static if(!is(typeof(IP_RETOPTS))) { private enum enumMixinStr_IP_RETOPTS = `enum IP_RETOPTS = 7;`; static if(is(typeof({ mixin(enumMixinStr_IP_RETOPTS); }))) { mixin(enumMixinStr_IP_RETOPTS); } } static if(!is(typeof(IP_RECVRETOPTS))) { private enum enumMixinStr_IP_RECVRETOPTS = `enum IP_RECVRETOPTS = 7;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVRETOPTS); }))) { mixin(enumMixinStr_IP_RECVRETOPTS); } } static if(!is(typeof(IP_RECVOPTS))) { private enum enumMixinStr_IP_RECVOPTS = `enum IP_RECVOPTS = 6;`; static if(is(typeof({ mixin(enumMixinStr_IP_RECVOPTS); }))) { mixin(enumMixinStr_IP_RECVOPTS); } } static if(!is(typeof(IP_TTL))) { private enum enumMixinStr_IP_TTL = `enum IP_TTL = 2;`; static if(is(typeof({ mixin(enumMixinStr_IP_TTL); }))) { mixin(enumMixinStr_IP_TTL); } } static if(!is(typeof(IP_TOS))) { private enum enumMixinStr_IP_TOS = `enum IP_TOS = 1;`; static if(is(typeof({ mixin(enumMixinStr_IP_TOS); }))) { mixin(enumMixinStr_IP_TOS); } } static if(!is(typeof(IP_HDRINCL))) { private enum enumMixinStr_IP_HDRINCL = `enum IP_HDRINCL = 3;`; static if(is(typeof({ mixin(enumMixinStr_IP_HDRINCL); }))) { mixin(enumMixinStr_IP_HDRINCL); } } static if(!is(typeof(IP_OPTIONS))) { private enum enumMixinStr_IP_OPTIONS = `enum IP_OPTIONS = 4;`; static if(is(typeof({ mixin(enumMixinStr_IP_OPTIONS); }))) { mixin(enumMixinStr_IP_OPTIONS); } } static if(!is(typeof(__USE_KERNEL_IPV6_DEFS))) { private enum enumMixinStr___USE_KERNEL_IPV6_DEFS = `enum __USE_KERNEL_IPV6_DEFS = 0;`; static if(is(typeof({ mixin(enumMixinStr___USE_KERNEL_IPV6_DEFS); }))) { mixin(enumMixinStr___USE_KERNEL_IPV6_DEFS); } } static if(!is(typeof(__BYTE_ORDER))) { private enum enumMixinStr___BYTE_ORDER = `enum __BYTE_ORDER = __LITTLE_ENDIAN;`; static if(is(typeof({ mixin(enumMixinStr___BYTE_ORDER); }))) { mixin(enumMixinStr___BYTE_ORDER); } } static if(!is(typeof(_BITS_ENDIANNESS_H))) { private enum enumMixinStr__BITS_ENDIANNESS_H = `enum _BITS_ENDIANNESS_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_ENDIANNESS_H); }))) { mixin(enumMixinStr__BITS_ENDIANNESS_H); } } static if(!is(typeof(__FLOAT_WORD_ORDER))) { private enum enumMixinStr___FLOAT_WORD_ORDER = `enum __FLOAT_WORD_ORDER = __LITTLE_ENDIAN;`; static if(is(typeof({ mixin(enumMixinStr___FLOAT_WORD_ORDER); }))) { mixin(enumMixinStr___FLOAT_WORD_ORDER); } } static if(!is(typeof(__PDP_ENDIAN))) { private enum enumMixinStr___PDP_ENDIAN = `enum __PDP_ENDIAN = 3412;`; static if(is(typeof({ mixin(enumMixinStr___PDP_ENDIAN); }))) { mixin(enumMixinStr___PDP_ENDIAN); } } static if(!is(typeof(_STDC_PREDEF_H))) { private enum enumMixinStr__STDC_PREDEF_H = `enum _STDC_PREDEF_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__STDC_PREDEF_H); }))) { mixin(enumMixinStr__STDC_PREDEF_H); } } static if(!is(typeof(_STRING_H))) { private enum enumMixinStr__STRING_H = `enum _STRING_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__STRING_H); }))) { mixin(enumMixinStr__STRING_H); } } static if(!is(typeof(__BIG_ENDIAN))) { private enum enumMixinStr___BIG_ENDIAN = `enum __BIG_ENDIAN = 4321;`; static if(is(typeof({ mixin(enumMixinStr___BIG_ENDIAN); }))) { mixin(enumMixinStr___BIG_ENDIAN); } } static if(!is(typeof(__LITTLE_ENDIAN))) { private enum enumMixinStr___LITTLE_ENDIAN = `enum __LITTLE_ENDIAN = 1234;`; static if(is(typeof({ mixin(enumMixinStr___LITTLE_ENDIAN); }))) { mixin(enumMixinStr___LITTLE_ENDIAN); } } static if(!is(typeof(_BITS_ENDIAN_H))) { private enum enumMixinStr__BITS_ENDIAN_H = `enum _BITS_ENDIAN_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_ENDIAN_H); }))) { mixin(enumMixinStr__BITS_ENDIAN_H); } } static if(!is(typeof(_BITS_BYTESWAP_H))) { private enum enumMixinStr__BITS_BYTESWAP_H = `enum _BITS_BYTESWAP_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__BITS_BYTESWAP_H); }))) { mixin(enumMixinStr__BITS_BYTESWAP_H); } } static if(!is(typeof(__kernel_old_dev_t))) { private enum enumMixinStr___kernel_old_dev_t = `enum __kernel_old_dev_t = __kernel_old_dev_t;`; static if(is(typeof({ mixin(enumMixinStr___kernel_old_dev_t); }))) { mixin(enumMixinStr___kernel_old_dev_t); } } static if(!is(typeof(__kernel_old_uid_t))) { private enum enumMixinStr___kernel_old_uid_t = `enum __kernel_old_uid_t = __kernel_old_uid_t;`; static if(is(typeof({ mixin(enumMixinStr___kernel_old_uid_t); }))) { mixin(enumMixinStr___kernel_old_uid_t); } } static if(!is(typeof(__BITS_PER_LONG))) { private enum enumMixinStr___BITS_PER_LONG = `enum __BITS_PER_LONG = 64;`; static if(is(typeof({ mixin(enumMixinStr___BITS_PER_LONG); }))) { mixin(enumMixinStr___BITS_PER_LONG); } } static if(!is(typeof(SIOCGSTAMPNS_OLD))) { private enum enumMixinStr_SIOCGSTAMPNS_OLD = `enum SIOCGSTAMPNS_OLD = 0x8907;`; static if(is(typeof({ mixin(enumMixinStr_SIOCGSTAMPNS_OLD); }))) { mixin(enumMixinStr_SIOCGSTAMPNS_OLD); } } static if(!is(typeof(SIOCGSTAMP_OLD))) { private enum enumMixinStr_SIOCGSTAMP_OLD = `enum SIOCGSTAMP_OLD = 0x8906;`; static if(is(typeof({ mixin(enumMixinStr_SIOCGSTAMP_OLD); }))) { mixin(enumMixinStr_SIOCGSTAMP_OLD); } } static if(!is(typeof(SIOCATMARK))) { private enum enumMixinStr_SIOCATMARK = `enum SIOCATMARK = 0x8905;`; static if(is(typeof({ mixin(enumMixinStr_SIOCATMARK); }))) { mixin(enumMixinStr_SIOCATMARK); } } static if(!is(typeof(SIOCGPGRP))) { private enum enumMixinStr_SIOCGPGRP = `enum SIOCGPGRP = 0x8904;`; static if(is(typeof({ mixin(enumMixinStr_SIOCGPGRP); }))) { mixin(enumMixinStr_SIOCGPGRP); } } static if(!is(typeof(FIOGETOWN))) { private enum enumMixinStr_FIOGETOWN = `enum FIOGETOWN = 0x8903;`; static if(is(typeof({ mixin(enumMixinStr_FIOGETOWN); }))) { mixin(enumMixinStr_FIOGETOWN); } } static if(!is(typeof(SIOCSPGRP))) { private enum enumMixinStr_SIOCSPGRP = `enum SIOCSPGRP = 0x8902;`; static if(is(typeof({ mixin(enumMixinStr_SIOCSPGRP); }))) { mixin(enumMixinStr_SIOCSPGRP); } } static if(!is(typeof(FIOSETOWN))) { private enum enumMixinStr_FIOSETOWN = `enum FIOSETOWN = 0x8901;`; static if(is(typeof({ mixin(enumMixinStr_FIOSETOWN); }))) { mixin(enumMixinStr_FIOSETOWN); } } static if(!is(typeof(SCM_TIMESTAMPING))) { private enum enumMixinStr_SCM_TIMESTAMPING = `enum SCM_TIMESTAMPING = SO_TIMESTAMPING;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TIMESTAMPING); }))) { mixin(enumMixinStr_SCM_TIMESTAMPING); } } static if(!is(typeof(SCM_TIMESTAMPNS))) { private enum enumMixinStr_SCM_TIMESTAMPNS = `enum SCM_TIMESTAMPNS = SO_TIMESTAMPNS;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TIMESTAMPNS); }))) { mixin(enumMixinStr_SCM_TIMESTAMPNS); } } static if(!is(typeof(SCM_TIMESTAMP))) { private enum enumMixinStr_SCM_TIMESTAMP = `enum SCM_TIMESTAMP = SO_TIMESTAMP;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TIMESTAMP); }))) { mixin(enumMixinStr_SCM_TIMESTAMP); } } static if(!is(typeof(SO_SNDTIMEO))) { private enum enumMixinStr_SO_SNDTIMEO = `enum SO_SNDTIMEO = SO_SNDTIMEO_OLD;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDTIMEO); }))) { mixin(enumMixinStr_SO_SNDTIMEO); } } static if(!is(typeof(SO_RCVTIMEO))) { private enum enumMixinStr_SO_RCVTIMEO = `enum SO_RCVTIMEO = SO_RCVTIMEO_OLD;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVTIMEO); }))) { mixin(enumMixinStr_SO_RCVTIMEO); } } static if(!is(typeof(SO_TIMESTAMPING))) { private enum enumMixinStr_SO_TIMESTAMPING = `enum SO_TIMESTAMPING = SO_TIMESTAMPING_OLD;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPING); }))) { mixin(enumMixinStr_SO_TIMESTAMPING); } } static if(!is(typeof(SO_TIMESTAMPNS))) { private enum enumMixinStr_SO_TIMESTAMPNS = `enum SO_TIMESTAMPNS = SO_TIMESTAMPNS_OLD;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPNS); }))) { mixin(enumMixinStr_SO_TIMESTAMPNS); } } static if(!is(typeof(SO_TIMESTAMP))) { private enum enumMixinStr_SO_TIMESTAMP = `enum SO_TIMESTAMP = SO_TIMESTAMP_OLD;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMP); }))) { mixin(enumMixinStr_SO_TIMESTAMP); } } static if(!is(typeof(SO_DETACH_REUSEPORT_BPF))) { private enum enumMixinStr_SO_DETACH_REUSEPORT_BPF = `enum SO_DETACH_REUSEPORT_BPF = 68;`; static if(is(typeof({ mixin(enumMixinStr_SO_DETACH_REUSEPORT_BPF); }))) { mixin(enumMixinStr_SO_DETACH_REUSEPORT_BPF); } } static if(!is(typeof(SO_SNDTIMEO_NEW))) { private enum enumMixinStr_SO_SNDTIMEO_NEW = `enum SO_SNDTIMEO_NEW = 67;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDTIMEO_NEW); }))) { mixin(enumMixinStr_SO_SNDTIMEO_NEW); } } static if(!is(typeof(SO_RCVTIMEO_NEW))) { private enum enumMixinStr_SO_RCVTIMEO_NEW = `enum SO_RCVTIMEO_NEW = 66;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVTIMEO_NEW); }))) { mixin(enumMixinStr_SO_RCVTIMEO_NEW); } } static if(!is(typeof(SO_TIMESTAMPING_NEW))) { private enum enumMixinStr_SO_TIMESTAMPING_NEW = `enum SO_TIMESTAMPING_NEW = 65;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPING_NEW); }))) { mixin(enumMixinStr_SO_TIMESTAMPING_NEW); } } static if(!is(typeof(SO_TIMESTAMPNS_NEW))) { private enum enumMixinStr_SO_TIMESTAMPNS_NEW = `enum SO_TIMESTAMPNS_NEW = 64;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPNS_NEW); }))) { mixin(enumMixinStr_SO_TIMESTAMPNS_NEW); } } static if(!is(typeof(SO_TIMESTAMP_NEW))) { private enum enumMixinStr_SO_TIMESTAMP_NEW = `enum SO_TIMESTAMP_NEW = 63;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMP_NEW); }))) { mixin(enumMixinStr_SO_TIMESTAMP_NEW); } } static if(!is(typeof(SO_TIMESTAMPING_OLD))) { private enum enumMixinStr_SO_TIMESTAMPING_OLD = `enum SO_TIMESTAMPING_OLD = 37;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPING_OLD); }))) { mixin(enumMixinStr_SO_TIMESTAMPING_OLD); } } static if(!is(typeof(SO_TIMESTAMPNS_OLD))) { private enum enumMixinStr_SO_TIMESTAMPNS_OLD = `enum SO_TIMESTAMPNS_OLD = 35;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMPNS_OLD); }))) { mixin(enumMixinStr_SO_TIMESTAMPNS_OLD); } } static if(!is(typeof(SO_TIMESTAMP_OLD))) { private enum enumMixinStr_SO_TIMESTAMP_OLD = `enum SO_TIMESTAMP_OLD = 29;`; static if(is(typeof({ mixin(enumMixinStr_SO_TIMESTAMP_OLD); }))) { mixin(enumMixinStr_SO_TIMESTAMP_OLD); } } static if(!is(typeof(SO_BINDTOIFINDEX))) { private enum enumMixinStr_SO_BINDTOIFINDEX = `enum SO_BINDTOIFINDEX = 62;`; static if(is(typeof({ mixin(enumMixinStr_SO_BINDTOIFINDEX); }))) { mixin(enumMixinStr_SO_BINDTOIFINDEX); } } static if(!is(typeof(SCM_TXTIME))) { private enum enumMixinStr_SCM_TXTIME = `enum SCM_TXTIME = SO_TXTIME;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TXTIME); }))) { mixin(enumMixinStr_SCM_TXTIME); } } static if(!is(typeof(SO_TXTIME))) { private enum enumMixinStr_SO_TXTIME = `enum SO_TXTIME = 61;`; static if(is(typeof({ mixin(enumMixinStr_SO_TXTIME); }))) { mixin(enumMixinStr_SO_TXTIME); } } static if(!is(typeof(SO_ZEROCOPY))) { private enum enumMixinStr_SO_ZEROCOPY = `enum SO_ZEROCOPY = 60;`; static if(is(typeof({ mixin(enumMixinStr_SO_ZEROCOPY); }))) { mixin(enumMixinStr_SO_ZEROCOPY); } } static if(!is(typeof(SO_PEERGROUPS))) { private enum enumMixinStr_SO_PEERGROUPS = `enum SO_PEERGROUPS = 59;`; static if(is(typeof({ mixin(enumMixinStr_SO_PEERGROUPS); }))) { mixin(enumMixinStr_SO_PEERGROUPS); } } static if(!is(typeof(SCM_TIMESTAMPING_PKTINFO))) { private enum enumMixinStr_SCM_TIMESTAMPING_PKTINFO = `enum SCM_TIMESTAMPING_PKTINFO = 58;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TIMESTAMPING_PKTINFO); }))) { mixin(enumMixinStr_SCM_TIMESTAMPING_PKTINFO); } } static if(!is(typeof(SO_COOKIE))) { private enum enumMixinStr_SO_COOKIE = `enum SO_COOKIE = 57;`; static if(is(typeof({ mixin(enumMixinStr_SO_COOKIE); }))) { mixin(enumMixinStr_SO_COOKIE); } } static if(!is(typeof(SO_INCOMING_NAPI_ID))) { private enum enumMixinStr_SO_INCOMING_NAPI_ID = `enum SO_INCOMING_NAPI_ID = 56;`; static if(is(typeof({ mixin(enumMixinStr_SO_INCOMING_NAPI_ID); }))) { mixin(enumMixinStr_SO_INCOMING_NAPI_ID); } } static if(!is(typeof(SO_MEMINFO))) { private enum enumMixinStr_SO_MEMINFO = `enum SO_MEMINFO = 55;`; static if(is(typeof({ mixin(enumMixinStr_SO_MEMINFO); }))) { mixin(enumMixinStr_SO_MEMINFO); } } static if(!is(typeof(SCM_TIMESTAMPING_OPT_STATS))) { private enum enumMixinStr_SCM_TIMESTAMPING_OPT_STATS = `enum SCM_TIMESTAMPING_OPT_STATS = 54;`; static if(is(typeof({ mixin(enumMixinStr_SCM_TIMESTAMPING_OPT_STATS); }))) { mixin(enumMixinStr_SCM_TIMESTAMPING_OPT_STATS); } } static if(!is(typeof(SO_CNX_ADVICE))) { private enum enumMixinStr_SO_CNX_ADVICE = `enum SO_CNX_ADVICE = 53;`; static if(is(typeof({ mixin(enumMixinStr_SO_CNX_ADVICE); }))) { mixin(enumMixinStr_SO_CNX_ADVICE); } } static if(!is(typeof(SO_ATTACH_REUSEPORT_EBPF))) { private enum enumMixinStr_SO_ATTACH_REUSEPORT_EBPF = `enum SO_ATTACH_REUSEPORT_EBPF = 52;`; static if(is(typeof({ mixin(enumMixinStr_SO_ATTACH_REUSEPORT_EBPF); }))) { mixin(enumMixinStr_SO_ATTACH_REUSEPORT_EBPF); } } static if(!is(typeof(SO_ATTACH_REUSEPORT_CBPF))) { private enum enumMixinStr_SO_ATTACH_REUSEPORT_CBPF = `enum SO_ATTACH_REUSEPORT_CBPF = 51;`; static if(is(typeof({ mixin(enumMixinStr_SO_ATTACH_REUSEPORT_CBPF); }))) { mixin(enumMixinStr_SO_ATTACH_REUSEPORT_CBPF); } } static if(!is(typeof(SO_DETACH_BPF))) { private enum enumMixinStr_SO_DETACH_BPF = `enum SO_DETACH_BPF = SO_DETACH_FILTER;`; static if(is(typeof({ mixin(enumMixinStr_SO_DETACH_BPF); }))) { mixin(enumMixinStr_SO_DETACH_BPF); } } static if(!is(typeof(SO_ATTACH_BPF))) { private enum enumMixinStr_SO_ATTACH_BPF = `enum SO_ATTACH_BPF = 50;`; static if(is(typeof({ mixin(enumMixinStr_SO_ATTACH_BPF); }))) { mixin(enumMixinStr_SO_ATTACH_BPF); } } static if(!is(typeof(SO_INCOMING_CPU))) { private enum enumMixinStr_SO_INCOMING_CPU = `enum SO_INCOMING_CPU = 49;`; static if(is(typeof({ mixin(enumMixinStr_SO_INCOMING_CPU); }))) { mixin(enumMixinStr_SO_INCOMING_CPU); } } static if(!is(typeof(SO_BPF_EXTENSIONS))) { private enum enumMixinStr_SO_BPF_EXTENSIONS = `enum SO_BPF_EXTENSIONS = 48;`; static if(is(typeof({ mixin(enumMixinStr_SO_BPF_EXTENSIONS); }))) { mixin(enumMixinStr_SO_BPF_EXTENSIONS); } } static if(!is(typeof(SO_MAX_PACING_RATE))) { private enum enumMixinStr_SO_MAX_PACING_RATE = `enum SO_MAX_PACING_RATE = 47;`; static if(is(typeof({ mixin(enumMixinStr_SO_MAX_PACING_RATE); }))) { mixin(enumMixinStr_SO_MAX_PACING_RATE); } } static if(!is(typeof(SO_BUSY_POLL))) { private enum enumMixinStr_SO_BUSY_POLL = `enum SO_BUSY_POLL = 46;`; static if(is(typeof({ mixin(enumMixinStr_SO_BUSY_POLL); }))) { mixin(enumMixinStr_SO_BUSY_POLL); } } static if(!is(typeof(SO_SELECT_ERR_QUEUE))) { private enum enumMixinStr_SO_SELECT_ERR_QUEUE = `enum SO_SELECT_ERR_QUEUE = 45;`; static if(is(typeof({ mixin(enumMixinStr_SO_SELECT_ERR_QUEUE); }))) { mixin(enumMixinStr_SO_SELECT_ERR_QUEUE); } } static if(!is(typeof(SO_LOCK_FILTER))) { private enum enumMixinStr_SO_LOCK_FILTER = `enum SO_LOCK_FILTER = 44;`; static if(is(typeof({ mixin(enumMixinStr_SO_LOCK_FILTER); }))) { mixin(enumMixinStr_SO_LOCK_FILTER); } } static if(!is(typeof(SO_NOFCS))) { private enum enumMixinStr_SO_NOFCS = `enum SO_NOFCS = 43;`; static if(is(typeof({ mixin(enumMixinStr_SO_NOFCS); }))) { mixin(enumMixinStr_SO_NOFCS); } } static if(!is(typeof(SO_PEEK_OFF))) { private enum enumMixinStr_SO_PEEK_OFF = `enum SO_PEEK_OFF = 42;`; static if(is(typeof({ mixin(enumMixinStr_SO_PEEK_OFF); }))) { mixin(enumMixinStr_SO_PEEK_OFF); } } static if(!is(typeof(SCM_WIFI_STATUS))) { private enum enumMixinStr_SCM_WIFI_STATUS = `enum SCM_WIFI_STATUS = SO_WIFI_STATUS;`; static if(is(typeof({ mixin(enumMixinStr_SCM_WIFI_STATUS); }))) { mixin(enumMixinStr_SCM_WIFI_STATUS); } } static if(!is(typeof(SO_WIFI_STATUS))) { private enum enumMixinStr_SO_WIFI_STATUS = `enum SO_WIFI_STATUS = 41;`; static if(is(typeof({ mixin(enumMixinStr_SO_WIFI_STATUS); }))) { mixin(enumMixinStr_SO_WIFI_STATUS); } } static if(!is(typeof(SO_RXQ_OVFL))) { private enum enumMixinStr_SO_RXQ_OVFL = `enum SO_RXQ_OVFL = 40;`; static if(is(typeof({ mixin(enumMixinStr_SO_RXQ_OVFL); }))) { mixin(enumMixinStr_SO_RXQ_OVFL); } } static if(!is(typeof(SO_DOMAIN))) { private enum enumMixinStr_SO_DOMAIN = `enum SO_DOMAIN = 39;`; static if(is(typeof({ mixin(enumMixinStr_SO_DOMAIN); }))) { mixin(enumMixinStr_SO_DOMAIN); } } static if(!is(typeof(SO_PROTOCOL))) { private enum enumMixinStr_SO_PROTOCOL = `enum SO_PROTOCOL = 38;`; static if(is(typeof({ mixin(enumMixinStr_SO_PROTOCOL); }))) { mixin(enumMixinStr_SO_PROTOCOL); } } static if(!is(typeof(SO_MARK))) { private enum enumMixinStr_SO_MARK = `enum SO_MARK = 36;`; static if(is(typeof({ mixin(enumMixinStr_SO_MARK); }))) { mixin(enumMixinStr_SO_MARK); } } static if(!is(typeof(SO_PASSSEC))) { private enum enumMixinStr_SO_PASSSEC = `enum SO_PASSSEC = 34;`; static if(is(typeof({ mixin(enumMixinStr_SO_PASSSEC); }))) { mixin(enumMixinStr_SO_PASSSEC); } } static if(!is(typeof(SO_PEERSEC))) { private enum enumMixinStr_SO_PEERSEC = `enum SO_PEERSEC = 31;`; static if(is(typeof({ mixin(enumMixinStr_SO_PEERSEC); }))) { mixin(enumMixinStr_SO_PEERSEC); } } static if(!is(typeof(SO_ACCEPTCONN))) { private enum enumMixinStr_SO_ACCEPTCONN = `enum SO_ACCEPTCONN = 30;`; static if(is(typeof({ mixin(enumMixinStr_SO_ACCEPTCONN); }))) { mixin(enumMixinStr_SO_ACCEPTCONN); } } static if(!is(typeof(SO_PEERNAME))) { private enum enumMixinStr_SO_PEERNAME = `enum SO_PEERNAME = 28;`; static if(is(typeof({ mixin(enumMixinStr_SO_PEERNAME); }))) { mixin(enumMixinStr_SO_PEERNAME); } } static if(!is(typeof(SO_GET_FILTER))) { private enum enumMixinStr_SO_GET_FILTER = `enum SO_GET_FILTER = SO_ATTACH_FILTER;`; static if(is(typeof({ mixin(enumMixinStr_SO_GET_FILTER); }))) { mixin(enumMixinStr_SO_GET_FILTER); } } static if(!is(typeof(SO_DETACH_FILTER))) { private enum enumMixinStr_SO_DETACH_FILTER = `enum SO_DETACH_FILTER = 27;`; static if(is(typeof({ mixin(enumMixinStr_SO_DETACH_FILTER); }))) { mixin(enumMixinStr_SO_DETACH_FILTER); } } static if(!is(typeof(SO_ATTACH_FILTER))) { private enum enumMixinStr_SO_ATTACH_FILTER = `enum SO_ATTACH_FILTER = 26;`; static if(is(typeof({ mixin(enumMixinStr_SO_ATTACH_FILTER); }))) { mixin(enumMixinStr_SO_ATTACH_FILTER); } } static if(!is(typeof(SO_BINDTODEVICE))) { private enum enumMixinStr_SO_BINDTODEVICE = `enum SO_BINDTODEVICE = 25;`; static if(is(typeof({ mixin(enumMixinStr_SO_BINDTODEVICE); }))) { mixin(enumMixinStr_SO_BINDTODEVICE); } } static if(!is(typeof(SO_SECURITY_ENCRYPTION_NETWORK))) { private enum enumMixinStr_SO_SECURITY_ENCRYPTION_NETWORK = `enum SO_SECURITY_ENCRYPTION_NETWORK = 24;`; static if(is(typeof({ mixin(enumMixinStr_SO_SECURITY_ENCRYPTION_NETWORK); }))) { mixin(enumMixinStr_SO_SECURITY_ENCRYPTION_NETWORK); } } static if(!is(typeof(SO_SECURITY_ENCRYPTION_TRANSPORT))) { private enum enumMixinStr_SO_SECURITY_ENCRYPTION_TRANSPORT = `enum SO_SECURITY_ENCRYPTION_TRANSPORT = 23;`; static if(is(typeof({ mixin(enumMixinStr_SO_SECURITY_ENCRYPTION_TRANSPORT); }))) { mixin(enumMixinStr_SO_SECURITY_ENCRYPTION_TRANSPORT); } } static if(!is(typeof(SO_SECURITY_AUTHENTICATION))) { private enum enumMixinStr_SO_SECURITY_AUTHENTICATION = `enum SO_SECURITY_AUTHENTICATION = 22;`; static if(is(typeof({ mixin(enumMixinStr_SO_SECURITY_AUTHENTICATION); }))) { mixin(enumMixinStr_SO_SECURITY_AUTHENTICATION); } } static if(!is(typeof(SO_SNDTIMEO_OLD))) { private enum enumMixinStr_SO_SNDTIMEO_OLD = `enum SO_SNDTIMEO_OLD = 21;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDTIMEO_OLD); }))) { mixin(enumMixinStr_SO_SNDTIMEO_OLD); } } static if(!is(typeof(SO_RCVTIMEO_OLD))) { private enum enumMixinStr_SO_RCVTIMEO_OLD = `enum SO_RCVTIMEO_OLD = 20;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVTIMEO_OLD); }))) { mixin(enumMixinStr_SO_RCVTIMEO_OLD); } } static if(!is(typeof(SO_SNDLOWAT))) { private enum enumMixinStr_SO_SNDLOWAT = `enum SO_SNDLOWAT = 19;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDLOWAT); }))) { mixin(enumMixinStr_SO_SNDLOWAT); } } static if(!is(typeof(SO_RCVLOWAT))) { private enum enumMixinStr_SO_RCVLOWAT = `enum SO_RCVLOWAT = 18;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVLOWAT); }))) { mixin(enumMixinStr_SO_RCVLOWAT); } } static if(!is(typeof(SO_PEERCRED))) { private enum enumMixinStr_SO_PEERCRED = `enum SO_PEERCRED = 17;`; static if(is(typeof({ mixin(enumMixinStr_SO_PEERCRED); }))) { mixin(enumMixinStr_SO_PEERCRED); } } static if(!is(typeof(SO_PASSCRED))) { private enum enumMixinStr_SO_PASSCRED = `enum SO_PASSCRED = 16;`; static if(is(typeof({ mixin(enumMixinStr_SO_PASSCRED); }))) { mixin(enumMixinStr_SO_PASSCRED); } } static if(!is(typeof(SO_REUSEPORT))) { private enum enumMixinStr_SO_REUSEPORT = `enum SO_REUSEPORT = 15;`; static if(is(typeof({ mixin(enumMixinStr_SO_REUSEPORT); }))) { mixin(enumMixinStr_SO_REUSEPORT); } } static if(!is(typeof(SO_BSDCOMPAT))) { private enum enumMixinStr_SO_BSDCOMPAT = `enum SO_BSDCOMPAT = 14;`; static if(is(typeof({ mixin(enumMixinStr_SO_BSDCOMPAT); }))) { mixin(enumMixinStr_SO_BSDCOMPAT); } } static if(!is(typeof(SO_LINGER))) { private enum enumMixinStr_SO_LINGER = `enum SO_LINGER = 13;`; static if(is(typeof({ mixin(enumMixinStr_SO_LINGER); }))) { mixin(enumMixinStr_SO_LINGER); } } static if(!is(typeof(SO_PRIORITY))) { private enum enumMixinStr_SO_PRIORITY = `enum SO_PRIORITY = 12;`; static if(is(typeof({ mixin(enumMixinStr_SO_PRIORITY); }))) { mixin(enumMixinStr_SO_PRIORITY); } } static if(!is(typeof(SO_NO_CHECK))) { private enum enumMixinStr_SO_NO_CHECK = `enum SO_NO_CHECK = 11;`; static if(is(typeof({ mixin(enumMixinStr_SO_NO_CHECK); }))) { mixin(enumMixinStr_SO_NO_CHECK); } } static if(!is(typeof(SO_OOBINLINE))) { private enum enumMixinStr_SO_OOBINLINE = `enum SO_OOBINLINE = 10;`; static if(is(typeof({ mixin(enumMixinStr_SO_OOBINLINE); }))) { mixin(enumMixinStr_SO_OOBINLINE); } } static if(!is(typeof(SO_KEEPALIVE))) { private enum enumMixinStr_SO_KEEPALIVE = `enum SO_KEEPALIVE = 9;`; static if(is(typeof({ mixin(enumMixinStr_SO_KEEPALIVE); }))) { mixin(enumMixinStr_SO_KEEPALIVE); } } static if(!is(typeof(SO_RCVBUFFORCE))) { private enum enumMixinStr_SO_RCVBUFFORCE = `enum SO_RCVBUFFORCE = 33;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVBUFFORCE); }))) { mixin(enumMixinStr_SO_RCVBUFFORCE); } } static if(!is(typeof(SO_SNDBUFFORCE))) { private enum enumMixinStr_SO_SNDBUFFORCE = `enum SO_SNDBUFFORCE = 32;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDBUFFORCE); }))) { mixin(enumMixinStr_SO_SNDBUFFORCE); } } static if(!is(typeof(SO_RCVBUF))) { private enum enumMixinStr_SO_RCVBUF = `enum SO_RCVBUF = 8;`; static if(is(typeof({ mixin(enumMixinStr_SO_RCVBUF); }))) { mixin(enumMixinStr_SO_RCVBUF); } } static if(!is(typeof(SO_SNDBUF))) { private enum enumMixinStr_SO_SNDBUF = `enum SO_SNDBUF = 7;`; static if(is(typeof({ mixin(enumMixinStr_SO_SNDBUF); }))) { mixin(enumMixinStr_SO_SNDBUF); } } static if(!is(typeof(SO_BROADCAST))) { private enum enumMixinStr_SO_BROADCAST = `enum SO_BROADCAST = 6;`; static if(is(typeof({ mixin(enumMixinStr_SO_BROADCAST); }))) { mixin(enumMixinStr_SO_BROADCAST); } } static if(!is(typeof(SO_DONTROUTE))) { private enum enumMixinStr_SO_DONTROUTE = `enum SO_DONTROUTE = 5;`; static if(is(typeof({ mixin(enumMixinStr_SO_DONTROUTE); }))) { mixin(enumMixinStr_SO_DONTROUTE); } } static if(!is(typeof(SO_ERROR))) { private enum enumMixinStr_SO_ERROR = `enum SO_ERROR = 4;`; static if(is(typeof({ mixin(enumMixinStr_SO_ERROR); }))) { mixin(enumMixinStr_SO_ERROR); } } static if(!is(typeof(SO_TYPE))) { private enum enumMixinStr_SO_TYPE = `enum SO_TYPE = 3;`; static if(is(typeof({ mixin(enumMixinStr_SO_TYPE); }))) { mixin(enumMixinStr_SO_TYPE); } } static if(!is(typeof(SO_REUSEADDR))) { private enum enumMixinStr_SO_REUSEADDR = `enum SO_REUSEADDR = 2;`; static if(is(typeof({ mixin(enumMixinStr_SO_REUSEADDR); }))) { mixin(enumMixinStr_SO_REUSEADDR); } } static if(!is(typeof(SO_DEBUG))) { private enum enumMixinStr_SO_DEBUG = `enum SO_DEBUG = 1;`; static if(is(typeof({ mixin(enumMixinStr_SO_DEBUG); }))) { mixin(enumMixinStr_SO_DEBUG); } } static if(!is(typeof(SOL_SOCKET))) { private enum enumMixinStr_SOL_SOCKET = `enum SOL_SOCKET = 1;`; static if(is(typeof({ mixin(enumMixinStr_SOL_SOCKET); }))) { mixin(enumMixinStr_SOL_SOCKET); } } static if(!is(typeof(_ARPA_INET_H))) { private enum enumMixinStr__ARPA_INET_H = `enum _ARPA_INET_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__ARPA_INET_H); }))) { mixin(enumMixinStr__ARPA_INET_H); } } static if(!is(typeof(UDT_API))) { private enum enumMixinStr_UDT_API = `enum UDT_API = __attribute__ ( ( visibility ( "default" ) ) );`; static if(is(typeof({ mixin(enumMixinStr_UDT_API); }))) { mixin(enumMixinStr_UDT_API); } } static if(!is(typeof(_STRINGS_H))) { private enum enumMixinStr__STRINGS_H = `enum _STRINGS_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__STRINGS_H); }))) { mixin(enumMixinStr__STRINGS_H); } } static if(!is(typeof(_SYS_CDEFS_H))) { private enum enumMixinStr__SYS_CDEFS_H = `enum _SYS_CDEFS_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__SYS_CDEFS_H); }))) { mixin(enumMixinStr__SYS_CDEFS_H); } } static if(!is(typeof(__THROW))) { private enum enumMixinStr___THROW = `enum __THROW = __attribute__ ( ( __nothrow__ ) );`; static if(is(typeof({ mixin(enumMixinStr___THROW); }))) { mixin(enumMixinStr___THROW); } } static if(!is(typeof(__THROWNL))) { private enum enumMixinStr___THROWNL = `enum __THROWNL = __attribute__ ( ( __nothrow__ ) );`; static if(is(typeof({ mixin(enumMixinStr___THROWNL); }))) { mixin(enumMixinStr___THROWNL); } } static if(!is(typeof(__ptr_t))) { private enum enumMixinStr___ptr_t = `enum __ptr_t = void *;`; static if(is(typeof({ mixin(enumMixinStr___ptr_t); }))) { mixin(enumMixinStr___ptr_t); } } static if(!is(typeof(__flexarr))) { private enum enumMixinStr___flexarr = `enum __flexarr = [ ];`; static if(is(typeof({ mixin(enumMixinStr___flexarr); }))) { mixin(enumMixinStr___flexarr); } } static if(!is(typeof(__glibc_c99_flexarr_available))) { private enum enumMixinStr___glibc_c99_flexarr_available = `enum __glibc_c99_flexarr_available = 1;`; static if(is(typeof({ mixin(enumMixinStr___glibc_c99_flexarr_available); }))) { mixin(enumMixinStr___glibc_c99_flexarr_available); } } static if(!is(typeof(__attribute_malloc__))) { private enum enumMixinStr___attribute_malloc__ = `enum __attribute_malloc__ = __attribute__ ( ( __malloc__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_malloc__); }))) { mixin(enumMixinStr___attribute_malloc__); } } static if(!is(typeof(__attribute_pure__))) { private enum enumMixinStr___attribute_pure__ = `enum __attribute_pure__ = __attribute__ ( ( __pure__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_pure__); }))) { mixin(enumMixinStr___attribute_pure__); } } static if(!is(typeof(__attribute_const__))) { private enum enumMixinStr___attribute_const__ = `enum __attribute_const__ = __attribute__ ( cast( __const__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_const__); }))) { mixin(enumMixinStr___attribute_const__); } } static if(!is(typeof(__attribute_used__))) { private enum enumMixinStr___attribute_used__ = `enum __attribute_used__ = __attribute__ ( ( __used__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_used__); }))) { mixin(enumMixinStr___attribute_used__); } } static if(!is(typeof(__attribute_noinline__))) { private enum enumMixinStr___attribute_noinline__ = `enum __attribute_noinline__ = __attribute__ ( ( __noinline__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_noinline__); }))) { mixin(enumMixinStr___attribute_noinline__); } } static if(!is(typeof(__attribute_deprecated__))) { private enum enumMixinStr___attribute_deprecated__ = `enum __attribute_deprecated__ = __attribute__ ( ( __deprecated__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_deprecated__); }))) { mixin(enumMixinStr___attribute_deprecated__); } } static if(!is(typeof(__attribute_warn_unused_result__))) { private enum enumMixinStr___attribute_warn_unused_result__ = `enum __attribute_warn_unused_result__ = __attribute__ ( ( __warn_unused_result__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_warn_unused_result__); }))) { mixin(enumMixinStr___attribute_warn_unused_result__); } } static if(!is(typeof(__always_inline))) { private enum enumMixinStr___always_inline = `enum __always_inline = __inline __attribute__ ( ( __always_inline__ ) );`; static if(is(typeof({ mixin(enumMixinStr___always_inline); }))) { mixin(enumMixinStr___always_inline); } } static if(!is(typeof(__extern_inline))) { private enum enumMixinStr___extern_inline = `enum __extern_inline = extern __inline __attribute__ ( ( __gnu_inline__ ) );`; static if(is(typeof({ mixin(enumMixinStr___extern_inline); }))) { mixin(enumMixinStr___extern_inline); } } static if(!is(typeof(__extern_always_inline))) { private enum enumMixinStr___extern_always_inline = `enum __extern_always_inline = extern __inline __attribute__ ( ( __always_inline__ ) ) __attribute__ ( ( __gnu_inline__ ) );`; static if(is(typeof({ mixin(enumMixinStr___extern_always_inline); }))) { mixin(enumMixinStr___extern_always_inline); } } static if(!is(typeof(__fortify_function))) { private enum enumMixinStr___fortify_function = `enum __fortify_function = extern __inline __attribute__ ( ( __always_inline__ ) ) __attribute__ ( ( __gnu_inline__ ) ) ;`; static if(is(typeof({ mixin(enumMixinStr___fortify_function); }))) { mixin(enumMixinStr___fortify_function); } } static if(!is(typeof(__restrict_arr))) { private enum enumMixinStr___restrict_arr = `enum __restrict_arr = __restrict;`; static if(is(typeof({ mixin(enumMixinStr___restrict_arr); }))) { mixin(enumMixinStr___restrict_arr); } } static if(!is(typeof(__HAVE_GENERIC_SELECTION))) { private enum enumMixinStr___HAVE_GENERIC_SELECTION = `enum __HAVE_GENERIC_SELECTION = 1;`; static if(is(typeof({ mixin(enumMixinStr___HAVE_GENERIC_SELECTION); }))) { mixin(enumMixinStr___HAVE_GENERIC_SELECTION); } } static if(!is(typeof(__attribute_returns_twice__))) { private enum enumMixinStr___attribute_returns_twice__ = `enum __attribute_returns_twice__ = __attribute__ ( ( __returns_twice__ ) );`; static if(is(typeof({ mixin(enumMixinStr___attribute_returns_twice__); }))) { mixin(enumMixinStr___attribute_returns_twice__); } } static if(!is(typeof(_SYS_SELECT_H))) { private enum enumMixinStr__SYS_SELECT_H = `enum _SYS_SELECT_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__SYS_SELECT_H); }))) { mixin(enumMixinStr__SYS_SELECT_H); } } static if(!is(typeof(__NFDBITS))) { private enum enumMixinStr___NFDBITS = `enum __NFDBITS = ( 8 * cast( int ) ( __fd_mask ) .sizeof );`; static if(is(typeof({ mixin(enumMixinStr___NFDBITS); }))) { mixin(enumMixinStr___NFDBITS); } } static if(!is(typeof(FD_SETSIZE))) { private enum enumMixinStr_FD_SETSIZE = `enum FD_SETSIZE = 1024;`; static if(is(typeof({ mixin(enumMixinStr_FD_SETSIZE); }))) { mixin(enumMixinStr_FD_SETSIZE); } } static if(!is(typeof(NFDBITS))) { private enum enumMixinStr_NFDBITS = `enum NFDBITS = ( 8 * cast( int ) ( __fd_mask ) .sizeof );`; static if(is(typeof({ mixin(enumMixinStr_NFDBITS); }))) { mixin(enumMixinStr_NFDBITS); } } static if(!is(typeof(_SYS_SOCKET_H))) { private enum enumMixinStr__SYS_SOCKET_H = `enum _SYS_SOCKET_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__SYS_SOCKET_H); }))) { mixin(enumMixinStr__SYS_SOCKET_H); } } static if(!is(typeof(SHUT_RD))) { private enum enumMixinStr_SHUT_RD = `enum SHUT_RD = SHUT_RD;`; static if(is(typeof({ mixin(enumMixinStr_SHUT_RD); }))) { mixin(enumMixinStr_SHUT_RD); } } static if(!is(typeof(SHUT_WR))) { private enum enumMixinStr_SHUT_WR = `enum SHUT_WR = SHUT_WR;`; static if(is(typeof({ mixin(enumMixinStr_SHUT_WR); }))) { mixin(enumMixinStr_SHUT_WR); } } static if(!is(typeof(SHUT_RDWR))) { private enum enumMixinStr_SHUT_RDWR = `enum SHUT_RDWR = SHUT_RDWR;`; static if(is(typeof({ mixin(enumMixinStr_SHUT_RDWR); }))) { mixin(enumMixinStr_SHUT_RDWR); } } static if(!is(typeof(__SOCKADDR_ARG))) { private enum enumMixinStr___SOCKADDR_ARG = `enum __SOCKADDR_ARG = sockaddr * __restrict;`; static if(is(typeof({ mixin(enumMixinStr___SOCKADDR_ARG); }))) { mixin(enumMixinStr___SOCKADDR_ARG); } } static if(!is(typeof(__CONST_SOCKADDR_ARG))) { private enum enumMixinStr___CONST_SOCKADDR_ARG = `enum __CONST_SOCKADDR_ARG = const sockaddr *;`; static if(is(typeof({ mixin(enumMixinStr___CONST_SOCKADDR_ARG); }))) { mixin(enumMixinStr___CONST_SOCKADDR_ARG); } } static if(!is(typeof(_SYS_TYPES_H))) { private enum enumMixinStr__SYS_TYPES_H = `enum _SYS_TYPES_H = 1;`; static if(is(typeof({ mixin(enumMixinStr__SYS_TYPES_H); }))) { mixin(enumMixinStr__SYS_TYPES_H); } } static if(!is(typeof(__BIT_TYPES_DEFINED__))) { private enum enumMixinStr___BIT_TYPES_DEFINED__ = `enum __BIT_TYPES_DEFINED__ = 1;`; static if(is(typeof({ mixin(enumMixinStr___BIT_TYPES_DEFINED__); }))) { mixin(enumMixinStr___BIT_TYPES_DEFINED__); } } static if(!is(typeof(NULL))) { private enum enumMixinStr_NULL = `enum NULL = ( cast( void * ) 0 );`; static if(is(typeof({ mixin(enumMixinStr_NULL); }))) { mixin(enumMixinStr_NULL); } } } import core.time:Duration,msecs; import std.string:toStringz,fromStringz; import std.conv:to; import std.exception:enforce; import std.format:format; static import std.socket; import std.socket:AddressInfoFlags,SocketType,Address,InternetAddress,Socket,ProtocolType; import std.stdio:File; import std.typecons:tuple; import std.traits : isArray; mixin dpp.EnumD!("SocketType",__socket_type,"SOCK_"); mixin dpp.EnumD!("Status",UDT_UDTSTATUS,"UDT_"); mixin dpp.EnumD!("Option",UDT_UDTOpt,"UDT_"); mixin dpp.EnumD!("ErrNo",UDT_ERRNO,"UDT_"); mixin dpp.EnumD!("EpollOption",UDT_EPOLLOpt,"UDT_UDT_"); alias AddressFamily = typeof(2); struct addrinfo { int ai_flags; int ai_family; int ai_socktype; int ai_protocol; socklen_t ai_addrlen; sockaddr *ai_addr; char *ai_canonname; addrinfo *ai_next; } struct SocketAddressStorage { sockaddr_storage handle; private enum NI_MAXHOST = 200; private enum NI_MAXSERV = 200; private char[NI_MAXHOST] clienthost; private char[NI_MAXSERV] clientservice; @property char[] clientHost() return { return fromStringz(this.clienthost.ptr); } @property char[] clientService() return { return fromStringz(this.clientservice.ptr); } void getNameInfo() { import std.traits: Parameters; version(Windows) { import core.sys.windows.winsock2: getnameinfo; alias gai_strerror = gai_strerrorA; } else import core.sys.posix.netdb: getnameinfo, gai_strerror; int rslt = getnameinfo(cast(Parameters!getnameinfo[0])&this.handle, this.handle.sizeof.to!int, this.clienthost.ptr, this.clienthost.length.to!int, this.clientservice.ptr, this.clientservice.length.to!int, AddressInfoFlags.NUMERICHOST); version(Windows) enforce(rslt == 0, "getnameinfo error"); else enforce(rslt == 0, format(" getnameinfo error: %s", gai_strerror(rslt).fromStringz())); } } struct SocketAddressIn { sockaddr_in handle = sockaddr_in(2,9000,in_addr(( cast( in_addr_t ) 0x00000000 ))); alias handle this; this(sa_family_t family, ushort port, string address= null) { if (address.length ==0) { this.handle = sockaddr_in(family,port,in_addr(( cast( in_addr_t ) 0x00000000 ))); } else { this.handle=sockaddr_in(family,port); inet_pton(family,address.toStringz,&this.sin_addr); } } } private T getSocketOptionHelper(T)(UDTSOCKET socket, UDT_UDTOpt option) { T ret; uint retSize=ret.sizeof; int result = getsockopt(socket,0,option,cast(void*)&ret,&retSize); enforce(option == Option.UDT_UDT_RCVDATA || option == Option.UDT_UDT_SNDDATA || result != UDT_ERROR, format!"error (%s) getting socket option %s for %s: %s"(result,option,socket,getLastError())); return ret; } private void setSocketOptionHelper(T)(UDTSOCKET socket, UDT_UDTOpt option, T value) { T temp = value; int result = setsockopt(socket,0,option,cast(void*)&temp,temp.sizeof.to!int); enforce(result != UDT_ERROR, format!"error (%s) setting socket option %s for %s: %s"(result,option,socket,getLastError())); } final class SocketOptions { UdtSocket socket; this(UdtSocket socket) { this.socket = socket; } int maximumPacketSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_MSS); } void maximumPacketSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_MSS,size); } bool blockingSending() { return getSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_SNDSYN); } void blockingSending(bool mode) { setSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_SNDSYN,mode); } bool blockingReceiving() { return getSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_RCVSYN); } void blockingReceiving(bool mode) { setSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_RCVSYN,mode); } int maximumWindowSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_FC); } void maximumWindowSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_FC,size); } int udtSenderBufferSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_SNDBUF); } void udtSenderBufferSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_SNDBUF,size); } int udtReceiverBufferSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_RCVBUF); } void udtReceiverBufferSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_RCVBUF,size); } int udpSenderBufferSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDP_SNDBUF); } void udpSenderBufferSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDP_SNDBUF,size); } int udpReceiverBufferSize() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDP_RCVBUF); } void udpReceiverBufferSize(int size) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDP_RCVBUF,size); } linger lingerTime() { linger result = getSocketOptionHelper!linger(socket.handle,Option.UDT_UDT_LINGER); return result; } void lingerTime(linger lingerTime) { setSocketOptionHelper!linger(socket.handle,Option.UDT_UDT_LINGER,lingerTime); } bool enableRendezVous() { return getSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_RENDEZVOUS); } void enableRendezVous(bool enable) { setSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_RENDEZVOUS,enable); } Duration sendCallTimeOut() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_SNDTIMEO).msecs(); } void sendCallTimeOut(Duration dur) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_SNDTIMEO,dur.total!"msecs".to!int); } Duration receiveCallTimeout() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_RCVTIMEO).msecs(); } void receiveCallTimeOut(Duration dur) { setSocketOptionHelper!int(socket.handle,Option.UDT_UDT_RCVTIMEO,dur.total!"msecs".to!int); } bool reuseAddress() { return getSocketOptionHelper!bool(socket.handle,UDT_UDT_REUSEADDR); } void reuseAddress(bool reuse) { setSocketOptionHelper!bool(socket.handle,Option.UDT_UDT_REUSEADDR,reuse); } long maximumBytesPerSecondPerConnection() { return getSocketOptionHelper!long(socket.handle,Option.UDT_UDT_MAXBW); } void maximumBytesPerSecondPerConnection(long bw) { setSocketOptionHelper!long(socket.handle,Option.UDT_UDT_MAXBW,bw); } int state() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_STATE); } int epollEvents() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_EVENT); } int sizePendingDataSend() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_SNDDATA); } int sizePendingDataReceive() { return getSocketOptionHelper!int(socket.handle,Option.UDT_UDT_RCVDATA); } } shared static this() { udt_startup(); } shared static ~this() { udt_cleanup(); } alias clearLastError = udt_clearlasterror; string getLastError() { return udt_getlasterror_desc().fromStringz().idup; } struct TraceInfo { UDT_TRACEINFO handle; alias handle this; } final class UdtSocket { UDTSOCKET handle = -1; this(UDTSOCKET handle) { this.handle = handle; } int sizePendingDataSend() { return getSocketOptionHelper!int(handle,Option.UDT_UDT_SNDDATA); } int sizePendingDataReceive() { return getSocketOptionHelper!int(handle,Option.UDT_UDT_RCVDATA); } int state() { return udt_getsockstate(this.handle); } bool wouldBlock() { return (state() == UDT_EASYNCRCV); } bool isListening() { return state() == UDT_LISTENING; } bool isConnecting() { return state() == UDT_CONNECTING; } bool isAlive() { return state() == UDT_CONNECTED; } override string toString() { return format!"UDT socket %s; peerName %s; socketName %s"(this.handle,this.peerName(),this.socketName()); } InternetAddress peerName() { sockaddr_in addr; int retLength; int result = udt_getpeername(this.handle,cast(sockaddr*)&addr,&retLength); enforce(result != UDT_ERROR, format!"unable to get peername info: %s"(getLastError())); return new InternetAddress(cast(std.socket.sockaddr_in)addr); } InternetAddress socketName() { sockaddr_in addr; int retLength; int result = udt_getsockname(this.handle,cast(sockaddr*)&addr,&retLength); return new InternetAddress(cast(std.socket.sockaddr_in)addr); } ref TraceInfo perfMon(ref TraceInfo info, bool clear = true) { int result = udt_perfmon(this.handle, &info.handle, clear); enforce(result != UDT_ERROR, format!"unable to get perfmon info: %s"(getLastError())); return info; } auto ref options() { return new SocketOptions(new UdtSocket(this.handle)); } static auto create4(bool stream) { return create(std.socket.AddressFamily.INET,stream?SocketType.STREAM:SocketType.DGRAM,ProtocolType.RAW); } static auto create6(bool stream) { return create(std.socket.AddressFamily.INET6,stream?SocketType.STREAM:SocketType.DGRAM,ProtocolType.RAW); } static auto create(std.socket.AddressFamily addressFamily, SocketType socketType, int protocol) { int result = udt_socket(addressFamily.to!int, socketType.to!int, protocol); enforce(result != UDT_INVALID_SOCK, format!"unable to create UdtSocket: %s"(getLastError())); return new UdtSocket(result); } void bind(InternetAddress socketAddress) { int result = udt_bind(this.handle, cast(const(sockaddr)*)socketAddress.name, socketAddress.nameLen); enforce(result != UDT_ERROR, format!"unable to bind to %s: %s"(socketAddress,getLastError())); } void bind2(ref UdtSocket socket) { int result = udt_bind2(this.handle, socket.handle); enforce(result != UDT_ERROR, format!"unable to bind to UDP Socket %s: %s"(socket,getLastError())); } void connect(InternetAddress internetAddress) { int result = udt_connect(this.handle,cast(const(sockaddr)*) internetAddress.name, internetAddress.nameLen); enforce(result != UDT_ERROR, format!"unable to connect to %s: %s"(internetAddress,getLastError())); } void listen(int backlog) { enforce(udt_listen(this.handle,backlog) != UDT_ERROR,format!"unable to bind to listen to %s: %s"(backlog,getLastError())); } auto accept() { sockaddr_in addr; int addressLength; handle = udt_accept(this.handle, cast(sockaddr*) &addr,&addressLength); enforce(handle != UDT_INVALID_SOCK, format!"unable to accept : %s"(getLastError())); return tuple(new UdtSocket(handle),new InternetAddress(cast(std.socket.sockaddr_in)addr)); } int receive(T)(scope ref T data) if(!isArray!T && !is(T == ubyte[])) { ubyte[] s = (cast(ubyte*)&data)[0 .. int.sizeof]; return this.receive(s); } int receive(scope ubyte[] data) { int rcv_size; int var_size = int.sizeof; int opt = udt_getsockopt(this.handle, 0, UDT_UDTOpt.UDT_UDT_RCVDATA, &rcv_size, &var_size); if(opt == UDT_ERROR) { throw new Exception(format("getsockopt: %s", getLastError())); } int rs = udt_recv(this.handle, cast(char*)(data.ptr), to!int(data.length), 0); if(rs == UDT_ERROR) { throw new Exception(format("recv: %s", getLastError())); } return rs; } int send(T)(scope ref T data) @system { int result = this.send((cast(ubyte*)&data)[0 .. T.sizeof], 0); enforce(result != UDT_ERROR, format!"unable to send data of length %s:%s"(T.sizeof, getLastError())); return result; } auto send(scope ubyte[] data, int flags=0) { int result = udt_send(this.handle,cast(char*)data.ptr,data.length.to!int,flags); enforce(result != UDT_ERROR, format!"unable to send data of length %s: %s"(data.length,getLastError())); return result; } auto receiveMessage(scope const ubyte[] data) { int result = udt_recvmsg(this.handle,cast(char*)data.ptr,data.length.to!int); enforce(result != UDT_ERROR, format!"unable to receive message to buffer of length %s: %s"(data.length,getLastError())); return result; } auto sendMessage(scope ubyte[] data, int ttl, bool inOrder = true) { int result = udt_sendmsg(this.handle,cast(char*)data.ptr,data.length.to!int,ttl,inOrder ? 1:0); enforce(result != UDT_ERROR, format!"unable to send message of length %s: %s"(data.length,getLastError())); return result; } auto receiveFile(string filename, ref long offset, ulong size, int block = 7280000) { long result = udt_recvfile2(this.handle, filename.toStringz(), &offset, size, block); enforce(result != UDT_ERROR, format!"unable to receive data to buffer of length %s: %s"(size, getLastError()) ); return result; } auto sendFile(string filename, ref long offset, int block = 364000) { import std.file : getSize; import std.conv : to; const length = to!long(getSize(filename)); long result = udt_sendfile2(this.handle, filename.toStringz(), &offset, length, block ); enforce(result != UDT_ERROR, format!"unable to send file of length %s: %s"(length, getLastError())); return result; } void close() { int result = udt_close(this.handle); enforce(result != UDT_ERROR, format!"unable to close UdtSocket : %s"(getLastError())); this.handle=-1; } ~this() { if (this.handle!=-1) this.close(); } } void sendStream(Socket sourceSocket, UdtSocket targetSocket, size_t bufSize = 10_000_000) { auto buf = new ubyte[bufSize]; ptrdiff_t numBytes = 0, sentBytes = 0; while(sourceSocket.isAlive()) { numBytes = sourceSocket.receive(cast(void[])buf); if (numBytes > 0) { sentBytes = targetSocket.send(buf[0..numBytes]); enforce(sentBytes == numBytes); } } } void sendStream(File sourceFile, UdtSocket socket, size_t bufSize = 10_000_000) { foreach(ubyte[] buf; sourceFile.byChunk(new ubyte[bufSize])) { auto leftBuf = buf; while(leftBuf.length>0) { auto bytesSent = socket.send(leftBuf); leftBuf = leftBuf[bytesSent..$]; } } } void receiveStream(UdtSocket sourceSocket, Socket targetSocket, size_t bufSize = 10_000_000) { auto buf = new ubyte[bufSize]; while(sourceSocket.isAlive()) { int numBytes = udt_recv(sourceSocket.handle,cast(char*)(buf.ptr), to!int(buf.length), 0); if (numBytes <=0) continue; auto leftBuf = buf[0..numBytes]; while(leftBuf.length > 0) { auto bytesSent = targetSocket.send(leftBuf); leftBuf = (bytesSent >=0) ? leftBuf[bytesSent .. $] : []; } } } void receiveStream(UdtSocket sourceSocket, File targetFile, size_t bufSize = 16384) { auto buf = new ubyte[bufSize]; while(sourceSocket.isAlive()) { int numBytes = udt_recv(sourceSocket.handle,cast(char*)(buf.ptr), to!int(buf.length), 0); if (!sourceSocket.isAlive()) break; if (numBytes > 0) targetFile.rawWrite(buf[0..numBytes]); } } void pipeStreams(UdtSocket udtSocket, Socket socket, size_t bufSize = 10_000_000) { import std.parallelism:scopedTask; auto reader = scopedTask!receiveStream(udtSocket,socket,bufSize); auto writer = scopedTask!sendStream(socket,udtSocket,bufSize); reader.executeInNewThread(); writer.executeInNewThread(); } void pipeStreams(UdtSocket udtSocket, File file, size_t bufSize = 10_000_000) { import std.parallelism:scopedTask; auto reader = scopedTask!receiveStream(udtSocket,file,bufSize); auto writer = scopedTask!sendStream(file,udtSocket,bufSize); reader.executeInNewThread(); writer.executeInNewThread(); }
D
instance DIA_Addon_Lennar_EXIT(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 999; condition = DIA_Addon_Lennar_EXIT_Condition; information = DIA_Addon_Lennar_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Lennar_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Lennar_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Addon_Lennar_PICKPOCKET(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 900; condition = DIA_Addon_Lennar_PICKPOCKET_Condition; information = DIA_Addon_Lennar_PICKPOCKET_Info; permanent = TRUE; description = PICKPOCKET_COMM; }; func int DIA_Addon_Lennar_PICKPOCKET_Condition() { return C_Beklauen(65,100); }; func void DIA_Addon_Lennar_PICKPOCKET_Info() { Info_ClearChoices(DIA_Addon_Lennar_PICKPOCKET); Info_AddChoice(DIA_Addon_Lennar_PICKPOCKET,Dialog_Back,DIA_Addon_Lennar_PICKPOCKET_BACK); Info_AddChoice(DIA_Addon_Lennar_PICKPOCKET,DIALOG_PICKPOCKET,DIA_Addon_Lennar_PICKPOCKET_DoIt); }; func void DIA_Addon_Lennar_PICKPOCKET_DoIt() { B_Beklauen(); Info_ClearChoices(DIA_Addon_Lennar_PICKPOCKET); }; func void DIA_Addon_Lennar_PICKPOCKET_BACK() { Info_ClearChoices(DIA_Addon_Lennar_PICKPOCKET); }; instance DIA_Addon_Lennar_Hi(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 1; condition = DIA_Addon_Lennar_Hi_Condition; information = DIA_Addon_Lennar_Hi_Info; permanent = FALSE; description = "Zdravím."; }; func int DIA_Addon_Lennar_Hi_Condition() { return TRUE; }; func void DIA_Addon_Lennar_Hi_Info() { AI_Output(other,self,"DIA_Addon_Lennar_Hi_15_00"); //Zdravím. AI_Output(self,other,"DIA_Addon_Lennar_Hi_01_01"); //Ahoj, jmenuji se Lennar. Vítej v táboře kopáčů. AI_Output(other,self,"DIA_Addon_Lennar_Hi_15_02"); //Kopáčů? Myslel jsem, že toto je tábor banditů... AI_Output(self,other,"DIA_Addon_Lennar_Hi_01_03"); //Jasně, však banditi tady kopou taky. (škubne ramenem) Takže... }; instance DIA_Addon_Lennar_Attentat(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 2; condition = DIA_Addon_Lennar_Attentat_Condition; information = DIA_Addon_Lennar_Attentat_Info; permanent = FALSE; description = "O tom pokusu zavraždit Estebana..."; }; func int DIA_Addon_Lennar_Attentat_Condition() { if(MIS_Judas == LOG_Running) { return TRUE; }; return FALSE; }; func void DIA_Addon_Lennar_Attentat_Info() { B_Say(other,self,"$ATTENTAT_ADDON_DESCRIPTION2"); AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_00"); //Poslouchám? AI_Output(other,self,"DIA_Addon_Lennar_ATTENTAT_15_01"); //Máš tušení, kdo za tím je? AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_02"); //(nadšeně) Samozřejmě! AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_03"); //(nadšeně) Tutově je za tím Emilio! AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_04"); //(hořečně) Vždy utíkal do dolu jako šílenec a pak kopal jako krtek. AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_05"); //Ale od toho pokusu o vraždu jen sedí na lavičce a nepohne se ani o píď. AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_06"); //To je ono! Aby mohl do dolu, musel mít červený kámen od Estebana. AI_Output(self,other,"DIA_Addon_Lennar_ATTENTAT_01_07"); //(šeptá) Jak se tak dívám do jeho očí, vsadím se, že nebude vzdorovat dlouho. B_LogEntry(Topic_Addon_Esteban,"Lennar podezřívá Emilia, protože se Estebanovi vyhýbá."); }; instance DIA_Addon_Lennar_Inspektor(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 3; condition = DIA_Addon_Lennar_Inspektor_Condition; information = DIA_Addon_Lennar_Inspektor_Info; permanent = FALSE; description = "Co by mohl Emilio mít z Estebanovy smrti?"; }; func int DIA_Addon_Lennar_Inspektor_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Lennar_Attentat)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Lennar_Inspektor_Info() { AI_Output(other,self,"DIA_Addon_Lennar_Inspektor_15_00"); //Co by mohl Emilio mít z Estebanovy smrti? AI_Output(self,other,"DIA_Addon_Lennar_Inspektor_01_01"); //Co já vím? Možná má kamaráda, který by převzal po Estebanovi jeho místo. AI_Output(self,other,"DIA_Addon_Lennar_Inspektor_01_02"); //(pro sebe) Ano, to by mohlo dávat smysl... }; instance DIA_Addon_Lennar_Mine(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 4; condition = DIA_Addon_Lennar_Mine_Condition; information = DIA_Addon_Lennar_Mine_Info; permanent = FALSE; description = DIALOG_ADDON_MINE_DESCRIPTION; }; func int DIA_Addon_Lennar_Mine_Condition() { if((MIS_Send_Buddler == LOG_Running) && (Player_SentBuddler < 3) && (Npc_HasItems(other,ItMi_Addon_Stone_01) >= 1)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Lennar_Mine_Info() { B_Say(other,self,"$MINE_ADDON_DESCRIPTION"); B_GiveInvItems(other,self,ItMi_Addon_Stone_01,1); AI_Output(self,other,"DIA_Addon_Lennar_Mine_01_00"); //Opravdu pro mě máš červený kámen? AI_Output(self,other,"DIA_Addon_Lennar_Mine_01_01"); //Perfektní. Teď konečně rozbiju ty zatracené šutry na padrť - vím přesně, kde začnu! Player_SentBuddler = Player_SentBuddler + 1; B_GivePlayerXP(XP_Addon_MINE); AI_StopProcessInfos(self); Npc_ExchangeRoutine(self,"MINE"); }; instance DIA_Addon_Lennar_Hacker(C_Info) { npc = BDT_1096_Addon_Lennar; nr = 9; condition = DIA_Addon_Lennar_Hacker_Condition; information = DIA_Addon_Lennar_Hacker_Info; permanent = TRUE; description = "Všechno v pořádku?"; }; func int DIA_Addon_Lennar_Hacker_Condition() { if(Npc_GetDistToWP(self,"ADW_MINE_PICK_09") <= 500) { return TRUE; }; }; func void DIA_Addon_Lennar_Hacker_Info() { AI_Output(other,self,"DIA_Addon_BDT_10004_Lennar_Hacker_15_00"); //Všechno v pořádku? AI_Output(self,other,"DIA_Addon_BDT_10004_Lennar_Hacker_01_01"); //Všechno je v klidu. };
D
# FIXED user_xy.obj: C:/sgupta60/MyStuff/FinalProject/src/user_xy.c user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/std.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/tistdtypes.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/log.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/_log.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/trc.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/clk.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/gbl.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/bcache.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/mem.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/que.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/fxn.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sem.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/knl.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/atm.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sts.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/swi.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/hwi.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/obj.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sys.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/tsk.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/prd.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/trg.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h user_xy.obj: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/_hook.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/math.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/float.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/access.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/linkage.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/elfnames.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/mathf.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/unaccess.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/mathl.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/unaccess.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdio.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdlib.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/string.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/c6x.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/vect.h user_xy.obj: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdint.h user_xy.obj: C:/sgupta60/MyStuff/FinalProject/include/ColorVision.h user_xy.obj: C:/sgupta60/MyStuff/FinalProject/include/xy.h C:/sgupta60/MyStuff/FinalProject/src/user_xy.c: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/std.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/tistdtypes.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/log.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/_log.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/trc.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/clk.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/gbl.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/bcache.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/mem.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/que.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/fxn.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sem.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/knl.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/atm.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sts.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/swi.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/hwi.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/obj.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/sys.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/tsk.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/prd.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/trg.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stddef.h: C:/CCStudio_v6.1/bios_5_42_02_10/packages/ti/bios/include/_hook.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/math.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/float.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/access.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/linkage.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/elfnames.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/mathf.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/unaccess.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/mathl.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/unaccess.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdio.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdarg.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdlib.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/string.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/c6x.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/vect.h: C:/CCStudio_v6.1/ccsv6/tools/compiler/c6000_7.4.16/include/stdint.h: C:/sgupta60/MyStuff/FinalProject/include/ColorVision.h: C:/sgupta60/MyStuff/FinalProject/include/xy.h:
D
module aurora.directx.d3d11.d3d11_3; version(Windows): public import aurora.directx.d3d11.d3d11_2; public: /// /// Constants /// /// /// Functions /// /// /// Enumerations /// enum D3D11_CONTEXT_TYPE : uint { TYPE_ALL = 0, TYPE_3D = 1, TYPE_COMPUTE = 2, TYPE_COPY = 3, TYPE_VIDEO = 4 } enum D3D11_TEXTURE_LAYOUT : uint { LAYOUT_UNDEFINED = 0, LAYOUT_ROW_MAJOR = 1, LAYOUT_64K_STANDARD_SWIZZLE = 2 } enum D3D11_CONSERVATIVE_RASTERIZATION_MODE : uint { OFF = 0, ON = 1 } enum D3D11_FENCE_FLAG : uint { NONE = 0x1, SHARED = 0x2, SHARED_CROSS_ADAPTER = 0x4 } /// /// Structures /// struct D3D11_TEXTURE2D_DESC1 { uint Width; uint Height; uint MipLevels; uint ArraySize; DXGI_FORMAT Format; DXGI_SAMPLE_DESC SampleDesc; D3D11_USAGE Usage; uint BindFlags; uint CPUAccessFlags; uint MiscFlags; D3D11_TEXTURE_LAYOUT TextureLayout; } struct D3D11_TEXTURE3D_DESC1 { uint Width; uint Height; uint Depth; uint MipLevels; DXGI_FORMAT Format; D3D11_USAGE Usage; uint BindFlags; uint CPUAccessFlags; uint MiscFlags; D3D11_TEXTURE_LAYOUT TextureLayout; } struct D3D11_RASTERIZER_DESC2 { D3D11_FILL_MODE FillMode; D3D11_CULL_MODE CullMode; bool FrontCounterClockwise; int DepthBias; float DepthBiasClamp; float SlopeScaledDepthBias; bool DepthClipEnable; bool ScissorEnable; bool MultisampleEnable; bool AntialiasedLineEnable; uint ForcedSampleCount; D3D11_CONSERVATIVE_RASTERIZATION_MODE ConservativeRaster; } struct D3D11_TEX2D_SRV1 { uint MostDetailedMip; uint MipLevels; uint PlaneSlice; } struct D3D11_TEX2D_ARRAY_SRV1 { uint MostDetailedMip; uint MipLevels; uint FirstArraySlice; uint ArraySize; uint PlaneSlice; } struct D3D11_SHADER_RESOURCE_VIEW_DESC1 { DXGI_FORMAT Format; D3D11_SRV_DIMENSION ViewDimension; union { D3D11_BUFFER_SRV Buffer; D3D11_TEX1D_SRV Texture1D; D3D11_TEX1D_ARRAY_SRV Texture1DArray; D3D11_TEX2D_SRV1 Texture2D; D3D11_TEX2D_ARRAY_SRV1 Texture2DArray; D3D11_TEX2DMS_SRV Texture2DMS; D3D11_TEX2DMS_ARRAY_SRV Texture2DMSArray; D3D11_TEX3D_SRV Texture3D; D3D11_TEXCUBE_SRV TextureCube; D3D11_TEXCUBE_ARRAY_SRV TextureCubeArray; D3D11_BUFFEREX_SRV BufferEx; }; } struct D3D11_TEX2D_RTV1 { uint MipSlice; uint PlaneSlice; } struct D3D11_TEX2D_ARRAY_RTV1 { uint MipSlice; uint FirstArraySlice; uint ArraySize; uint PlaneSlice; } struct D3D11_RENDER_TARGET_VIEW_DESC1 { DXGI_FORMAT Format; D3D11_RTV_DIMENSION ViewDimension; union { D3D11_BUFFER_RTV Buffer; D3D11_TEX1D_RTV Texture1D; D3D11_TEX1D_ARRAY_RTV Texture1DArray; D3D11_TEX2D_RTV1 Texture2D; D3D11_TEX2D_ARRAY_RTV1 Texture2DArray; D3D11_TEX2DMS_RTV Texture2DMS; D3D11_TEX2DMS_ARRAY_RTV Texture2DMSArray; D3D11_TEX3D_RTV Texture3D; }; } struct D3D11_TEX2D_UAV1 { uint MipSlice; uint PlaneSlice; } struct D3D11_TEX2D_ARRAY_UAV1 { uint MipSlice; uint FirstArraySlice; uint ArraySize; uint PlaneSlice; } struct D3D11_UNORDERED_ACCESS_VIEW_DESC1 { DXGI_FORMAT Format; D3D11_UAV_DIMENSION ViewDimension; union { D3D11_BUFFER_UAV Buffer; D3D11_TEX1D_UAV Texture1D; D3D11_TEX1D_ARRAY_UAV Texture1DArray; D3D11_TEX2D_UAV1 Texture2D; D3D11_TEX2D_ARRAY_UAV1 Texture2DArray; D3D11_TEX3D_UAV Texture3D; }; } struct D3D11_QUERY_DESC1 { D3D11_QUERY Query; uint MiscFlags; D3D11_CONTEXT_TYPE ContextType; } /// /// Interfaces /// mixin(uuid!(ID3D11Texture2D1, "51218251-1E33-4617-9CCB-4D3A4367E7BB")); public interface ID3D11Texture2D1 : ID3D11Texture2D { extern(Windows): void GetDesc1(D3D11_TEXTURE2D_DESC1 *pDesc); } mixin(uuid!(ID3D11Texture3D1, "0C711683-2853-4846-9BB0-F3E60639E46A")); public interface ID3D11Texture3D1 : ID3D11Texture3D { extern(Windows): void GetDesc1(D3D11_TEXTURE3D_DESC1 *pDesc); } mixin(uuid!(ID3D11RasterizerState2, "6fbd02fb-209f-46c4-b059-2ed15586a6ac")); public interface ID3D11RasterizerState2 : ID3D11RasterizerState1 { extern(Windows): void GetDesc2(D3D11_RASTERIZER_DESC2 *pDesc); } mixin(uuid!(ID3D11ShaderResourceView1, "91308b87-9040-411d-8c67-c39253ce3802")); public interface ID3D11ShaderResourceView1 : ID3D11ShaderResourceView { extern(Windows): void GetDesc1(D3D11_SHADER_RESOURCE_VIEW_DESC1 *pDesc); } mixin(uuid!(ID3D11RenderTargetView1, "ffbe2e23-f011-418a-ac56-5ceed7c5b94b")); public interface ID3D11RenderTargetView1 : ID3D11RenderTargetView { extern(Windows): void GetDesc1(D3D11_RENDER_TARGET_VIEW_DESC1 *pDesc); } mixin(uuid!(ID3D11UnorderedAccessView1, "7b3b6153-a886-4544-ab37-6537c8500403")); public interface ID3D11UnorderedAccessView1 : ID3D11UnorderedAccessView { extern(Windows): void GetDesc1(D3D11_UNORDERED_ACCESS_VIEW_DESC1 *pDesc); } mixin(uuid!(ID3D11Query1, "631b4766-36dc-461d-8db6-c47e13e60916")); public interface ID3D11Query1 : ID3D11Query { extern(Windows): void GetDesc1(D3D11_QUERY_DESC1 *pDesc); } mixin(uuid!(ID3D11DeviceContext3, "b4e3c01d-e79e-4637-91b2-510e9f4c9b8f")); public interface ID3D11DeviceContext3 : ID3D11DeviceContext2 { extern(Windows): void Flush1(D3D11_CONTEXT_TYPE ContextType, HANDLE hEvent); void GetHardwareProtectionState(bool *pHwProtectionEnable); void SetHardwareProtectionState(bool HwProtectionEnable); } mixin(uuid!(ID3D11Fence, "affde9d1-1df7-4bb7-8a34-0f46251dab80")); public interface ID3D11Fence : ID3D11DeviceChild { extern(Windows): HRESULT CreateSharedHandle(const SECURITY_ATTRIBUTES *pAttributes, uint Access, const wchar *Name, HANDLE *pHandle); ulong GetCompletedValue(); HRESULT SetEventOnCompletion(ulong Value, HANDLE hEvent); } mixin(uuid!(ID3D11DeviceContext4, "917600da-f58c-4c33-98d8-3e15b390fa24")); public interface ID3D11DeviceContext4 : ID3D11DeviceContext3 { extern(Windows): HRESULT Signal(ID3D11Fence pFence, ulong Value); HRESULT Wait(ID3D11Fence pFence,ulong Value); } mixin(uuid!(ID3D11Device3, "A05C8C37-D2C6-4732-B3A0-9CE0B0DC9AE6")); public interface ID3D11Device3 : ID3D11Device2 { extern(Windows): HRESULT CreateDeferredContext3(uint ContextFlags, ID3D11DeviceContext3 *ppDeferredContext); HRESULT CreateQuery1(const D3D11_QUERY_DESC1 *pQueryDesc1, ID3D11Query1 *ppQuery1); HRESULT CreateRasterizerState2(const D3D11_RASTERIZER_DESC2 *pRasterizerDesc, ID3D11RasterizerState2 *ppRasterizerState); HRESULT CreateRenderTargetView1(ID3D11Resource pResource, const D3D11_RENDER_TARGET_VIEW_DESC1 *pDesc1, ID3D11RenderTargetView1 *ppRTView1); HRESULT CreateShaderResourceView1(ID3D11Resource pResource, const D3D11_SHADER_RESOURCE_VIEW_DESC1 *pDesc1, ID3D11ShaderResourceView1 *ppSRView1); HRESULT CreateTexture2D1(const D3D11_TEXTURE2D_DESC1 *pDesc1, const D3D11_SUBRESOURCE_DATA *pInitialData, ID3D11Texture2D1 *ppTexture2D); HRESULT CreateTexture3D1(const D3D11_TEXTURE3D_DESC1 *pDesc1, const D3D11_SUBRESOURCE_DATA *pInitialData, ID3D11Texture3D1 *ppTexture3D); HRESULT CreateUnorderedAccessView1(ID3D11Resource pResource, const D3D11_UNORDERED_ACCESS_VIEW_DESC1 *pDesc1, ID3D11UnorderedAccessView1 *ppUAView1); void GetImmediateContext3(ID3D11DeviceContext3 *ppImmediateContext); void ReadFromSubresource(void *pDstData, uint DstRowPitch, uint DstDepthPitch, ID3D11Resource *pSrcResource, uint SrcSubresource, const D3D11_BOX *pSrcBox); void WriteToSubresource(ID3D11Resource *pDstResource, uint DstSubresource, const D3D11_BOX *pDstBox, const void *pSrcData, uint SrcRowPitch, uint SrcDepthPitch); }
D
/** $(D std._parallelism) implements high-level primitives for SMP _parallelism. These include parallel foreach, parallel reduce, parallel eager map, pipelining and future/promise _parallelism. $(D std._parallelism) is recommended when the same operation is to be executed in parallel on different data, or when a function is to be executed in a background thread and its result returned to a well-defined main thread. For communication between arbitrary threads, see $(D std.concurrency). $(D std._parallelism) is based on the concept of a $(D Task). A $(D Task) is an object that represents the fundamental unit of work in this library and may be executed in parallel with any other $(D Task). Using $(D Task) directly allows programming with a future/promise paradigm. All other supported _parallelism paradigms (parallel foreach, map, reduce, pipelining) represent an additional level of abstraction over $(D Task). They automatically create one or more $(D Task) objects, or closely related types that are conceptually identical but not part of the public API. After creation, a $(D Task) may be executed in a new thread, or submitted to a $(D TaskPool) for execution. A $(D TaskPool) encapsulates a task queue and its worker threads. Its purpose is to efficiently map a large number of $(D Task)s onto a smaller number of threads. A task queue is a FIFO queue of $(D Task) objects that have been submitted to the $(D TaskPool) and are awaiting execution. A worker thread is a thread that is associated with exactly one task queue. It executes the $(D Task) at the front of its queue when the queue has work available, or sleeps when no work is available. Each task queue is associated with zero or more worker threads. If the result of a $(D Task) is needed before execution by a worker thread has begun, the $(D Task) can be removed from the task queue and executed immediately in the thread where the result is needed. Warning: Unless marked as $(D @trusted) or $(D @safe), artifacts in this module allow implicit data sharing between threads and cannot guarantee that client code is free from low level data races. Synopsis: --- import std.algorithm, std.parallelism, std.range; void main() { // Parallel reduce can be combined with // std.algorithm.map to interesting effect. // The following example (thanks to Russel Winder) // calculates pi by quadrature using // std.algorithm.map and TaskPool.reduce. // getTerm is evaluated in parallel as needed by // TaskPool.reduce. // // Timings on an Athlon 64 X2 dual core machine: // // TaskPool.reduce: 12.170 s // std.algorithm.reduce: 24.065 s immutable n = 1_000_000_000; immutable delta = 1.0 / n; real getTerm(int i) { immutable x = ( i - 0.5 ) * delta; return delta / ( 1.0 + x * x ) ; } immutable pi = 4.0 * taskPool.reduce!"a + b"( std.algorithm.map!getTerm(iota(n)) ); } --- Source: $(PHOBOSSRC std/_parallelism.d) Author: David Simcha Copyright: Copyright (c) 2009-2011, David Simcha. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0) */ module std.parallelism; import core.atomic; import core.cpuid; import core.exception; import core.memory; import core.sync.condition; import core.thread; import std.algorithm; import std.conv; import std.exception; import std.functional; import std.math; import std.range; import std.traits; import std.typecons; import std.typetuple; version(OSX) { version = useSysctlbyname; } else version(FreeBSD) { version = useSysctlbyname; } version(Windows) { // BUGS: Only works on Windows 2000 and above. import core.sys.windows.windows; struct SYSTEM_INFO { union { DWORD dwOemId; struct { WORD wProcessorArchitecture; WORD wReserved; } } DWORD dwPageSize; LPVOID lpMinimumApplicationAddress; LPVOID lpMaximumApplicationAddress; LPVOID dwActiveProcessorMask; DWORD dwNumberOfProcessors; DWORD dwProcessorType; DWORD dwAllocationGranularity; WORD wProcessorLevel; WORD wProcessorRevision; } private extern(Windows) void GetSystemInfo(void*); shared static this() { SYSTEM_INFO si; GetSystemInfo(&si); totalCPUs = max(1, cast(uint) si.dwNumberOfProcessors); } } else version(linux) { import core.sys.posix.unistd; shared static this() { totalCPUs = cast(uint) sysconf(_SC_NPROCESSORS_ONLN); } } else version(Solaris) { import core.sys.posix.unistd; shared static this() { totalCPUs = cast(uint) sysconf(_SC_NPROCESSORS_ONLN); } } else version(useSysctlbyname) { extern(C) int sysctlbyname( const char *, void *, size_t *, void *, size_t ); shared static this() { version(OSX) { auto nameStr = "machdep.cpu.core_count\0".ptr; } else version(FreeBSD) { auto nameStr = "hw.ncpu\0".ptr; } uint ans; size_t len = uint.sizeof; sysctlbyname(nameStr, &ans, &len, null, 0); totalCPUs = ans; } } else { static assert(0, "Don't know how to get N CPUs on this OS."); } /* Atomics code. These forward to core.atomic, but are written like this for two reasons: 1. They used to actually contain ASM code and I don' want to have to change to directly calling core.atomic in a zillion different places. 2. core.atomic has some misc. issues that make my use cases difficult without wrapping it. If I didn't wrap it, casts would be required basically everywhere. */ private void atomicSetUbyte(T)(ref T stuff, T newVal) if (__traits(isIntegral, T) && is(T : ubyte)) { //core.atomic.cas(cast(shared) &stuff, stuff, newVal); atomicStore(*(cast(shared) &stuff), newVal); } private ubyte atomicReadUbyte(T)(ref T val) if (__traits(isIntegral, T) && is(T : ubyte)) { return atomicLoad(*(cast(shared) &val)); } // This gets rid of the need for a lot of annoying casts in other parts of the // code, when enums are involved. private bool atomicCasUbyte(T)(ref T stuff, T testVal, T newVal) if (__traits(isIntegral, T) && is(T : ubyte)) { return core.atomic.cas(cast(shared) &stuff, testVal, newVal); } /*--------------------- Generic helper functions, etc.------------------------*/ private template MapType(R, functions...) { static assert(functions.length); ElementType!R e = void; alias MapType = typeof(adjoin!(staticMap!(unaryFun, functions))(e)); } private template ReduceType(alias fun, R, E) { alias ReduceType = typeof(binaryFun!fun(E.init, ElementType!R.init)); } private template noUnsharedAliasing(T) { enum bool noUnsharedAliasing = !hasUnsharedAliasing!T; } // This template tests whether a function may be executed in parallel from // @safe code via Task.executeInNewThread(). There is an additional // requirement for executing it via a TaskPool. (See isSafeReturn). private template isSafeTask(F) { enum bool isSafeTask = (functionAttributes!F & (FunctionAttribute.safe | FunctionAttribute.trusted)) != 0 && (functionAttributes!F & FunctionAttribute.ref_) == 0 && (isFunctionPointer!F || !hasUnsharedAliasing!F) && allSatisfy!(noUnsharedAliasing, ParameterTypeTuple!F); } unittest { alias F1 = void function() @safe; alias F2 = void function(); alias F3 = void function(uint, string) @trusted; alias F4 = void function(uint, char[]); static assert( isSafeTask!F1); static assert(!isSafeTask!F2); static assert( isSafeTask!F3); static assert(!isSafeTask!F4); alias F5 = uint[] function(uint, string) pure @trusted; static assert( isSafeTask!F5); } // This function decides whether Tasks that meet all of the other requirements // for being executed from @safe code can be executed on a TaskPool. // When executing via TaskPool, it's theoretically possible // to return a value that is also pointed to by a worker thread's thread local // storage. When executing from executeInNewThread(), the thread that executed // the Task is terminated by the time the return value is visible in the calling // thread, so this is a non-issue. It's also a non-issue for pure functions // since they can't read global state. private template isSafeReturn(T) { static if(!hasUnsharedAliasing!(T.ReturnType)) { enum isSafeReturn = true; } else static if(T.isPure) { enum isSafeReturn = true; } else { enum isSafeReturn = false; } } private template randAssignable(R) { enum randAssignable = isRandomAccessRange!R && hasAssignableElements!R; } // Work around syntactic ambiguity w.r.t. address of function return vals. private T* addressOf(T)(ref T val) pure nothrow { return &val; } private enum TaskStatus : ubyte { notStarted, inProgress, done } private template AliasReturn(alias fun, T...) { alias AliasReturn = typeof({ T args; return fun(args); }); } // Should be private, but std.algorithm.reduce is used in the zero-thread case // and won't work w/ private. template reduceAdjoin(functions...) { static if(functions.length == 1) { alias reduceAdjoin = binaryFun!(functions[0]); } else { T reduceAdjoin(T, U)(T lhs, U rhs) { alias funs = staticMap!(binaryFun, functions); foreach(i, Unused; typeof(lhs.expand)) { lhs.expand[i] = funs[i](lhs.expand[i], rhs); } return lhs; } } } private template reduceFinish(functions...) { static if(functions.length == 1) { alias reduceFinish = binaryFun!(functions[0]); } else { T reduceFinish(T)(T lhs, T rhs) { alias funs = staticMap!(binaryFun, functions); foreach(i, Unused; typeof(lhs.expand)) { lhs.expand[i] = funs[i](lhs.expand[i], rhs.expand[i]); } return lhs; } } } private template isRoundRobin(R : RoundRobinBuffer!(C1, C2), C1, C2) { enum isRoundRobin = true; } private template isRoundRobin(T) { enum isRoundRobin = false; } unittest { static assert( isRoundRobin!(RoundRobinBuffer!(void delegate(char[]), bool delegate()))); static assert(!isRoundRobin!(uint)); } // This is the base "class" for all of the other tasks. Using C-style // polymorphism to allow more direct control over memory allocation, etc. private struct AbstractTask { AbstractTask* prev; AbstractTask* next; // Pointer to a function that executes this task. void function(void*) runTask; Throwable exception; ubyte taskStatus = TaskStatus.notStarted; bool done() @property { if(atomicReadUbyte(taskStatus) == TaskStatus.done) { if(exception) { throw exception; } return true; } return false; } void job() { runTask(&this); } } /** $(D Task) represents the fundamental unit of work. A $(D Task) may be executed in parallel with any other $(D Task). Using this struct directly allows future/promise _parallelism. In this paradigm, a function (or delegate or other callable) is executed in a thread other than the one it was called from. The calling thread does not block while the function is being executed. A call to $(D workForce), $(D yieldForce), or $(D spinForce) is used to ensure that the $(D Task) has finished executing and to obtain the return value, if any. These functions and $(D done) also act as full memory barriers, meaning that any memory writes made in the thread that executed the $(D Task) are guaranteed to be visible in the calling thread after one of these functions returns. The $(XREF parallelism, task) and $(XREF parallelism, scopedTask) functions can be used to create an instance of this struct. See $(D task) for usage examples. Function results are returned from $(D yieldForce), $(D spinForce) and $(D workForce) by ref. If $(D fun) returns by ref, the reference will point to the returned reference of $(D fun). Otherwise it will point to a field in this struct. Copying of this struct is disabled, since it would provide no useful semantics. If you want to pass this struct around, you should do so by reference or pointer. Bugs: Changes to $(D ref) and $(D out) arguments are not propagated to the call site, only to $(D args) in this struct. */ struct Task(alias fun, Args...) { AbstractTask base = {runTask : &impl}; alias base this; private @property AbstractTask* basePtr() { return &base; } private static void impl(void* myTask) { Task* myCastedTask = cast(typeof(this)*) myTask; static if(is(ReturnType == void)) { fun(myCastedTask._args); } else static if(is(typeof(addressOf(fun(myCastedTask._args))))) { myCastedTask.returnVal = addressOf(fun(myCastedTask._args)); } else { myCastedTask.returnVal = fun(myCastedTask._args); } } private TaskPool pool; private bool isScoped; // True if created with scopedTask. Args _args; /** The arguments the function was called with. Changes to $(D out) and $(D ref) arguments will be visible here. */ static if(__traits(isSame, fun, run)) { alias args = _args[1..$]; } else { alias args = _args; } // The purpose of this code is to decide whether functions whose // return values have unshared aliasing can be executed via // TaskPool from @safe code. See isSafeReturn. static if(__traits(isSame, fun, run)) { static if(isFunctionPointer!(_args[0])) { private enum bool isPure = functionAttributes!(Args[0]) & FunctionAttribute.pure_; } else { // BUG: Should check this for delegates too, but std.traits // apparently doesn't allow this. isPure is irrelevant // for delegates, at least for now since shared delegates // don't work. private enum bool isPure = false; } } else { // We already know that we can't execute aliases in @safe code, so // just put a dummy value here. private enum bool isPure = false; } /** The return type of the function called by this $(D Task). This can be $(D void). */ alias ReturnType = typeof(fun(_args)); static if(!is(ReturnType == void)) { static if(is(typeof(&fun(_args)))) { // Ref return. ReturnType* returnVal; ref ReturnType fixRef(ReturnType* val) { return *val; } } else { ReturnType returnVal; ref ReturnType fixRef(ref ReturnType val) { return val; } } } private void enforcePool() { enforce(this.pool !is null, "Job not submitted yet."); } static if(Args.length > 0) { private this(Args args) { _args = args; } } // Work around DMD bug 6588, allow immutable elements. static if(allSatisfy!(isAssignable, Args)) { typeof(this) opAssign(typeof(this) rhs) { foreach(i, Type; typeof(this.tupleof)) { this.tupleof[i] = rhs.tupleof[i]; } return this; } } else { @disable typeof(this) opAssign(typeof(this) rhs) { assert(0); } } /** If the $(D Task) isn't started yet, execute it in the current thread. If it's done, return its return value, if any. If it's in progress, busy spin until it's done, then return the return value. If it threw an exception, rethrow that exception. This function should be used when you expect the result of the $(D Task) to be available on a timescale shorter than that of an OS context switch. */ @property ref ReturnType spinForce() @trusted { enforcePool(); this.pool.tryDeleteExecute(basePtr); while(atomicReadUbyte(this.taskStatus) != TaskStatus.done) {} if(exception) { throw exception; } static if(!is(ReturnType == void)) { return fixRef(this.returnVal); } } /** If the $(D Task) isn't started yet, execute it in the current thread. If it's done, return its return value, if any. If it's in progress, wait on a condition variable. If it threw an exception, rethrow that exception. This function should be used for expensive functions, as waiting on a condition variable introduces latency, but avoids wasted CPU cycles. */ @property ref ReturnType yieldForce() @trusted { enforcePool(); this.pool.tryDeleteExecute(basePtr); if(done) { static if(is(ReturnType == void)) { return; } else { return fixRef(this.returnVal); } } pool.waiterLock(); scope(exit) pool.waiterUnlock(); while(atomicReadUbyte(this.taskStatus) != TaskStatus.done) { pool.waitUntilCompletion(); } if(exception) { throw exception; } static if(!is(ReturnType == void)) { return fixRef(this.returnVal); } } /** If this $(D Task) was not started yet, execute it in the current thread. If it is finished, return its result. If it is in progress, execute any other $(D Task) from the $(D TaskPool) instance that this $(D Task) was submitted to until this one is finished. If it threw an exception, rethrow that exception. If no other tasks are available or this $(D Task) was executed using $(D executeInNewThread), wait on a condition variable. */ @property ref ReturnType workForce() @trusted { enforcePool(); this.pool.tryDeleteExecute(basePtr); while(true) { if(done) // done() implicitly checks for exceptions. { static if(is(ReturnType == void)) { return; } else { return fixRef(this.returnVal); } } AbstractTask* job; { // Locking explicitly and calling popNoSync() because // pop() waits on a condition variable if there are no Tasks // in the queue. pool.queueLock(); scope(exit) pool.queueUnlock(); job = pool.popNoSync(); } if(job !is null) { version(verboseUnittest) { stderr.writeln("Doing workForce work."); } pool.doJob(job); if(done) { static if(is(ReturnType == void)) { return; } else { return fixRef(this.returnVal); } } } else { version(verboseUnittest) { stderr.writeln("Yield from workForce."); } return yieldForce; } } } /** Returns $(D true) if the $(D Task) is finished executing. Throws: Rethrows any exception thrown during the execution of the $(D Task). */ @property bool done() @trusted { // Explicitly forwarded for documentation purposes. return base.done; } /** Create a new thread for executing this $(D Task), execute it in the newly created thread, then terminate the thread. This can be used for future/promise parallelism. An explicit priority may be given to the $(D Task). If one is provided, its value is forwarded to $(D core.thread.Thread.priority). See $(XREF parallelism, task) for usage example. */ void executeInNewThread() @trusted { pool = new TaskPool(basePtr); } /// Ditto void executeInNewThread(int priority) @trusted { pool = new TaskPool(basePtr, priority); } @safe ~this() { if(isScoped && pool !is null && taskStatus != TaskStatus.done) { yieldForce; } } // When this is uncommented, it somehow gets called on returning from // scopedTask even though the struct shouldn't be getting copied. //@disable this(this) {} } // Calls $(D fpOrDelegate) with $(D args). This is an // adapter that makes $(D Task) work with delegates, function pointers and // functors instead of just aliases. ReturnType!F run(F, Args...)(F fpOrDelegate, ref Args args) { return fpOrDelegate(args); } /** Creates a $(D Task) on the GC heap that calls an alias. This may be executed via $(D Task.executeInNewThread) or by submitting to a $(XREF parallelism, TaskPool). A globally accessible instance of $(D TaskPool) is provided by $(XREF parallelism, taskPool). Returns: A pointer to the $(D Task). Examples: --- // Read two files into memory at the same time. import std.file; void main() { // Create and execute a Task for reading // foo.txt. auto file1Task = task!read("foo.txt"); file1Task.executeInNewThread(); // Read bar.txt in parallel. auto file2Data = read("bar.txt"); // Get the results of reading foo.txt. auto file1Data = file1Task.yieldForce; } --- --- // Sorts an array using a parallel quick sort algorithm. // The first partition is done serially. Both recursion // branches are then executed in parallel. // // Timings for sorting an array of 1,000,000 doubles on // an Athlon 64 X2 dual core machine: // // This implementation: 176 milliseconds. // Equivalent serial implementation: 280 milliseconds void parallelSort(T)(T[] data) { // Sort small subarrays serially. if(data.length < 100) { std.algorithm.sort(data); return; } // Partition the array. swap(data[$ / 2], data[$ - 1]); auto pivot = data[$ - 1]; bool lessThanPivot(T elem) { return elem < pivot; } auto greaterEqual = partition!lessThanPivot(data[0..$ - 1]); swap(data[$ - greaterEqual.length - 1], data[$ - 1]); auto less = data[0..$ - greaterEqual.length - 1]; greaterEqual = data[$ - greaterEqual.length..$]; // Execute both recursion branches in parallel. auto recurseTask = task!parallelSort(greaterEqual); taskPool.put(recurseTask); parallelSort(less); recurseTask.yieldForce; } --- */ auto task(alias fun, Args...)(Args args) { return new Task!(fun, Args)(args); } /** Creates a $(D Task) on the GC heap that calls a function pointer, delegate, or class/struct with overloaded opCall. Examples: --- // Read two files in at the same time again, // but this time use a function pointer instead // of an alias to represent std.file.read. import std.file; void main() { // Create and execute a Task for reading // foo.txt. auto file1Task = task(&read, "foo.txt"); file1Task.executeInNewThread(); // Read bar.txt in parallel. auto file2Data = read("bar.txt"); // Get the results of reading foo.txt. auto file1Data = file1Task.yieldForce; } --- Notes: This function takes a non-scope delegate, meaning it can be used with closures. If you can't allocate a closure due to objects on the stack that have scoped destruction, see $(D scopedTask), which takes a scope delegate. */ auto task(F, Args...)(F delegateOrFp, Args args) if(is(typeof(delegateOrFp(args))) && !isSafeTask!F) { return new Task!(run, F, Args)(delegateOrFp, args); } /** Version of $(D task) usable from $(D @safe) code. Usage mechanics are identical to the non-@safe case, but safety introduces some restrictions: 1. $(D fun) must be @safe or @trusted. 2. $(D F) must not have any unshared aliasing as defined by $(XREF traits, hasUnsharedAliasing). This means it may not be an unshared delegate or a non-shared class or struct with overloaded $(D opCall). This also precludes accepting template alias parameters. 3. $(D Args) must not have unshared aliasing. 4. $(D fun) must not return by reference. 5. The return type must not have unshared aliasing unless $(D fun) is $(D pure) or the $(D Task) is executed via $(D executeInNewThread) instead of using a $(D TaskPool). */ @trusted auto task(F, Args...)(F fun, Args args) if(is(typeof(fun(args))) && isSafeTask!F) { return new Task!(run, F, Args)(fun, args); } /** These functions allow the creation of $(D Task) objects on the stack rather than the GC heap. The lifetime of a $(D Task) created by $(D scopedTask) cannot exceed the lifetime of the scope it was created in. $(D scopedTask) might be preferred over $(D task): 1. When a $(D Task) that calls a delegate is being created and a closure cannot be allocated due to objects on the stack that have scoped destruction. The delegate overload of $(D scopedTask) takes a $(D scope) delegate. 2. As a micro-optimization, to avoid the heap allocation associated with $(D task) or with the creation of a closure. Usage is otherwise identical to $(D task). Notes: $(D Task) objects created using $(D scopedTask) will automatically call $(D Task.yieldForce) in their destructor if necessary to ensure the $(D Task) is complete before the stack frame they reside on is destroyed. */ auto scopedTask(alias fun, Args...)(Args args) { auto ret = Task!(fun, Args)(args); ret.isScoped = true; return ret; } /// Ditto auto scopedTask(F, Args...)(scope F delegateOrFp, Args args) if(is(typeof(delegateOrFp(args))) && !isSafeTask!F) { auto ret = Task!(run, F, Args)(delegateOrFp, args); ret.isScoped = true; return ret; } /// Ditto @trusted auto scopedTask(F, Args...)(F fun, Args args) if(is(typeof(fun(args))) && isSafeTask!F) { auto ret = Task!(run, F, Args)(fun, args); ret.isScoped = true; return ret; } /** The total number of CPU cores available on the current machine, as reported by the operating system. */ immutable uint totalCPUs; /* This class serves two purposes: 1. It distinguishes std.parallelism threads from other threads so that the std.parallelism daemon threads can be terminated. 2. It adds a reference to the pool that the thread is a member of, which is also necessary to allow the daemon threads to be properly terminated. */ private final class ParallelismThread : Thread { this(void delegate() dg) { super(dg); } TaskPool pool; } // Kill daemon threads. shared static ~this() { auto allThreads = Thread.getAll(); foreach(thread; allThreads) { auto pthread = cast(ParallelismThread) thread; if(pthread is null) continue; auto pool = pthread.pool; if(!pool.isDaemon) continue; pool.stop(); pthread.join(); } } /** This class encapsulates a task queue and a set of worker threads. Its purpose is to efficiently map a large number of $(D Task)s onto a smaller number of threads. A task queue is a FIFO queue of $(D Task) objects that have been submitted to the $(D TaskPool) and are awaiting execution. A worker thread is a thread that executes the $(D Task) at the front of the queue when one is available and sleeps when the queue is empty. This class should usually be used via the global instantiation available via the $(XREF parallelism, taskPool) property. Occasionally it is useful to explicitly instantiate a $(D TaskPool): 1. When you want $(D TaskPool) instances with multiple priorities, for example a low priority pool and a high priority pool. 2. When the threads in the global task pool are waiting on a synchronization primitive (for example a mutex), and you want to parallelize the code that needs to run before these threads can be resumed. */ final class TaskPool { private: // A pool can either be a regular pool or a single-task pool. A // single-task pool is a dummy pool that's fired up for // Task.executeInNewThread(). bool isSingleTask; ParallelismThread[] pool; Thread singleTaskThread; AbstractTask* head; AbstractTask* tail; PoolState status = PoolState.running; Condition workerCondition; Condition waiterCondition; Mutex queueMutex; Mutex waiterMutex; // For waiterCondition // The instanceStartIndex of the next instance that will be created. __gshared static size_t nextInstanceIndex = 1; // The index of the current thread. static size_t threadIndex; // The index of the first thread in this instance. immutable size_t instanceStartIndex; // The index that the next thread to be initialized in this pool will have. size_t nextThreadIndex; enum PoolState : ubyte { running, finishing, stopNow } void doJob(AbstractTask* job) { assert(job.taskStatus == TaskStatus.inProgress); assert(job.next is null); assert(job.prev is null); scope(exit) { if(!isSingleTask) { waiterLock(); scope(exit) waiterUnlock(); notifyWaiters(); } } try { job.job(); } catch(Throwable e) { job.exception = e; } atomicSetUbyte(job.taskStatus, TaskStatus.done); } // This function is used for dummy pools created by Task.executeInNewThread(). void doSingleTask() { // No synchronization. Pool is guaranteed to only have one thread, // and the queue is submitted to before this thread is created. assert(head); auto t = head; t.next = t.prev = head = null; doJob(t); } // This function performs initialization for each thread that affects // thread local storage and therefore must be done from within the // worker thread. It then calls executeWorkLoop(). void startWorkLoop() { // Initialize thread index. { queueLock(); scope(exit) queueUnlock(); threadIndex = nextThreadIndex; nextThreadIndex++; } executeWorkLoop(); } // This is the main work loop that worker threads spend their time in // until they terminate. It's also entered by non-worker threads when // finish() is called with the blocking variable set to true. void executeWorkLoop() { while(atomicReadUbyte(status) != PoolState.stopNow) { AbstractTask* task = pop(); if (task is null) { if(atomicReadUbyte(status) == PoolState.finishing) { atomicSetUbyte(status, PoolState.stopNow); return; } } else { doJob(task); } } } // Pop a task off the queue. AbstractTask* pop() { queueLock(); scope(exit) queueUnlock(); auto ret = popNoSync(); while(ret is null && status == PoolState.running) { wait(); ret = popNoSync(); } return ret; } AbstractTask* popNoSync() out(returned) { /* If task.prev and task.next aren't null, then another thread * can try to delete this task from the pool after it's * alreadly been deleted/popped. */ if(returned !is null) { assert(returned.next is null); assert(returned.prev is null); } } body { if(isSingleTask) return null; AbstractTask* returned = head; if (head !is null) { head = head.next; returned.prev = null; returned.next = null; returned.taskStatus = TaskStatus.inProgress; } if(head !is null) { head.prev = null; } return returned; } // Push a task onto the queue. void abstractPut(AbstractTask* task) { queueLock(); scope(exit) queueUnlock(); abstractPutNoSync(task); } void abstractPutNoSync(AbstractTask* task) in { assert(task); } out { assert(tail.prev !is tail); assert(tail.next is null, text(tail.prev, '\t', tail.next)); if(tail.prev !is null) { assert(tail.prev.next is tail, text(tail.prev, '\t', tail.next)); } } body { // Not using enforce() to save on function call overhead since this // is a performance critical function. if(status != PoolState.running) { throw new Error( "Cannot submit a new task to a pool after calling " ~ "finish() or stop()." ); } task.next = null; if (head is null) //Queue is empty. { head = task; tail = task; tail.prev = null; } else { assert(tail); task.prev = tail; tail.next = task; tail = task; } notify(); } void abstractPutGroupNoSync(AbstractTask* h, AbstractTask* t) { if(status != PoolState.running) { throw new Error( "Cannot submit a new task to a pool after calling " ~ "finish() or stop()." ); } if(head is null) { head = h; tail = t; } else { h.prev = tail; tail.next = h; tail = t; } notifyAll(); } void tryDeleteExecute(AbstractTask* toExecute) { if(isSingleTask) return; if( !deleteItem(toExecute) ) { return; } try { toExecute.job(); } catch(Exception e) { toExecute.exception = e; } atomicSetUbyte(toExecute.taskStatus, TaskStatus.done); } bool deleteItem(AbstractTask* item) { queueLock(); scope(exit) queueUnlock(); return deleteItemNoSync(item); } bool deleteItemNoSync(AbstractTask* item) { if(item.taskStatus != TaskStatus.notStarted) { return false; } item.taskStatus = TaskStatus.inProgress; if(item is head) { // Make sure head gets set properly. popNoSync(); return true; } if(item is tail) { tail = tail.prev; if(tail !is null) { tail.next = null; } item.next = null; item.prev = null; return true; } if(item.next !is null) { assert(item.next.prev is item); // Check queue consistency. item.next.prev = item.prev; } if(item.prev !is null) { assert(item.prev.next is item); // Check queue consistency. item.prev.next = item.next; } item.next = null; item.prev = null; return true; } void queueLock() { assert(queueMutex); if(!isSingleTask) queueMutex.lock(); } void queueUnlock() { assert(queueMutex); if(!isSingleTask) queueMutex.unlock(); } void waiterLock() { if(!isSingleTask) waiterMutex.lock(); } void waiterUnlock() { if(!isSingleTask) waiterMutex.unlock(); } void wait() { if(!isSingleTask) workerCondition.wait(); } void notify() { if(!isSingleTask) workerCondition.notify(); } void notifyAll() { if(!isSingleTask) workerCondition.notifyAll(); } void waitUntilCompletion() { if(isSingleTask) { singleTaskThread.join(); } else { waiterCondition.wait(); } } void notifyWaiters() { if(!isSingleTask) waiterCondition.notifyAll(); } // Private constructor for creating dummy pools that only have one thread, // only execute one Task, and then terminate. This is used for // Task.executeInNewThread(). this(AbstractTask* task, int priority = int.max) { assert(task); // Dummy value, not used. instanceStartIndex = 0; this.isSingleTask = true; task.taskStatus = TaskStatus.inProgress; this.head = task; singleTaskThread = new Thread(&doSingleTask); singleTaskThread.start(); // Disabled until writing code to support // running thread with specified priority // See https://d.puremagic.com/issues/show_bug.cgi?id=8960 /*if(priority != int.max) { singleTaskThread.priority = priority; }*/ } public: // This is used in parallel_algorithm but is too unstable to document // as public API. size_t defaultWorkUnitSize(size_t rangeLen) const @safe pure nothrow { if(this.size == 0) { return rangeLen; } immutable size_t eightSize = 4 * (this.size + 1); auto ret = (rangeLen / eightSize) + ((rangeLen % eightSize == 0) ? 0 : 1); return max(ret, 1); } /** Default constructor that initializes a $(D TaskPool) with $(D totalCPUs) - 1 worker threads. The minus 1 is included because the main thread will also be available to do work. Note: On single-core machines, the primitives provided by $(D TaskPool) operate transparently in single-threaded mode. */ this() @trusted { this(totalCPUs - 1); } /** Allows for custom number of worker threads. */ this(size_t nWorkers) @trusted { synchronized(typeid(TaskPool)) { instanceStartIndex = nextInstanceIndex; // The first worker thread to be initialized will have this index, // and will increment it. The second worker to be initialized will // have this index plus 1. nextThreadIndex = instanceStartIndex; nextInstanceIndex += nWorkers; } queueMutex = new Mutex(this); waiterMutex = new Mutex(); workerCondition = new Condition(queueMutex); waiterCondition = new Condition(waiterMutex); pool = new ParallelismThread[nWorkers]; foreach(ref poolThread; pool) { poolThread = new ParallelismThread(&startWorkLoop); poolThread.pool = this; poolThread.start(); } } /** Implements a parallel foreach loop over a range. This works by implicitly creating and submitting one $(D Task) to the $(D TaskPool) for each worker thread. A work unit is a set of consecutive elements of $(D range) to be processed by a worker thread between communication with any other thread. The number of elements processed per work unit is controlled by the $(D workUnitSize) parameter. Smaller work units provide better load balancing, but larger work units avoid the overhead of communicating with other threads frequently to fetch the next work unit. Large work units also avoid false sharing in cases where the range is being modified. The less time a single iteration of the loop takes, the larger $(D workUnitSize) should be. For very expensive loop bodies, $(D workUnitSize) should be 1. An overload that chooses a default work unit size is also available. Examples: --- // Find the logarithm of every number from 1 to // 10_000_000 in parallel. auto logs = new double[10_000_000]; // Parallel foreach works with or without an index // variable. It can be iterate by ref if range.front // returns by ref. // Iterate over logs using work units of size 100. foreach(i, ref elem; taskPool.parallel(logs, 100)) { elem = log(i + 1.0); } // Same thing, but use the default work unit size. // // Timings on an Athlon 64 X2 dual core machine: // // Parallel foreach: 388 milliseconds // Regular foreach: 619 milliseconds foreach(i, ref elem; taskPool.parallel(logs)) { elem = log(i + 1.0); } --- Notes: The memory usage of this implementation is guaranteed to be constant in $(D range.length). Breaking from a parallel foreach loop via a break, labeled break, labeled continue, return or goto statement throws a $(D ParallelForeachError). In the case of non-random access ranges, parallel foreach buffers lazily to an array of size $(D workUnitSize) before executing the parallel portion of the loop. The exception is that, if a parallel foreach is executed over a range returned by $(D asyncBuf) or $(D map), the copying is elided and the buffers are simply swapped. In this case $(D workUnitSize) is ignored and the work unit size is set to the buffer size of $(D range). A memory barrier is guaranteed to be executed on exit from the loop, so that results produced by all threads are visible in the calling thread. $(B Exception Handling): When at least one exception is thrown from inside a parallel foreach loop, the submission of additional $(D Task) objects is terminated as soon as possible, in a non-deterministic manner. All executing or enqueued work units are allowed to complete. Then, all exceptions that were thrown by any work unit are chained using $(D Throwable.next) and rethrown. The order of the exception chaining is non-deterministic. */ ParallelForeach!R parallel(R)(R range, size_t workUnitSize) { enforce(workUnitSize > 0, "workUnitSize must be > 0."); alias RetType = ParallelForeach!R; return RetType(this, range, workUnitSize); } /// Ditto ParallelForeach!R parallel(R)(R range) { static if(hasLength!R) { // Default work unit size is such that we would use 4x as many // slots as are in this thread pool. size_t workUnitSize = defaultWorkUnitSize(range.length); return parallel(range, workUnitSize); } else { // Just use a really, really dumb guess if the user is too lazy to // specify. return parallel(range, 512); } } /// template amap(functions...) { /** Eager parallel map. The eagerness of this function means it has less overhead than the lazily evaluated $(D TaskPool.map) and should be preferred where the memory requirements of eagerness are acceptable. $(D functions) are the functions to be evaluated, passed as template alias parameters in a style similar to $(XREF_PACK algorithm,iteration,map). The first argument must be a random access range. For performance reasons, amap will assume the range elements have not yet been initialized. Elements will be overwritten without calling a destructor nor doing an assignment. As such, the range must not contain meaningful data: either un-initialized objects, or objects in their $(D .init) state. --- auto numbers = iota(100_000_000.0); // Find the square roots of numbers. // // Timings on an Athlon 64 X2 dual core machine: // // Parallel eager map: 0.802 s // Equivalent serial implementation: 1.768 s auto squareRoots = taskPool.amap!sqrt(numbers); --- Immediately after the range argument, an optional work unit size argument may be provided. Work units as used by $(D amap) are identical to those defined for parallel foreach. If no work unit size is provided, the default work unit size is used. --- // Same thing, but make work unit size 100. auto squareRoots = taskPool.amap!sqrt(numbers, 100); --- An output range for returning the results may be provided as the last argument. If one is not provided, an array of the proper type will be allocated on the garbage collected heap. If one is provided, it must be a random access range with assignable elements, must have reference semantics with respect to assignment to its elements, and must have the same length as the input range. Writing to adjacent elements from different threads must be safe. --- // Same thing, but explicitly allocate an array // to return the results in. The element type // of the array may be either the exact type // returned by functions or an implicit conversion // target. auto squareRoots = new float[numbers.length]; taskPool.amap!sqrt(numbers, squareRoots); // Multiple functions, explicit output range, and // explicit work unit size. auto results = new Tuple!(float, real)[numbers.length]; taskPool.amap!(sqrt, log)(numbers, 100, results); --- Note: A memory barrier is guaranteed to be executed after all results are written but before returning so that results produced by all threads are visible in the calling thread. Tips: To perform the mapping operation in place, provide the same range for the input and output range. To parallelize the copying of a range with expensive to evaluate elements to an array, pass an identity function (a function that just returns whatever argument is provided to it) to $(D amap). $(B Exception Handling): When at least one exception is thrown from inside the map functions, the submission of additional $(D Task) objects is terminated as soon as possible, in a non-deterministic manner. All currently executing or enqueued work units are allowed to complete. Then, all exceptions that were thrown from any work unit are chained using $(D Throwable.next) and rethrown. The order of the exception chaining is non-deterministic. */ auto amap(Args...)(Args args) if(isRandomAccessRange!(Args[0])) { alias fun = adjoin!(staticMap!(unaryFun, functions)); alias range = args[0]; immutable len = range.length; static if( Args.length > 1 && randAssignable!(Args[$ - 1]) && is(MapType!(Args[0], functions) : ElementType!(Args[$ - 1])) ) { alias buf = args[$ - 1]; alias args2 = args[0..$ - 1]; alias Args2 = Args[0..$ - 1]; enforce(buf.length == len, text("Can't use a user supplied buffer that's the wrong ", "size. (Expected :", len, " Got: ", buf.length)); } else static if(randAssignable!(Args[$ - 1]) && Args.length > 1) { static assert(0, "Wrong buffer type."); } else { auto buf = uninitializedArray!(MapType!(Args[0], functions)[])(len); alias args2 = args; alias Args2 = Args; } if(!len) return buf; static if(isIntegral!(Args2[$ - 1])) { static assert(args2.length == 2); auto workUnitSize = cast(size_t) args2[1]; } else { static assert(args2.length == 1, Args); auto workUnitSize = defaultWorkUnitSize(range.length); } alias R = typeof(range); if(workUnitSize > len) { workUnitSize = len; } // Handle as a special case: if(size == 0) { size_t index = 0; foreach(elem; range) { emplaceRef(buf[index++], fun(elem)); } return buf; } // Effectively -1: chunkIndex + 1 == 0: shared size_t workUnitIndex = size_t.max; shared bool shouldContinue = true; void doIt() { scope(failure) { // If an exception is thrown, all threads should bail. atomicStore(shouldContinue, false); } while(atomicLoad(shouldContinue)) { immutable myUnitIndex = atomicOp!"+="(workUnitIndex, 1); immutable start = workUnitSize * myUnitIndex; if(start >= len) { atomicStore(shouldContinue, false); break; } immutable end = min(len, start + workUnitSize); static if (hasSlicing!R) { auto subrange = range[start..end]; foreach(i; start..end) { emplaceRef(buf[i], fun(subrange.front)); subrange.popFront(); } } else { foreach(i; start..end) { emplaceRef(buf[i], fun(range[i])); } } } } submitAndExecute(this, &doIt); return buf; } } /// template map(functions...) { /** A semi-lazy parallel map that can be used for pipelining. The map functions are evaluated for the first $(D bufSize) elements and stored in a buffer and made available to $(D popFront). Meanwhile, in the background a second buffer of the same size is filled. When the first buffer is exhausted, it is swapped with the second buffer and filled while the values from what was originally the second buffer are read. This implementation allows for elements to be written to the buffer without the need for atomic operations or synchronization for each write, and enables the mapping function to be evaluated efficiently in parallel. $(D map) has more overhead than the simpler procedure used by $(D amap) but avoids the need to keep all results in memory simultaneously and works with non-random access ranges. Params: source = The input range to be mapped. If $(D source) is not random access it will be lazily buffered to an array of size $(D bufSize) before the map function is evaluated. (For an exception to this rule, see Notes.) bufSize = The size of the buffer to store the evaluated elements. workUnitSize = The number of elements to evaluate in a single $(D Task). Must be less than or equal to $(D bufSize), and should be a fraction of $(D bufSize) such that all worker threads can be used. If the default of size_t.max is used, workUnitSize will be set to the pool-wide default. Returns: An input range representing the results of the map. This range has a length iff $(D source) has a length. Notes: If a range returned by $(D map) or $(D asyncBuf) is used as an input to $(D map), then as an optimization the copying from the output buffer of the first range to the input buffer of the second range is elided, even though the ranges returned by $(D map) and $(D asyncBuf) are non-random access ranges. This means that the $(D bufSize) parameter passed to the current call to $(D map) will be ignored and the size of the buffer will be the buffer size of $(D source). Examples: --- // Pipeline reading a file, converting each line // to a number, taking the logarithms of the numbers, // and performing the additions necessary to find // the sum of the logarithms. auto lineRange = File("numberList.txt").byLine(); auto dupedLines = std.algorithm.map!"a.idup"(lineRange); auto nums = taskPool.map!(to!double)(dupedLines); auto logs = taskPool.map!log10(nums); double sum = 0; foreach(elem; logs) { sum += elem; } --- $(B Exception Handling): Any exceptions thrown while iterating over $(D source) or computing the map function are re-thrown on a call to $(D popFront) or, if thrown during construction, are simply allowed to propagate to the caller. In the case of exceptions thrown while computing the map function, the exceptions are chained as in $(D TaskPool.amap). */ auto map(S)(S source, size_t bufSize = 100, size_t workUnitSize = size_t.max) if(isInputRange!S) { enforce(workUnitSize == size_t.max || workUnitSize <= bufSize, "Work unit size must be smaller than buffer size."); alias fun = adjoin!(staticMap!(unaryFun, functions)); static final class Map { // This is a class because the task needs to be located on the // heap and in the non-random access case source needs to be on // the heap, too. private: enum bufferTrick = is(typeof(source.buf1)) && is(typeof(source.bufPos)) && is(typeof(source.doBufSwap())); alias E = MapType!(S, functions); E[] buf1, buf2; S source; TaskPool pool; Task!(run, E[] delegate(E[]), E[]) nextBufTask; size_t workUnitSize; size_t bufPos; bool lastTaskWaited; static if(isRandomAccessRange!S) { alias FromType = S; void popSource() { static if(__traits(compiles, source[0..source.length])) { source = source[min(buf1.length, source.length)..source.length]; } else static if(__traits(compiles, source[0..$])) { source = source[min(buf1.length, source.length)..$]; } else { static assert(0, "S must have slicing for Map." ~ " " ~ S.stringof ~ " doesn't."); } } } else static if(bufferTrick) { // Make sure we don't have the buffer recycling overload of // asyncBuf. static if( is(typeof(source.source)) && isRoundRobin!(typeof(source.source)) ) { static assert(0, "Cannot execute a parallel map on " ~ "the buffer recycling overload of asyncBuf." ); } alias FromType = typeof(source.buf1); FromType from; // Just swap our input buffer with source's output buffer. // No need to copy element by element. FromType dumpToFrom() { assert(source.buf1.length <= from.length); from.length = source.buf1.length; swap(source.buf1, from); // Just in case this source has been popped before // being sent to map: from = from[source.bufPos..$]; static if(is(typeof(source._length))) { source._length -= (from.length - source.bufPos); } source.doBufSwap(); return from; } } else { alias FromType = ElementType!S[]; // The temporary array that data is copied to before being // mapped. FromType from; FromType dumpToFrom() { assert(from !is null); size_t i; for(; !source.empty && i < from.length; source.popFront()) { from[i++] = source.front; } from = from[0..i]; return from; } } static if(hasLength!S) { size_t _length; public @property size_t length() const @safe pure nothrow { return _length; } } this(S source, size_t bufSize, size_t workUnitSize, TaskPool pool) { static if(bufferTrick) { bufSize = source.buf1.length; } buf1.length = bufSize; buf2.length = bufSize; static if(!isRandomAccessRange!S) { from.length = bufSize; } this.workUnitSize = (workUnitSize == size_t.max) ? pool.defaultWorkUnitSize(bufSize) : workUnitSize; this.source = source; this.pool = pool; static if(hasLength!S) { _length = source.length; } buf1 = fillBuf(buf1); submitBuf2(); } // The from parameter is a dummy and ignored in the random access // case. E[] fillBuf(E[] buf) { static if(isRandomAccessRange!S) { auto toMap = take(source, buf.length); scope(success) popSource(); } else { auto toMap = dumpToFrom(); } buf = buf[0..min(buf.length, toMap.length)]; // Handle as a special case: if(pool.size == 0) { size_t index = 0; foreach(elem; toMap) { buf[index++] = fun(elem); } return buf; } pool.amap!functions(toMap, workUnitSize, buf); return buf; } void submitBuf2() in { assert(nextBufTask.prev is null); assert(nextBufTask.next is null); } body { // Hack to reuse the task object. nextBufTask = typeof(nextBufTask).init; nextBufTask._args[0] = &fillBuf; nextBufTask._args[1] = buf2; pool.put(nextBufTask); } void doBufSwap() { if(lastTaskWaited) { // Then the source is empty. Signal it here. buf1 = null; buf2 = null; static if(!isRandomAccessRange!S) { from = null; } return; } buf2 = buf1; buf1 = nextBufTask.yieldForce; bufPos = 0; if(source.empty) { lastTaskWaited = true; } else { submitBuf2(); } } public: @property auto front() { return buf1[bufPos]; } void popFront() { static if(hasLength!S) { _length--; } bufPos++; if(bufPos >= buf1.length) { doBufSwap(); } } static if(std.range.isInfinite!S) { enum bool empty = false; } else { bool empty() @property { // popFront() sets this when source is empty return buf1.length == 0; } } } return new Map(source, bufSize, workUnitSize, this); } } /** Given a $(D source) range that is expensive to iterate over, returns an input range that asynchronously buffers the contents of $(D source) into a buffer of $(D bufSize) elements in a worker thread, while making previously buffered elements from a second buffer, also of size $(D bufSize), available via the range interface of the returned object. The returned range has a length iff $(D hasLength!S). $(D asyncBuf) is useful, for example, when performing expensive operations on the elements of ranges that represent data on a disk or network. Examples: --- import std.conv, std.stdio; void main() { // Fetch lines of a file in a background thread // while processing previously fetched lines, // dealing with byLine's buffer recycling by // eagerly duplicating every line. auto lines = File("foo.txt").byLine(); auto duped = std.algorithm.map!"a.idup"(lines); // Fetch more lines in the background while we // process the lines already read into memory // into a matrix of doubles. double[][] matrix; auto asyncReader = taskPool.asyncBuf(duped); foreach(line; asyncReader) { auto ls = line.split("\t"); matrix ~= to!(double[])(ls); } } --- $(B Exception Handling): Any exceptions thrown while iterating over $(D source) are re-thrown on a call to $(D popFront) or, if thrown during construction, simply allowed to propagate to the caller. */ auto asyncBuf(S)(S source, size_t bufSize = 100) if(isInputRange!S) { static final class AsyncBuf { // This is a class because the task and source both need to be on // the heap. // The element type of S. alias E = ElementType!S; // Needs to be here b/c of forward ref bugs. private: E[] buf1, buf2; S source; TaskPool pool; Task!(run, E[] delegate(E[]), E[]) nextBufTask; size_t bufPos; bool lastTaskWaited; static if(hasLength!S) { size_t _length; // Available if hasLength!S. public @property size_t length() const @safe pure nothrow { return _length; } } this(S source, size_t bufSize, TaskPool pool) { buf1.length = bufSize; buf2.length = bufSize; this.source = source; this.pool = pool; static if(hasLength!S) { _length = source.length; } buf1 = fillBuf(buf1); submitBuf2(); } E[] fillBuf(E[] buf) { assert(buf !is null); size_t i; for(; !source.empty && i < buf.length; source.popFront()) { buf[i++] = source.front; } buf = buf[0..i]; return buf; } void submitBuf2() in { assert(nextBufTask.prev is null); assert(nextBufTask.next is null); } body { // Hack to reuse the task object. nextBufTask = typeof(nextBufTask).init; nextBufTask._args[0] = &fillBuf; nextBufTask._args[1] = buf2; pool.put(nextBufTask); } void doBufSwap() { if(lastTaskWaited) { // Then source is empty. Signal it here. buf1 = null; buf2 = null; return; } buf2 = buf1; buf1 = nextBufTask.yieldForce; bufPos = 0; if(source.empty) { lastTaskWaited = true; } else { submitBuf2(); } } public: E front() @property { return buf1[bufPos]; } void popFront() { static if(hasLength!S) { _length--; } bufPos++; if(bufPos >= buf1.length) { doBufSwap(); } } static if(std.range.isInfinite!S) { enum bool empty = false; } else { /// bool empty() @property { // popFront() sets this when source is empty: return buf1.length == 0; } } } return new AsyncBuf(source, bufSize, this); } /** Given a callable object $(D next) that writes to a user-provided buffer and a second callable object $(D empty) that determines whether more data is available to write via $(D next), returns an input range that asynchronously calls $(D next) with a set of size $(D nBuffers) of buffers and makes the results available in the order they were obtained via the input range interface of the returned object. Similarly to the input range overload of $(D asyncBuf), the first half of the buffers are made available via the range interface while the second half are filled and vice-versa. Params: next = A callable object that takes a single argument that must be an array with mutable elements. When called, $(D next) writes data to the array provided by the caller. empty = A callable object that takes no arguments and returns a type implicitly convertible to $(D bool). This is used to signify that no more data is available to be obtained by calling $(D next). initialBufSize = The initial size of each buffer. If $(D next) takes its array by reference, it may resize the buffers. nBuffers = The number of buffers to cycle through when calling $(D next). Examples: --- // Fetch lines of a file in a background // thread while processing previously fetched // lines, without duplicating any lines. auto file = File("foo.txt"); void next(ref char[] buf) { file.readln(buf); } // Fetch more lines in the background while we // process the lines already read into memory // into a matrix of doubles. double[][] matrix; auto asyncReader = taskPool.asyncBuf(&next, &file.eof); foreach(line; asyncReader) { auto ls = line.split("\t"); matrix ~= to!(double[])(ls); } --- $(B Exception Handling): Any exceptions thrown while iterating over $(D range) are re-thrown on a call to $(D popFront). Warning: Using the range returned by this function in a parallel foreach loop will not work because buffers may be overwritten while the task that processes them is in queue. This is checked for at compile time and will result in a static assertion failure. */ auto asyncBuf(C1, C2)(C1 next, C2 empty, size_t initialBufSize = 0, size_t nBuffers = 100) if(is(typeof(C2.init()) : bool) && ParameterTypeTuple!C1.length == 1 && ParameterTypeTuple!C2.length == 0 && isArray!(ParameterTypeTuple!C1[0]) ) { auto roundRobin = RoundRobinBuffer!(C1, C2)(next, empty, initialBufSize, nBuffers); return asyncBuf(roundRobin, nBuffers / 2); } /// template reduce(functions...) { /** Parallel reduce on a random access range. Except as otherwise noted, usage is similar to $(XREF_PACK algorithm,iteration,_reduce). This function works by splitting the range to be reduced into work units, which are slices to be reduced in parallel. Once the results from all work units are computed, a final serial reduction is performed on these results to compute the final answer. Therefore, care must be taken to choose the seed value appropriately. Because the reduction is being performed in parallel, $(D functions) must be associative. For notational simplicity, let # be an infix operator representing $(D functions). Then, (a # b) # c must equal a # (b # c). Floating point addition is not associative even though addition in exact arithmetic is. Summing floating point numbers using this function may give different results than summing serially. However, for many practical purposes floating point addition can be treated as associative. Note that, since $(D functions) are assumed to be associative, additional optimizations are made to the serial portion of the reduction algorithm. These take advantage of the instruction level parallelism of modern CPUs, in addition to the thread-level parallelism that the rest of this module exploits. This can lead to better than linear speedups relative to $(XREF_PACK algorithm,iteration,_reduce), especially for fine-grained benchmarks like dot products. An explicit seed may be provided as the first argument. If provided, it is used as the seed for all work units and for the final reduction of results from all work units. Therefore, if it is not the identity value for the operation being performed, results may differ from those generated by $(XREF_PACK algorithm,iteration,_reduce) or depending on how many work units are used. The next argument must be the range to be reduced. --- // Find the sum of squares of a range in parallel, using // an explicit seed. // // Timings on an Athlon 64 X2 dual core machine: // // Parallel reduce: 72 milliseconds // Using std.algorithm.reduce instead: 181 milliseconds auto nums = iota(10_000_000.0f); auto sumSquares = taskPool.reduce!"a + b"( 0.0, std.algorithm.map!"a * a"(nums) ); --- If no explicit seed is provided, the first element of each work unit is used as a seed. For the final reduction, the result from the first work unit is used as the seed. --- // Find the sum of a range in parallel, using the first // element of each work unit as the seed. auto sum = taskPool.reduce!"a + b"(nums); --- An explicit work unit size may be specified as the last argument. Specifying too small a work unit size will effectively serialize the reduction, as the final reduction of the result of each work unit will dominate computation time. If $(D TaskPool.size) for this instance is zero, this parameter is ignored and one work unit is used. --- // Use a work unit size of 100. auto sum2 = taskPool.reduce!"a + b"(nums, 100); // Work unit size of 100 and explicit seed. auto sum3 = taskPool.reduce!"a + b"(0.0, nums, 100); --- Parallel reduce supports multiple functions, like $(D std.algorithm.reduce). --- // Find both the min and max of nums. auto minMax = taskPool.reduce!(min, max)(nums); assert(minMax[0] == reduce!min(nums)); assert(minMax[1] == reduce!max(nums)); --- $(B Exception Handling): After this function is finished executing, any exceptions thrown are chained together via $(D Throwable.next) and rethrown. The chaining order is non-deterministic. */ auto reduce(Args...)(Args args) { alias fun = reduceAdjoin!functions; alias finishFun = reduceFinish!functions; static if(isIntegral!(Args[$ - 1])) { size_t workUnitSize = cast(size_t) args[$ - 1]; alias args2 = args[0..$ - 1]; alias Args2 = Args[0..$ - 1]; } else { alias args2 = args; alias Args2 = Args; } auto makeStartValue(Type)(Type e) { static if(functions.length == 1) { return e; } else { typeof(adjoin!(staticMap!(binaryFun, functions))(e, e)) seed = void; foreach (i, T; seed.Types) { emplaceRef(seed.expand[i], e); } return seed; } } static if(args2.length == 2) { static assert(isInputRange!(Args2[1])); alias range = args2[1]; alias seed = args2[0]; enum explicitSeed = true; static if(!is(typeof(workUnitSize))) { size_t workUnitSize = defaultWorkUnitSize(range.length); } } else { static assert(args2.length == 1); alias range = args2[0]; static if(!is(typeof(workUnitSize))) { size_t workUnitSize = defaultWorkUnitSize(range.length); } enforce(!range.empty, "Cannot reduce an empty range with first element as start value."); auto seed = makeStartValue(range.front); enum explicitSeed = false; range.popFront(); } alias E = typeof(seed); alias R = typeof(range); E reduceOnRange(R range, size_t lowerBound, size_t upperBound) { // This is for exploiting instruction level parallelism by // using multiple accumulator variables within each thread, // since we're assuming functions are associative anyhow. // This is so that loops can be unrolled automatically. enum ilpTuple = TypeTuple!(0, 1, 2, 3, 4, 5); enum nILP = ilpTuple.length; immutable subSize = (upperBound - lowerBound) / nILP; if(subSize <= 1) { // Handle as a special case. static if(explicitSeed) { E result = seed; } else { E result = makeStartValue(range[lowerBound]); lowerBound++; } foreach(i; lowerBound..upperBound) { result = fun(result, range[i]); } return result; } assert(subSize > 1); E[nILP] results; size_t[nILP] offsets; foreach(i; ilpTuple) { offsets[i] = lowerBound + subSize * i; static if(explicitSeed) { results[i] = seed; } else { results[i] = makeStartValue(range[offsets[i]]); offsets[i]++; } } immutable nLoop = subSize - (!explicitSeed); foreach(i; 0..nLoop) { foreach(j; ilpTuple) { results[j] = fun(results[j], range[offsets[j]]); offsets[j]++; } } // Finish the remainder. foreach(i; nILP * subSize + lowerBound..upperBound) { results[$ - 1] = fun(results[$ - 1], range[i]); } foreach(i; ilpTuple[1..$]) { results[0] = finishFun(results[0], results[i]); } return results[0]; } immutable len = range.length; if(len == 0) { return seed; } if(this.size == 0) { return finishFun(seed, reduceOnRange(range, 0, len)); } // Unlike the rest of the functions here, I can't use the Task object // recycling trick here because this has to work on non-commutative // operations. After all the tasks are done executing, fun() has to // be applied on the results of these to get a final result, but // it can't be evaluated out of order. if(workUnitSize > len) { workUnitSize = len; } immutable size_t nWorkUnits = (len / workUnitSize) + ((len % workUnitSize == 0) ? 0 : 1); assert(nWorkUnits * workUnitSize >= len); alias RTask = Task!(run, typeof(&reduceOnRange), R, size_t, size_t); RTask[] tasks; // Can't use alloca() due to Bug 3753. Use a fixed buffer // backed by malloc(). enum maxStack = 2_048; byte[maxStack] buf = void; immutable size_t nBytesNeeded = nWorkUnits * RTask.sizeof; import core.stdc.stdlib; if(nBytesNeeded < maxStack) { tasks = (cast(RTask*) buf.ptr)[0..nWorkUnits]; } else { auto ptr = cast(RTask*) malloc(nBytesNeeded); if(!ptr) { throw new OutOfMemoryError( "Out of memory in std.parallelism." ); } tasks = ptr[0..nWorkUnits]; } scope(exit) { if(nBytesNeeded > maxStack) { free(tasks.ptr); } } foreach (ref t; tasks[]) emplaceRef(t, RTask()); // Hack to take the address of a nested function w/o // making a closure. static auto scopedAddress(D)(scope D del) { return del; } size_t curPos = 0; void useTask(ref RTask task) { task.pool = this; task._args[0] = scopedAddress(&reduceOnRange); task._args[3] = min(len, curPos + workUnitSize); // upper bound. task._args[1] = range; // range task._args[2] = curPos; // lower bound. curPos += workUnitSize; } foreach(ref task; tasks) { useTask(task); } foreach(i; 1..tasks.length - 1) { tasks[i].next = tasks[i + 1].basePtr; tasks[i + 1].prev = tasks[i].basePtr; } if(tasks.length > 1) { queueLock(); scope(exit) queueUnlock(); abstractPutGroupNoSync( tasks[1].basePtr, tasks[$ - 1].basePtr ); } if(tasks.length > 0) { try { tasks[0].job(); } catch(Throwable e) { tasks[0].exception = e; } tasks[0].taskStatus = TaskStatus.done; // Try to execute each of these in the current thread foreach(ref task; tasks[1..$]) { tryDeleteExecute(task.basePtr); } } // Now that we've tried to execute every task, they're all either // done or in progress. Force all of them. E result = seed; Throwable firstException, lastException; foreach(ref task; tasks) { try { task.yieldForce; } catch(Throwable e) { addToChain(e, firstException, lastException); continue; } if(!firstException) result = finishFun(result, task.returnVal); } if(firstException) throw firstException; return result; } } /** Gets the index of the current thread relative to this $(D TaskPool). Any thread not in this pool will receive an index of 0. The worker threads in this pool receive unique indices of 1 through $(D this.size). This function is useful for maintaining worker-local resources. Examples: --- // Execute a loop that computes the greatest common // divisor of every number from 0 through 999 with // 42 in parallel. Write the results out to // a set of files, one for each thread. This allows // results to be written out without any synchronization. import std.conv, std.range, std.numeric, std.stdio; void main() { auto filesHandles = new File[taskPool.size + 1]; scope(exit) { foreach(ref handle; fileHandles) { handle.close(); } } foreach(i, ref handle; fileHandles) { handle = File("workerResults" ~ to!string(i) ~ ".txt"); } foreach(num; parallel(iota(1_000))) { auto outHandle = fileHandles[taskPool.workerIndex]; outHandle.writeln(num, '\t', gcd(num, 42)); } } --- */ size_t workerIndex() @property @safe const nothrow { immutable rawInd = threadIndex; return (rawInd >= instanceStartIndex && rawInd < instanceStartIndex + size) ? (rawInd - instanceStartIndex + 1) : 0; } /** Struct for creating worker-local storage. Worker-local storage is thread-local storage that exists only for worker threads in a given $(D TaskPool) plus a single thread outside the pool. It is allocated on the garbage collected heap in a way that avoids _false sharing, and doesn't necessarily have global scope within any thread. It can be accessed from any worker thread in the $(D TaskPool) that created it, and one thread outside this $(D TaskPool). All threads outside the pool that created a given instance of worker-local storage share a single slot. Since the underlying data for this struct is heap-allocated, this struct has reference semantics when passed between functions. The main uses cases for $(D WorkerLocalStorageStorage) are: 1. Performing parallel reductions with an imperative, as opposed to functional, programming style. In this case, it's useful to treat $(D WorkerLocalStorageStorage) as local to each thread for only the parallel portion of an algorithm. 2. Recycling temporary buffers across iterations of a parallel foreach loop. Examples: --- // Calculate pi as in our synopsis example, but // use an imperative instead of a functional style. immutable n = 1_000_000_000; immutable delta = 1.0L / n; auto sums = taskPool.workerLocalStorage(0.0L); foreach(i; parallel(iota(n))) { immutable x = ( i - 0.5L ) * delta; immutable toAdd = delta / ( 1.0 + x * x ); sums.get += toAdd; } // Add up the results from each worker thread. real pi = 0; foreach(threadResult; sums.toRange) { pi += 4.0L * threadResult; } --- */ static struct WorkerLocalStorage(T) { private: TaskPool pool; size_t size; static immutable size_t cacheLineSize; size_t elemSize; bool* stillThreadLocal; shared static this() { size_t lineSize = 0; foreach(cachelevel; datacache) { if(cachelevel.lineSize > lineSize && cachelevel.lineSize < uint.max) { lineSize = cachelevel.lineSize; } } cacheLineSize = lineSize; } static size_t roundToLine(size_t num) pure nothrow { if(num % cacheLineSize == 0) { return num; } else { return ((num / cacheLineSize) + 1) * cacheLineSize; } } void* data; void initialize(TaskPool pool) { this.pool = pool; size = pool.size + 1; stillThreadLocal = new bool; *stillThreadLocal = true; // Determines whether the GC should scan the array. auto blkInfo = (typeid(T).flags & 1) ? cast(GC.BlkAttr) 0 : GC.BlkAttr.NO_SCAN; immutable nElem = pool.size + 1; elemSize = roundToLine(T.sizeof); // The + 3 is to pad one full cache line worth of space on either side // of the data structure to make sure false sharing with completely // unrelated heap data is prevented, and to provide enough padding to // make sure that data is cache line-aligned. data = GC.malloc(elemSize * (nElem + 3), blkInfo) + elemSize; // Cache line align data ptr. data = cast(void*) roundToLine(cast(size_t) data); foreach(i; 0..nElem) { this.opIndex(i) = T.init; } } ref T opIndex(size_t index) { assert(index < size, text(index, '\t', uint.max)); return *(cast(T*) (data + elemSize * index)); } void opIndexAssign(T val, size_t index) { assert(index < size); *(cast(T*) (data + elemSize * index)) = val; } public: /** Get the current thread's instance. Returns by ref. Note that calling $(D get) from any thread outside the $(D TaskPool) that created this instance will return the same reference, so an instance of worker-local storage should only be accessed from one thread outside the pool that created it. If this rule is violated, undefined behavior will result. If assertions are enabled and $(D toRange) has been called, then this WorkerLocalStorage instance is no longer worker-local and an assertion failure will result when calling this method. This is not checked when assertions are disabled for performance reasons. */ ref T get() @property { assert(*stillThreadLocal, "Cannot call get() on this instance of WorkerLocalStorage " ~ "because it is no longer worker-local." ); return opIndex(pool.workerIndex); } /** Assign a value to the current thread's instance. This function has the same caveats as its overload. */ void get(T val) @property { assert(*stillThreadLocal, "Cannot call get() on this instance of WorkerLocalStorage " ~ "because it is no longer worker-local." ); opIndexAssign(val, pool.workerIndex); } /** Returns a range view of the values for all threads, which can be used to further process the results of each thread after running the parallel part of your algorithm. Do not use this method in the parallel portion of your algorithm. Calling this function sets a flag indicating that this struct is no longer worker-local, and attempting to use the $(D get) method again will result in an assertion failure if assertions are enabled. */ WorkerLocalStorageRange!T toRange() @property { if(*stillThreadLocal) { *stillThreadLocal = false; // Make absolutely sure results are visible to all threads. // This is probably not necessary since some other // synchronization primitive will be used to signal that the // parallel part of the algorithm is done, but the // performance impact should be negligible, so it's better // to be safe. ubyte barrierDummy; atomicSetUbyte(barrierDummy, 1); } return WorkerLocalStorageRange!T(this); } } /** Range primitives for worker-local storage. The purpose of this is to access results produced by each worker thread from a single thread once you are no longer using the worker-local storage from multiple threads. Do not use this struct in the parallel portion of your algorithm. The proper way to instantiate this object is to call $(D WorkerLocalStorage.toRange). Once instantiated, this object behaves as a finite random-access range with assignable, lvalue elements and a length equal to the number of worker threads in the $(D TaskPool) that created it plus 1. */ static struct WorkerLocalStorageRange(T) { private: WorkerLocalStorage!T workerLocalStorage; size_t _length; size_t beginOffset; this(WorkerLocalStorage!T wl) { this.workerLocalStorage = wl; _length = wl.size; } public: ref T front() @property { return this[0]; } ref T back() @property { return this[_length - 1]; } void popFront() { if(_length > 0) { beginOffset++; _length--; } } void popBack() { if(_length > 0) { _length--; } } typeof(this) save() @property { return this; } ref T opIndex(size_t index) { assert(index < _length); return workerLocalStorage[index + beginOffset]; } void opIndexAssign(T val, size_t index) { assert(index < _length); workerLocalStorage[index] = val; } typeof(this) opSlice(size_t lower, size_t upper) { assert(upper <= _length); auto newWl = this.workerLocalStorage; newWl.data += lower * newWl.elemSize; newWl.size = upper - lower; return typeof(this)(newWl); } bool empty() @property { return length == 0; } size_t length() @property { return _length; } } /** Creates an instance of worker-local storage, initialized with a given value. The value is $(D lazy) so that you can, for example, easily create one instance of a class for each worker. For usage example, see the $(D WorkerLocalStorage) struct. */ WorkerLocalStorage!T workerLocalStorage(T)(lazy T initialVal = T.init) { WorkerLocalStorage!T ret; ret.initialize(this); foreach(i; 0..size + 1) { ret[i] = initialVal; } // Memory barrier to make absolutely sure that what we wrote is // visible to worker threads. ubyte barrierDummy; atomicSetUbyte(barrierDummy, 0); return ret; } /** Signals to all worker threads to terminate as soon as they are finished with their current $(D Task), or immediately if they are not executing a $(D Task). $(D Task)s that were in queue will not be executed unless a call to $(D Task.workForce), $(D Task.yieldForce) or $(D Task.spinForce) causes them to be executed. Use only if you have waited on every $(D Task) and therefore know the queue is empty, or if you speculatively executed some tasks and no longer need the results. */ void stop() @trusted { queueLock(); scope(exit) queueUnlock(); atomicSetUbyte(status, PoolState.stopNow); notifyAll(); } /** Signals worker threads to terminate when the queue becomes empty. If blocking argument is true, wait for all worker threads to terminate before returning. This option might be used in applications where task results are never consumed-- e.g. when $(D TaskPool) is employed as a rudimentary scheduler for tasks which communicate by means other than return values. Warning: Calling this function with $(D blocking = true) from a worker thread that is a member of the same $(D TaskPool) that $(D finish) is being called on will result in a deadlock. */ void finish(bool blocking = false) @trusted { { queueLock(); scope(exit) queueUnlock(); atomicCasUbyte(status, PoolState.running, PoolState.finishing); notifyAll(); } if (blocking) { // Use this thread as a worker until everything is finished. executeWorkLoop(); foreach(t; pool) { // Maybe there should be something here to prevent a thread // from calling join() on itself if this function is called // from a worker thread in the same pool, but: // // 1. Using an if statement to skip join() would result in // finish() returning without all tasks being finished. // // 2. If an exception were thrown, it would bubble up to the // Task from which finish() was called and likely be // swallowed. t.join(); } } } /// Returns the number of worker threads in the pool. @property size_t size() @safe const pure nothrow { return pool.length; } /** Put a $(D Task) object on the back of the task queue. The $(D Task) object may be passed by pointer or reference. Example: --- import std.file; // Create a task. auto t = task!read("foo.txt"); // Add it to the queue to be executed. taskPool.put(t); --- Notes: @trusted overloads of this function are called for $(D Task)s if $(XREF traits, hasUnsharedAliasing) is false for the $(D Task)'s return type or the function the $(D Task) executes is $(D pure). $(D Task) objects that meet all other requirements specified in the $(D @trusted) overloads of $(D task) and $(D scopedTask) may be created and executed from $(D @safe) code via $(D Task.executeInNewThread) but not via $(D TaskPool). While this function takes the address of variables that may be on the stack, some overloads are marked as @trusted. $(D Task) includes a destructor that waits for the task to complete before destroying the stack frame it is allocated on. Therefore, it is impossible for the stack frame to be destroyed before the task is complete and no longer referenced by a $(D TaskPool). */ void put(alias fun, Args...)(ref Task!(fun, Args) task) if(!isSafeReturn!(typeof(task))) { task.pool = this; abstractPut(task.basePtr); } /// Ditto void put(alias fun, Args...)(Task!(fun, Args)* task) if(!isSafeReturn!(typeof(*task))) { enforce(task !is null, "Cannot put a null Task on a TaskPool queue."); put(*task); } @trusted void put(alias fun, Args...)(ref Task!(fun, Args) task) if(isSafeReturn!(typeof(task))) { task.pool = this; abstractPut(task.basePtr); } @trusted void put(alias fun, Args...)(Task!(fun, Args)* task) if(isSafeReturn!(typeof(*task))) { enforce(task !is null, "Cannot put a null Task on a TaskPool queue."); put(*task); } /** These properties control whether the worker threads are daemon threads. A daemon thread is automatically terminated when all non-daemon threads have terminated. A non-daemon thread will prevent a program from terminating as long as it has not terminated. If any $(D TaskPool) with non-daemon threads is active, either $(D stop) or $(D finish) must be called on it before the program can terminate. The worker treads in the $(D TaskPool) instance returned by the $(D taskPool) property are daemon by default. The worker threads of manually instantiated task pools are non-daemon by default. Note: For a size zero pool, the getter arbitrarily returns true and the setter has no effect. */ bool isDaemon() @property @trusted { queueLock(); scope(exit) queueUnlock(); return (size == 0) ? true : pool[0].isDaemon; } /// Ditto void isDaemon(bool newVal) @property @trusted { queueLock(); scope(exit) queueUnlock(); foreach(thread; pool) { thread.isDaemon = newVal; } } /** These functions allow getting and setting the OS scheduling priority of the worker threads in this $(D TaskPool). They forward to $(D core.thread.Thread.priority), so a given priority value here means the same thing as an identical priority value in $(D core.thread). Note: For a size zero pool, the getter arbitrarily returns $(D core.thread.Thread.PRIORITY_MIN) and the setter has no effect. */ int priority() @property @trusted { return (size == 0) ? core.thread.Thread.PRIORITY_MIN : pool[0].priority; } /// Ditto void priority(int newPriority) @property @trusted { if(size > 0) { foreach(t; pool) { t.priority = newPriority; } } } } /** Returns a lazily initialized global instantiation of $(D TaskPool). This function can safely be called concurrently from multiple non-worker threads. The worker threads in this pool are daemon threads, meaning that it is not necessary to call $(D TaskPool.stop) or $(D TaskPool.finish) before terminating the main thread. */ @property TaskPool taskPool() @trusted { static bool initialized; __gshared static TaskPool pool; if(!initialized) { synchronized(typeid(TaskPool)) { if(!pool) { pool = new TaskPool(defaultPoolThreads); pool.isDaemon = true; } } initialized = true; } return pool; } private shared uint _defaultPoolThreads; shared static this() { atomicStore(_defaultPoolThreads, totalCPUs - 1); } /** These properties get and set the number of worker threads in the $(D TaskPool) instance returned by $(D taskPool). The default value is $(D totalCPUs) - 1. Calling the setter after the first call to $(D taskPool) does not changes number of worker threads in the instance returned by $(D taskPool). */ @property uint defaultPoolThreads() @trusted { return atomicLoad(_defaultPoolThreads); } /// Ditto @property void defaultPoolThreads(uint newVal) @trusted { atomicStore(_defaultPoolThreads, newVal); } /** Convenience functions that forwards to $(D taskPool.parallel). The purpose of these is to make parallel foreach less verbose and more readable. Example: --- // Find the logarithm of every number from // 1 to 1_000_000 in parallel, using the // default TaskPool instance. auto logs = new double[1_000_000]; foreach(i, ref elem; parallel(logs)) { elem = log(i + 1.0); } --- */ ParallelForeach!R parallel(R)(R range) { return taskPool.parallel(range); } /// Ditto ParallelForeach!R parallel(R)(R range, size_t workUnitSize) { return taskPool.parallel(range, workUnitSize); } // Thrown when a parallel foreach loop is broken from. class ParallelForeachError : Error { this() { super("Cannot break from a parallel foreach loop using break, return, " ~ "labeled break/continue or goto statements."); } } /*------Structs that implement opApply for parallel foreach.------------------*/ private template randLen(R) { enum randLen = isRandomAccessRange!R && hasLength!R; } private void submitAndExecute( TaskPool pool, scope void delegate() doIt ) { immutable nThreads = pool.size + 1; alias PTask = typeof(scopedTask(doIt)); import core.stdc.stdlib; import core.stdc.string : memcpy; // The logical thing to do would be to just use alloca() here, but that // causes problems on Windows for reasons that I don't understand // (tentatively a compiler bug) and definitely doesn't work on Posix due // to Bug 3753. Therefore, allocate a fixed buffer and fall back to // malloc() if someone's using a ridiculous amount of threads. Also, // the using a byte array instead of a PTask array as the fixed buffer // is to prevent d'tors from being called on uninitialized excess PTask // instances. enum nBuf = 64; byte[nBuf * PTask.sizeof] buf = void; PTask[] tasks; if(nThreads <= nBuf) { tasks = (cast(PTask*) buf.ptr)[0..nThreads]; } else { auto ptr = cast(PTask*) malloc(nThreads * PTask.sizeof); if(!ptr) throw new OutOfMemoryError("Out of memory in std.parallelism."); tasks = ptr[0..nThreads]; } scope(exit) { if(nThreads > nBuf) { free(tasks.ptr); } } foreach(ref t; tasks) { // This silly looking code is necessary to prevent d'tors from being // called on uninitialized objects. auto temp = scopedTask(doIt); core.stdc.string.memcpy(&t, &temp, PTask.sizeof); // This has to be done to t after copying, not temp before copying. // Otherwise, temp's destructor will sit here and wait for the // task to finish. t.pool = pool; } foreach(i; 1..tasks.length - 1) { tasks[i].next = tasks[i + 1].basePtr; tasks[i + 1].prev = tasks[i].basePtr; } if(tasks.length > 1) { pool.queueLock(); scope(exit) pool.queueUnlock(); pool.abstractPutGroupNoSync( tasks[1].basePtr, tasks[$ - 1].basePtr ); } if(tasks.length > 0) { try { tasks[0].job(); } catch(Throwable e) { tasks[0].exception = e; } tasks[0].taskStatus = TaskStatus.done; // Try to execute each of these in the current thread foreach(ref task; tasks[1..$]) { pool.tryDeleteExecute(task.basePtr); } } Throwable firstException, lastException; foreach(i, ref task; tasks) { try { task.yieldForce; } catch(Throwable e) { addToChain(e, firstException, lastException); continue; } } if(firstException) throw firstException; } void foreachErr() { throw new ParallelForeachError(); } int doSizeZeroCase(R, Delegate)(ref ParallelForeach!R p, Delegate dg) { with(p) { int res = 0; size_t index = 0; // The explicit ElementType!R in the foreach loops is necessary for // correct behavior when iterating over strings. static if(hasLvalueElements!R) { foreach(ref ElementType!R elem; range) { static if(ParameterTypeTuple!dg.length == 2) { res = dg(index, elem); } else { res = dg(elem); } if(res) foreachErr(); index++; } } else { foreach(ElementType!R elem; range) { static if(ParameterTypeTuple!dg.length == 2) { res = dg(index, elem); } else { res = dg(elem); } if(res) foreachErr(); index++; } } return res; } } private enum string parallelApplyMixinRandomAccess = q{ // Handle empty thread pool as special case. if(pool.size == 0) { return doSizeZeroCase(this, dg); } // Whether iteration is with or without an index variable. enum withIndex = ParameterTypeTuple!(typeof(dg)).length == 2; shared size_t workUnitIndex = size_t.max; // Effectively -1: chunkIndex + 1 == 0 immutable len = range.length; if(!len) return 0; shared bool shouldContinue = true; void doIt() { scope(failure) { // If an exception is thrown, all threads should bail. atomicStore(shouldContinue, false); } while(atomicLoad(shouldContinue)) { immutable myUnitIndex = atomicOp!"+="(workUnitIndex, 1); immutable start = workUnitSize * myUnitIndex; if(start >= len) { atomicStore(shouldContinue, false); break; } immutable end = min(len, start + workUnitSize); foreach(i; start..end) { static if(withIndex) { if(dg(i, range[i])) foreachErr(); } else { if(dg(range[i])) foreachErr(); } } } } submitAndExecute(pool, &doIt); return 0; }; enum string parallelApplyMixinInputRange = q{ // Handle empty thread pool as special case. if(pool.size == 0) { return doSizeZeroCase(this, dg); } // Whether iteration is with or without an index variable. enum withIndex = ParameterTypeTuple!(typeof(dg)).length == 2; // This protects the range while copying it. auto rangeMutex = new Mutex(); shared bool shouldContinue = true; // The total number of elements that have been popped off range. // This is updated only while protected by rangeMutex; size_t nPopped = 0; static if( is(typeof(range.buf1)) && is(typeof(range.bufPos)) && is(typeof(range.doBufSwap())) ) { // Make sure we don't have the buffer recycling overload of // asyncBuf. static if( is(typeof(range.source)) && isRoundRobin!(typeof(range.source)) ) { static assert(0, "Cannot execute a parallel foreach loop on " ~ "the buffer recycling overload of asyncBuf."); } enum bool bufferTrick = true; } else { enum bool bufferTrick = false; } void doIt() { scope(failure) { // If an exception is thrown, all threads should bail. atomicStore(shouldContinue, false); } static if(hasLvalueElements!R) { alias Temp = ElementType!R*[]; Temp temp; // Returns: The previous value of nPopped. size_t makeTemp() { if(temp is null) { temp = uninitializedArray!Temp(workUnitSize); } rangeMutex.lock(); scope(exit) rangeMutex.unlock(); size_t i = 0; for(; i < workUnitSize && !range.empty; range.popFront(), i++) { temp[i] = addressOf(range.front); } temp = temp[0..i]; auto ret = nPopped; nPopped += temp.length; return ret; } } else { alias Temp = ElementType!R[]; Temp temp; // Returns: The previous value of nPopped. static if(!bufferTrick) size_t makeTemp() { if(temp is null) { temp = uninitializedArray!Temp(workUnitSize); } rangeMutex.lock(); scope(exit) rangeMutex.unlock(); size_t i = 0; for(; i < workUnitSize && !range.empty; range.popFront(), i++) { temp[i] = range.front; } temp = temp[0..i]; auto ret = nPopped; nPopped += temp.length; return ret; } static if(bufferTrick) size_t makeTemp() { rangeMutex.lock(); scope(exit) rangeMutex.unlock(); // Elide copying by just swapping buffers. temp.length = range.buf1.length; swap(range.buf1, temp); // This is necessary in case popFront() has been called on // range before entering the parallel foreach loop. temp = temp[range.bufPos..$]; static if(is(typeof(range._length))) { range._length -= (temp.length - range.bufPos); } range.doBufSwap(); auto ret = nPopped; nPopped += temp.length; return ret; } } while(atomicLoad(shouldContinue)) { auto overallIndex = makeTemp(); if(temp.empty) { atomicStore(shouldContinue, false); break; } foreach(i; 0..temp.length) { scope(success) overallIndex++; static if(hasLvalueElements!R) { static if(withIndex) { if(dg(overallIndex, *temp[i])) foreachErr(); } else { if(dg(*temp[i])) foreachErr(); } } else { static if(withIndex) { if(dg(overallIndex, temp[i])) foreachErr(); } else { if(dg(temp[i])) foreachErr(); } } } } } submitAndExecute(pool, &doIt); return 0; }; // Calls e.next until the end of the chain is found. private Throwable findLastException(Throwable e) pure nothrow { if(e is null) return null; while(e.next) { e = e.next; } return e; } // Adds e to the exception chain. private void addToChain( Throwable e, ref Throwable firstException, ref Throwable lastException ) pure nothrow { if(firstException) { assert(lastException); lastException.next = e; lastException = findLastException(e); } else { firstException = e; lastException = findLastException(e); } } private struct ParallelForeach(R) { TaskPool pool; R range; size_t workUnitSize; alias E = ElementType!R; static if(hasLvalueElements!R) { alias NoIndexDg = int delegate(ref E); alias IndexDg = int delegate(size_t, ref E); } else { alias NoIndexDg = int delegate(E); alias IndexDg = int delegate(size_t, E); } int opApply(scope NoIndexDg dg) { static if(randLen!R) { mixin(parallelApplyMixinRandomAccess); } else { mixin(parallelApplyMixinInputRange); } } int opApply(scope IndexDg dg) { static if(randLen!R) { mixin(parallelApplyMixinRandomAccess); } else { mixin(parallelApplyMixinInputRange); } } } /* This struct buffers the output of a callable that outputs data into a user-supplied buffer into a set of buffers of some fixed size. It allows these buffers to be accessed with an input range interface. This is used internally in the buffer-recycling overload of TaskPool.asyncBuf, which creates an instance and forwards it to the input range overload of asyncBuf. */ private struct RoundRobinBuffer(C1, C2) { // No need for constraints because they're already checked for in asyncBuf. alias Array = ParameterTypeTuple!(C1.init)[0]; alias T = typeof(Array.init[0]); T[][] bufs; size_t index; C1 nextDel; C2 emptyDel; bool _empty; bool primed; this( C1 nextDel, C2 emptyDel, size_t initialBufSize, size_t nBuffers ) { this.nextDel = nextDel; this.emptyDel = emptyDel; bufs.length = nBuffers; foreach(ref buf; bufs) { buf.length = initialBufSize; } } void prime() in { assert(!empty); } body { scope(success) primed = true; nextDel(bufs[index]); } T[] front() @property in { assert(!empty); } body { if(!primed) prime(); return bufs[index]; } void popFront() { if(empty || emptyDel()) { _empty = true; return; } index = (index + 1) % bufs.length; primed = false; } bool empty() @property const @safe pure nothrow { return _empty; } } version(unittest) { // This was the only way I could get nested maps to work. __gshared TaskPool poolInstance; import std.stdio; } // These test basic functionality but don't stress test for threading bugs. // These are the tests that should be run every time Phobos is compiled. unittest { poolInstance = new TaskPool(2); scope(exit) poolInstance.stop(); // The only way this can be verified is manually. debug(std_parallelism) stderr.writeln("totalCPUs = ", totalCPUs); auto oldPriority = poolInstance.priority; poolInstance.priority = Thread.PRIORITY_MAX; assert(poolInstance.priority == Thread.PRIORITY_MAX); poolInstance.priority = Thread.PRIORITY_MIN; assert(poolInstance.priority == Thread.PRIORITY_MIN); poolInstance.priority = oldPriority; assert(poolInstance.priority == oldPriority); static void refFun(ref uint num) { num++; } uint x; // Test task(). auto t = task!refFun(x); poolInstance.put(t); t.yieldForce; assert(t.args[0] == 1); auto t2 = task(&refFun, x); poolInstance.put(t2); t2.yieldForce; assert(t2.args[0] == 1); // Test scopedTask(). auto st = scopedTask!refFun(x); poolInstance.put(st); st.yieldForce; assert(st.args[0] == 1); auto st2 = scopedTask(&refFun, x); poolInstance.put(st2); st2.yieldForce; assert(st2.args[0] == 1); // Test executeInNewThread(). auto ct = scopedTask!refFun(x); ct.executeInNewThread(Thread.PRIORITY_MAX); ct.yieldForce; assert(ct.args[0] == 1); // Test ref return. uint toInc = 0; static ref T makeRef(T)(ref T num) { return num; } auto t3 = task!makeRef(toInc); taskPool.put(t3); assert(t3.args[0] == 0); t3.spinForce++; assert(t3.args[0] == 1); static void testSafe() @safe { static int bump(int num) { return num + 1; } auto safePool = new TaskPool(0); auto t = task(&bump, 1); taskPool.put(t); assert(t.yieldForce == 2); auto st = scopedTask(&bump, 1); taskPool.put(st); assert(st.yieldForce == 2); safePool.stop(); } auto arr = [1,2,3,4,5]; auto nums = new uint[5]; auto nums2 = new uint[5]; foreach(i, ref elem; poolInstance.parallel(arr)) { elem++; nums[i] = cast(uint) i + 2; nums2[i] = elem; } assert(nums == [2,3,4,5,6], text(nums)); assert(nums2 == nums, text(nums2)); assert(arr == nums, text(arr)); // Test const/immutable arguments. static int add(int lhs, int rhs) { return lhs + rhs; } immutable addLhs = 1; immutable addRhs = 2; auto addTask = task(&add, addLhs, addRhs); auto addScopedTask = scopedTask(&add, addLhs, addRhs); poolInstance.put(addTask); poolInstance.put(addScopedTask); assert(addTask.yieldForce == 3); assert(addScopedTask.yieldForce == 3); // Test parallel foreach with non-random access range. auto range = filter!"a != 666"([0, 1, 2, 3, 4]); foreach(i, elem; poolInstance.parallel(range)) { nums[i] = cast(uint) i; } assert(nums == [0,1,2,3,4]); auto logs = new double[1_000_000]; foreach(i, ref elem; poolInstance.parallel(logs)) { elem = log(i + 1.0); } foreach(i, elem; logs) { assert(approxEqual(elem, cast(double) log(i + 1))); } assert(poolInstance.amap!"a * a"([1,2,3,4,5]) == [1,4,9,16,25]); assert(poolInstance.amap!"a * a"([1,2,3,4,5], new long[5]) == [1,4,9,16,25]); assert(poolInstance.amap!("a * a", "-a")([1,2,3]) == [tuple(1, -1), tuple(4, -2), tuple(9, -3)]); auto tupleBuf = new Tuple!(int, int)[3]; poolInstance.amap!("a * a", "-a")([1,2,3], tupleBuf); assert(tupleBuf == [tuple(1, -1), tuple(4, -2), tuple(9, -3)]); poolInstance.amap!("a * a", "-a")([1,2,3], 5, tupleBuf); assert(tupleBuf == [tuple(1, -1), tuple(4, -2), tuple(9, -3)]); // Test amap with a non-array buffer. auto toIndex = new int[5]; auto indexed = std.range.indexed(toIndex, [3, 1, 4, 0, 2]); poolInstance.amap!"a * 2"([1, 2, 3, 4, 5], indexed); assert(equal(indexed, [2, 4, 6, 8, 10])); assert(equal(toIndex, [8, 4, 10, 2, 6])); poolInstance.amap!"a / 2"(indexed, indexed); assert(equal(indexed, [1, 2, 3, 4, 5])); assert(equal(toIndex, [4, 2, 5, 1, 3])); auto buf = new int[5]; poolInstance.amap!"a * a"([1,2,3,4,5], buf); assert(buf == [1,4,9,16,25]); poolInstance.amap!"a * a"([1,2,3,4,5], 4, buf); assert(buf == [1,4,9,16,25]); assert(poolInstance.reduce!"a + b"([1]) == 1); assert(poolInstance.reduce!"a + b"([1,2,3,4]) == 10); assert(poolInstance.reduce!"a + b"(0.0, [1,2,3,4]) == 10); assert(poolInstance.reduce!"a + b"(0.0, [1,2,3,4], 1) == 10); assert(poolInstance.reduce!(min, max)([1,2,3,4]) == tuple(1, 4)); assert(poolInstance.reduce!("a + b", "a * b")(tuple(0, 1), [1,2,3,4]) == tuple(10, 24)); immutable serialAns = std.algorithm.reduce!"a + b"(iota(1000)); assert(poolInstance.reduce!"a + b"(0, iota(1000)) == serialAns); assert(poolInstance.reduce!"a + b"(iota(1000)) == serialAns); // Test worker-local storage. auto wl = poolInstance.workerLocalStorage(0); foreach(i; poolInstance.parallel(iota(1000), 1)) { wl.get = wl.get + i; } auto wlRange = wl.toRange; auto parallelSum = poolInstance.reduce!"a + b"(wlRange); assert(parallelSum == 499500); assert(wlRange[0..1][0] == wlRange[0]); assert(wlRange[1..2][0] == wlRange[1]); // Test finish() { static void slowFun() { Thread.sleep(dur!"msecs"(1)); } auto pool1 = new TaskPool(); auto tSlow = task!slowFun(); pool1.put(tSlow); pool1.finish(); tSlow.yieldForce; // Can't assert that pool1.status == PoolState.stopNow because status // doesn't change until after the "done" flag is set and the waiting // thread is woken up. auto pool2 = new TaskPool(); auto tSlow2 = task!slowFun(); pool2.put(tSlow2); pool2.finish(true); // blocking assert(tSlow2.done); // Test fix for Bug 8582 by making pool size zero. auto pool3 = new TaskPool(0); auto tSlow3 = task!slowFun(); pool3.put(tSlow3); pool3.finish(true); // blocking assert(tSlow3.done); // This is correct because no thread will terminate unless pool2.status // and pool3.status have already been set to stopNow. assert(pool2.status == TaskPool.PoolState.stopNow); assert(pool3.status == TaskPool.PoolState.stopNow); } // Test default pool stuff. assert(taskPool.size == totalCPUs - 1); nums = new uint[1000]; foreach(i; parallel(iota(1000))) { nums[i] = cast(uint) i; } assert(equal(nums, iota(1000))); assert(equal( poolInstance.map!"a * a"(iota(30_000_001), 10_000), std.algorithm.map!"a * a"(iota(30_000_001)) )); // The filter is to kill random access and test the non-random access // branch. assert(equal( poolInstance.map!"a * a"( filter!"a == a"(iota(30_000_001) ), 10_000, 1000), std.algorithm.map!"a * a"(iota(30_000_001)) )); assert( reduce!"a + b"(0UL, poolInstance.map!"a * a"(iota(3_000_001), 10_000) ) == reduce!"a + b"(0UL, std.algorithm.map!"a * a"(iota(3_000_001)) ) ); assert(equal( iota(1_000_002), poolInstance.asyncBuf(filter!"a == a"(iota(1_000_002))) )); { import std.file : deleteme; string temp_file = std.file.deleteme ~ "-tempDelMe.txt"; auto file = File(temp_file, "wb"); scope(exit) { file.close(); import std.file; remove(temp_file); } auto written = [[1.0, 2, 3], [4.0, 5, 6], [7.0, 8, 9]]; foreach(row; written) { file.writeln(join(to!(string[])(row), "\t")); } file = File(temp_file); void next(ref char[] buf) { file.readln(buf); import std.string : chomp; buf = chomp(buf); } double[][] read; auto asyncReader = taskPool.asyncBuf(&next, &file.eof); foreach(line; asyncReader) { if(line.length == 0) continue; auto ls = line.split("\t"); read ~= to!(double[])(ls); } assert(read == written); file.close(); } // Test Map/AsyncBuf chaining. auto abuf = poolInstance.asyncBuf(iota(-1.0, 3_000_000), 100); auto temp = poolInstance.map!sqrt( abuf, 100, 5 ); auto lmchain = poolInstance.map!"a * a"(temp, 100, 5); lmchain.popFront(); int ii; foreach( elem; (lmchain)) { if(!approxEqual(elem, ii)) { stderr.writeln(ii, '\t', elem); } ii++; } // Test buffer trick in parallel foreach. abuf = poolInstance.asyncBuf(iota(-1.0, 1_000_000), 100); abuf.popFront(); auto bufTrickTest = new size_t[abuf.length]; foreach(i, elem; parallel(abuf)) { bufTrickTest[i] = i; } assert(equal(iota(1_000_000), bufTrickTest)); auto myTask = task!(std.math.abs)(-1); taskPool.put(myTask); assert(myTask.spinForce == 1); // Test that worker local storage from one pool receives an index of 0 // when the index is queried w.r.t. another pool. The only way to do this // is non-deterministically. foreach(i; parallel(iota(1000), 1)) { assert(poolInstance.workerIndex == 0); } foreach(i; poolInstance.parallel(iota(1000), 1)) { assert(taskPool.workerIndex == 0); } // Test exception handling. static void parallelForeachThrow() { foreach(elem; parallel(iota(10))) { throw new Exception(""); } } assertThrown!Exception(parallelForeachThrow()); static int reduceException(int a, int b) { throw new Exception(""); } assertThrown!Exception( poolInstance.reduce!reduceException(iota(3)) ); static int mapException(int a) { throw new Exception(""); } assertThrown!Exception( poolInstance.amap!mapException(iota(3)) ); static void mapThrow() { auto m = poolInstance.map!mapException(iota(3)); m.popFront(); } assertThrown!Exception(mapThrow()); struct ThrowingRange { @property int front() { return 1; } void popFront() { throw new Exception(""); } enum bool empty = false; } assertThrown!Exception(poolInstance.asyncBuf(ThrowingRange.init)); } //version = parallelismStressTest; // These are more like stress tests than real unit tests. They print out // tons of stuff and should not be run every time make unittest is run. version(parallelismStressTest) { unittest { size_t attempt; for(; attempt < 10; attempt++) foreach(poolSize; [0, 4]) { poolInstance = new TaskPool(poolSize); uint[] numbers = new uint[1_000]; foreach(i; poolInstance.parallel( iota(0, numbers.length)) ) { numbers[i] = cast(uint) i; } // Make sure it works. foreach(i; 0..numbers.length) { assert(numbers[i] == i); } stderr.writeln("Done creating nums."); auto myNumbers = filter!"a % 7 > 0"( iota(0, 1000)); foreach(num; poolInstance.parallel(myNumbers)) { assert(num % 7 > 0 && num < 1000); } stderr.writeln("Done modulus test."); uint[] squares = poolInstance.amap!"a * a"(numbers, 100); assert(squares.length == numbers.length); foreach(i, number; numbers) { assert(squares[i] == number * number); } stderr.writeln("Done squares."); auto sumFuture = task!( reduce!"a + b" )(numbers); poolInstance.put(sumFuture); ulong sumSquares = 0; foreach(elem; numbers) { sumSquares += elem * elem; } uint mySum = sumFuture.spinForce(); assert(mySum == 999 * 1000 / 2); auto mySumParallel = poolInstance.reduce!"a + b"(numbers); assert(mySum == mySumParallel); stderr.writeln("Done sums."); auto myTask = task( { synchronized writeln("Our lives are parallel...Our lives are parallel."); }); poolInstance.put(myTask); auto nestedOuter = "abcd"; auto nestedInner = iota(0, 10, 2); foreach(i, letter; poolInstance.parallel(nestedOuter, 1)) { foreach(j, number; poolInstance.parallel(nestedInner, 1)) { synchronized writeln(i, ": ", letter, " ", j, ": ", number); } } poolInstance.stop(); } assert(attempt == 10); writeln("Press enter to go to next round of unittests."); readln(); } // These unittests are intended more for actual testing and not so much // as examples. unittest { foreach(attempt; 0..10) foreach(poolSize; [0, 4]) { poolInstance = new TaskPool(poolSize); // Test indexing. stderr.writeln("Creator Raw Index: ", poolInstance.threadIndex); assert(poolInstance.workerIndex() == 0); // Test worker-local storage. auto workerLocalStorage = poolInstance.workerLocalStorage!uint(1); foreach(i; poolInstance.parallel(iota(0U, 1_000_000))) { workerLocalStorage.get++; } assert(reduce!"a + b"(workerLocalStorage.toRange) == 1_000_000 + poolInstance.size + 1); // Make sure work is reasonably balanced among threads. This test is // non-deterministic and is more of a sanity check than something that // has an absolute pass/fail. shared(uint)[void*] nJobsByThread; foreach(thread; poolInstance.pool) { nJobsByThread[cast(void*) thread] = 0; } nJobsByThread[ cast(void*) Thread.getThis()] = 0; foreach(i; poolInstance.parallel( iota(0, 1_000_000), 100 )) { atomicOp!"+="( nJobsByThread[ cast(void*) Thread.getThis() ], 1); } stderr.writeln("\nCurrent thread is: ", cast(void*) Thread.getThis()); stderr.writeln("Workload distribution: "); foreach(k, v; nJobsByThread) { stderr.writeln(k, '\t', v); } // Test whether amap can be nested. real[][] matrix = new real[][](1000, 1000); foreach(i; poolInstance.parallel( iota(0, matrix.length) )) { foreach(j; poolInstance.parallel( iota(0, matrix[0].length) )) { matrix[i][j] = i * j; } } // Get around weird bugs having to do w/ sqrt being an intrinsic: static real mySqrt(real num) { return sqrt(num); } static real[] parallelSqrt(real[] nums) { return poolInstance.amap!mySqrt(nums); } real[][] sqrtMatrix = poolInstance.amap!parallelSqrt(matrix); foreach(i, row; sqrtMatrix) { foreach(j, elem; row) { real shouldBe = sqrt( cast(real) i * j); assert(approxEqual(shouldBe, elem)); sqrtMatrix[i][j] = shouldBe; } } auto saySuccess = task( { stderr.writeln( "Success doing matrix stuff that involves nested pool use."); }); poolInstance.put(saySuccess); saySuccess.workForce(); // A more thorough test of amap, reduce: Find the sum of the square roots of // matrix. static real parallelSum(real[] input) { return poolInstance.reduce!"a + b"(input); } auto sumSqrt = poolInstance.reduce!"a + b"( poolInstance.amap!parallelSum( sqrtMatrix ) ); assert(approxEqual(sumSqrt, 4.437e8)); stderr.writeln("Done sum of square roots."); // Test whether tasks work with function pointers. auto nanTask = task(&isNaN, 1.0L); poolInstance.put(nanTask); assert(nanTask.spinForce == false); if(poolInstance.size > 0) { // Test work waiting. static void uselessFun() { foreach(i; 0..1_000_000) {} } auto uselessTasks = new typeof(task(&uselessFun))[1000]; foreach(ref uselessTask; uselessTasks) { uselessTask = task(&uselessFun); } foreach(ref uselessTask; uselessTasks) { poolInstance.put(uselessTask); } foreach(ref uselessTask; uselessTasks) { uselessTask.workForce(); } } // Test the case of non-random access + ref returns. int[] nums = [1,2,3,4,5]; static struct RemoveRandom { int[] arr; ref int front() { return arr.front; } void popFront() { arr.popFront(); } bool empty() { return arr.empty; } } auto refRange = RemoveRandom(nums); foreach(ref elem; poolInstance.parallel(refRange)) { elem++; } assert(nums == [2,3,4,5,6], text(nums)); stderr.writeln("Nums: ", nums); poolInstance.stop(); } } } version(unittest) { struct __S_12733 { invariant() { assert(checksum == 1234567890); } this(ulong u){n = u;} void opAssign(__S_12733 s){this.n = s.n;} ulong n; ulong checksum = 1234567890; } static auto __genPair_12733(ulong n) { return __S_12733(n); } } unittest { immutable ulong[] data = [ 2UL^^59-1, 2UL^^59-1, 2UL^^59-1, 112_272_537_195_293UL ]; auto result = taskPool.amap!__genPair_12733(data); }
D
// Written in the D programming language /++ Module containing Date/Time functionality. This module provides: $(UL $(LI Types to represent points in time: $(REF SysTime,std,_datetime,systime), $(REF Date,std,_datetime,date), $(REF TimeOfDay,std,_datetime,date), $(REF DateTime,std,_datetime,date).) $(LI Types to represent intervals of time.) $(LI Types to represent ranges over intervals of time.) $(LI Types to represent time zones (used by $(REF SysTime,std,_datetime,systime)).) $(LI A platform-independent, high precision stopwatch type: $(LREF StopWatch)) $(LI Benchmarking functions.) $(LI Various helper functions.) ) Closely related to std.datetime is <a href="core_time.html">$(D core.time)</a>, and some of the time types used in std.datetime come from there - such as $(REF Duration, core,time), $(REF TickDuration, core,time), and $(REF FracSec, core,time). core.time is publically imported into std.datetime, it isn't necessary to import it separately. Three of the main concepts used in this module are time points, time durations, and time intervals. A time point is a specific point in time. e.g. January 5th, 2010 or 5:00. A time duration is a length of time with units. e.g. 5 days or 231 seconds. A time interval indicates a period of time associated with a fixed point in time. It is either two time points associated with each other, indicating the time starting at the first point up to, but not including, the second point - e.g. [January 5th, 2010 - March 10th, 2010$(RPAREN) - or it is a time point and a time duration associated with one another. e.g. January 5th, 2010 and 5 days, indicating [January 5th, 2010 - January 10th, 2010$(RPAREN). Various arithmetic operations are supported between time points and durations (e.g. the difference between two time points is a time duration), and ranges can be gotten from time intervals, so range-based operations may be done on a series of time points. The types that the typical user is most likely to be interested in are $(REF Date,std,_datetime,date) (if they want dates but don't care about time), $(REF DateTime,std,_datetime,date) (if they want dates and times but don't care about time zones), $(REF SysTime,std,_datetime,systime) (if they want the date and time from the OS and/or do care about time zones), and StopWatch (a platform-independent, high precision stop watch). $(REF Date,std,_datetime,date) and $(REF DateTime,std,_datetime,date) are optimized for calendar-based operations, while $(REF SysTime,std,_datetime,systime) is designed for dealing with time from the OS. Check out their specific documentation for more details. To get the current time, use $(REF Clock.currTime,std,_datetime,systime). It will return the current time as a $(REF SysTime,std,_datetime,systime). To print it, $(D toString) is sufficient, but if using $(D toISOString), $(D toISOExtString), or $(D toSimpleString), use the corresponding $(D fromISOString), $(D fromISOExtString), or $(D fromSimpleString) to create a $(REF SysTime,std,_datetime,systime) from the string. -------------------- auto currentTime = Clock.currTime(); auto timeString = currentTime.toISOExtString(); auto restoredTime = SysTime.fromISOExtString(timeString); -------------------- Various functions take a string (or strings) to represent a unit of time (e.g. $(D convert!("days", "hours")(numDays))). The valid strings to use with such functions are $(D "years"), $(D "months"), $(D "weeks"), $(D "days"), $(D "hours"), $(D "minutes"), $(D "seconds"), $(D "msecs") (milliseconds), $(D "usecs") (microseconds), $(D "hnsecs") (hecto-nanoseconds - i.e. 100 ns), or some subset thereof. There are a few functions in core.time which take $(D "nsecs"), but because nothing in std.datetime has precision greater than hnsecs, and very little in core.time does, no functions in std.datetime accept $(D "nsecs"). To remember which units are abbreviated and which aren't, all units seconds and greater use their full names, and all sub-second units are abbreviated (since they'd be rather long if they weren't). Note: $(REF DateTimeException,std,_datetime,date) is an alias for $(REF TimeException, core,time), so you don't need to worry about core.time functions and std.datetime functions throwing different exception types (except in the rare case that they throw something other than $(REF TimeException, core,time) or $(REF DateTimeException,std,_datetime,date)). See_Also: $(DDLINK intro-to-_datetime, Introduction to std.datetime, Introduction to std&#46;_datetime)<br> $(HTTP en.wikipedia.org/wiki/ISO_8601, ISO 8601)<br> $(HTTP en.wikipedia.org/wiki/Tz_database, Wikipedia entry on TZ Database)<br> $(HTTP en.wikipedia.org/wiki/List_of_tz_database_time_zones, List of Time Zones)<br> License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: $(HTTP jmdavisprog.com, Jonathan M Davis) and Kato Shoichi Source: $(PHOBOSSRC std/_datetime/package.d) +/ module std.datetime; public import core.time; public import std.datetime.date; public import std.datetime.interval; public import std.datetime.systime; public import std.datetime.timezone; import core.exception : AssertError; import std.functional : unaryFun; import std.traits; import std.typecons : Flag, Yes, No; // Verify module example. @safe unittest { auto currentTime = Clock.currTime(); auto timeString = currentTime.toISOExtString(); auto restoredTime = SysTime.fromISOExtString(timeString); } // Verify Examples for core.time.Duration which couldn't be in core.time. @safe unittest { assert(std.datetime.Date(2010, 9, 7) + dur!"days"(5) == std.datetime.Date(2010, 9, 12)); assert(std.datetime.Date(2010, 9, 7) - std.datetime.Date(2010, 10, 3) == dur!"days"(-26)); } @safe unittest { import std.traits : hasUnsharedAliasing; /* Issue 6642 */ static assert(!hasUnsharedAliasing!Date); static assert(!hasUnsharedAliasing!TimeOfDay); static assert(!hasUnsharedAliasing!DateTime); static assert(!hasUnsharedAliasing!SysTime); } // @@@DEPRECATED_2018-10@@@ /++ $(RED The old benchmarking functionality in std.datetime (which uses $(REF TickDuration,core,time)) has been deprecated. Use what's in std.datetime.stopwatch instead. It uses $(REF MonoTime,core,time) and $(REF Duration,core,time). See $(REF AutoStart,std,datetime,stopwatch). This symbol will be removed from the documentation in October 2018 and fully removed from Phobos in October 2019.) Used by StopWatch to indicate whether it should start immediately upon construction. If set to $(D AutoStart.no), then the stopwatch is not started when it is constructed. Otherwise, if set to $(D AutoStart.yes), then the stopwatch is started when it is constructed. +/ deprecated("Use std.datetime.stopwatch.AutoStart.") alias AutoStart = Flag!"autoStart"; // @@@DEPRECATED_2018-10@@@ /++ $(RED The old benchmarking functionality in std.datetime (which uses $(REF TickDuration,core,time)) has been deprecated. Use what's in std.datetime.stopwatch instead. It uses $(REF MonoTime,core,time) and $(REF Duration,core,time). See $(REF _StopWatch,std,datetime,stopwatch). This symbol will be removed from the documentation in October 2018 and fully removed from Phobos in October 2019.) $(D StopWatch) measures time as precisely as possible. This class uses a high-performance counter. On Windows systems, it uses $(D QueryPerformanceCounter), and on Posix systems, it uses $(D clock_gettime) if available, and $(D gettimeofday) otherwise. But the precision of $(D StopWatch) differs from system to system. It is impossible to for it to be the same from system to system since the precision of the system clock varies from system to system, and other system-dependent and situation-dependent stuff (such as the overhead of a context switch between threads) can also affect $(D StopWatch)'s accuracy. +/ deprecated("Use std.datetime.stopwatch.StopWatch.") @safe struct StopWatch { public: /++ Auto start with constructor. +/ this(AutoStart autostart) @nogc { if (autostart) start(); } @nogc @safe unittest { auto sw = StopWatch(Yes.autoStart); sw.stop(); } /// bool opEquals(const StopWatch rhs) const pure nothrow @nogc { return opEquals(rhs); } /// ditto bool opEquals(const ref StopWatch rhs) const pure nothrow @nogc { return _timeStart == rhs._timeStart && _timeMeasured == rhs._timeMeasured; } /++ Resets the stop watch. +/ void reset() @nogc { if (_flagStarted) { // Set current system time if StopWatch is measuring. _timeStart = TickDuration.currSystemTick; } else { // Set zero if StopWatch is not measuring. _timeStart.length = 0; } _timeMeasured.length = 0; } @nogc @safe unittest { StopWatch sw; sw.start(); sw.stop(); sw.reset(); assert(sw.peek().to!("seconds", real)() == 0); } /++ Starts the stop watch. +/ void start() @nogc { assert(!_flagStarted); _flagStarted = true; _timeStart = TickDuration.currSystemTick; } @nogc @system unittest { StopWatch sw; sw.start(); auto t1 = sw.peek(); bool doublestart = true; try sw.start(); catch (AssertError e) doublestart = false; assert(!doublestart); sw.stop(); assert((t1 - sw.peek()).to!("seconds", real)() <= 0); } /++ Stops the stop watch. +/ void stop() @nogc { assert(_flagStarted); _flagStarted = false; _timeMeasured += TickDuration.currSystemTick - _timeStart; } @nogc @system unittest { StopWatch sw; sw.start(); sw.stop(); auto t1 = sw.peek(); bool doublestop = true; try sw.stop(); catch (AssertError e) doublestop = false; assert(!doublestop); assert((t1 - sw.peek()).to!("seconds", real)() == 0); } /++ Peek at the amount of time which has passed since the stop watch was started. +/ TickDuration peek() const @nogc { if (_flagStarted) return TickDuration.currSystemTick - _timeStart + _timeMeasured; return _timeMeasured; } @nogc @safe unittest { StopWatch sw; sw.start(); auto t1 = sw.peek(); sw.stop(); auto t2 = sw.peek(); auto t3 = sw.peek(); assert(t1 <= t2); assert(t2 == t3); } /++ Set the amount of time which has been measured since the stop watch was started. +/ void setMeasured(TickDuration d) @nogc { reset(); _timeMeasured = d; } @nogc @safe unittest { StopWatch sw; TickDuration t0; t0.length = 100; sw.setMeasured(t0); auto t1 = sw.peek(); assert(t0 == t1); } /++ Confirm whether this stopwatch is measuring time. +/ bool running() @property const pure nothrow @nogc { return _flagStarted; } @nogc @safe unittest { StopWatch sw1; assert(!sw1.running); sw1.start(); assert(sw1.running); sw1.stop(); assert(!sw1.running); StopWatch sw2 = Yes.autoStart; assert(sw2.running); sw2.stop(); assert(!sw2.running); sw2.start(); assert(sw2.running); } private: // true if observing. bool _flagStarted = false; // TickDuration at the time of StopWatch starting measurement. TickDuration _timeStart; // Total time that StopWatch ran. TickDuration _timeMeasured; } /// deprecated @safe unittest { void writeln(S...)(S args){} static void bar() {} StopWatch sw; enum n = 100; TickDuration[n] times; TickDuration last = TickDuration.from!"seconds"(0); foreach (i; 0 .. n) { sw.start(); //start/resume mesuring. foreach (unused; 0 .. 1_000_000) bar(); sw.stop(); //stop/pause measuring. //Return value of peek() after having stopped are the always same. writeln((i + 1) * 1_000_000, " times done, lap time: ", sw.peek().msecs, "[ms]"); times[i] = sw.peek() - last; last = sw.peek(); } real sum = 0; // To get the number of seconds, // use properties of TickDuration. // (seconds, msecs, usecs, hnsecs) foreach (t; times) sum += t.hnsecs; writeln("Average time: ", sum/n, " hnsecs"); } // @@@DEPRECATED_2018-10@@@ /++ $(RED The old benchmarking functionality in std.datetime (which uses $(REF TickDuration,core,time)) has been deprecated. Use what's in std.datetime.stopwatch instead. It uses $(REF MonoTime,core,time) and $(REF Duration,core,time). See $(REF benchmark,std,datetime,stopwatch). This symbol will be removed from the documentation in October 2018 and fully removed from Phobos in October 2019.) Benchmarks code for speed assessment and comparison. Params: fun = aliases of callable objects (e.g. function names). Each should take no arguments. n = The number of times each function is to be executed. Returns: The amount of time (as a $(REF TickDuration, core,time)) that it took to call each function $(D n) times. The first value is the length of time that it took to call $(D fun[0]) $(D n) times. The second value is the length of time it took to call $(D fun[1]) $(D n) times. Etc. Note that casting the TickDurations to $(REF Duration, core,time)s will make the results easier to deal with (and it may change in the future that benchmark will return an array of Durations rather than TickDurations). See_Also: $(LREF measureTime) +/ deprecated("Use std.datetime.stopwatch.benchmark.") TickDuration[fun.length] benchmark(fun...)(uint n) { TickDuration[fun.length] result; StopWatch sw; sw.start(); foreach (i, unused; fun) { sw.reset(); foreach (j; 0 .. n) fun[i](); result[i] = sw.peek(); } return result; } /// deprecated @safe unittest { import std.conv : to; int a; void f0() {} void f1() {auto b = a;} void f2() {auto b = to!string(a);} auto r = benchmark!(f0, f1, f2)(10_000); auto f0Result = to!Duration(r[0]); // time f0 took to run 10,000 times auto f1Result = to!Duration(r[1]); // time f1 took to run 10,000 times auto f2Result = to!Duration(r[2]); // time f2 took to run 10,000 times } deprecated @safe unittest { int a; void f0() {} //void f1() {auto b = to!(string)(a);} void f2() {auto b = (a);} auto r = benchmark!(f0, f2)(100); } // @@@DEPRECATED_2018-10@@@ /++ $(RED The old benchmarking functionality in std.datetime (which uses $(REF TickDuration,core,time)) has been deprecated. Use what's in std.datetime.stopwatch instead. It uses $(REF MonoTime,core,time) and $(REF Duration,core,time). Note that comparingBenchmark has not been ported over, because it's a trivial wrapper around benchmark. See $(REF benchmark,std,datetime,stopwatch). This symbol will be removed from the documentation in October 2018 and fully removed from Phobos in October 2019.) Benchmark with two functions comparing. Params: baseFunc = The function to become the base of the speed. targetFunc = The function that wants to measure speed. times = The number of times each function is to be executed. +/ deprecated("Use std.datetime.stopwatch.benchmark.") @safe struct ComparingBenchmarkResult { /++ Evaluation value This returns the evaluation value of performance as the ratio of baseFunc's time over targetFunc's time. If performance is high, this returns a high value. +/ @property real point() const pure nothrow { return _baseTime.length / cast(const real)_targetTime.length; } /++ The time required of the base function +/ @property public TickDuration baseTime() const pure nothrow { return _baseTime; } /++ The time required of the target function +/ @property public TickDuration targetTime() const pure nothrow { return _targetTime; } private: this(TickDuration baseTime, TickDuration targetTime) pure nothrow { _baseTime = baseTime; _targetTime = targetTime; } TickDuration _baseTime; TickDuration _targetTime; } // @@@DEPRECATED_2018-10@@@ /// ditto deprecated("Use std.datetime.stopwatch.benchmark.") ComparingBenchmarkResult comparingBenchmark(alias baseFunc, alias targetFunc, int times = 0xfff)() { auto t = benchmark!(baseFunc, targetFunc)(times); return ComparingBenchmarkResult(t[0], t[1]); } /// deprecated @safe unittest { void f1x() {} void f2x() {} @safe void f1o() {} @safe void f2o() {} auto b1 = comparingBenchmark!(f1o, f2o, 1)(); // OK //writeln(b1.point); } //Bug# 8450 deprecated @system unittest { @safe void safeFunc() {} @trusted void trustFunc() {} @system void sysFunc() {} auto safeResult = comparingBenchmark!((){safeFunc();}, (){safeFunc();})(); auto trustResult = comparingBenchmark!((){trustFunc();}, (){trustFunc();})(); auto sysResult = comparingBenchmark!((){sysFunc();}, (){sysFunc();})(); auto mixedResult1 = comparingBenchmark!((){safeFunc();}, (){trustFunc();})(); auto mixedResult2 = comparingBenchmark!((){trustFunc();}, (){sysFunc();})(); auto mixedResult3 = comparingBenchmark!((){safeFunc();}, (){sysFunc();})(); } // @@@DEPRECATED_2018-10@@@ /++ $(RED The old benchmarking functionality in std.datetime (which uses $(REF TickDuration,core,time)) has been deprecated. Use what's in std.datetime.stopwatch instead. It uses $(REF MonoTime,core,time) and $(REF Duration,core,time). Note that measureTime has not been ported over, because it's a trivial wrapper around StopWatch. See $(REF StopWatch,std,datetime,stopwatch). This symbol will be removed from the documentation in October 2018 and fully removed from Phobos in October 2019.) Function for starting to a stop watch time when the function is called and stopping it when its return value goes out of scope and is destroyed. When the value that is returned by this function is destroyed, $(D func) will run. $(D func) is a unary function that takes a $(REF TickDuration, core,time). See_Also: $(LREF benchmark) +/ deprecated("Use std.datetime.stopwatch.StopWatch.") @safe auto measureTime(alias func)() if (isSafe!((){StopWatch sw; unaryFun!func(sw.peek());})) { struct Result { private StopWatch _sw = void; this(AutoStart as) { _sw = StopWatch(as); } ~this() { unaryFun!(func)(_sw.peek()); } } return Result(Yes.autoStart); } /// Ditto deprecated("Use std.datetime.stopwatch.StopWatch.") auto measureTime(alias func)() if (!isSafe!((){StopWatch sw; unaryFun!func(sw.peek());})) { struct Result { private StopWatch _sw = void; this(AutoStart as) { _sw = StopWatch(as); } ~this() { unaryFun!(func)(_sw.peek()); } } return Result(Yes.autoStart); } /// deprecated @safe unittest { { auto mt = measureTime!((TickDuration a) { /+ do something when the scope is exited +/ }); // do something that needs to be timed } // functionally equivalent to the above { auto sw = StopWatch(Yes.autoStart); scope(exit) { TickDuration a = sw.peek(); /+ do something when the scope is exited +/ } // do something that needs to be timed } } deprecated @safe unittest { import std.math : isNaN; @safe static void func(TickDuration td) { assert(!td.to!("seconds", real)().isNaN()); } auto mt = measureTime!(func)(); /+ with (measureTime!((a){assert(a.seconds);})) { // doSomething(); // @@@BUG@@@ doesn't work yet. } +/ } deprecated @safe unittest { import std.math : isNaN; static void func(TickDuration td) { assert(!td.to!("seconds", real)().isNaN()); } auto mt = measureTime!(func)(); /+ with (measureTime!((a){assert(a.seconds);})) { // doSomething(); // @@@BUG@@@ doesn't work yet. } +/ } //Bug# 8450 deprecated @system unittest { @safe void safeFunc() {} @trusted void trustFunc() {} @system void sysFunc() {} auto safeResult = measureTime!((a){safeFunc();})(); auto trustResult = measureTime!((a){trustFunc();})(); auto sysResult = measureTime!((a){sysFunc();})(); }
D
/******************************************************************************* Asynchronous/event-driven Dht client using non-blocking socket I/O (epoll) Documentation: For detailed documentation see dhtproto.client.README. Basic usage example: The following steps should be followed to set up and use the dht client: 1. Create an EpollSelectDispatcher instance (see ocean.io.select). 2. Create a DhtClient instance, pass the epoll select dispatcher and the maximum number of connections per node as constructor arguments. 3. Add the dht nodes connection data by calling addNode() for each dht node to connect to. (Or simply call addNodes(), passing the path of a .nodes file describing the list of nodes to connect to.) 4. Initiate the node handshake, and check that no error occurred. 5. Add one or multiple requests by calling one of the client request methods and passing the resulting object to the client's assign() method. Example: Use at most five connections to each dht node, connect to nodes running at 192.168.1.234:56789 and 192.168.9.87:65432 and perform a Get request. --- import ocean.io.select.EpollSelectDispatcher; import dhtproto.client.DhtClient; hash_t key = 0xC001D00D; // record key to fetch mstring val; // record value destination string // Error flag, set to true when a request error occurs. bool error; // Request notification callback. Sets the error flag on failure. void notify ( DhtClient.RequestNotification info ) { if ( info.type == info.type.Finished && !info.succeeded ) { error = true; } } // Handshake callback. Sets the error flag on handshake failure. void handshake ( DhtClient.RequestContext context, bool ok ) { error = !ok; } // Callback delegate to receive value void receive_value ( DhtClient.RequestContext context, cstring value ) { if ( value.length ) { val.length = value.length; val[] = value[]; // the above array copy can also be achieved using ocean.core.Array : copy } } // Initialise epoll -- Step 1 auto epoll = new EpollSelectDispatcher; // Initialise dht client -- Step 2 const NumConnections = 5; auto dht = new DhtClient(epoll, NumConnections); // Add nodes -- Step 3 dht.addNode("192.168.1.234", 56789); dht.addNode("192.168.9.87", 65432); // Perform node handshake -- Step 4 dht.nodeHandshake(&handshake, &notify); epoll.eventLoop(); if ( error ) { throw new Exception("Error during node handshake"); } // Perform a Get request -- Step 5 dht.assign(dht.get("my_channel", key, &receive_value, &notify)); epoll.eventLoop(); // val now contains the value corresponding to key (or "" if the key did // not exist in the dht) --- Useful build flags: ============================================================================ -debug=SwarmClient: trace outputs noting when requests begin, end, etc -debug=ISelectClient: trace outputs noting epoll registrations and events firing -debug=Raw: trace outputs noting raw data sent & received via epoll Copyright: Copyright (c) 2011-2017 sociomantic labs GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. *******************************************************************************/ module dhtproto.client.DhtClient; /******************************************************************************* Imports *******************************************************************************/ import ocean.transition; import swarm.util.ExtensibleClass; import swarm.Const; import swarm.util.Hash : HashRange; import swarm.client.model.IClient; import swarm.client.model.ClientSettings; import swarm.client.ClientExceptions; import swarm.client.ClientCommandParams; import swarm.client.request.model.ISuspendableRequest; import swarm.client.request.model.IStreamInfo; import swarm.client.request.notifier.IRequestNotification; import swarm.client.connection.RequestOverflow; import swarm.client.helper.GroupRequest; import swarm.client.plugins.RequestQueueDiskOverflow; import swarm.client.plugins.RequestScheduler; import swarm.client.plugins.ScopeRequests; import dhtproto.client.legacy.internal.registry.model.IDhtNodeRegistryInfo; import dhtproto.client.legacy.internal.registry.DhtNodeRegistry; import dhtproto.client.legacy.internal.DhtClientExceptions; import dhtproto.client.legacy.internal.request.notifier.RequestNotification; import dhtproto.client.legacy.internal.request.params.RequestParams; import dhtproto.client.legacy.internal.RequestSetup; import dhtproto.client.legacy.DhtConst; import ocean.core.Array : copy, endsWith; import ocean.io.select.EpollSelectDispatcher; import ocean.core.Enforce; debug ( SwarmClient ) import ocean.io.Stdout; import ocean.transition; /******************************************************************************* Extensible DHT Client. Supported plugin classes can be passed as template parameters, an instance of each of these classes must be passed to the constructor. For each plugin class members may be added, depending on the particular plugin class. Note that the call to setPlugins(), in the class' ctors, *must* occur before the super ctor is called. This is because plugins may rely on the ctor being able to access their properly initialised instance, usually via an overridden method. The RequestQueueDiskOverflow plugin works like this, for example. Currently supported plugin classes: see dhtproto.client.legacy.internal.plugins and swarm.client.plugins *******************************************************************************/ public class ExtensibleDhtClient ( Plugins ... ) : DhtClient { mixin ExtensibleClass!(Plugins); /*************************************************************************** Constructor Params: epoll = EpollSelectDispatcher instance to use plugin_instances = instances of Plugins config = Instance of the configuration class fiber_stack_size = size of connection fibers' stack (in bytes) ***************************************************************************/ public this ( EpollSelectDispatcher epoll, Plugins plugin_instances, IClient.Config config, size_t fiber_stack_size = IClient.default_fiber_stack_size ) { this.setPlugins(plugin_instances); super(epoll, config, fiber_stack_size); } /*************************************************************************** Constructor Params: epoll = EpollSelectDispatcher instance to use plugin_instances = instances of Plugins conn_limit = maximum number of connections to each DHT node queue_size = maximum size of the per-node request queue fiber_stack_size = size of connection fibers' stack (in bytes) ***************************************************************************/ public this ( EpollSelectDispatcher epoll, Plugins plugin_instances, size_t conn_limit = IClient.Config.default_connection_limit, size_t queue_size = IClient.Config.default_queue_size, size_t fiber_stack_size = IClient.default_fiber_stack_size ) { this.setPlugins(plugin_instances); super(epoll, conn_limit, queue_size, fiber_stack_size); } } /******************************************************************************* DhtClient with a scheduler, with simplified constructor. (This instantiation of the ExtensibleDhtClient template is provided for convenience, as it is a commonly used case.) *******************************************************************************/ public class SchedulingDhtClient : ExtensibleDhtClient!(RequestScheduler) { static class Config : IClient.Config { /*********************************************************************** Limit on the number of events which can be managed by the scheduler at one time (0 = no limit) ***********************************************************************/ uint scheduler_limit = 0; } /*************************************************************************** Constructor Adds the nodes in the file specified in the config to the node registry Params: epoll = EpollSelectorDispatcher instance to use config = Config instance fiber_stack_size = size of connection fibers' stack (in bytes) ***************************************************************************/ public this ( EpollSelectDispatcher epoll, SchedulingDhtClient.Config config, size_t fiber_stack_size = IClient.default_fiber_stack_size ) { super(epoll, new RequestScheduler(epoll, config.scheduler_limit), config, fiber_stack_size); } /*************************************************************************** Constructor Params: epoll = EpollSelectorDispatcher instance to use conn_limit = maximum number of connections to each DHT node queue_size = maximum size of the per-node request queue fiber_stack_size = size of connection fibers' stack (in bytes) max_events = limit on the number of events which can be managed by the scheduler at one time. (0 = no limit) ***************************************************************************/ public this ( EpollSelectDispatcher epoll, size_t conn_limit = IClient.Config.default_connection_limit, size_t queue_size = IClient.Config.default_queue_size, size_t fiber_stack_size = IClient.default_fiber_stack_size, uint max_events = 0 ) { super(epoll, new RequestScheduler(epoll, max_events), conn_limit, queue_size, fiber_stack_size); } } /******************************************************************************* DHT Client *******************************************************************************/ public class DhtClient : IClient { /*************************************************************************** Local alias definitions ***************************************************************************/ public alias .IRequestNotification RequestNotification; public alias .ISuspendableRequest ISuspendableRequest; public alias .IStreamInfo IStreamInfo; public alias .RequestParams RequestParams; /*************************************************************************** Plugin alias definitions ***************************************************************************/ public alias .RequestScheduler RequestScheduler; public alias .RequestQueueDiskOverflow RequestQueueDiskOverflow; public alias .ScopeRequestsPlugin ScopeRequestsPlugin; /*************************************************************************** Node handshake class, used by the DhtClient.nodeHandshake() method to synchronize the initial contacting of the dht nodes and checking of the API version and fetching of the nodes' hash ranges. ***************************************************************************/ private class NodeHandshake { /*********************************************************************** Delegate to be called when the handshake has finished, indicating sucecss or failure. ***********************************************************************/ private RequestParams.GetBoolDg output; /*********************************************************************** Request notification delegate. ***********************************************************************/ private alias RequestNotification.Callback NotifierDg; private NotifierDg user_notifier; /*********************************************************************** Counters to track how many out of all registered nodes have returned for each request. ***********************************************************************/ private uint version_done_count; private uint ranges_done_count; /*********************************************************************** opCall -- initialises a node handshake for the specified dht client. Params: output = delegate called when handshake is complete user_notifier = request notification delegate ***********************************************************************/ public void opCall ( RequestParams.GetBoolDg output, NotifierDg user_notifier ) { this.reset(output, user_notifier); with ( this.outer ) { assign(getVersion(&this.getVersionIO, &this.handshakeNotifier)); assign(getResponsibleRange(&this.getResponsibleRangeIO, &this.handshakeNotifier)); } } /*********************************************************************** Resets all members ready to start a new handshake. Params: output = delegate called when handshake is complete user_notifier = request notification delegate ***********************************************************************/ private void reset ( RequestParams.GetBoolDg output, NotifierDg user_notifier ) { this.output = output; this.user_notifier = user_notifier; this.version_done_count = 0; this.ranges_done_count = 0; } /*********************************************************************** Notification callback used for all internally assigned dht requests. Params: info = request notification info TODO: could the bool delegate be replaced with a series of exceptions which are sent to the notifier to denote different handshake errors? ***********************************************************************/ private void handshakeNotifier ( DhtClient.RequestNotification info ) { if ( this.user_notifier !is null ) { this.user_notifier(info); } if ( info.type == info.type.Finished ) { with ( DhtConst.Command.E ) switch ( info.command ) { case GetVersion: this.version_done_count++; break; case GetResponsibleRange: this.ranges_done_count++; break; default: assert(false); } auto dht_registry = cast(IDhtNodeRegistryInfo)this.outer.nodes; assert(dht_registry); if ( this.version_done_count == dht_registry.length && this.ranges_done_count == dht_registry.length ) { this.output(RequestContext(0), dht_registry.all_nodes_ok); } } } /*********************************************************************** GetVersion request callback. Params: context = request context (not used) api_version = api version received from node ***********************************************************************/ private void getVersionIO ( RequestContext context, in cstring address, ushort port, in cstring api_version ) { debug ( SwarmClient ) Stderr.formatln("Received version {}:{} = '{}'", address, port, api_version); (cast(DhtNodeRegistry)this.outer.registry).setNodeAPIVersion( address.dup, port, api_version); } /*********************************************************************** GetResponsibleRange request callback. Params: context = request context (not used) address = address received from node port = port received from node range = hash range received from node Throws: NodeOverlapException if another node in the registry is already known to be responsible for part of the specified hash range ***********************************************************************/ private void getResponsibleRangeIO ( RequestContext context, in cstring address, ushort port, HashRange range ) { debug ( SwarmClient ) Stderr.formatln("Received hash range = {}:{} -- " ~ "0x{:x}..0x{:x}", address, port, range.min, range.max); (cast(DhtNodeRegistry)this.outer.registry).setNodeResponsibleRange( address.dup, port, range.min, range.max); } } /*************************************************************************** Node handshake instance. TODO: using a single struct instance means that only one node handshake can be active at a time. This is ok, but there's no way of enforcing it. This could probably be reworked if we implement the request-grouping feature for multi-node commands, or if the node handshake is moved to an internal-only process. ***************************************************************************/ private NodeHandshake node_handshake; /*************************************************************************** Exceptions thrown in error cases. ***************************************************************************/ private BadChannelNameException bad_channel_exception; private NullFilterException null_filter_exception; /*************************************************************************** Constructor -- automatically calls addNodes() with the node definition file specified in the Config instance. Params: epoll = EpollSelectorDispatcher instance to use config = Config instance (see swarm.client.model.IClient. The Config class is designed to be read from an application's config.ini file via ocean.util.config.ClassFiller) fiber_stack_size = size (in bytes) of stack of individual connection fibers ***************************************************************************/ public this ( EpollSelectDispatcher epoll, IClient.Config config, size_t fiber_stack_size = IClient.default_fiber_stack_size ) { with ( config ) { this(epoll, connection_limit(), queue_size(), fiber_stack_size); this.addNodes(nodes_file); } } /*************************************************************************** Constructor Params: epoll = EpollSelectorDispatcher instance to use conn_limit = maximum number of connections to each DHT node queue_size = maximum size of the per-node request queue fiber_stack_size = size (in bytes) of stack of individual connection fibers ***************************************************************************/ public this ( EpollSelectDispatcher epoll, size_t conn_limit = IClient.Config.default_connection_limit, size_t queue_size = IClient.Config.default_queue_size, size_t fiber_stack_size = IClient.default_fiber_stack_size ) { ClientSettings settings; settings.conn_limit = conn_limit; settings.queue_size = queue_size; settings.fiber_stack_size = fiber_stack_size; auto node_registry = this.newDhtNodeRegistry(epoll, settings, this.requestOverflow, this.errorReporter); super(epoll, node_registry); this.bad_channel_exception = new BadChannelNameException; this.null_filter_exception = new NullFilterException; this.node_handshake = new NodeHandshake; } /*************************************************************************** Constructs the client's dht node registry. Derived classes may override in order to construct specialised types of registry. Params: epoll = epoll instance settings = client settings instance request_overflow = overflow handler for requests which don't fit in the request queue error_reporter = error reporter instance to notify on error or timeout Returns: new DhtNodeRegistry instance ***************************************************************************/ protected DhtNodeRegistry newDhtNodeRegistry ( EpollSelectDispatcher epoll, ClientSettings settings, IRequestOverflow request_overflow, INodeConnectionPoolErrorReporter error_reporter ) { return new DhtNodeRegistry(epoll, settings, request_overflow, error_reporter); } /*************************************************************************** Initiates the connection with all registered dht nodes. This involves the following steps: 1. The API version number is requested from all registered nodes. These version numbers are cross-checked against each other and against the client's API version. 2. Hash responsibility range is requested from all registered nodes. The hash ranges are checked for consistency (covering the complete hash range without gaps or overlaps). The specified user notification delegate is called for each node for each request performed by the node handshake (i.e. GetVersion, GetReponsibleRange). The specified output delegate is called once when the handshakes with all nodes have completed, indicating whether the handshakes were successful or not. Note that it is possible to continue using the client even if the handshake fails. Certain requests may fail, in this case, (for example a request which operates on a single key for which no responsible node is known). It is recommended that, if you continue using the client after a failed handshake, that you retry the handshake periodically, so that eventually you get the complete picture. TODO: try restructuring so that the node handshake is done internally upon assigning the first normal request (so the node handshake needn't be explicitly called by the user). In this case, the notifier in the node handshake struct would actually assign the requested method when the handshake succeeds, and would call the notifier with an error code if it fails (need to make sure all the appropriate error codes exist... version mismatch doesn't atm). Params: output = output delegate which receives a bool telling whether the handshake succeeded or not user_notifier = notification delegate ***************************************************************************/ public void nodeHandshake ( RequestParams.GetBoolDg output, RequestNotification.Callback user_notifier ) { this.node_handshake(output, user_notifier); } /*************************************************************************** Assigns a new request to the client. The request is validated, and the notification callback may be invoked immediately if any errors are detected. Otherwise the request is sent to the node registry, where it will be either executed immediately (if a free connection is available) or queued for later execution. Template params: T = request type (should be one of the structs defined in this module) Params: request = request to assign ***************************************************************************/ public void assign ( T ) ( T request ) { static if ( is(T : IGroupRequest) ) { request.setClient(this); } this.scopeRequestParams( ( IRequestParams params ) { request.setup(params); this.assignParams(params); }); } /*************************************************************************** Creates a Put request, which will send a single value with the specified key to the dht. The database record value is read from the specified input delegate, which should be of the form: Const!(char)[] delegate ( RequestContext context ) It is illegal to put empty values to the node. Params: channel = database channel key = database record key input = input delegate which provides record value to send notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct Put { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Key; // key ( K ) (K) method mixin RequestParamsSetup; // private setup() method, used by assign() } public Put put ( Key ) ( cstring channel, Key key, RequestParams.PutValueDg input, RequestNotification.Callback notifier ) { return *Put(DhtConst.Command.E.Put, notifier).channel(channel).key(key) .io(input).contextFromKey(); } /*************************************************************************** Creates a Get request, which will receive a single value with the specified key from the dht. The database record value is sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, in char[] value ) If the key does not exist in the dht, then an empty string is received. Params: channel = database channel key = database record key output = output delegate to send record value to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct Get { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Key; // key ( K ) (K) method mixin RequestParamsSetup; // private setup() method, used by assign() } public Get get ( Key ) ( cstring channel, Key key, RequestParams.GetValueDg output, RequestNotification.Callback notifier ) { return *Get(DhtConst.Command.E.Get, notifier).channel(channel).key(key) .io(output).contextFromKey(); } /*************************************************************************** Creates an Exists request, which will receive a bool from the dht indicating whether a reocrd with the specified key exists. The bool is sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, bool exists ) Params: channel = database channel key = database record key output = output delegate to send bool to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct Exists { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Key; // key ( K ) (K) method mixin RequestParamsSetup; // private setup() method, used by assign() } public Exists exists ( Key ) ( cstring channel, Key key, RequestParams.GetBoolDg output, RequestNotification.Callback notifier ) { return *Exists(DhtConst.Command.E.Exists, notifier).channel(channel) .key(key).io(output).contextFromKey(); } /*************************************************************************** Creates a Remove request, which will request that the dht remove the value with the specified key, if it exists. Params: channel = database channel key = database record key notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct Remove { mixin RequestBase; mixin Channel; // channel(cstring) method mixin Key; // key ( K ) (K) method mixin RequestParamsSetup; // private setup() method, used by assign() } public Remove remove ( Key ) ( cstring channel, Key key, RequestNotification.Callback notifier ) { return *Remove(DhtConst.Command.E.Remove, notifier).channel(channel) .key(key).contextFromKey(); } /*************************************************************************** Creates a GetAll request, which will receive all values in the specified channel from the dht. The database record keys & values are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, in char[] key, in char[] value ) Note that if there are no records in the specified channel, the output delegate will not be called. This is a multi-node request which is executed in parallel over all nodes in the dht. Params: channel = database channel output = output delegate to send record keys & values to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetAll { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Filter; // filter(char[]) method mixin Suspendable; // suspendable(RequestParams.RegisterSuspendableDg) method mixin StreamInfo; // stream_info(RequestParams.RegisterStreamInfoDg) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetAll getAll ( cstring channel, RequestParams.GetPairDg output, RequestNotification.Callback notifier ) { return *GetAll(DhtConst.Command.E.GetAll, notifier).channel(channel) .io(output); } /*************************************************************************** Creates a GetAllKeys request, which will receive the keys of all values in the specified channel from the dht. The database record keys are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, in char[] key ) Note that if there are no records in the specified channel, the output delegate will not be called. This is a multi-node request which is executed in parallel over all nodes in the dht. Params: channel = database channel output = output delegate to send record keys to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetAllKeys { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Suspendable; // suspendable(RequestParams.RegisterSuspendableDg) method mixin StreamInfo; // stream_info(RequestParams.RegisterStreamInfoDg) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetAllKeys getAllKeys ( cstring channel, RequestParams.GetValueDg output, RequestNotification.Callback notifier ) { return *GetAllKeys(DhtConst.Command.E.GetAllKeys, notifier) .channel(channel).io(output); } /*************************************************************************** Creates a Listen request, which will receive a stream of values in the specified channel from the dht. The record keys & values are received as they are added to the dht with one of the Put* commands. The database record keys & values are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, in char[] key, in char[] value ) This is a multi-node request which is executed in parallel over all nodes in the dht. Params: channel = database channel output = output delegate to send record keys & values to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct Listen { mixin RequestBase; mixin IODelegate; // io(T) method mixin Channel; // channel(cstring) method mixin Suspendable; // suspendable(RequestParams.RegisterSuspendableDg) method mixin StreamInfo; // stream_info(RequestParams.RegisterStreamInfoDg) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public Listen listen ( cstring channel, RequestParams.GetPairDg output, RequestNotification.Callback notifier ) { return *Listen(DhtConst.Command.E.Listen, notifier).channel(channel) .io(output); } /*************************************************************************** Creates a GetChannels request, which will receive a list of all channels which exist in the dht. The channel names are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, cstring channel ) This is a multi-node request which is executed in parallel over all nodes in the dht. This means that the name of each channel will most likely be received once from each node. Note that if there are no channels in the dht, the output delegate will not be called. Params: output = output delegate to send channel names to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetChannels { mixin RequestBase; mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetChannels getChannels ( RequestParams.GetNodeValueDg output, RequestNotification.Callback notifier ) { return *GetChannels(DhtConst.Command.E.GetChannels, notifier).io(output); } /*************************************************************************** Creates a GetSize request, which will receive the number of records and bytes which exist in each node in the dht (a sum of the contents of all channels stored in the node). The database sizes are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, ulong records, ulong bytes ) This is a multi-node request which is executed in parallel over all nodes in the dht. The output delegate is called once per node. Note that if there are no channels in the dht, the output delegate will not be called. Params: output = output delegate to send size information to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetSize { mixin RequestBase; mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetSize getSize ( RequestParams.GetSizeInfoDg output, RequestNotification.Callback notifier ) { return *GetSize(DhtConst.Command.E.GetSize, notifier).io(output); } /*************************************************************************** Creates a GetChannelSize request, which will receive the number of records and bytes which exist in the specified channel in each node of the dht. The channel sizes are sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, cstring channel, ulong records, ulong bytes ) This is a multi-node request which is executed in parallel over all nodes in the dht. The output delegate is called once per node. Note that if there are no channels in the dht, the output delegate will not be called. Params: channel = database channel output = output delegate to send size information to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetChannelSize { mixin RequestBase; mixin Channel; // channel(cstring) method mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetChannelSize getChannelSize ( cstring channel, RequestParams.GetChannelSizeInfoDg output, RequestNotification.Callback notifier ) { return *GetChannelSize(DhtConst.Command.E.GetChannelSize, notifier) .channel(channel).io(output); } /*************************************************************************** Creates a RemoveChannel request, which will delete all records from the specified channel in all nodes of the dht. This is a multi-node request which is executed in parallel over all nodes in the dht. Params: channel = database channel notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct RemoveChannel { mixin RequestBase; mixin Channel; // channel(cstring) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public RemoveChannel removeChannel ( cstring channel, RequestNotification.Callback notifier ) { return *RemoveChannel(DhtConst.Command.E.RemoveChannel, notifier) .channel(channel); } /*************************************************************************** Creates a GetNumConnections request, which will receive the count of open connections being handled by each node of the dht. The number of connections is sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, size_t connections ) This is a multi-node request which is executed in parallel over all nodes in the dht. The output delegate is called once per node. Note that if there are no channels in the dht, the output delegate will not be called. Params: output = output delegate to send connection counts to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetNumConnections { mixin RequestBase; mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetNumConnections getNumConnections ( RequestParams.GetNumConnectionsDg output, RequestNotification.Callback notifier ) { return *GetNumConnections(DhtConst.Command.E.GetNumConnections, notifier) .io(output); } /*************************************************************************** Creates a GetVersion request, which will receive the api version used by each node of the dht. The api version is sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, char[] api_version ) This is a multi-node request which is executed in parallel over all nodes in the dht. The output delegate is called once per node. Note that if there are no channels in the dht, the output delegate will not be called. This request is usually only used internally by the node handshake. Params: output = output delegate to send api versions to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetVersion { mixin RequestBase; mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetVersion getVersion ( RequestParams.GetNodeValueDg output, RequestNotification.Callback notifier ) { return *GetVersion(DhtConst.Command.E.GetVersion, notifier).io(output); } /*************************************************************************** Creates a GetResponsibleRange request, which will receive the hash range used by each node of the dht. The hash range is sent to the specified output delegate, which should be of the form: void delegate ( RequestContext context, char[] address, ushort port, hash_t min, hash_t max ) This is a multi-node request which is executed in parallel over all nodes in the dht. The output delegate is called once per node. Note that if there are no channels in the dht, the output delegate will not be called. This request is usually only used internally by the node handshake. Params: output = output delegate to send api versions to notifier = notification callback Returns: instance allowing optional settings to be set and then to be passed to assign() ***************************************************************************/ public struct GetResponsibleRange { mixin RequestBase; mixin IODelegate; // io(T) method mixin Node; // node(NodeItem) method mixin RequestParamsSetup; // private setup() method, used by assign() } public GetResponsibleRange getResponsibleRange ( RequestParams.GetResponsibleRangeDg output, RequestNotification.Callback notifier ) { return *GetResponsibleRange(DhtConst.Command.E.GetResponsibleRange, notifier).io(output); } /*************************************************************************** Creates a new request params instance (derived from IRequestParams), and passes it to the provided delegate. This method is used by the request scheduler plugin, which needs to be able to construct and use a request params instance without knowing which derived type is used by the client. Params: dg = delegate to receive and use created scope IRequestParams instance ***************************************************************************/ override protected void scopeRequestParams ( void delegate ( IRequestParams params ) dg ) { scope params = new RequestParams; dg(params); } /*************************************************************************** Checks whether the given channel name is valid. Channel names can only contain alphanumeric characters, underscores or dashes. If the channel name is not valid then the user specified error callback is invoked with the BadChannelName status code. Params: params = request params to check Throws: * if the channel name is invalid * if a filtering request is being assigned but the filter string is empty (exceptions will be caught in super.assignParams) ***************************************************************************/ override protected void validateRequestParams_ ( IRequestParams params ) { auto dht_params = cast(RequestParams)params; // Validate channel name, for commands which use it with ( DhtConst.Command.E ) switch ( params.command ) { case Put: case Get: case Exists: case Remove: case GetAll: case GetAllKeys: case GetChannelSize: case RemoveChannel: case Listen: case GetAllFilter: enforce(this.bad_channel_exception, .validateChannelName(dht_params.channel)); break; default: } // Validate filter string, for commands which use it with ( DhtConst.Command.E ) switch ( params.command ) { case GetAllFilter: enforce(this.null_filter_exception, dht_params.filter.length); break; default: } } } version ( UnitTest ) { import ocean.io.select.EpollSelectDispatcher; import swarm.client.request.params.IRequestParams; } /******************************************************************************* Test instantiating clients with various plugins. *******************************************************************************/ unittest { auto epoll = new EpollSelectDispatcher; { auto dht = new ExtensibleDhtClient!(DhtClient.RequestScheduler) (epoll, new RequestScheduler(epoll)); } { class DummyStore : RequestQueueDiskOverflow.IRequestStore { ubyte[] store ( IRequestParams params ) { return null; } void restore ( ubyte[] stored ) { } } auto dht = new ExtensibleDhtClient!(DhtClient.RequestQueueDiskOverflow) (epoll, new RequestQueueDiskOverflow(new DummyStore, "dummy")); } { auto dht = new ExtensibleDhtClient!(DhtClient.ScopeRequestsPlugin) (epoll, new ScopeRequestsPlugin); } }
D
module mci.core.utilities; import std.array, std.conv, std.string; /** * Escapes an identifier so it can be safely used in * IAL source code. * * Params: * identifier = The identifier to escape. * * Returns: * Escaped version of $(D identifier). */ public string escapeIdentifier(string identifier) // TODO: Make this pure nothrow. { return "'" ~ replace(identifier, "'", "\\'") ~ "'"; } // TODO: Replace this with format in 2.061. public string format(Args ...)(string fmt, Args args) in { assert(fmt); } out (result) { assert(result); } body { return xformat(fmt, args); }
D
/Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/Objects-normal/x86_64/SkyFloatingLabelTextFieldWithIcon.o : /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextField.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextFieldWithIcon.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/UITextField+fixCaretPosition.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sol369/Desktop/curben-oc/Pods/Target\ Support\ Files/SkyFloatingLabelTextField/SkyFloatingLabelTextField-umbrella.h /Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/unextended-module.modulemap /Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/Objects-normal/x86_64/SkyFloatingLabelTextFieldWithIcon~partial.swiftmodule : /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextField.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextFieldWithIcon.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/UITextField+fixCaretPosition.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sol369/Desktop/curben-oc/Pods/Target\ Support\ Files/SkyFloatingLabelTextField/SkyFloatingLabelTextField-umbrella.h /Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/unextended-module.modulemap /Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/Objects-normal/x86_64/SkyFloatingLabelTextFieldWithIcon~partial.swiftdoc : /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextField.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/SkyFloatingLabelTextFieldWithIcon.swift /Users/sol369/Desktop/curben-oc/Pods/SkyFloatingLabelTextField/Sources/UITextField+fixCaretPosition.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/sol369/Desktop/curben-oc/Pods/Target\ Support\ Files/SkyFloatingLabelTextField/SkyFloatingLabelTextField-umbrella.h /Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/SkyFloatingLabelTextField.build/unextended-module.modulemap
D
# FIXED crc32_32-bit_signature_calculation.obj: ../crc32_32-bit_signature_calculation.c crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/driverlib.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/adc14.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/stdint.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/_stdint40.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/stdint.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/cdefs.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/_types.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/machine/_types.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/machine/_stdint.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/_stdint.h crc32_32-bit_signature_calculation.obj: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/stdbool.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp432p401r.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp_compatibility.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp432p401r_classic.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/core_cm4.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_version.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_compiler.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_ccs.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/mpu_armv7.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/system_msp432p401r.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/aes256.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/comp_e.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/cpu.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/crc32.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/cs.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/dma.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/interrupt.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/eusci.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/fpu.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/gpio.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/i2c.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/mpu.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pcm.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pmap.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pss.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/ref_a.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/reset.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rom.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rom_map.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rtc_c.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/spi.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/systick.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/timer32.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/timer_a.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/uart.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/wdt_a.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/sysctl.h crc32_32-bit_signature_calculation.obj: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/flash.h ../crc32_32-bit_signature_calculation.c: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/driverlib.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/adc14.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/stdint.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/_stdint40.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/stdint.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/cdefs.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/_types.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/machine/_types.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/machine/_stdint.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/sys/_stdint.h: C:/ti/ccs930/ccs/tools/compiler/ti-cgt-arm_18.12.4.LTS/include/stdbool.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp432p401r.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp_compatibility.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/msp432p401r_classic.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/core_cm4.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_version.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_compiler.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/cmsis_ccs.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/third_party/CMSIS/Include/mpu_armv7.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/inc/system_msp432p401r.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/aes256.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/comp_e.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/cpu.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/crc32.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/cs.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/dma.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/interrupt.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/eusci.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/fpu.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/gpio.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/i2c.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/mpu.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pcm.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pmap.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/pss.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/ref_a.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/reset.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rom.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rom_map.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/rtc_c.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/spi.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/systick.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/timer32.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/timer_a.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/uart.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/wdt_a.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/sysctl.h: C:/ti/simplelink_msp432p4_sdk_3_40_00_05/source/ti/devices/msp432p4xx/driverlib/flash.h:
D
/** License: Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Authors: aermicioi **/ module aermicioi.aedi_property_reader.test.convertor_configurer; // import aermicioi.aedi; // import aermicioi.aedi_property_reader.convertor.exception : NotFoundException; // import aermicioi.aedi.test.fixture; // import aermicioi.aedi_property_reader.core.core; // import aermicioi.aedi_property_reader.convertor.convertor_container; // import aermicioi.aedi_property_reader.convertor.convertor_factory; // import aermicioi.aedi_property_reader.core.generic_convertor_container; // import aermicioi.aedi_property_reader.convertor.convertor_factory_impl; // import aermicioi.aedi_property_reader.arg; // import aermicioi.aedi_property_reader.env; // import aermicioi.aedi_property_reader.xml; // import aermicioi.aedi_property_reader.json; // import aermicioi.aedi_property_reader.test.core.fixture; // import std.exception; // import std.json; // import std.process : env = environment; // import std.xml; // unittest { // auto c = container( // argument(), // environment(), // json(), // xml() // ); // foreach (child; c.containers) { // assert(child !is null); // } // } // unittest { // auto c = container( // argument( // new GetoptIdentityLocator([ // "commandline", // "--string=stringed" // ]) // ), // environment(), // json(q{{"integer" : 10}}), // xml("<root><float>1.0</float></root>") // ); // env["array"] = "[\"hello\", \" \", \"world!\"]"; // foreach (child; c.containers) { // assert(child !is null); // with (child.configure) { // property!(string)("string"); // Not testing it since factory takes arguments from // property!(string[])("array"); // property!(float)("float"); // property!(size_t)("integer"); // } // } // assert(c.locate!(string[])("array") == ["hello", " ", "world!"]); // assert(c.locate!float("float") == 1.0); // assert(c.locate!size_t("integer") == 10); // }
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 238 77 6 77 15 60 64.5999985 -127.900002 1745 11.6000004 11.8000002 0.873563218 sediments, redbeds 4.0999999 81 13.5 21 7 8 36 -106.300003 303 11.3999996 11.3999996 0.833976834 extrusives, basalts 4.5 80.5 11.8999996 29 8 9 35.7000008 -106.5 304 14.1999998 14.1999998 0.854651163 extrusives, basalts, rhyolites 219.300003 68.9000015 2.79999995 90.9000015 15 60 64.5 -128.5 343 5.5999999 5.5999999 0.959629941 sediments, redbeds 147.699997 51 22 18 7 8 36.2000008 -106.199997 408 14.3000002 25.1000004 0.721153846 extrusives, basalts 142.300003 67.9000015 10.3000002 17 20 47 35.5 -106.099998 1004 11.1000004 11.1000004 0.91007584 intrusives, extrusives 256.399994 77.0999985 13 0 2 56 46 -112 3368 21.7000008 21.7000008 0.416666667 extrusives, intrusives 164 83 5.80000019 32.2000008 15 65 58.5 -119.300003 7737 10 10 0.480769231 sediments, dolomite 240 82 34 55 2 65 45 -110 2808 49 58 0.458333333 intrusives, porphyry 83.5 79.8000031 17.2000008 8.80000019 15 17 30.7000008 -84.9000015 6882 11.8000002 20.2000008 0.87 sediments 275.5 83.5999985 0 0 0 20 46.7999992 -90.6999969 5904 3.4000001 3.4000001 0.891964286 sediments 45.2999992 81.0999985 12.8999996 51.9000015 14 17 45.2999992 -110.800003 5975 13.5 18.6000004 0.744791667 sediments
D
import core.thread : thread_joinAll; import std.concurrency; import std.stdio; void main() { immutable people = ["Anna", "Bob", "Cody", "Dave", "Eva"]; auto receiver = spawn(() { foreach (_; 0 .. 5) writeln(receiveOnly!string); }); foreach (name; people) { spawn((Tid receiver, string name) { send(receiver, name); }, receiver, name); } thread_joinAll; }
D
import std.stdio; import std.math; // Euclidean algorithm using modulus int euclid_mod(int a, int b) { int tmp; a = abs(a); b = abs(b); while (b != 0) { tmp = a % b; a = b; b = tmp; } return a; } // Euclidean algorithm with subtraction int euclid_sub(int a, int b) { a = abs(a); b = abs(b); while (a != b) { if (a > b) { a -= b; } else { b -= a; } } return a; } void main() { auto check1 = euclid_mod(64 * 67, 64 * 81); auto check2 = euclid_sub(128 * 12, 128 * 77); writeln("Modulus-based euclidean algorithm result: ", check1); writeln("Subtraction-based euclidean algorithm result: ", check2); }
D
struct colorwithalpha{ int r; int g; int b; int a; } colorwithalpha hextocolor_(char[] s){ import std.range; colorwithalpha output; //I wish c foreach abuse worked in d //for(int i=0,int j=0,bool b=true;i<6;i++,j+=b,b!=b) enum zippy= zip( [16,1].cycle, ["r","r","g","g","b","b"], iota(0,100)); static foreach(digit,mix,i;zippy){ { int t; if(s[i]>='0' && s[i]<='9'){ t=s[i]-'0';} if(s[i]>='a' && s[i]<='f'){ t=s[i]-'a'+10;} if(s[i]>='A' && s[i]<='F'){ t=s[i]-'A'+10;} t*=digit; mixin("output."~mix)+=t; } } return output; } string getinput(){ import std.process; import std.stdio; "ls themes".executeShell.output.writeln; "pick one".writeln; return readln[0..$-1]; } import std.stdio; void main(){ import colorswap; mixin makecolors!("icy.yaml",getinput,colorwithalpha,hextocolor_); loaddefualtcolors; colors.writeln; changecolors; colors.writeln; }
D
// PERMUTE_ARGS: // EXTRA_SOURCES: imports/testkwd_file.d module testkeyword; import imports.testkwd; /****************************************/ // calee test static assert(getCalleeFile() == thatFile); static assert(getCalleeLine() == thatLine); static assert(getCalleeMod() == thatMod); static assert(getCalleeFunc() == thatFunc); static assert(getCalleeFunc2() == thatFunc2); void testCallee() { static assert(getCalleeFile() == thatFile); static assert(getCalleeLine() == thatLine); static assert(getCalleeMod() == thatMod); static assert(getCalleeFunc() == thatFunc); static assert(getCalleeFunc2() == thatFunc2); } /****************************************/ // caller test version(Windows) enum sep = "\\"; else enum sep = "/"; enum thisFile = "runnable"~sep~"testkeyword.d"; enum thisMod = "testkeyword"; static assert(getFuncArgFile() == thisFile); static assert(getFuncArgLine() == 33); static assert(getFuncArgMod() == thisMod); static assert(getFuncArgFunc() == ""); static assert(getFuncArgFunc2() == ""); static assert(getFuncTiargFile() == thisFile); static assert(getFuncTiargLine() == 39); static assert(getFuncTiargMod() == thisMod); static assert(getFuncTiargFunc() == ""); static assert(getFuncTiargFunc2() == ""); static assert(getInstTiargFile!() == thisFile); static assert(getInstTiargLine!() == 45); static assert(getInstTiargMod!() == thisMod); static assert(getInstTiargFunc!() == ""); static assert(getInstTiargFunc2!() == ""); void main(string[] args) nothrow { enum thisFunc = "testkeyword.main"; enum thisFunc2 = "void testkeyword.main(string[] args) nothrow"; static assert(getFuncArgFile() == thisFile); static assert(getFuncArgLine() == 56); static assert(getFuncArgMod() == thisMod); static assert(getFuncArgFunc() == thisFunc); static assert(getFuncArgFunc2() == thisFunc2); static assert(getFuncTiargFile() == thisFile); static assert(getFuncTiargLine() == 62); static assert(getFuncTiargMod() == thisMod); static assert(getFuncTiargFunc() == thisFunc); static assert(getFuncTiargFunc2() == thisFunc2); static assert(getInstTiargFile!() == thisFile); static assert(getInstTiargLine!() == 68); static assert(getInstTiargMod!() == thisMod); static assert(getInstTiargFunc!() == thisFunc); static assert(getInstTiargFunc2!() == thisFunc2); void nested(int x, float y) nothrow { enum thisFunc = "testkeyword.main.nested"; enum thisFunc2 = "void testkeyword.main.nested(int x, float y) nothrow"; static assert(getFuncArgFile() == thisFile); static assert(getFuncArgLine() == 79); static assert(getFuncArgMod() == thisMod); static assert(getFuncArgFunc() == thisFunc); static assert(getFuncArgFunc2() == thisFunc2); static assert(getFuncTiargFile() == thisFile); static assert(getFuncTiargLine() == 85); static assert(getFuncTiargMod() == thisMod); static assert(getFuncTiargFunc() == thisFunc); static assert(getFuncTiargFunc2() == thisFunc2); static assert(getInstTiargFile!() == thisFile); static assert(getInstTiargLine!() == 91); static assert(getInstTiargMod!() == thisMod); static assert(getInstTiargFunc!() == thisFunc); static assert(getInstTiargFunc2!() == thisFunc2); } nested(1, 1.0); auto funcLiteral = (int x, int y) { enum thisFunc = "testkeyword.main.__lambda3"; enum thisFunc2 = "testkeyword.main.__lambda3(int x, int y)"; static assert(getFuncArgFile() == thisFile); static assert(getFuncArgLine() == 104); static assert(getFuncArgMod() == thisMod); static assert(getFuncArgFunc() == thisFunc); static assert(getFuncArgFunc2() == thisFunc2); static assert(getFuncTiargFile() == thisFile); static assert(getFuncTiargLine() == 110); static assert(getFuncTiargMod() == thisMod); static assert(getFuncTiargFunc() == thisFunc); static assert(getFuncTiargFunc2() == thisFunc2); static assert(getInstTiargFile!() == thisFile); static assert(getInstTiargLine!() == 116); static assert(getInstTiargMod!() == thisMod); static assert(getInstTiargFunc!() == thisFunc); static assert(getInstTiargFunc2!() == thisFunc2); }; funcLiteral(1, 2); static struct S { void func(string cs, T1, alias T2, T...)(int x) const { enum thisFunc = `testkeyword.main.S.func!("foo", int, symbol, int[], float[]).func`; enum thisFunc2 = `void testkeyword.main.S.func!("foo", int, symbol, int[], float[]).func(int x) const`; static assert(getFuncArgFile() == thisFile); static assert(getFuncArgLine() == 131); static assert(getFuncArgMod() == thisMod); static assert(getFuncArgFunc() == thisFunc); static assert(getFuncArgFunc2() == thisFunc2); static assert(getFuncTiargFile() == thisFile); static assert(getFuncTiargLine() == 137); static assert(getFuncTiargMod() == thisMod); static assert(getFuncTiargFunc() == thisFunc); static assert(getFuncTiargFunc2() == thisFunc2); static assert(getInstTiargFile!() == thisFile); static assert(getInstTiargLine!() == 143); static assert(getInstTiargMod!() == thisMod); static assert(getInstTiargFunc!() == thisFunc); static assert(getInstTiargFunc2!() == thisFunc2); } } static int symbol; S s; s.func!("foo", int, symbol, int[], float[])(1); }
D
<?xml version="1.0" encoding="ASCII" standalone="no"?> <di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0"> <pageList> <availablePage> <emfPageIdentifier href="VAR_16_agm-4451992229.notation#_copSALmGEeKQQp7P9cQvNQ"/> </availablePage> </pageList> <sashModel currentSelection="//@sashModel/@windows.0/@children.0"> <windows> <children xsi:type="di:TabFolder"> <children> <emfPageIdentifier href="VAR_16_agm-4451992229.notation#_copSALmGEeKQQp7P9cQvNQ"/> </children> </children> </windows> </sashModel> </di:SashWindowsMngr>
D
module gitbackdup.args; import std.getopt; import std.stdio; import std.string; import std.path; import std.file; import gitbackdup.program_options; ProgramOptions getProgramOptions(string[] args){ ProgramOptions programOptions; try{ GetoptResult options = getopt( args, "username|u", &programOptions.username, "destination|d", &programOptions.destination, "verbose|v", &programOptions.verbose, // flag "app_password", &programOptions.appPassword, //for bitbucket "source|s", "github|bitbucket", &programOptions.gitSource //just github supported for now ); } catch(Exception e){ return programOptions; } if(!programOptions.destination.empty){ programOptions.destination = absolutePath(expandTilde(programOptions.destination)); } return programOptions; } int printUsage(string programName){ stderr.writef("usage: %s --username=github_username --source=github|bitbucket --destination=directory\n", programName); return 1; } bool isProgramOptionsValid(ProgramOptions programOptions){ if(programOptions.username.empty || programOptions.destination.empty){ return false; } return true; } bool isDestinationValid(ProgramOptions programOptions){ if(exists(programOptions.destination) && !isDir(programOptions.destination)){ return false; } return true; }
D
import std.stdio : writeln; version(unittest) { } else { static assert(0, "Please compile with unittesting enabled"); } void main() { writeln("Unittests for alphaPhobos has run successfully."); }
D
a court with jurisdiction in equity an office of archives for public or ecclesiastic records
D
; Copyright (C) 2008 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. .source T_sub_float_2.java .class public dot.junit.opcodes.sub_float.d.T_sub_float_2 .super java/lang/Object .method public <init>()V .limit regs 1 invoke-direct {v0}, java/lang/Object/<init>()V return-void .end method .method public run(FF)F .limit regs 5 move v2, v3 const-wide v3, 3.1415 sub-float v0, v2, v3 return v2 .end method
D
/***********************************************************************\ * vfw.d * * * * Windows API header module * * written in the D programming language * * * * Placed into public domain * \***********************************************************************/ module windows.vfw; pragma(lib, "vfw32"); private import windows.commdlg, windows.wingdi, windows.mmsystem, windows.unknwn, windows.w32api, windows.windef, windows.winuser; extern(Windows) { DWORD VideoForWindowsVersion(); LONG InitVFW(); LONG TermVFW(); } DWORD MKFOURCC(char ch0, char ch1, char ch2, char ch3) { return (cast(DWORD)ch0) | ((cast(DWORD)ch1) << 8) | ((cast(DWORD)ch2) << 16) | ((cast(DWORD)ch3) << 24); } /** * COMPMAN - Installable Compression Manager. */ const ICVERSION = 0x0104; alias TypeDef!(HANDLE) HIC; const BI_1632 = 0x32333631; template aviTWOCC(char c0, char c1) { const WORD aviTWOCC = c0 | (c1 << 8); } const ICTYPE_VIDEO = mmioFOURCC!('v', 'i', 'd', 'c'); const ICTYPE_AUDIO = mmioFOURCC!('a', 'u', 'd', 'c'); enum { ICERR_OK = 0, ICERR_DONTDRAW = 1, ICERR_NEWPALETTE = 2, ICERR_GOTOKEYFRAME = 3, ICERR_STOPDRAWING = 4, } const ICERR_UNSUPPORTED = -1; const ICERR_BADFORMAT = -2; const ICERR_MEMORY = -3; const ICERR_INTERNAL = -4; const ICERR_BADFLAGS = -5; const ICERR_BADPARAM = -6; const ICERR_BADSIZE = -7; const ICERR_BADHANDLE = -8; const ICERR_CANTUPDATE = -9; const ICERR_ABORT = -10; const ICERR_ERROR = -100; const ICERR_BADBITDEPTH = -200; const ICERR_BADIMAGESIZE = -201; const ICERR_CUSTOM = -400; enum { ICMODE_COMPRESS = 1, ICMODE_DECOMPRESS, ICMODE_FASTDECOMPRESS, ICMODE_QUERY, ICMODE_FASTCOMPRESS, ICMODE_DRAW = 8, } const ICMODE_INTERNALF_FUNCTION32 = 0x8000; const ICMODE_INTERNALF_MASK = 0x8000; enum { AVIIF_LIST = 0x00000001, AVIIF_TWOCC = 0x00000002, AVIIF_KEYFRAME = 0x00000010, } const ICQUALITY_LOW = 0; const ICQUALITY_HIGH = 10000; const ICQUALITY_DEFAULT = -1; enum { ICM_USER = DRV_USER + 0x0000, ICM_RESERVED_LOW = DRV_USER + 0x1000, ICM_RESERVED_HIGH = DRV_USER + 0x2000, ICM_RESERVED = ICM_RESERVED_LOW, } // messages enum { ICM_GETSTATE = ICM_RESERVED + 0, ICM_SETSTATE = ICM_RESERVED + 1, ICM_GETINFO = ICM_RESERVED + 2, ICM_CONFIGURE = ICM_RESERVED + 10, ICM_ABOUT = ICM_RESERVED + 11, ICM_GETERRORTEXT = ICM_RESERVED + 12, ICM_GETFORMATNAME = ICM_RESERVED + 20, ICM_ENUMFORMATS = ICM_RESERVED + 21, ICM_GETDEFAULTQUALITY = ICM_RESERVED + 30, ICM_GETQUALITY = ICM_RESERVED + 31, ICM_SETQUALITY = ICM_RESERVED + 32, ICM_SET = ICM_RESERVED + 40, ICM_GET = ICM_RESERVED + 41, } const ICM_FRAMERATE = mmioFOURCC!('F','r','m','R'); const ICM_KEYFRAMERATE = mmioFOURCC!('K','e','y','R'); // ICM specific messages. enum { ICM_COMPRESS_GET_FORMAT = ICM_USER + 4, ICM_COMPRESS_GET_SIZE = ICM_USER + 5, ICM_COMPRESS_QUERY = ICM_USER + 6, ICM_COMPRESS_BEGIN = ICM_USER + 7, ICM_COMPRESS = ICM_USER + 8, ICM_COMPRESS_END = ICM_USER + 9, ICM_DECOMPRESS_GET_FORMAT = ICM_USER + 10, ICM_DECOMPRESS_QUERY = ICM_USER + 11, ICM_DECOMPRESS_BEGIN = ICM_USER + 12, ICM_DECOMPRESS = ICM_USER + 13, ICM_DECOMPRESS_END = ICM_USER + 14, ICM_DECOMPRESS_SET_PALETTE = ICM_USER + 29, ICM_DECOMPRESS_GET_PALETTE = ICM_USER + 30, ICM_DRAW_QUERY = ICM_USER + 31, ICM_DRAW_BEGIN = ICM_USER + 15, ICM_DRAW_GET_PALETTE = ICM_USER + 16, ICM_DRAW_UPDATE = ICM_USER + 17, ICM_DRAW_START = ICM_USER + 18, ICM_DRAW_STOP = ICM_USER + 19, ICM_DRAW_BITS = ICM_USER + 20, ICM_DRAW_END = ICM_USER + 21, ICM_DRAW_GETTIME = ICM_USER + 32, ICM_DRAW = ICM_USER + 33, ICM_DRAW_WINDOW = ICM_USER + 34, ICM_DRAW_SETTIME = ICM_USER + 35, ICM_DRAW_REALIZE = ICM_USER + 36, ICM_DRAW_FLUSH = ICM_USER + 37, ICM_DRAW_RENDERBUFFER = ICM_USER + 38, ICM_DRAW_START_PLAY = ICM_USER + 39, ICM_DRAW_STOP_PLAY = ICM_USER + 40, ICM_DRAW_SUGGESTFORMAT = ICM_USER + 50, ICM_DRAW_CHANGEPALETTE = ICM_USER + 51, ICM_DRAW_IDLE = ICM_USER + 52, ICM_GETBUFFERSWANTED = ICM_USER + 41, ICM_GETDEFAULTKEYFRAMERATE = ICM_USER + 42, ICM_DECOMPRESSEX_BEGIN = ICM_USER + 60, ICM_DECOMPRESSEX_QUERY = ICM_USER + 61, ICM_DECOMPRESSEX = ICM_USER + 62, ICM_DECOMPRESSEX_END = ICM_USER + 63, ICM_COMPRESS_FRAMES_INFO = ICM_USER + 70, ICM_COMPRESS_FRAMES = ICM_USER + 71, ICM_SET_STATUS_PROC = ICM_USER + 72, } struct ICOPEN { DWORD dwSize; DWORD fccType; DWORD fccHandler; DWORD dwVersion; DWORD dwFlags; LRESULT dwError; LPVOID pV1Reserved; LPVOID pV2Reserved; DWORD dnDevNode; } struct ICINFO { DWORD dwSize; DWORD fccType; DWORD fccHandler; DWORD dwFlags; DWORD dwVersion; DWORD dwVersionICM; WCHAR[16] szName; WCHAR[128] szDescription; WCHAR[128] szDriver; } enum { VIDCF_QUALITY = 0x0001, VIDCF_CRUNCH = 0x0002, VIDCF_TEMPORAL = 0x0004, VIDCF_COMPRESSFRAMES = 0x0008, VIDCF_DRAW = 0x0010, VIDCF_FASTTEMPORALC = 0x0020, VIDCF_FASTTEMPORALD = 0x0080, } const ICCOMPRESS_KEYFRAME = 0x00000001L; struct ICCOMPRESS { DWORD dwFlags; LPBITMAPINFOHEADER lpbiOutput; LPVOID lpOutput; LPBITMAPINFOHEADER lpbiInput; LPVOID lpInput; LPDWORD lpckid; LPDWORD lpdwFlags; LONG lFrameNum; DWORD dwFrameSize; DWORD dwQuality; LPBITMAPINFOHEADER lpbiPrev; LPVOID lpPrev; } const ICCOMPRESSFRAMES_PADDING = 0x00000001; struct ICCOMPRESSFRAMES { DWORD dwFlags; LPBITMAPINFOHEADER lpbiOutput; LPARAM lOutput; LPBITMAPINFOHEADER lpbiInput; LPARAM lInput; LONG lStartFrame; LONG lFrameCount; LONG lQuality; LONG lDataRate; LONG lKeyRate; DWORD dwRate; DWORD dwScale; DWORD dwOverheadPerFrame; DWORD dwReserved2; LONG function(LPARAM lInput, LONG lFrame, LPVOID lpBits, LONG len) GetData; LONG function(LPARAM lOutput, LONG lFrame, LPVOID lpBits, LONG len) PutData; } enum { ICSTATUS_START = 0, ICSTATUS_STATUS = 1, ICSTATUS_END = 2, ICSTATUS_ERROR = 3, ICSTATUS_YIELD = 4, } struct ICSETSTATUSPROC { DWORD dwFlags; LPARAM lParam; LONG function(LPARAM lParam, UINT message, LONG l) Status; } enum { ICDECOMPRESS_NOTKEYFRAME = 0x08000000, ICDECOMPRESS_NULLFRAME = 0x10000000, ICDECOMPRESS_PREROLL = 0x20000000, ICDECOMPRESS_UPDATE = 0x40000000, ICDECOMPRESS_HURRYUP = 0x80000000, } struct ICDECOMPRESS { DWORD dwFlags; LPBITMAPINFOHEADER lpbiInput; LPVOID lpInput; LPBITMAPINFOHEADER lpbiOutput; LPVOID lpOutput; DWORD ckid; } struct ICDECOMPRESSEX { DWORD dwFlags; LPBITMAPINFOHEADER lpbiSrc; LPVOID lpSrc; LPBITMAPINFOHEADER lpbiDst; LPVOID lpDst; int xDst; int yDst; int dxDst; int dyDst; int xSrc; int ySrc; int dxSrc; int dySrc; } enum { ICDRAW_QUERY = 0x00000001, ICDRAW_FULLSCREEN = 0x00000002, ICDRAW_HDC = 0x00000004, ICDRAW_ANIMATE = 0x00000008, ICDRAW_CONTINUE = 0x00000010, ICDRAW_MEMORYDC = 0x00000020, ICDRAW_UPDATING = 0x00000040, ICDRAW_RENDER = 0x00000080, ICDRAW_BUFFER = 0x00000100, } struct ICDRAWBEGIN { DWORD dwFlags; HPALETTE hpal; HWND hwnd; HDC hdc; int xDst; int yDst; int dxDst; int dyDst; LPBITMAPINFOHEADER lpbi; int xSrc; int ySrc; int dxSrc; int dySrc; DWORD dwRate; DWORD dwScale; } enum { ICDRAW_NOTKEYFRAME = 0x08000000, ICDRAW_NULLFRAME = 0x10000000, ICDRAW_PREROLL = 0x20000000, ICDRAW_UPDATE = 0x40000000, ICDRAW_HURRYUP = 0x80000000, } struct ICDRAW { DWORD dwFlags; LPVOID lpFormat; LPVOID lpData; DWORD cbData; LONG lTime; } struct ICDRAWSUGGEST { LPBITMAPINFOHEADER lpbiIn; LPBITMAPINFOHEADER lpbiSuggest; int dxSrc; int dySrc; int dxDst; int dyDst; HIC hicDecompressor; } struct ICPALETTE { DWORD dwFlags; int iStart; int iLen; LPPALETTEENTRY lppe; } /** * ICM function declarations */ extern (Windows) { BOOL ICInfo(DWORD fccType, DWORD fccHandler, ICINFO *lpicinfo); BOOL ICInstall(DWORD fccType, DWORD fccHandler, LPARAM lParam, LPSTR szDesc, UINT wFlags); BOOL ICRemove(DWORD fccType, DWORD fccHandler, UINT wFlags); LRESULT ICGetInfo(HIC hic, ICINFO *picinfo, DWORD cb); HIC ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode); HIC ICOpenFunction(DWORD fccType, DWORD fccHandler, UINT wMode, FARPROC lpfnHandler); LRESULT ICClose(HIC hic); LRESULT ICSendMessage(HIC hic, UINT msg, DWORD_PTR dw1, DWORD_PTR dw2); } enum { ICINSTALL_FUNCTION = 0x0001, ICINSTALL_DRIVER = 0x0002, ICINSTALL_HDRV = 0x0004, ICINSTALL_UNICODE = 0x8000, ICINSTALL_DRIVERW = 0x8002, } // query macros const ICMF_CONFIGURE_QUERY = 0x00000001; const ICMF_ABOUT_QUERY = 0x00000001; DWORD ICQueryAbout(HIC hic) { return ICSendMessage(hic, ICM_ABOUT, -1, ICMF_ABOUT_QUERY) == ICERR_OK; } DWORD ICAbout(HIC hic, HWND hwnd) { return cast(DWORD) ICSendMessage(hic, ICM_ABOUT, cast(DWORD_PTR) cast(UINT_PTR) hwnd, 0); } DWORD ICQueryConfigure(HIC hic) { return (ICSendMessage(hic, ICM_CONFIGURE, -1, ICMF_CONFIGURE_QUERY) == ICERR_OK); } DWORD ICConfigure(HIC hic, HWND hwnd) { return cast(DWORD) ICSendMessage(hic, ICM_CONFIGURE, cast(DWORD_PTR) cast(UINT_PTR) hwnd, 0); } DWORD ICGetState(HIC hic, LPVOID pv, DWORD_PTR cb) { return cast(DWORD) ICSendMessage(hic, ICM_GETSTATE, cast(DWORD_PTR) pv, cb); } DWORD ICSetState(HIC hic, LPVOID pv, DWORD_PTR cb) { return cast(DWORD) ICSendMessage(hic, ICM_SETSTATE, cast(DWORD_PTR) pv, cb); } DWORD ICGetStateSize(HIC hic) { return ICGetState(hic, null, 0); } DWORD dwICValue; DWORD ICGetDefaultQuality(HIC hic) { ICSendMessage(hic, ICM_GETDEFAULTQUALITY, cast(DWORD_PTR)&dwICValue, DWORD.sizeof); return dwICValue; } DWORD ICGetDefaultKeyFrameRate(HIC hic) { ICSendMessage(hic, ICM_GETDEFAULTKEYFRAMERATE, cast(DWORD_PTR)&dwICValue, DWORD.sizeof); return dwICValue; } DWORD ICDrawWindow(HIC hic, LPVOID prc) { return cast(DWORD) ICSendMessage(hic, ICM_DRAW_WINDOW, cast(DWORD_PTR) prc, RECT.sizeof); } extern (Windows) { DWORD ICCompress(HIC hic, DWORD dwFlags, LPBITMAPINFOHEADER lpbiOutput, LPVOID lpData, LPBITMAPINFOHEADER lpbiInput, LPVOID lpBits, LPDWORD lpckid, LPDWORD lpdwFlags, LONG lFrameNum, DWORD dwFrameSize, DWORD dwQuality, LPBITMAPINFOHEADER lpbiPrev, LPVOID lpPrev); } LRESULT ICCompressBegin(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_COMPRESS_BEGIN, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LRESULT ICCompressQuery(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_COMPRESS_QUERY, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LRESULT ICCompressGetFormat(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_COMPRESS_GET_FORMAT, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } DWORD ICCompressGetFormatSize(HIC hic, LPVOID lpbi) { return cast(DWORD)ICCompressGetFormat(hic, lpbi, null); } DWORD ICCompressGetSize(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return cast(DWORD)ICSendMessage(hic, ICM_COMPRESS_GET_SIZE, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LRESULT ICCompressEnd(HIC hic) { return ICSendMessage(hic, ICM_COMPRESS_END, 0, 0); } extern (Windows) { DWORD ICDecompress(HIC hic, DWORD dwFlags, LPBITMAPINFOHEADER lpbiFormat, LPVOID lpData, LPBITMAPINFOHEADER lpbi, LPVOID lpBits); } LRESULT ICDecompressBegin(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_DECOMPRESS_BEGIN, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LRESULT ICDecompressQuery(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_DECOMPRESS_QUERY, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LONG ICDecompressGetFormat(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return cast(LONG)ICSendMessage(hic, ICM_DECOMPRESS_GET_FORMAT, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LONG ICDecompressGetFormatSize(HIC hic, LPVOID lpbi) { return ICDecompressGetFormat(hic, lpbi, null); } LRESULT ICDecompressGetPalette(HIC hic, LPVOID lpbiInput, LPVOID lpbiOutput) { return ICSendMessage(hic, ICM_DECOMPRESS_GET_PALETTE, cast(DWORD_PTR)lpbiInput, cast(DWORD_PTR)lpbiOutput); } LRESULT ICDecompressSetPalette(HIC hic, LPVOID lpbiPalette) { return ICSendMessage(hic, ICM_DECOMPRESS_SET_PALETTE, cast(DWORD_PTR)lpbiPalette, 0); } LRESULT ICDecompressEnd(HIC hic) { return ICSendMessage(hic, ICM_DECOMPRESS_END, 0, 0); } LRESULT ICDecompressEx(HIC hic, DWORD dwFlags, LPBITMAPINFOHEADER lpbiSrc, LPVOID lpSrc, int xSrc, int ySrc, int dxSrc, int dySrc, LPBITMAPINFOHEADER lpbiDst, LPVOID lpDst, int xDst, int yDst, int dxDst, int dyDst) { ICDECOMPRESSEX ic; ic.dwFlags = dwFlags; ic.lpbiSrc = lpbiSrc; ic.lpSrc = lpSrc; ic.xSrc = xSrc; ic.ySrc = ySrc; ic.dxSrc = dxSrc; ic.dySrc = dySrc; ic.lpbiDst = lpbiDst; ic.lpDst = lpDst; ic.xDst = xDst; ic.yDst = yDst; ic.dxDst = dxDst; ic.dyDst = dyDst; return ICSendMessage(hic, ICM_DECOMPRESSEX, cast(DWORD_PTR)&ic, ic.sizeof); } LRESULT ICDecompressExBegin(HIC hic, DWORD dwFlags, LPBITMAPINFOHEADER lpbiSrc, LPVOID lpSrc, int xSrc, int ySrc, int dxSrc, int dySrc, LPBITMAPINFOHEADER lpbiDst, LPVOID lpDst, int xDst, int yDst, int dxDst, int dyDst) { ICDECOMPRESSEX ic; ic.dwFlags = dwFlags; ic.lpbiSrc = lpbiSrc; ic.lpSrc = lpSrc; ic.xSrc = xSrc; ic.ySrc = ySrc; ic.dxSrc = dxSrc; ic.dySrc = dySrc; ic.lpbiDst = lpbiDst; ic.lpDst = lpDst; ic.xDst = xDst; ic.yDst = yDst; ic.dxDst = dxDst; ic.dyDst = dyDst; return ICSendMessage(hic, ICM_DECOMPRESSEX_BEGIN, cast(DWORD_PTR)&ic, ic.sizeof); } LRESULT ICDecompressExQuery(HIC hic, DWORD dwFlags, LPBITMAPINFOHEADER lpbiSrc, LPVOID lpSrc, int xSrc, int ySrc, int dxSrc, int dySrc, LPBITMAPINFOHEADER lpbiDst, LPVOID lpDst, int xDst, int yDst, int dxDst, int dyDst) { ICDECOMPRESSEX ic; ic.dwFlags = dwFlags; ic.lpbiSrc = lpbiSrc; ic.lpSrc = lpSrc; ic.xSrc = xSrc; ic.ySrc = ySrc; ic.dxSrc = dxSrc; ic.dySrc = dySrc; ic.lpbiDst = lpbiDst; ic.lpDst = lpDst; ic.xDst = xDst; ic.yDst = yDst; ic.dxDst = dxDst; ic.dyDst = dyDst; return ICSendMessage(hic, ICM_DECOMPRESSEX_QUERY, cast(DWORD_PTR)&ic, ic.sizeof); } LRESULT ICDecompressExEnd(HIC hic) { return ICSendMessage(hic, ICM_DECOMPRESSEX_END, 0, 0); } extern (Windows) { DWORD ICDrawBegin(HIC hic, DWORD dwFlags, HPALETTE hpal, HWND hwnd, HDC hdc, int xDst, int yDst, int dxDst, int dyDst, LPBITMAPINFOHEADER lpbi, int xSrc, int ySrc, int dxSrc, int dySrc, DWORD dwRate, DWORD dwScale); } extern (Windows) { DWORD ICDraw(HIC hic, DWORD dwFlags, LPVOID lpFormat, LPVOID lpData, DWORD cbData, LONG lTime); } LRESULT ICDrawSuggestFormat(HIC hic, LPBITMAPINFOHEADER lpbiIn, LPBITMAPINFOHEADER lpbiOut, int dxSrc, int dySrc, int dxDst, int dyDst, HIC hicDecomp) { ICDRAWSUGGEST ic; ic.lpbiIn = lpbiIn; ic.lpbiSuggest = lpbiOut; ic.dxSrc = dxSrc; ic.dySrc = dySrc; ic.dxDst = dxDst; ic.dyDst = dyDst; ic.hicDecompressor = hicDecomp; return ICSendMessage(hic, ICM_DRAW_SUGGESTFORMAT, cast(DWORD_PTR)&ic, ic.sizeof); } LRESULT ICDrawQuery(HIC hic, LPVOID lpbiInput) { return ICSendMessage(hic, ICM_DRAW_QUERY, cast(DWORD_PTR)lpbiInput, 0L); } LRESULT ICDrawChangePalette(HIC hic, LPVOID lpbiInput) { return ICSendMessage(hic, ICM_DRAW_CHANGEPALETTE, cast(DWORD_PTR)lpbiInput, 0L); } LRESULT ICGetBuffersWanted(HIC hic, LPVOID lpdwBuffers) { return ICSendMessage(hic, ICM_GETBUFFERSWANTED, cast(DWORD_PTR)lpdwBuffers, 0); } LRESULT ICDrawEnd(HIC hic) { return ICSendMessage(hic, ICM_DRAW_END, 0, 0); } LRESULT ICDrawStart(HIC hic) { return ICSendMessage(hic, ICM_DRAW_START, 0, 0); } LRESULT ICDrawStartPlay(HIC hic, DWORD lFrom, DWORD lTo) { return ICSendMessage(hic, ICM_DRAW_START_PLAY, cast(DWORD_PTR)lFrom, cast(DWORD_PTR)lTo); } LRESULT ICDrawStop(HIC hic) { return ICSendMessage(hic, ICM_DRAW_STOP, 0, 0); } LRESULT ICDrawStopPlay(HIC hic) { return ICSendMessage(hic, ICM_DRAW_STOP_PLAY, 0, 0); } LRESULT ICDrawGetTime(HIC hic, LPVOID lplTime) { return ICSendMessage(hic, ICM_DRAW_GETTIME, cast(DWORD_PTR)lplTime, 0); } LRESULT ICDrawSetTime(HIC hic, DWORD lTime) { return ICSendMessage(hic, ICM_DRAW_SETTIME, cast(DWORD_PTR)lTime, 0); } LRESULT ICDrawRealize(HIC hic, HDC hdc, BOOL fBackground) { return ICSendMessage(hic, ICM_DRAW_REALIZE, cast(DWORD_PTR)hdc, cast(DWORD_PTR)fBackground); } LRESULT ICDrawFlush(HIC hic) { return ICSendMessage(hic, ICM_DRAW_FLUSH, 0, 0); } LRESULT ICDrawRenderBuffer(HIC hic) { return ICSendMessage(hic, ICM_DRAW_RENDERBUFFER, 0, 0); } LRESULT ICSetStatusProc(HIC hic, DWORD dwFlags, LRESULT lParam, LONG function(LPARAM, UINT, LONG) fpfnStatus) { ICSETSTATUSPROC ic; ic.dwFlags = dwFlags; ic.lParam = lParam; ic.Status = fpfnStatus; return ICSendMessage(hic, ICM_SET_STATUS_PROC, cast(DWORD_PTR)&ic, ic.sizeof); } HIC ICDecompressOpen(DWORD fccType, DWORD fccHandler, LPBITMAPINFOHEADER lpbiIn, LPBITMAPINFOHEADER lpbiOut) { return ICLocate(fccType, fccHandler, lpbiIn, lpbiOut, ICMODE_DECOMPRESS); } HIC ICDrawOpen(DWORD fccType, DWORD fccHandler, LPBITMAPINFOHEADER lpbiIn) { return ICLocate(fccType, fccHandler, lpbiIn, null, ICMODE_DRAW); } extern (Windows) { HIC ICLocate(DWORD fccType, DWORD fccHandler, LPBITMAPINFOHEADER lpbiIn, LPBITMAPINFOHEADER lpbiOut, WORD wFlags); HIC ICGetDisplayFormat(HIC hic, LPBITMAPINFOHEADER lpbiIn, LPBITMAPINFOHEADER lpbiOut, int BitDepth, int dx, int dy); HANDLE ICImageCompress(HIC hic, UINT uiFlags, LPBITMAPINFO lpbiIn, LPVOID lpBits, LPBITMAPINFO lpbiOut, LONG lQuality, LONG* plSize); HANDLE ICImageDecompress(HIC hic, UINT uiFlags, LPBITMAPINFO lpbiIn, LPVOID lpBits, LPBITMAPINFO lpbiOut); } struct COMPVARS { LONG cbSize = this.sizeof; DWORD dwFlags; HIC hic; DWORD fccType; DWORD fccHandler; LPBITMAPINFO lpbiIn; LPBITMAPINFO lpbiOut; LPVOID lpBitsOut; LPVOID lpBitsPrev; LONG lFrame; LONG lKey; LONG lDataRate; LONG lQ; LONG lKeyCount; LPVOID lpState; LONG cbState; } alias COMPVARS* PCOMPVARS; const ICMF_COMPVARS_VALID = 0x00000001; extern (Windows) { BOOL ICCompressorChoose(HWND hwnd, UINT uiFlags, LPVOID pvIn, LPVOID lpData, PCOMPVARS pc, LPSTR lpszTitle); } enum { ICMF_CHOOSE_KEYFRAME = 0x0001, ICMF_CHOOSE_DATARATE = 0x0002, ICMF_CHOOSE_PREVIEW = 0x0004, ICMF_CHOOSE_ALLCOMPRESSORS = 0x0008, } extern (Windows) { BOOL ICSeqCompressFrameStart(PCOMPVARS pc, LPBITMAPINFO lpbiIn); void ICSeqCompressFrameEnd(PCOMPVARS pc); LPVOID ICSeqCompressFrame(PCOMPVARS pc, UINT uiFlags, LPVOID lpBits, BOOL* pfKey, LONG* plSize); void ICCompressorFree(PCOMPVARS pc); } mixin DECLARE_HANDLE!("HDRAWDIB"); enum { DDF_0001 = 0x0001, DDF_UPDATE = 0x0002, DDF_SAME_HDC = 0x0004, DDF_SAME_DRAW = 0x0008, DDF_DONTDRAW = 0x0010, DDF_ANIMATE = 0x0020, DDF_BUFFER = 0x0040, DDF_JUSTDRAWIT = 0x0080, DDF_FULLSCREEN = 0x0100, DDF_BACKGROUNDPAL = 0x0200, DDF_NOTKEYFRAME = 0x0400, DDF_HURRYUP = 0x0800, DDF_HALFTONE = 0x1000, DDF_2000 = 0x2000, DDF_PREROLL = DDF_DONTDRAW, DDF_SAME_DIB = DDF_SAME_DRAW, DDF_SAME_SIZE = DDF_SAME_DRAW, } extern (Windows) { BOOL DrawDibInit(); HDRAWDIB DrawDibOpen(); BOOL DrawDibClose(HDRAWDIB hdd); LPVOID DrawDibGetBuffer(HDRAWDIB hdd, LPBITMAPINFOHEADER lpbi, DWORD dwSize, DWORD dwFlags); UINT DrawDibError(HDRAWDIB hdd); HPALETTE DrawDibGetPalette(HDRAWDIB hdd); BOOL DrawDibSetPalette(HDRAWDIB hdd, HPALETTE hpal); BOOL DrawDibChangePalette(HDRAWDIB hdd, int iStart, int iLen, LPPALETTEENTRY lppe); UINT DrawDibRealize(HDRAWDIB hdd, HDC hdc, BOOL fBackground); BOOL DrawDibStart(HDRAWDIB hdd, DWORD rate); BOOL DrawDibStop(HDRAWDIB hdd); BOOL DrawDibBegin(HDRAWDIB hdd, HDC hdc, int dxDst, int dyDst, LPBITMAPINFOHEADER lpbi, int dxSrc, int dySrc, UINT wFlags); BOOL DrawDibDraw(HDRAWDIB hdd, HDC hdc, int xDst, int yDst, int dxDst, int dyDst, LPBITMAPINFOHEADER lpbi, LPVOID lpBits, int xSrc, int ySrc, int dxSrc, int dySrc, UINT wFlags); } BOOL DrawDibUpdate(HDRAWDIB hdd, HDC hdc, int x, int y) { return DrawDibDraw(hdd, hdc, x, y, 0, 0, null, null, 0, 0, 0, 0, DDF_UPDATE); } extern (Windows) { BOOL DrawDibEnd(HDRAWDIB hdd); } struct DRAWDIBTIME { LONG timeCount; LONG timeDraw; LONG timeDecompress; LONG timeDither; LONG timeStretch; LONG timeBlt; LONG timeSetDIBits; } alias DRAWDIBTIME* LPDRAWDIBTIME; extern (Windows) { BOOL DrawDibTime(HDRAWDIB hdd, LPDRAWDIBTIME lpddtime); } enum { PD_CAN_DRAW_DIB = 0x0001, PD_CAN_STRETCHDIB = 0x0002, PD_STRETCHDIB_1_1_OK = 0x0004, PD_STRETCHDIB_1_2_OK = 0x0008, PD_STRETCHDIB_1_N_OK = 0x0010, } extern (Windows) { LRESULT DrawDibProfileDisplay(LPBITMAPINFOHEADER lpbi); void StretchDIB(LPBITMAPINFOHEADER biDst, LPVOID lpDst, int DstX, int DstY, int DstXE, int DstYE, LPBITMAPINFOHEADER biSrc, LPVOID lpSrc, int SrcX, int SrcY, int SrcXE, int SrcYE); } alias DWORD FOURCC; alias WORD TWOCC; const formtypeAVI = mmioFOURCC!('A', 'V', 'I', ' '); const listtypeAVIHEADER = mmioFOURCC!('h', 'd', 'r', 'l'); const ckidAVIMAINHDR = mmioFOURCC!('a', 'v', 'i', 'h'); const listtypeSTREAMHEADER = mmioFOURCC!('s', 't', 'r', 'l'); const ckidSTREAMHEADER = mmioFOURCC!('s', 't', 'r', 'h'); const ckidSTREAMFORMAT = mmioFOURCC!('s', 't', 'r', 'f'); const ckidSTREAMHANDLERDATA = mmioFOURCC!('s', 't', 'r', 'd'); const ckidSTREAMNAME = mmioFOURCC!('s', 't', 'r', 'n'); const listtypeAVIMOVIE = mmioFOURCC!('m', 'o', 'v', 'i'); const listtypeAVIRECORD = mmioFOURCC!('r', 'e', 'c', ' '); const ckidAVINEWINDEX = mmioFOURCC!('i', 'd', 'x', '1'); const streamtypeVIDEO = mmioFOURCC!('v', 'i', 'd', 's'); const streamtypeAUDIO = mmioFOURCC!('a', 'u', 'd', 's'); const streamtypeMIDI = mmioFOURCC!('m', 'i', 'd', 's'); const streamtypeTEXT = mmioFOURCC!('t', 'x', 't', 's'); const cktypeDIBbits = aviTWOCC!('d', 'b'); const cktypeDIBcompressed = aviTWOCC!('d', 'c'); const cktypePALchange = aviTWOCC!('p', 'c'); const cktypeWAVEbytes = aviTWOCC!('w', 'b'); const ckidAVIPADDING = mmioFOURCC!('J', 'U', 'N', 'K'); DWORD FromHex(char n) { return (n >= 'A') ? n + 10 - 'A' : n - '0'; } WORD StreamFromFOURCC(DWORD fcc) { return cast(WORD)((FromHex(LOBYTE(LOWORD(fcc))) << 4) + (FromHex(HIBYTE(LOWORD(fcc))))); } WORD TWOCCFromFOURCC(DWORD fcc) { return HIWORD(fcc); } BYTE ToHex(DWORD n) { return cast(BYTE)((n > 9) ? n - 10 + 'A' : n + '0'); } DWORD MAKEAVICKID(WORD tcc, WORD stream) { return MAKELONG(cast(WORD)((ToHex(stream & 0x0f) << 8) | (ToHex((stream & 0xf0) >> 4))), tcc); } enum { AVIF_HASINDEX = 0x00000010, AVIF_MUSTUSEINDEX = 0x00000020, AVIF_ISINTERLEAVED = 0x00000100, AVIF_WASCAPTUREFILE = 0x00010000, AVIF_COPYRIGHTED = 0x00020000, } const AVI_HEADERSIZE = 2048; struct MainAVIHeader { DWORD dwMicroSecPerFrame; DWORD dwMaxBytesPerSec; DWORD dwPaddingGranularity; DWORD dwFlags; DWORD dwTotalFrames; DWORD dwInitialFrames; DWORD dwStreams; DWORD dwSuggestedBufferSize; DWORD dwWidth; DWORD dwHeight; DWORD[4] dwReserved; } const AVISF_DISABLED = 0x00000001; const AVISF_VIDEO_PALCHANGES = 0x00010000; struct AVIStreamHeader { FOURCC fccType; FOURCC fccHandler; DWORD dwFlags; WORD wPriority; WORD wLanguage; DWORD dwInitialFrames; DWORD dwScale; DWORD dwRate; DWORD dwStart; DWORD dwLength; DWORD dwSuggestedBufferSize; DWORD dwQuality; DWORD dwSampleSize; RECT rcFrame; } enum { AVIIF_FIRSTPART = 0x00000020L, AVIIF_LASTPART = 0x00000040L, AVIIF_MIDPART = (AVIIF_LASTPART|AVIIF_FIRSTPART), AVIIF_NOTIME = 0x00000100L, AVIIF_COMPUSE = 0x0FFF0000L, } struct AVIINDEXENTRY { DWORD ckid; DWORD dwFlags; DWORD dwChunkOffset; DWORD dwChunkLength; } struct AVIPALCHANGE { BYTE bFirstEntry; BYTE bNumEntries; WORD wFlags; PALETTEENTRY[1] _peNew; PALETTEENTRY* peNew() { return _peNew.ptr; } } const AVIGETFRAMEF_BESTDISPLAYFMT = 1; struct AVISTREAMINFOW { DWORD fccType; DWORD fccHandler; DWORD dwFlags; DWORD dwCaps; WORD wPriority; WORD wLanguage; DWORD dwScale; DWORD dwRate; DWORD dwStart; DWORD dwLength; DWORD dwInitialFrames; DWORD dwSuggestedBufferSize; DWORD dwQuality; DWORD dwSampleSize; RECT rcFrame; DWORD dwEditCount; DWORD dwFormatChangeCount; WCHAR[64] szName; } alias AVISTREAMINFOW* LPAVISTREAMINFOW; struct AVISTREAMINFOA { DWORD fccType; DWORD fccHandler; DWORD dwFlags; DWORD dwCaps; WORD wPriority; WORD wLanguage; DWORD dwScale; DWORD dwRate; DWORD dwStart; DWORD dwLength; DWORD dwInitialFrames; DWORD dwSuggestedBufferSize; DWORD dwQuality; DWORD dwSampleSize; RECT rcFrame; DWORD dwEditCount; DWORD dwFormatChangeCount; char[64] szName; } alias AVISTREAMINFOA* LPAVISTREAMINFOA; version(Unicode) { alias AVISTREAMINFOW AVISTREAMINFO; alias LPAVISTREAMINFOW LPAVISTREAMINFO; } else { // Unicode alias AVISTREAMINFOA AVISTREAMINFO; alias LPAVISTREAMINFOA LPAVISTREAMINFO; } const AVISTREAMINFO_DISABLED = 0x00000001; const AVISTREAMINFO_FORMATCHANGES = 0x00010000; struct AVIFILEINFOW { DWORD dwMaxBytesPerSec; DWORD dwFlags; DWORD dwCaps; DWORD dwStreams; DWORD dwSuggestedBufferSize; DWORD dwWidth; DWORD dwHeight; DWORD dwScale; DWORD dwRate; DWORD dwLength; DWORD dwEditCount; WCHAR[64] szFileType; } alias AVIFILEINFOW* LPAVIFILEINFOW; struct AVIFILEINFOA { DWORD dwMaxBytesPerSec; DWORD dwFlags; DWORD dwCaps; DWORD dwStreams; DWORD dwSuggestedBufferSize; DWORD dwWidth; DWORD dwHeight; DWORD dwScale; DWORD dwRate; DWORD dwLength; DWORD dwEditCount; char[64] szFileType; } alias AVIFILEINFOA* LPAVIFILEINFOA; version(Unicode) { alias AVIFILEINFOW AVIFILEINFO; alias LPAVIFILEINFOW LPAVIFILEINFO; } else { // Unicode alias AVIFILEINFOA AVIFILEINFO; alias LPAVIFILEINFOA LPAVIFILEINFO; } enum { AVIFILEINFO_HASINDEX = 0x00000010, AVIFILEINFO_MUSTUSEINDEX = 0x00000020, AVIFILEINFO_ISINTERLEAVED = 0x00000100, AVIFILEINFO_WASCAPTUREFILE = 0x00010000, AVIFILEINFO_COPYRIGHTED = 0x00020000, } enum { AVIFILECAPS_CANREAD = 0x00000001, AVIFILECAPS_CANWRITE = 0x00000002, AVIFILECAPS_ALLKEYFRAMES = 0x00000010, AVIFILECAPS_NOCOMPRESSION = 0x00000020, } extern (Windows) { alias BOOL function(int) AVISAVECALLBACK; } struct AVICOMPRESSOPTIONS { DWORD fccType; DWORD fccHandler; DWORD dwKeyFrameEvery; DWORD dwQuality; DWORD dwBytesPerSecond; DWORD dwFlags; LPVOID lpFormat; DWORD cbFormat; LPVOID lpParms; DWORD cbParms; DWORD dwInterleaveEvery; } alias AVICOMPRESSOPTIONS* LPAVICOMPRESSOPTIONS; enum { AVICOMPRESSF_INTERLEAVE = 0x00000001, AVICOMPRESSF_DATARATE = 0x00000002, AVICOMPRESSF_KEYFRAMES = 0x00000004, AVICOMPRESSF_VALID = 0x00000008, } /+ TODO: DECLARE_INTERFACE_(IAVIStream, IUnknown) { STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; STDMETHOD(Create) (THIS_ LPARAM lParam1, LPARAM lParam2) PURE ; STDMETHOD(Info) (THIS_ AVISTREAMINFOW FAR * psi, LONG lSize) PURE ; STDMETHOD_(LONG, FindSample)(THIS_ LONG lPos, LONG lFlags) PURE ; STDMETHOD(ReadFormat) (THIS_ LONG lPos, LPVOID lpFormat, LONG FAR *lpcbFormat) PURE ; STDMETHOD(SetFormat) (THIS_ LONG lPos, LPVOID lpFormat, LONG cbFormat) PURE ; STDMETHOD(Read) (THIS_ LONG lStart, LONG lSamples, LPVOID lpBuffer, LONG cbBuffer, LONG FAR * plBytes, LONG FAR * plSamples) PURE ; STDMETHOD(Write) (THIS_ LONG lStart, LONG lSamples, LPVOID lpBuffer, LONG cbBuffer, DWORD dwFlags, LONG FAR *plSampWritten, LONG FAR *plBytesWritten) PURE ; STDMETHOD(Delete) (THIS_ LONG lStart, LONG lSamples) PURE; STDMETHOD(ReadData) (THIS_ DWORD fcc, LPVOID lp, LONG FAR *lpcb) PURE ; STDMETHOD(WriteData) (THIS_ DWORD fcc, LPVOID lp, LONG cb) PURE ; #ifdef _WIN32 STDMETHOD(SetInfo) (THIS_ AVISTREAMINFOW FAR * lpInfo, LONG cbInfo) PURE; #else STDMETHOD(Reserved1) (THIS) PURE; STDMETHOD(Reserved2) (THIS) PURE; STDMETHOD(Reserved3) (THIS) PURE; STDMETHOD(Reserved4) (THIS) PURE; STDMETHOD(Reserved5) (THIS) PURE; #endif }; alias TypeDef!(IAVIStream FAR*) PAVISTREAM; #undef INTERFACE #define INTERFACE IAVIStreaming DECLARE_INTERFACE_(IAVIStreaming, IUnknown) { STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; STDMETHOD(Begin) (THIS_ LONG lStart, LONG lEnd, LONG lRate) PURE; STDMETHOD(End) (THIS) PURE; }; alias TypeDef!(IAVIStreaming FAR*) PAVISTREAMING; #undef INTERFACE #define INTERFACE IAVIEditStream DECLARE_INTERFACE_(IAVIEditStream, IUnknown) { STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; STDMETHOD(Cut) (THIS_ LONG FAR *plStart, LONG FAR *plLength, PAVISTREAM FAR * ppResult) PURE; STDMETHOD(Copy) (THIS_ LONG FAR *plStart, LONG FAR *plLength, PAVISTREAM FAR * ppResult) PURE; STDMETHOD(Paste) (THIS_ LONG FAR *plPos, LONG FAR *plLength, PAVISTREAM pstream, LONG lStart, LONG lEnd) PURE; STDMETHOD(Clone) (THIS_ PAVISTREAM FAR *ppResult) PURE; STDMETHOD(SetInfo) (THIS_ AVISTREAMINFOW FAR * lpInfo, LONG cbInfo) PURE; }; alias TypeDef!(IAVIEditStream FAR*) PAVIEDITSTREAM; #undef INTERFACE #define INTERFACE IAVIPersistFile DECLARE_INTERFACE_(IAVIPersistFile, IPersistFile) { STDMETHOD(Reserved1)(THIS) PURE; }; alias TypeDef!(IAVIPersistFile FAR*) PAVIPERSISTFILE; #undef INTERFACE #define INTERFACE IAVIFile #define PAVIFILE IAVIFile FAR* DECLARE_INTERFACE_(IAVIFile, IUnknown) { STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; STDMETHOD(Info) (THIS_ AVIFILEINFOW FAR * pfi, LONG lSize) PURE; STDMETHOD(GetStream) (THIS_ PAVISTREAM FAR * ppStream, DWORD fccType, LONG lParam) PURE; STDMETHOD(CreateStream) (THIS_ PAVISTREAM FAR * ppStream, AVISTREAMINFOW FAR * psi) PURE; STDMETHOD(WriteData) (THIS_ DWORD ckid, LPVOID lpData, LONG cbData) PURE; STDMETHOD(ReadData) (THIS_ DWORD ckid, LPVOID lpData, LONG FAR *lpcbData) PURE; STDMETHOD(EndRecord) (THIS) PURE; STDMETHOD(DeleteStream) (THIS_ DWORD fccType, LONG lParam) PURE; }; #undef PAVIFILE alias TypeDef!(IAVIFile FAR*) PAVIFILE; #undef INTERFACE #define INTERFACE IGetFrame #define PGETFRAME IGetFrame FAR* DECLARE_INTERFACE_(IGetFrame, IUnknown) { STDMETHOD(QueryInterface) (THIS_ REFIID riid, LPVOID FAR* ppvObj) PURE; STDMETHOD_(ULONG,AddRef) (THIS) PURE; STDMETHOD_(ULONG,Release) (THIS) PURE; STDMETHOD_(LPVOID,GetFrame) (THIS_ LONG lPos) PURE; STDMETHOD(Begin) (THIS_ LONG lStart, LONG lEnd, LONG lRate) PURE; STDMETHOD(End) (THIS) PURE; STDMETHOD(SetFormat) (THIS_ LPBITMAPINFOHEADER lpbi, LPVOID lpBits, int x, int y, int dx, int dy) PURE; }; #undef PGETFRAME alias TypeDef!(IGetFrame FAR*) PGETFRAME; #define DEFINE_AVIGUID(name, l, w1, w2) DEFINE_GUID(name, l, w1, w2, 0xC0,0,0,0,0,0,0,0x46) DEFINE_AVIGUID(IID_IAVIFile, 0x00020020, 0, 0); DEFINE_AVIGUID(IID_IAVIStream, 0x00020021, 0, 0); DEFINE_AVIGUID(IID_IAVIStreaming, 0x00020022, 0, 0); DEFINE_AVIGUID(IID_IGetFrame, 0x00020023, 0, 0); DEFINE_AVIGUID(IID_IAVIEditStream, 0x00020024, 0, 0); DEFINE_AVIGUID(IID_IAVIPersistFile, 0x00020025, 0, 0); #ifndef UNICODE DEFINE_AVIGUID(CLSID_AVISimpleUnMarshal, 0x00020009, 0, 0); #endif DEFINE_AVIGUID(CLSID_AVIFile, 0x00020000, 0, 0); #define AVIFILEHANDLER_CANREAD 0x0001 #define AVIFILEHANDLER_CANWRITE 0x0002 #define AVIFILEHANDLER_CANACCEPTNONRGB 0x0004 STDAPI_(void) AVIFileInit(void); STDAPI_(void) AVIFileExit(void); STDAPI_(ULONG) AVIFileAddRef (PAVIFILE pfile); STDAPI_(ULONG) AVIFileRelease (PAVIFILE pfile); #ifdef _WIN32 STDAPI AVIFileOpenA (PAVIFILE FAR * ppfile, LPCSTR szFile, UINT uMode, LPCLSID lpHandler); STDAPI AVIFileOpenW (PAVIFILE FAR * ppfile, LPCWSTR szFile, UINT uMode, LPCLSID lpHandler); #ifdef UNICODE #define AVIFileOpen AVIFileOpenW #else #define AVIFileOpen AVIFileOpenA #endif #else STDAPI AVIFileOpen (PAVIFILE FAR * ppfile, LPCSTR szFile, UINT uMode, LPCLSID lpHandler); #define AVIFileOpenW AVIFileOpen #endif #ifdef _WIN32 STDAPI AVIFileInfoW (PAVIFILE pfile, LPAVIFILEINFOW pfi, LONG lSize); STDAPI AVIFileInfoA (PAVIFILE pfile, LPAVIFILEINFOA pfi, LONG lSize); #ifdef UNICODE #define AVIFileInfo AVIFileInfoW #else #define AVIFileInfo AVIFileInfoA #endif #else STDAPI AVIFileInfo (PAVIFILE pfile, LPAVIFILEINFO pfi, LONG lSize); #define AVIFileInfoW AVIFileInfo #endif STDAPI AVIFileGetStream (PAVIFILE pfile, PAVISTREAM FAR * ppavi, DWORD fccType, LONG lParam); #ifdef _WIN32 STDAPI AVIFileCreateStreamW (PAVIFILE pfile, PAVISTREAM FAR *ppavi, AVISTREAMINFOW FAR * psi); STDAPI AVIFileCreateStreamA (PAVIFILE pfile, PAVISTREAM FAR *ppavi, AVISTREAMINFOA FAR * psi); #ifdef UNICODE #define AVIFileCreateStream AVIFileCreateStreamW #else #define AVIFileCreateStream AVIFileCreateStreamA #endif #else STDAPI AVIFileCreateStream(PAVIFILE pfile, PAVISTREAM FAR *ppavi, AVISTREAMINFO FAR * psi); #define AVIFileCreateStreamW AVIFileCreateStream #endif STDAPI AVIFileWriteData (PAVIFILE pfile, DWORD ckid, LPVOID lpData, LONG cbData); STDAPI AVIFileReadData (PAVIFILE pfile, DWORD ckid, LPVOID lpData, LONG FAR *lpcbData); STDAPI AVIFileEndRecord (PAVIFILE pfile); STDAPI_(ULONG) AVIStreamAddRef (PAVISTREAM pavi); STDAPI_(ULONG) AVIStreamRelease (PAVISTREAM pavi); STDAPI AVIStreamInfoW (PAVISTREAM pavi, LPAVISTREAMINFOW psi, LONG lSize); STDAPI AVIStreamInfoA (PAVISTREAM pavi, LPAVISTREAMINFOA psi, LONG lSize); #ifdef UNICODE #define AVIStreamInfo AVIStreamInfoW #else #define AVIStreamInfo AVIStreamInfoA #endif STDAPI_(LONG) AVIStreamFindSample(PAVISTREAM pavi, LONG lPos, LONG lFlags); STDAPI AVIStreamReadFormat (PAVISTREAM pavi, LONG lPos,LPVOID lpFormat,LONG FAR *lpcbFormat); STDAPI AVIStreamSetFormat (PAVISTREAM pavi, LONG lPos,LPVOID lpFormat,LONG cbFormat); STDAPI AVIStreamReadData (PAVISTREAM pavi, DWORD fcc, LPVOID lp, LONG FAR *lpcb); STDAPI AVIStreamWriteData (PAVISTREAM pavi, DWORD fcc, LPVOID lp, LONG cb); STDAPI AVIStreamRead (PAVISTREAM pavi, LONG lStart, LONG lSamples, LPVOID lpBuffer, LONG cbBuffer, LONG FAR * plBytes, LONG FAR * plSamples); #define AVISTREAMREAD_CONVENIENT (-1L) STDAPI AVIStreamWrite (PAVISTREAM pavi, LONG lStart, LONG lSamples, LPVOID lpBuffer, LONG cbBuffer, DWORD dwFlags, LONG FAR *plSampWritten, LONG FAR *plBytesWritten); STDAPI_(LONG) AVIStreamStart (PAVISTREAM pavi); STDAPI_(LONG) AVIStreamLength (PAVISTREAM pavi); STDAPI_(LONG) AVIStreamTimeToSample (PAVISTREAM pavi, LONG lTime); STDAPI_(LONG) AVIStreamSampleToTime (PAVISTREAM pavi, LONG lSample); STDAPI AVIStreamBeginStreaming(PAVISTREAM pavi, LONG lStart, LONG lEnd, LONG lRate); STDAPI AVIStreamEndStreaming(PAVISTREAM pavi); STDAPI_(PGETFRAME) AVIStreamGetFrameOpen(PAVISTREAM pavi, LPBITMAPINFOHEADER lpbiWanted); STDAPI_(LPVOID) AVIStreamGetFrame(PGETFRAME pg, LONG lPos); STDAPI AVIStreamGetFrameClose(PGETFRAME pg); STDAPI AVIStreamOpenFromFileA(PAVISTREAM FAR *ppavi, LPCSTR szFile, DWORD fccType, LONG lParam, UINT mode, CLSID FAR *pclsidHandler); STDAPI AVIStreamOpenFromFileW(PAVISTREAM FAR *ppavi, LPCWSTR szFile, DWORD fccType, LONG lParam, UINT mode, CLSID FAR *pclsidHandler); #ifdef UNICODE #define AVIStreamOpenFromFile AVIStreamOpenFromFileW #else #define AVIStreamOpenFromFile AVIStreamOpenFromFileA #endif STDAPI AVIStreamCreate(PAVISTREAM FAR *ppavi, LONG lParam1, LONG lParam2, CLSID FAR *pclsidHandler); #define FIND_DIR 0x0000000FL #define FIND_NEXT 0x00000001L #define FIND_PREV 0x00000004L #define FIND_FROM_START 0x00000008L #define FIND_TYPE 0x000000F0L #define FIND_KEY 0x00000010L #define FIND_ANY 0x00000020L #define FIND_FORMAT 0x00000040L #define FIND_RET 0x0000F000L #define FIND_POS 0x00000000L #define FIND_LENGTH 0x00001000L #define FIND_OFFSET 0x00002000L #define FIND_SIZE 0x00003000L #define FIND_INDEX 0x00004000L #define AVIStreamFindKeyFrame AVIStreamFindSample #define FindKeyFrame FindSample #define AVIStreamClose AVIStreamRelease #define AVIFileClose AVIFileRelease #define AVIStreamInit AVIFileInit #define AVIStreamExit AVIFileExit #define SEARCH_NEAREST FIND_PREV #define SEARCH_BACKWARD FIND_PREV #define SEARCH_FORWARD FIND_NEXT #define SEARCH_KEY FIND_KEY #define SEARCH_ANY FIND_ANY #define AVIStreamSampleToSample(pavi1, pavi2, l) AVIStreamTimeToSample(pavi1,AVIStreamSampleToTime(pavi2, l)) #define AVIStreamNextSample(pavi, l) AVIStreamFindSample(pavi,l+1,FIND_NEXT|FIND_ANY) #define AVIStreamPrevSample(pavi, l) AVIStreamFindSample(pavi,l-1,FIND_PREV|FIND_ANY) #define AVIStreamNearestSample(pavi, l) AVIStreamFindSample(pavi,l,FIND_PREV|FIND_ANY) #define AVIStreamNextKeyFrame(pavi,l) AVIStreamFindSample(pavi,l+1,FIND_NEXT|FIND_KEY) #define AVIStreamPrevKeyFrame(pavi, l) AVIStreamFindSample(pavi,l-1,FIND_PREV|FIND_KEY) #define AVIStreamNearestKeyFrame(pavi, l) AVIStreamFindSample(pavi,l,FIND_PREV|FIND_KEY) #define AVIStreamIsKeyFrame(pavi, l) (AVIStreamNearestKeyFrame(pavi,l) == l) #define AVIStreamPrevSampleTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamPrevSample(pavi,AVIStreamTimeToSample(pavi,t))) #define AVIStreamNextSampleTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamNextSample(pavi,AVIStreamTimeToSample(pavi,t))) #define AVIStreamNearestSampleTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamNearestSample(pavi,AVIStreamTimeToSample(pavi,t))) #define AVIStreamNextKeyFrameTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamNextKeyFrame(pavi,AVIStreamTimeToSample(pavi, t))) #define AVIStreamPrevKeyFrameTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamPrevKeyFrame(pavi,AVIStreamTimeToSample(pavi, t))) #define AVIStreamNearestKeyFrameTime(pavi, t) AVIStreamSampleToTime(pavi, AVIStreamNearestKeyFrame(pavi,AVIStreamTimeToSample(pavi, t))) #define AVIStreamStartTime(pavi) AVIStreamSampleToTime(pavi, AVIStreamStart(pavi)) #define AVIStreamLengthTime(pavi) AVIStreamSampleToTime(pavi, AVIStreamLength(pavi)) #define AVIStreamEnd(pavi) (AVIStreamStart(pavi) + AVIStreamLength(pavi)) #define AVIStreamEndTime(pavi) AVIStreamSampleToTime(pavi, AVIStreamEnd(pavi)) #define AVIStreamSampleSize(pavi, lPos, plSize) AVIStreamRead(pavi,lPos,1,NULL,0,plSize,NULL) #define AVIStreamFormatSize(pavi, lPos, plSize) AVIStreamReadFormat(pavi,lPos,NULL,plSize) #define AVIStreamDataSize(pavi, fcc, plSize) AVIStreamReadData(pavi,fcc,NULL,plSize) #ifndef comptypeDIB #define comptypeDIB mmioFOURCC('D', 'I', 'B', ' ') #endif STDAPI AVIMakeCompressedStream( PAVISTREAM FAR * ppsCompressed, PAVISTREAM ppsSource, AVICOMPRESSOPTIONS FAR * lpOptions, CLSID FAR *pclsidHandler); EXTERN_C HRESULT CDECL AVISaveA (LPCSTR szFile, CLSID FAR *pclsidHandler, AVISAVECALLBACK lpfnCallback, int nStreams, PAVISTREAM pfile, LPAVICOMPRESSOPTIONS lpOptions, ...); STDAPI AVISaveVA(LPCSTR szFile, CLSID FAR *pclsidHandler, AVISAVECALLBACK lpfnCallback, int nStreams, PAVISTREAM FAR * ppavi, LPAVICOMPRESSOPTIONS FAR *plpOptions); EXTERN_C HRESULT CDECL AVISaveW (LPCWSTR szFile, CLSID FAR *pclsidHandler, AVISAVECALLBACK lpfnCallback, int nStreams, PAVISTREAM pfile, LPAVICOMPRESSOPTIONS lpOptions, ...); STDAPI AVISaveVW(LPCWSTR szFile, CLSID FAR *pclsidHandler, AVISAVECALLBACK lpfnCallback, int nStreams, PAVISTREAM FAR * ppavi, LPAVICOMPRESSOPTIONS FAR *plpOptions); #ifdef UNICODE #define AVISave AVISaveW #define AVISaveV AVISaveVW #else #define AVISave AVISaveA #define AVISaveV AVISaveVA #endif STDAPI_(INT_PTR) AVISaveOptions(HWND hwnd, UINT uiFlags, int nStreams, PAVISTREAM FAR *ppavi, LPAVICOMPRESSOPTIONS FAR *plpOptions); STDAPI AVISaveOptionsFree(int nStreams, LPAVICOMPRESSOPTIONS FAR *plpOptions); STDAPI AVIBuildFilterW(LPWSTR lpszFilter, LONG cbFilter, BOOL fSaving); STDAPI AVIBuildFilterA(LPSTR lpszFilter, LONG cbFilter, BOOL fSaving); #ifdef UNICODE #define AVIBuildFilter AVIBuildFilterW #else #define AVIBuildFilter AVIBuildFilterA #endif STDAPI AVIMakeFileFromStreams(PAVIFILE FAR * ppfile, int nStreams, PAVISTREAM FAR * papStreams); STDAPI AVIMakeStreamFromClipboard(UINT cfFormat, HANDLE hGlobal, PAVISTREAM FAR *ppstream); STDAPI AVIPutFileOnClipboard(PAVIFILE pf); STDAPI AVIGetFromClipboard(PAVIFILE FAR * lppf); STDAPI AVIClearClipboard(void); STDAPI CreateEditableStream( PAVISTREAM FAR * ppsEditable, PAVISTREAM psSource); STDAPI EditStreamCut(PAVISTREAM pavi, LONG FAR *plStart, LONG FAR *plLength, PAVISTREAM FAR * ppResult); STDAPI EditStreamCopy(PAVISTREAM pavi, LONG FAR *plStart, LONG FAR *plLength, PAVISTREAM FAR * ppResult); STDAPI EditStreamPaste(PAVISTREAM pavi, LONG FAR *plPos, LONG FAR *plLength, PAVISTREAM pstream, LONG lStart, LONG lEnd); STDAPI EditStreamClone(PAVISTREAM pavi, PAVISTREAM FAR *ppResult); STDAPI EditStreamSetNameA(PAVISTREAM pavi, LPCSTR lpszName); STDAPI EditStreamSetNameW(PAVISTREAM pavi, LPCWSTR lpszName); STDAPI EditStreamSetInfoW(PAVISTREAM pavi, LPAVISTREAMINFOW lpInfo, LONG cbInfo); STDAPI EditStreamSetInfoA(PAVISTREAM pavi, LPAVISTREAMINFOA lpInfo, LONG cbInfo); #ifdef UNICODE #define EditStreamSetInfo EditStreamSetInfoW #define EditStreamSetName EditStreamSetNameW #else #define EditStreamSetInfo EditStreamSetInfoA #define EditStreamSetName EditStreamSetNameA #endif +/ const AVIERR_OK = 0L; SCODE MAKE_AVIERR(DWORD error) { return MAKE_SCODE(SEVERITY_ERROR, FACILITY_ITF, 0x4000 + error); } const AVIERR_UNSUPPORTED = MAKE_AVIERR(101); const AVIERR_BADFORMAT = MAKE_AVIERR(102); const AVIERR_MEMORY = MAKE_AVIERR(103); const AVIERR_INTERNAL = MAKE_AVIERR(104); const AVIERR_BADFLAGS = MAKE_AVIERR(105); const AVIERR_BADPARAM = MAKE_AVIERR(106); const AVIERR_BADSIZE = MAKE_AVIERR(107); const AVIERR_BADHANDLE = MAKE_AVIERR(108); const AVIERR_FILEREAD = MAKE_AVIERR(109); const AVIERR_FILEWRITE = MAKE_AVIERR(110); const AVIERR_FILEOPEN = MAKE_AVIERR(111); const AVIERR_COMPRESSOR = MAKE_AVIERR(112); const AVIERR_NOCOMPRESSOR = MAKE_AVIERR(113); const AVIERR_READONLY = MAKE_AVIERR(114); const AVIERR_NODATA = MAKE_AVIERR(115); const AVIERR_BUFFERTOOSMALL = MAKE_AVIERR(116); const AVIERR_CANTCOMPRESS = MAKE_AVIERR(117); const AVIERR_USERABORT = MAKE_AVIERR(198); const AVIERR_ERROR = MAKE_AVIERR(199); const TCHAR[] MCIWND_WINDOW_CLASS = "MCIWndClass"; extern (Windows) { HWND MCIWndCreateA(HWND hwndParent, HINSTANCE hInstance, DWORD dwStyle, LPCSTR szFile); HWND MCIWndCreateW(HWND hwndParent, HINSTANCE hInstance, DWORD dwStyle, LPCWSTR szFile); } version(Unicode) { alias MCIWndCreateW MCIWndCreate; } else { // Unicode alias MCIWndCreateA MCIWndCreate; } extern(Windows) { BOOL MCIWndRegisterClass(); } enum { MCIWNDOPENF_NEW = 0x0001, MCIWNDF_NOAUTOSIZEWINDOW = 0x0001, MCIWNDF_NOPLAYBAR = 0x0002, MCIWNDF_NOAUTOSIZEMOVIE = 0x0004, MCIWNDF_NOMENU = 0x0008, MCIWNDF_SHOWNAME = 0x0010, MCIWNDF_SHOWPOS = 0x0020, MCIWNDF_SHOWMODE = 0x0040, MCIWNDF_SHOWALL = 0x0070, MCIWNDF_NOTIFYMODE = 0x0100, MCIWNDF_NOTIFYPOS = 0x0200, MCIWNDF_NOTIFYSIZE = 0x0400, MCIWNDF_NOTIFYERROR = 0x1000, MCIWNDF_NOTIFYALL = 0x1F00, MCIWNDF_NOTIFYANSI = 0x0080, MCIWNDF_NOTIFYMEDIAA = 0x0880, MCIWNDF_NOTIFYMEDIAW = 0x0800, } version(Unicode) { alias MCIWNDF_NOTIFYMEDIAW MCIWNDF_NOTIFYMEDIA; } else { // Unicode alias MCIWNDF_NOTIFYMEDIAA MCIWNDF_NOTIFYMEDIA; } enum { MCIWNDF_RECORD = 0x2000, MCIWNDF_NOERRORDLG = 0x4000, MCIWNDF_NOOPEN = 0x8000, } // can macros BOOL MCIWndCanPlay(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_PLAY, 0, 0); } BOOL MCIWndCanRecord(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_RECORD, 0, 0); } BOOL MCIWndCanSave(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_SAVE, 0, 0); } BOOL MCIWndCanWindow(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_WINDOW, 0, 0); } BOOL MCIWndCanEject(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_EJECT, 0, 0); } BOOL MCIWndCanConfig(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_CAN_CONFIG, 0, 0); } BOOL MCIWndPaletteKick(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_PALETTEKICK, 0, 0); } LONG MCIWndSave(HWND hwnd, LPVOID szFile) { return cast(LONG)SendMessage(hwnd, MCI_SAVE, 0, cast(LPARAM)szFile); } LONG MCIWndSaveDialog(HWND hwnd) { return MCIWndSave(hwnd, cast(LPVOID)-1); } LONG MCIWndNew(HWND hwnd, LPVOID lp) { return cast(LONG)SendMessage(hwnd, MCIWNDM_NEW, 0, cast(LPARAM)lp); } LONG MCIWndRecord(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_RECORD, 0, 0); } LONG MCIWndOpen(HWND hwnd, LPVOID sz, UINT f) { return cast(LONG)SendMessage(hwnd, MCIWNDM_OPEN, cast(WPARAM)f, cast(LPARAM)sz); } LONG MCIWndOpenDialog(HWND hwnd) { return MCIWndOpen(hwnd, cast(LPVOID)-1, 0); } LONG MCIWndClose(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_CLOSE, 0, 0); } LONG MCIWndPlay(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_PLAY, 0, 0); } LONG MCIWndStop(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_STOP, 0, 0); } LONG MCIWndPause(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_PAUSE, 0, 0); } LONG MCIWndResume(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCI_RESUME, 0, 0); } LONG MCIWndSeek(HWND hwnd, LONG lPos) { return cast(LONG)SendMessage(hwnd, MCI_SEEK, 0, cast(LPARAM)lPos); } LONG MCIWndHome(HWND hwnd) { return MCIWndSeek(hwnd, MCIWND_START); } LONG MCIWndEnd(HWND hwnd) { return MCIWndSeek(hwnd, MCIWND_END); } LONG MCIWndEject(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_EJECT, 0, 0); } LONG MCIWndGetSource(HWND hwnd, LPRECT prc) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GET_SOURCE, 0, cast(LPARAM)prc); } LONG MCIWndPutSource(HWND hwnd, LPRECT prc) { return cast(LONG)SendMessage(hwnd, MCIWNDM_PUT_SOURCE, 0, cast(LPARAM)prc); } LONG MCIWndGetDest(HWND hwnd, LPRECT prc) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GET_DEST, 0, cast(LPARAM)prc); } LONG MCIWndPutDest(HWND hwnd, LPRECT prc) { return cast(LONG)SendMessage(hwnd, MCIWNDM_PUT_DEST, 0, cast(LPARAM)prc); } LONG MCIWndPlayReverse(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_PLAYREVERSE, 0, 0); } LONG MCIWndPlayFrom(HWND hwnd, LONG lPos) { return cast(LONG)SendMessage(hwnd, MCIWNDM_PLAYFROM, 0, cast(LPARAM)lPos); } LONG MCIWndPlayTo(HWND hwnd, LONG lPos) { return cast(LONG)SendMessage(hwnd, MCIWNDM_PLAYTO, 0, cast(LPARAM)lPos); } LONG MCIWndPlayFromTo(HWND hwnd, LONG lStart, LONG lEnd) { MCIWndSeek(hwnd, lStart); return MCIWndPlayTo(hwnd, lEnd); } UINT MCIWndGetDeviceID(HWND hwnd) { return cast(UINT)SendMessage(hwnd, MCIWNDM_GETDEVICEID, 0, 0); } UINT MCIWndGetAlias(HWND hwnd) { return cast(UINT)SendMessage(hwnd, MCIWNDM_GETALIAS, 0, 0); } LONG MCIWndGetMode(HWND hwnd, LPTSTR lp, UINT len) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETMODE, cast(WPARAM)len, cast(LPARAM)lp); } LONG MCIWndGetPosition(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETPOSITION, 0, 0); } LONG MCIWndGetPositionString(HWND hwnd, LPTSTR lp, UINT len) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETPOSITION, cast(WPARAM)len, cast(LPARAM)lp); } LONG MCIWndGetStart(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETSTART, 0, 0); } LONG MCIWndGetLength(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETLENGTH, 0, 0); } LONG MCIWndGetEnd(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETEND, 0, 0); } LONG MCIWndStep(HWND hwnd, LONG n) { return cast(LONG)SendMessage(hwnd, MCI_STEP, 0, cast(LPARAM)n); } void MCIWndDestroy(HWND hwnd) { SendMessage(hwnd, WM_CLOSE, 0, 0); } void MCIWndSetZoom(HWND hwnd, UINT iZoom) { SendMessage(hwnd, MCIWNDM_SETZOOM, 0, cast(LPARAM)iZoom); } UINT MCIWndGetZoom(HWND hwnd) { return cast(UINT)SendMessage(hwnd, MCIWNDM_GETZOOM, 0, 0); } LONG MCIWndSetVolume(HWND hwnd, UINT iVol) { return cast(LONG)SendMessage(hwnd, MCIWNDM_SETVOLUME, 0, cast(LPARAM)iVol); } LONG MCIWndGetVolume(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETVOLUME, 0, 0); } LONG MCIWndSetSpeed(HWND hwnd, UINT iSpeed) { return cast(LONG)SendMessage(hwnd, MCIWNDM_SETSPEED, 0, cast(LPARAM)iSpeed); } LONG MCIWndGetSpeed(HWND hwnd) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETSPEED, 0, 0); } LONG MCIWndSetTimeFormat(HWND hwnd, LPTSTR lp) { return cast(LONG)SendMessage(hwnd, MCIWNDM_SETTIMEFORMAT, 0, cast(LPARAM)lp); } LONG MCIWndUseFrames(HWND hwnd) { return MCIWndSetTimeFormat(hwnd, (cast(TCHAR[])"frames").ptr); } LONG MCIWndUseTime(HWND hwnd) { return MCIWndSetTimeFormat(hwnd, (cast(TCHAR[])"ms").ptr); } LONG MCIWndGetTimeFormat(HWND hwnd, LPTSTR lp, UINT len) { return cast(LONG)SendMessage(hwnd, MCIWNDM_GETTIMEFORMAT, cast(WPARAM)len, cast(LPARAM)lp); } void MCIWndValidateMedia(HWND hwnd) { SendMessage(hwnd, MCIWNDM_VALIDATEMEDIA, 0, 0); } void MCIWndSetRepeat(HWND hwnd, BOOL f) { SendMessage(hwnd, MCIWNDM_SETREPEAT, 0, cast(LPARAM)f); } BOOL MCIWndGetRepeat(HWND hwnd) { return cast(BOOL)SendMessage(hwnd, MCIWNDM_GETREPEAT, 0, 0); } void MCIWndSetActiveTimer(HWND hwnd, UINT active) { SendMessage(hwnd, MCIWNDM_SETACTIVETIMER, cast(WPARAM)active, 0); } void MCIWndSetInactiveTimer(HWND hwnd, UINT inactive) { SendMessage(hwnd, MCIWNDM_SETINACTIVETIMER, cast(WPARAM)inactive, 0); } void MCIWndSetTimers(HWND hwnd, UINT active, UINT inactive) { SendMessage(hwnd, MCIWNDM_SETTIMERS, cast(WPARAM)active, cast(LPARAM)inactive); } UINT MCIWndGetActiveTimer(HWND hwnd) { return cast(UINT)SendMessage(hwnd, MCIWNDM_GETACTIVETIMER, 0, 0); } UINT MCIWndGetInactiveTimer(HWND hwnd) { return cast(UINT)SendMessage(hwnd, MCIWNDM_GETINACTIVETIMER, 0, 0); } LONG MCIWndRealize(HWND hwnd, BOOL fBkgnd) { return cast(LONG) SendMessage(hwnd, MCIWNDM_REALIZE, cast(WPARAM)fBkgnd, 0); } LONG MCIWndSendString(HWND hwnd, LPTSTR sz) { return cast(LONG) SendMessage(hwnd, MCIWNDM_SENDSTRING, 0, cast(LPARAM)sz); } LONG MCIWndReturnString(HWND hwnd, LPVOID lp, UINT len) { return cast(LONG) SendMessage(hwnd, MCIWNDM_RETURNSTRING, cast(WPARAM)len, cast(LPARAM)lp); } LONG MCIWndGetError(HWND hwnd, LPVOID lp, UINT len) { return cast(LONG) SendMessage(hwnd, MCIWNDM_GETERROR, cast(WPARAM)len, cast(LPARAM)lp); } HPALETTE MCIWndGetPalette(HWND hwnd) { return cast(HPALETTE)SendMessage(hwnd, MCIWNDM_GETPALETTE, 0, 0); } LONG MCIWndSetPalette(HWND hwnd, HPALETTE hpal) { return cast(LONG) SendMessage(hwnd, MCIWNDM_SETPALETTE, cast(WPARAM)hpal, 0); } LONG MCIWndGetFileName(HWND hwnd, LPVOID lp, UINT len) { return cast(LONG) SendMessage(hwnd, MCIWNDM_GETFILENAME, cast(WPARAM)len, cast(LPARAM)lp); } LONG MCIWndGetDevice(HWND hwnd, LPVOID lp, UINT len) { return cast(LONG) SendMessage(hwnd, MCIWNDM_GETDEVICE, cast(WPARAM)len, cast(LPARAM)lp); } UINT MCIWndGetStyles(HWND hwnd) { return cast(UINT) SendMessage(hwnd, MCIWNDM_GETSTYLES, 0, 0); } LONG MCIWndChangeStyles(HWND hwnd, UINT mask, LONG value) { return cast(LONG) SendMessage(hwnd, MCIWNDM_CHANGESTYLES, cast(WPARAM)mask, cast(LPARAM)value); } LONG MCIWndOpenInterface(HWND hwnd, LPUNKNOWN pUnk) { return cast(LONG) SendMessage(hwnd, MCIWNDM_OPENINTERFACE, 0, cast(LPARAM)cast(void*)pUnk); } LONG MCIWndSetOwner(HWND hwnd, HWND hwndP) { return cast(LONG) SendMessage(hwnd, MCIWNDM_SETOWNER, cast(WPARAM)hwndP, 0); } enum { MCIWNDM_GETDEVICEID = WM_USER + 100, MCIWNDM_SENDSTRINGA = WM_USER + 101, MCIWNDM_GETPOSITIONA = WM_USER + 102, MCIWNDM_GETSTART = WM_USER + 103, MCIWNDM_GETLENGTH = WM_USER + 104, MCIWNDM_GETEND = WM_USER + 105, MCIWNDM_GETMODEA = WM_USER + 106, MCIWNDM_EJECT = WM_USER + 107, MCIWNDM_SETZOOM = WM_USER + 108, MCIWNDM_GETZOOM = WM_USER + 109, MCIWNDM_SETVOLUME = WM_USER + 110, MCIWNDM_GETVOLUME = WM_USER + 111, MCIWNDM_SETSPEED = WM_USER + 112, MCIWNDM_GETSPEED = WM_USER + 113, MCIWNDM_SETREPEAT = WM_USER + 114, MCIWNDM_GETREPEAT = WM_USER + 115, MCIWNDM_REALIZE = WM_USER + 118, MCIWNDM_SETTIMEFORMATA = WM_USER + 119, MCIWNDM_GETTIMEFORMATA = WM_USER + 120, MCIWNDM_VALIDATEMEDIA = WM_USER + 121, MCIWNDM_PLAYFROM = WM_USER + 122, MCIWNDM_PLAYTO = WM_USER + 123, MCIWNDM_GETFILENAMEA = WM_USER + 124, MCIWNDM_GETDEVICEA = WM_USER + 125, MCIWNDM_GETPALETTE = WM_USER + 126, MCIWNDM_SETPALETTE = WM_USER + 127, MCIWNDM_GETERRORA = WM_USER + 128, MCIWNDM_SETTIMERS = WM_USER + 129, MCIWNDM_SETACTIVETIMER = WM_USER + 130, MCIWNDM_SETINACTIVETIMER = WM_USER + 131, MCIWNDM_GETACTIVETIMER = WM_USER + 132, MCIWNDM_GETINACTIVETIMER = WM_USER + 133, MCIWNDM_NEWA = WM_USER + 134, MCIWNDM_CHANGESTYLES = WM_USER + 135, MCIWNDM_GETSTYLES = WM_USER + 136, MCIWNDM_GETALIAS = WM_USER + 137, MCIWNDM_RETURNSTRINGA = WM_USER + 138, MCIWNDM_PLAYREVERSE = WM_USER + 139, MCIWNDM_GET_SOURCE = WM_USER + 140, MCIWNDM_PUT_SOURCE = WM_USER + 141, MCIWNDM_GET_DEST = WM_USER + 142, MCIWNDM_PUT_DEST = WM_USER + 143, MCIWNDM_CAN_PLAY = WM_USER + 144, MCIWNDM_CAN_WINDOW = WM_USER + 145, MCIWNDM_CAN_RECORD = WM_USER + 146, MCIWNDM_CAN_SAVE = WM_USER + 147, MCIWNDM_CAN_EJECT = WM_USER + 148, MCIWNDM_CAN_CONFIG = WM_USER + 149, MCIWNDM_PALETTEKICK = WM_USER + 150, MCIWNDM_OPENINTERFACE = WM_USER + 151, MCIWNDM_SETOWNER = WM_USER + 152, MCIWNDM_OPENA = WM_USER + 153, MCIWNDM_SENDSTRINGW = WM_USER + 201, MCIWNDM_GETPOSITIONW = WM_USER + 202, MCIWNDM_GETMODEW = WM_USER + 206, MCIWNDM_SETTIMEFORMATW = WM_USER + 219, MCIWNDM_GETTIMEFORMATW = WM_USER + 220, MCIWNDM_GETFILENAMEW = WM_USER + 224, MCIWNDM_GETDEVICEW = WM_USER + 225, MCIWNDM_GETERRORW = WM_USER + 228, MCIWNDM_NEWW = WM_USER + 234, MCIWNDM_RETURNSTRINGW = WM_USER + 238, MCIWNDM_OPENW = WM_USER + 252, } version(Unicode) { alias MCIWNDM_SENDSTRINGW MCIWNDM_SENDSTRING; alias MCIWNDM_GETPOSITIONW MCIWNDM_GETPOSITION; alias MCIWNDM_GETMODEW MCIWNDM_GETMODE; alias MCIWNDM_SETTIMEFORMATW MCIWNDM_SETTIMEFORMAT; alias MCIWNDM_GETTIMEFORMATW MCIWNDM_GETTIMEFORMAT; alias MCIWNDM_GETFILENAMEW MCIWNDM_GETFILENAME; alias MCIWNDM_GETDEVICEW MCIWNDM_GETDEVICE; alias MCIWNDM_GETERRORW MCIWNDM_GETERROR; alias MCIWNDM_NEWW MCIWNDM_NEW; alias MCIWNDM_RETURNSTRINGW MCIWNDM_RETURNSTRING; alias MCIWNDM_OPENW MCIWNDM_OPEN; } else { // Unicode alias MCIWNDM_SENDSTRINGA MCIWNDM_SENDSTRING; alias MCIWNDM_GETPOSITIONA MCIWNDM_GETPOSITION; alias MCIWNDM_GETMODEA MCIWNDM_GETMODE; alias MCIWNDM_SETTIMEFORMATA MCIWNDM_SETTIMEFORMAT; alias MCIWNDM_GETTIMEFORMATA MCIWNDM_GETTIMEFORMAT; alias MCIWNDM_GETFILENAMEA MCIWNDM_GETFILENAME; alias MCIWNDM_GETDEVICEA MCIWNDM_GETDEVICE; alias MCIWNDM_GETERRORA MCIWNDM_GETERROR; alias MCIWNDM_NEWA MCIWNDM_NEW; alias MCIWNDM_RETURNSTRINGA MCIWNDM_RETURNSTRING; alias MCIWNDM_OPENA MCIWNDM_OPEN; } enum { MCIWNDM_NOTIFYMODE = WM_USER + 200, MCIWNDM_NOTIFYPOS = WM_USER + 201, MCIWNDM_NOTIFYSIZE = WM_USER + 202, MCIWNDM_NOTIFYMEDIA = WM_USER + 203, MCIWNDM_NOTIFYERROR = WM_USER + 205, } const MCIWND_START = -1; const MCIWND_END = -2; enum { MCI_CLOSE = 0x0804, MCI_PLAY = 0x0806, MCI_SEEK = 0x0807, MCI_STOP = 0x0808, MCI_PAUSE = 0x0809, MCI_STEP = 0x080E, MCI_RECORD = 0x080F, MCI_SAVE = 0x0813, MCI_CUT = 0x0851, MCI_COPY = 0x0852, MCI_PASTE = 0x0853, MCI_RESUME = 0x0855, MCI_DELETE = 0x0856, } enum { MCI_MODE_NOT_READY = 524, MCI_MODE_STOP, MCI_MODE_PLAY, MCI_MODE_RECORD, MCI_MODE_SEEK, MCI_MODE_PAUSE, MCI_MODE_OPEN, } alias TypeDef!(HANDLE) HVIDEO; alias HVIDEO* LPHVIDEO; // Error Return Values enum { DV_ERR_OK = 0, DV_ERR_BASE = 1, DV_ERR_NONSPECIFIC = DV_ERR_BASE, DV_ERR_BADFORMAT = DV_ERR_BASE + 1, DV_ERR_STILLPLAYING = DV_ERR_BASE + 2, DV_ERR_UNPREPARED = DV_ERR_BASE + 3, DV_ERR_SYNC = DV_ERR_BASE + 4, DV_ERR_TOOMANYCHANNELS = DV_ERR_BASE + 5, DV_ERR_NOTDETECTED = DV_ERR_BASE + 6, DV_ERR_BADINSTALL = DV_ERR_BASE + 7, DV_ERR_CREATEPALETTE = DV_ERR_BASE + 8, DV_ERR_SIZEFIELD = DV_ERR_BASE + 9, DV_ERR_PARAM1 = DV_ERR_BASE + 10, DV_ERR_PARAM2 = DV_ERR_BASE + 11, DV_ERR_CONFIG1 = DV_ERR_BASE + 12, DV_ERR_CONFIG2 = DV_ERR_BASE + 13, DV_ERR_FLAGS = DV_ERR_BASE + 14, DV_ERR_13 = DV_ERR_BASE + 15, DV_ERR_NOTSUPPORTED = DV_ERR_BASE + 16, DV_ERR_NOMEM = DV_ERR_BASE + 17, DV_ERR_ALLOCATED = DV_ERR_BASE + 18, DV_ERR_BADDEVICEID = DV_ERR_BASE + 19, DV_ERR_INVALHANDLE = DV_ERR_BASE + 20, DV_ERR_BADERRNUM = DV_ERR_BASE + 21, DV_ERR_NO_BUFFERS = DV_ERR_BASE + 22, DV_ERR_MEM_CONFLICT = DV_ERR_BASE + 23, DV_ERR_IO_CONFLICT = DV_ERR_BASE + 24, DV_ERR_DMA_CONFLICT = DV_ERR_BASE + 25, DV_ERR_INT_CONFLICT = DV_ERR_BASE + 26, DV_ERR_PROTECT_ONLY = DV_ERR_BASE + 27, DV_ERR_LASTERROR = DV_ERR_BASE + 27, DV_ERR_USER_MSG = DV_ERR_BASE + 1000, } // Callback Messages enum { MM_DRVM_OPEN = 0x3D0, MM_DRVM_CLOSE, MM_DRVM_DATA, MM_DRVM_ERROR, } enum { DV_VM_OPEN = MM_DRVM_OPEN, DV_VM_CLOSE = MM_DRVM_CLOSE, DV_VM_DATA = MM_DRVM_DATA, DV_VM_ERROR = MM_DRVM_ERROR, } /** * Structures */ struct VIDEOHDR { LPBYTE lpData; DWORD dwBufferLength; DWORD dwBytesUsed; DWORD dwTimeCaptured; DWORD_PTR dwUser; DWORD dwFlags; DWORD_PTR[4]dwReserved; } alias VIDEOHDR* PVIDEOHDR, LPVIDEOHDR; enum { VHDR_DONE = 0x00000001, VHDR_PREPARED = 0x00000002, VHDR_INQUEUE = 0x00000004, VHDR_KEYFRAME = 0x00000008, VHDR_VALID = 0x0000000F, } struct CHANNEL_CAPS { DWORD dwFlags; DWORD dwSrcRectXMod; DWORD dwSrcRectYMod; DWORD dwSrcRectWidthMod; DWORD dwSrcRectHeightMod; DWORD dwDstRectXMod; DWORD dwDstRectYMod; DWORD dwDstRectWidthMod; DWORD dwDstRectHeightMod; } alias CHANNEL_CAPS* PCHANNEL_CAPS, LPCHANNEL_CAPS; enum { VCAPS_OVERLAY = 0x00000001, VCAPS_SRC_CAN_CLIP = 0x00000002, VCAPS_DST_CAN_CLIP = 0x00000004, VCAPS_CAN_SCALE = 0x00000008, } /** * API Flags */ enum { VIDEO_EXTERNALIN = 0x0001, VIDEO_EXTERNALOUT = 0x0002, VIDEO_IN = 0x0004, VIDEO_OUT = 0x0008, VIDEO_DLG_QUERY = 0x0010, } enum { VIDEO_CONFIGURE_QUERYSIZE = 0x0001, VIDEO_CONFIGURE_CURRENT = 0x0010, VIDEO_CONFIGURE_NOMINAL = 0x0020, VIDEO_CONFIGURE_MIN = 0x0040, VIDEO_CONFIGURE_MAX = 0x0080, VIDEO_CONFIGURE_SET = 0x1000, VIDEO_CONFIGURE_GET = 0x2000, VIDEO_CONFIGURE_QUERY = 0x8000, } /** * CONFIGURE MESSAGES */ enum { DVM_USER = 0x4000, DVM_CONFIGURE_START = 0x1000, DVM_CONFIGURE_END = 0x1FFF, DVM_PALETTE = DVM_CONFIGURE_START + 1, DVM_FORMAT = DVM_CONFIGURE_START + 2, DVM_PALETTERGB555 = DVM_CONFIGURE_START + 3, DVM_SRC_RECT = DVM_CONFIGURE_START + 4, DVM_DST_RECT = DVM_CONFIGURE_START + 5, } /** * AVICap window class */ LRESULT AVICapSM(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { if (IsWindow(hWnd)) { return SendMessage(hWnd, msg, wParam, lParam); } return 0; } enum { WM_CAP_START = WM_USER, WM_CAP_UNICODE_START = WM_USER + 100, WM_CAP_GET_CAPSTREAMPTR = WM_CAP_START + 1, WM_CAP_SET_CALLBACK_ERRORA = WM_CAP_START + 2, WM_CAP_SET_CALLBACK_STATUSA = WM_CAP_START + 3, WM_CAP_SET_CALLBACK_ERRORW = WM_CAP_UNICODE_START + 2, WM_CAP_SET_CALLBACK_STATUSW = WM_CAP_UNICODE_START + 3, } version(Unicode) { alias WM_CAP_SET_CALLBACK_ERRORW WM_CAP_SET_CALLBACK_ERROR; alias WM_CAP_SET_CALLBACK_STATUSW WM_CAP_SET_CALLBACK_STATUS; } else { // Unicode alias WM_CAP_SET_CALLBACK_ERRORA WM_CAP_SET_CALLBACK_ERROR; alias WM_CAP_SET_CALLBACK_STATUSA WM_CAP_SET_CALLBACK_STATUS; } enum { WM_CAP_SET_CALLBACK_YIELD = WM_CAP_START + 4, WM_CAP_SET_CALLBACK_FRAME = WM_CAP_START + 5, WM_CAP_SET_CALLBACK_VIDEOSTREAM = WM_CAP_START + 6, WM_CAP_SET_CALLBACK_WAVESTREAM = WM_CAP_START + 7, WM_CAP_GET_USER_DATA = WM_CAP_START + 8, WM_CAP_SET_USER_DATA = WM_CAP_START + 9, WM_CAP_DRIVER_CONNECT = WM_CAP_START + 10, WM_CAP_DRIVER_DISCONNECT = WM_CAP_START + 11, WM_CAP_DRIVER_GET_NAMEA = WM_CAP_START + 12, WM_CAP_DRIVER_GET_VERSIONA = WM_CAP_START + 13, WM_CAP_DRIVER_GET_NAMEW = WM_CAP_UNICODE_START + 12, WM_CAP_DRIVER_GET_VERSIONW = WM_CAP_UNICODE_START + 13, } version(Unicode) { alias WM_CAP_DRIVER_GET_NAMEW WM_CAP_DRIVER_GET_NAME; alias WM_CAP_DRIVER_GET_VERSIONW WM_CAP_DRIVER_GET_VERSION; } else { // Unicode alias WM_CAP_DRIVER_GET_NAMEA WM_CAP_DRIVER_GET_NAME; alias WM_CAP_DRIVER_GET_VERSIONA WM_CAP_DRIVER_GET_VERSION; } enum { WM_CAP_DRIVER_GET_CAPS = WM_CAP_START + 14, WM_CAP_FILE_SET_CAPTURE_FILEA = WM_CAP_START + 20, WM_CAP_FILE_GET_CAPTURE_FILEA = WM_CAP_START + 21, WM_CAP_FILE_SAVEASA = WM_CAP_START + 23, WM_CAP_FILE_SAVEDIBA = WM_CAP_START + 25, WM_CAP_FILE_SET_CAPTURE_FILEW = WM_CAP_UNICODE_START + 20, WM_CAP_FILE_GET_CAPTURE_FILEW = WM_CAP_UNICODE_START + 21, WM_CAP_FILE_SAVEASW = WM_CAP_UNICODE_START + 23, WM_CAP_FILE_SAVEDIBW = WM_CAP_UNICODE_START + 25, } version(Unicode) { alias WM_CAP_FILE_SET_CAPTURE_FILEW WM_CAP_FILE_SET_CAPTURE_FILE; alias WM_CAP_FILE_GET_CAPTURE_FILEW WM_CAP_FILE_GET_CAPTURE_FILE; alias WM_CAP_FILE_SAVEASW WM_CAP_FILE_SAVEAS; alias WM_CAP_FILE_SAVEDIBW WM_CAP_FILE_SAVEDIB; } else { // Unicode alias WM_CAP_FILE_SET_CAPTURE_FILEA WM_CAP_FILE_SET_CAPTURE_FILE; alias WM_CAP_FILE_GET_CAPTURE_FILEA WM_CAP_FILE_GET_CAPTURE_FILE; alias WM_CAP_FILE_SAVEASA WM_CAP_FILE_SAVEAS; alias WM_CAP_FILE_SAVEDIBA WM_CAP_FILE_SAVEDIB; } enum { WM_CAP_FILE_ALLOCATE = WM_CAP_START + 22, WM_CAP_FILE_SET_INFOCHUNK = WM_CAP_START + 24, WM_CAP_EDIT_COPY = WM_CAP_START + 30, WM_CAP_SET_AUDIOFORMAT = WM_CAP_START + 35, WM_CAP_GET_AUDIOFORMAT = WM_CAP_START + 36, WM_CAP_DLG_VIDEOFORMAT = WM_CAP_START + 41, WM_CAP_DLG_VIDEOSOURCE = WM_CAP_START + 42, WM_CAP_DLG_VIDEODISPLAY = WM_CAP_START + 43, WM_CAP_GET_VIDEOFORMAT = WM_CAP_START + 44, WM_CAP_SET_VIDEOFORMAT = WM_CAP_START + 45, WM_CAP_DLG_VIDEOCOMPRESSION = WM_CAP_START + 46, WM_CAP_SET_PREVIEW = WM_CAP_START + 50, WM_CAP_SET_OVERLAY = WM_CAP_START + 51, WM_CAP_SET_PREVIEWRATE = WM_CAP_START + 52, WM_CAP_SET_SCALE = WM_CAP_START + 53, WM_CAP_GET_STATUS = WM_CAP_START + 54, WM_CAP_SET_SCROLL = WM_CAP_START + 55, WM_CAP_GRAB_FRAME = WM_CAP_START + 60, WM_CAP_GRAB_FRAME_NOSTOP = WM_CAP_START + 61, WM_CAP_SEQUENCE = WM_CAP_START + 62, WM_CAP_SEQUENCE_NOFILE = WM_CAP_START + 63, WM_CAP_SET_SEQUENCE_SETUP = WM_CAP_START + 64, WM_CAP_GET_SEQUENCE_SETUP = WM_CAP_START + 65, WM_CAP_SET_MCI_DEVICEA = WM_CAP_START + 66, WM_CAP_GET_MCI_DEVICEA = WM_CAP_START + 67, WM_CAP_SET_MCI_DEVICEW = WM_CAP_UNICODE_START + 66, WM_CAP_GET_MCI_DEVICEW = WM_CAP_UNICODE_START + 67, } version(Unicode) { alias WM_CAP_SET_MCI_DEVICEW WM_CAP_SET_MCI_DEVICE; alias WM_CAP_GET_MCI_DEVICEW WM_CAP_GET_MCI_DEVICE; } else { // Unicode alias WM_CAP_SET_MCI_DEVICEA WM_CAP_SET_MCI_DEVICE; alias WM_CAP_GET_MCI_DEVICEA WM_CAP_GET_MCI_DEVICE; } enum { WM_CAP_STOP = WM_CAP_START + 68, WM_CAP_ABORT = WM_CAP_START + 69, WM_CAP_SINGLE_FRAME_OPEN = WM_CAP_START + 70, WM_CAP_SINGLE_FRAME_CLOSE = WM_CAP_START + 71, WM_CAP_SINGLE_FRAME = WM_CAP_START + 72, WM_CAP_PAL_OPENA = WM_CAP_START + 80, WM_CAP_PAL_SAVEA = WM_CAP_START + 81, WM_CAP_PAL_OPENW = WM_CAP_UNICODE_START + 80, WM_CAP_PAL_SAVEW = WM_CAP_UNICODE_START + 81, } version(Unicode) { alias WM_CAP_PAL_OPENW WM_CAP_PAL_OPEN; alias WM_CAP_PAL_SAVEW WM_CAP_PAL_SAVE; } else { // Unicode alias WM_CAP_PAL_OPENA WM_CAP_PAL_OPEN; alias WM_CAP_PAL_SAVEA WM_CAP_PAL_SAVE; } enum { WM_CAP_PAL_PASTE = WM_CAP_START + 82, WM_CAP_PAL_AUTOCREATE = WM_CAP_START + 83, WM_CAP_PAL_MANUALCREATE = WM_CAP_START + 84, WM_CAP_SET_CALLBACK_CAPCONTROL = WM_CAP_START + 85, WM_CAP_UNICODE_END = WM_CAP_PAL_SAVEW, WM_CAP_END = WM_CAP_UNICODE_END, } /** * message wrapper */ BOOL capSetCallbackOnError(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_ERROR, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnStatus(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_STATUS, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnYield(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_YIELD, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnFrame(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_FRAME, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnVideoStream(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_VIDEOSTREAM, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnWaveStream(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_WAVESTREAM, 0, cast(LPARAM)fpProc); } BOOL capSetCallbackOnCapControl(HWND hWnd, LPVOID fpProc) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_CALLBACK_CAPCONTROL, 0, cast(LPARAM)fpProc); } BOOL capSetUserData(HWND hWnd, LPARAM lUser) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_USER_DATA, 0, lUser); } BOOL capGetUserData(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GET_USER_DATA, 0, 0); } BOOL capDriverConnect(HWND hWnd, WPARAM i) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DRIVER_CONNECT, i, 0); } BOOL capDriverDisconnect(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DRIVER_DISCONNECT, 0, 0); } BOOL capDriverGetName(HWND hWnd, LPTSTR szName, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DRIVER_GET_NAME, wSize, cast(LPARAM)szName); } BOOL capDriverGetVersion(HWND hWnd, LPTSTR szVer, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DRIVER_GET_VERSION, wSize, cast(LPARAM)szVer); } BOOL capDriverGetCaps(HWND hWnd, LPCAPDRIVERCAPS s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DRIVER_GET_CAPS, wSize, cast(LPARAM)s); } BOOL capFileSetCaptureFile(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_SET_CAPTURE_FILE, 0, cast(LPARAM)szName); } BOOL capFileGetCaptureFile(HWND hWnd, LPTSTR szName, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_GET_CAPTURE_FILE, wSize, cast(LPARAM)szName); } BOOL capFileAlloc(HWND hWnd, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_ALLOCATE, wSize, 0); } BOOL capFileSaveAs(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_SAVEAS, 0, cast(LPARAM)szName); } BOOL capFileSetInfoChunk(HWND hWnd, LPCAPINFOCHUNK lpInfoChunk) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_SET_INFOCHUNK, 0, cast(LPARAM)lpInfoChunk); } BOOL capFileSaveDIB(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_FILE_SAVEDIB, 0, cast(LPARAM)szName); } BOOL capEditCopy(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_EDIT_COPY, 0, 0); } BOOL capSetAudioFormat(HWND hWnd, LPWAVEFORMATEX s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_AUDIOFORMAT, wSize, cast(LPARAM)s); } DWORD capGetAudioFormat(HWND hWnd, LPWAVEFORMATEX s, WPARAM wSize) { return cast(DWORD)AVICapSM(hWnd, WM_CAP_GET_AUDIOFORMAT, wSize, cast(LPARAM)s); } DWORD capGetAudioFormatSize(HWND hWnd) { return cast(DWORD)AVICapSM(hWnd, WM_CAP_GET_AUDIOFORMAT, 0, 0); } BOOL capDlgVideoFormat(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DLG_VIDEOFORMAT, 0, 0); } BOOL capDlgVideoSource(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DLG_VIDEOSOURCE, 0, 0); } BOOL capDlgVideoDisplay(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DLG_VIDEODISPLAY, 0, 0); } BOOL capDlgVideoCompression(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_DLG_VIDEOCOMPRESSION, 0, 0); } DWORD capGetVideoFormat(HWND hWnd, void* s, WPARAM wSize) { return cast(DWORD)AVICapSM(hWnd, WM_CAP_GET_VIDEOFORMAT, wSize, cast(LPARAM)s); } DWORD capGetVideoFormatSize(HWND hWnd) { return cast(DWORD)AVICapSM(hWnd, WM_CAP_GET_VIDEOFORMAT, 0, 0); } BOOL capSetVideoFormat(HWND hWnd, void* s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_VIDEOFORMAT, wSize, cast(LPARAM)s); } BOOL capPreview(HWND hWnd, BOOL f) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_PREVIEW, cast(WPARAM)f, 0); } BOOL capPreviewRate(HWND hWnd, WPARAM wMS) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_PREVIEWRATE, wMS, 0); } BOOL capOverlay(HWND hWnd, BOOL f) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_OVERLAY, cast(WPARAM)f, 0); } BOOL capPreviewScale(HWND hWnd, BOOL f) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_SCALE, cast(WPARAM)f, 0); } BOOL capGetStatus(HWND hWnd, LPCAPSTATUS s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GET_STATUS, wSize, cast(LPARAM)s); } BOOL capSetScrollPos(HWND hWnd, LPPOINT lpP) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_SCROLL, 0, cast(LPARAM)lpP); } BOOL capGrabFrame(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GRAB_FRAME, 0, 0); } BOOL capGrabFrameNoStop(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GRAB_FRAME_NOSTOP, 0, 0); } BOOL capCaptureSequence(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SEQUENCE, 0, 0); } BOOL capCaptureSequenceNoFile(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SEQUENCE_NOFILE, 0, 0); } BOOL capCaptureStop(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_STOP, 0, 0); } BOOL capCaptureAbort(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_ABORT, 0, 0); } BOOL capCaptureSingleFrameOpen(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SINGLE_FRAME_OPEN, 0, 0); } BOOL capCaptureSingleFrameClose(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SINGLE_FRAME_CLOSE, 0, 0); } BOOL capCaptureSingleFrame(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SINGLE_FRAME, 0, 0); } BOOL capCaptureGetSetup(HWND hWnd, LPCAPTUREPARMS s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GET_SEQUENCE_SETUP, wSize, cast(LPARAM)s); } BOOL capCaptureSetSetup(HWND hWnd, LPCAPTUREPARMS s, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_SEQUENCE_SETUP, wSize, cast(LPARAM)s); } BOOL capSetMCIDeviceName(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_SET_MCI_DEVICE, 0, cast(LPARAM)szName); } BOOL capGetMCIDeviceName(HWND hWnd, LPTSTR szName, WPARAM wSize) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_GET_MCI_DEVICE, wSize, cast(LPARAM)szName); } BOOL capPaletteOpen(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_PAL_OPEN, 0, cast(LPARAM)szName); } BOOL capPaletteSave(HWND hWnd, LPTSTR szName) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_PAL_SAVE, 0, cast(LPARAM)szName); } BOOL capPalettePaste(HWND hWnd) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_PAL_PASTE, 0, 0); } BOOL capPaletteAuto(HWND hWnd, WPARAM iFrames, LPARAM iColors) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_PAL_AUTOCREATE, iFrames, iColors); } BOOL capPaletteManual(HWND hWnd, WPARAM fGrab, LPARAM iColors) { return cast(BOOL)AVICapSM(hWnd, WM_CAP_PAL_MANUALCREATE, fGrab, iColors); } /** * structs */ struct CAPDRIVERCAPS { UINT wDeviceIndex; BOOL fHasOverlay; BOOL fHasDlgVideoSource; BOOL fHasDlgVideoFormat; BOOL fHasDlgVideoDisplay; BOOL fCaptureInitialized; BOOL fDriverSuppliesPalettes; HANDLE hVideoIn; HANDLE hVideoOut; HANDLE hVideoExtIn; HANDLE hVideoExtOut; } alias CAPDRIVERCAPS* PCAPDRIVERCAPS, LPCAPDRIVERCAPS; struct CAPSTATUS { UINT uiImageWidth; UINT uiImageHeight; BOOL fLiveWindow; BOOL fOverlayWindow; BOOL fScale; POINT ptScroll; BOOL fUsingDefaultPalette; BOOL fAudioHardware; BOOL fCapFileExists; DWORD dwCurrentVideoFrame; DWORD dwCurrentVideoFramesDropped; DWORD dwCurrentWaveSamples; DWORD dwCurrentTimeElapsedMS; HPALETTE hPalCurrent; BOOL fCapturingNow; DWORD dwReturn; UINT wNumVideoAllocated; UINT wNumAudioAllocated; } alias CAPSTATUS* PCAPSTATUS, LPCAPSTATUS; struct CAPTUREPARMS { DWORD dwRequestMicroSecPerFrame; BOOL fMakeUserHitOKToCapture; UINT wPercentDropForError; BOOL fYield; DWORD dwIndexSize; UINT wChunkGranularity; BOOL fUsingDOSMemory; UINT wNumVideoRequested; BOOL fCaptureAudio; UINT wNumAudioRequested; UINT vKeyAbort; BOOL fAbortLeftMouse; BOOL fAbortRightMouse; BOOL fLimitEnabled; UINT wTimeLimit; BOOL fMCIControl; BOOL fStepMCIDevice; DWORD dwMCIStartTime; DWORD dwMCIStopTime; BOOL fStepCaptureAt2x; UINT wStepCaptureAverageFrames; DWORD dwAudioBufferSize; BOOL fDisableWriteCache; UINT AVStreamMaster; } alias CAPTUREPARMS* PCAPTUREPARMS, LPCAPTUREPARMS; const AVSTREAMMASTER_AUDIO = 0; const AVSTREAMMASTER_NONE = 1; struct CAPINFOCHUNK { FOURCC fccInfoID; LPVOID lpData; LONG cbData; } alias CAPINFOCHUNK* PCAPINFOCHUNK, LPCAPINFOCHUNK; // Callback Definitions extern (Windows) { alias LRESULT function(HWND hWnd) CAPYIELDCALLBACK; alias LRESULT function(HWND hWnd, int nID, LPCWSTR lpsz) CAPSTATUSCALLBACKW; alias LRESULT function(HWND hWnd, int nID, LPCWSTR lpsz) CAPERRORCALLBACKW; alias LRESULT function(HWND hWnd, int nID, LPCSTR lpsz) CAPSTATUSCALLBACKA; alias LRESULT function(HWND hWnd, int nID, LPCSTR lpsz) CAPERRORCALLBACKA; } version(Unicode) { alias CAPSTATUSCALLBACKW CAPSTATUSCALLBACK; alias CAPERRORCALLBACKW CAPERRORCALLBACK; } else { // Unicode alias CAPSTATUSCALLBACKA CAPSTATUSCALLBACK; alias CAPERRORCALLBACKA CAPERRORCALLBACK; } extern (Windows) { alias LRESULT function(HWND hWnd, LPVIDEOHDR lpVHdr) CAPVIDEOCALLBACK; alias LRESULT function(HWND hWnd, LPWAVEHDR lpWHdr) CAPWAVECALLBACK; alias LRESULT function(HWND hWnd, int nState) CAPCONTROLCALLBACK; } // CapControlCallback states const CONTROLCALLBACK_PREROLL = 1; const CONTROLCALLBACK_CAPTURING = 2; extern (Windows) { HWND capCreateCaptureWindowA(LPCSTR lpszWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hwndParent, int nID); BOOL capGetDriverDescriptionA(UINT wDriverIndex, LPSTR lpszName, int cbName, LPSTR lpszVer, int cbVer); HWND capCreateCaptureWindowW(LPCWSTR lpszWindowName, DWORD dwStyle, int x, int y, int nWidth, int nHeight, HWND hwndParent, int nID); BOOL capGetDriverDescriptionW(UINT wDriverIndex, LPWSTR lpszName, int cbName, LPWSTR lpszVer, int cbVer); } version(Unicode) { alias capCreateCaptureWindowW capCreateCaptureWindow; alias capGetDriverDescriptionW capGetDriverDescription; } else { // Unicode alias capCreateCaptureWindowA capCreateCaptureWindow; alias capGetDriverDescriptionA capGetDriverDescription; } // New Information chunk IDs const infotypeDIGITIZATION_TIME = mmioFOURCC!('I', 'D', 'I', 'T'); const infotypeSMPTE_TIME = mmioFOURCC!('I', 'S', 'M', 'P'); // status and error callbacks enum { IDS_CAP_BEGIN = 300, IDS_CAP_END = 301, IDS_CAP_INFO = 401, IDS_CAP_OUTOFMEM = 402, IDS_CAP_FILEEXISTS = 403, IDS_CAP_ERRORPALOPEN = 404, IDS_CAP_ERRORPALSAVE = 405, IDS_CAP_ERRORDIBSAVE = 406, IDS_CAP_DEFAVIEXT = 407, IDS_CAP_DEFPALEXT = 408, IDS_CAP_CANTOPEN = 409, IDS_CAP_SEQ_MSGSTART = 410, IDS_CAP_SEQ_MSGSTOP = 411, IDS_CAP_VIDEDITERR = 412, IDS_CAP_READONLYFILE = 413, IDS_CAP_WRITEERROR = 414, IDS_CAP_NODISKSPACE = 415, IDS_CAP_SETFILESIZE = 416, IDS_CAP_SAVEASPERCENT = 417, IDS_CAP_DRIVER_ERROR = 418, IDS_CAP_WAVE_OPEN_ERROR = 419, IDS_CAP_WAVE_ALLOC_ERROR = 420, IDS_CAP_WAVE_PREPARE_ERROR = 421, IDS_CAP_WAVE_ADD_ERROR = 422, IDS_CAP_WAVE_SIZE_ERROR = 423, IDS_CAP_VIDEO_OPEN_ERROR = 424, IDS_CAP_VIDEO_ALLOC_ERROR = 425, IDS_CAP_VIDEO_PREPARE_ERROR = 426, IDS_CAP_VIDEO_ADD_ERROR = 427, IDS_CAP_VIDEO_SIZE_ERROR = 428, IDS_CAP_FILE_OPEN_ERROR = 429, IDS_CAP_FILE_WRITE_ERROR = 430, IDS_CAP_RECORDING_ERROR = 431, IDS_CAP_RECORDING_ERROR2 = 432, IDS_CAP_AVI_INIT_ERROR = 433, IDS_CAP_NO_FRAME_CAP_ERROR = 434, IDS_CAP_NO_PALETTE_WARN = 435, IDS_CAP_MCI_CONTROL_ERROR = 436, IDS_CAP_MCI_CANT_STEP_ERROR = 437, IDS_CAP_NO_AUDIO_CAP_ERROR = 438, IDS_CAP_AVI_DRAWDIB_ERROR = 439, IDS_CAP_COMPRESSOR_ERROR = 440, IDS_CAP_AUDIO_DROP_ERROR = 441, IDS_CAP_AUDIO_DROP_COMPERROR = 442, IDS_CAP_STAT_LIVE_MODE = 500, IDS_CAP_STAT_OVERLAY_MODE = 501, IDS_CAP_STAT_CAP_INIT = 502, IDS_CAP_STAT_CAP_FINI = 503, IDS_CAP_STAT_PALETTE_BUILD = 504, IDS_CAP_STAT_OPTPAL_BUILD = 505, IDS_CAP_STAT_I_FRAMES = 506, IDS_CAP_STAT_L_FRAMES = 507, IDS_CAP_STAT_CAP_L_FRAMES = 508, IDS_CAP_STAT_CAP_AUDIO = 509, IDS_CAP_STAT_VIDEOCURRENT = 510, IDS_CAP_STAT_VIDEOAUDIO = 511, IDS_CAP_STAT_VIDEOONLY = 512, IDS_CAP_STAT_FRAMESDROPPED = 513, } /** * FilePreview dialog. */ extern (Windows) { BOOL GetOpenFileNamePreviewA(LPOPENFILENAMEA lpofn); BOOL GetSaveFileNamePreviewA(LPOPENFILENAMEA lpofn); BOOL GetOpenFileNamePreviewW(LPOPENFILENAMEW lpofn); BOOL GetSaveFileNamePreviewW(LPOPENFILENAMEW lpofn); } version(Unicode) { alias GetOpenFileNamePreviewW GetOpenFileNamePreview; alias GetSaveFileNamePreviewW GetSaveFileNamePreview; } else { // Unicode alias GetOpenFileNamePreviewA GetOpenFileNamePreview; alias GetSaveFileNamePreviewA GetSaveFileNamePreview; }
D
conclude a speech with a formal recapitulation deliver an oration in grandiloquent style
D
module sema.mutability; import std.conv; import std.stdio; import logger; import ast; import sema.visitor; import sema.analyzer : Semantic_Pass, log; import sema.symbol; import diag.engine; import sema.infer; import sema.type; import krug_module; import compiler_error; class Mutability_Pass : Top_Level_Node_Visitor, Semantic_Pass { void analyze_sym(ast.Symbol_Node sym) { logger.verbose("mut pass: anlayzing sym: ", to!string(sym)); } bool is_mutable(ast.Symbol_Node sym) { if (sym.resolved_symbol is null) { this.log(Log_Level.Error, sym.get_tok_info(), "unresolved symbol leaking " ~ to!string(sym)); return false; } auto rs = cast(Symbol_Value) sym.resolved_symbol; return rs.mutable; } bool is_mutable(ast.Expression_Node e) { if (auto path = cast(ast.Path_Expression_Node) e) { return is_mutable(path.values[$-1]); } else if (auto man = cast(ast.Module_Access_Node) e) { return is_mutable(man.right); } else if (auto sym = cast(ast.Symbol_Node) e) { return is_mutable(sym); } else if (auto idx = cast(ast.Index_Expression_Node) e) { return is_mutable(idx.array); } else if (auto unary = cast(ast.Unary_Expression_Node) e) { return is_mutable(unary.value); } else if (auto integer = cast(ast.Integer_Constant_Node) e) { // FIXME remove the tuple hack // so that we dont have to hard code // a yes its mutable here? return true; } this.log(Log_Level.Error, e.get_tok_info(), "is_mutable: unhandled expr " ~ to!string(typeid(e))); assert(0); } // a = b // this analyzes a binary expression i.e. // taking a and setting it to b. here we // check if a is mutable or not void analyze_mutation(ast.Binary_Expression_Node expr) { if (is_mutable(expr.left)) { return; } // its not mutable i cry Diagnostic_Engine.throw_error(IMMUTABLE_ASSIGN, expr.get_tok_info()); } void analyze_expr(ast.Expression_Node expr) { if (auto binary = cast(ast.Binary_Expression_Node) expr) { if (binary.operand.lexeme == "=") { analyze_mutation(binary); return; } analyze_expr(binary.left); analyze_expr(binary.right); } else if (auto call = cast(ast.Call_Node) expr) { // NOP } else if (auto paren = cast(ast.Paren_Expression_Node) expr) { analyze_expr(paren.value); } else if (auto sym = cast(ast.Symbol_Node) expr) { analyze_sym(sym); } else if (auto path = cast(ast.Path_Expression_Node) expr) { analyze_expr(path.values[$-1]); } else if (auto man = cast(ast.Module_Access_Node) expr) { analyze_expr(man.right); } else if (auto index = cast(ast.Index_Expression_Node) expr) { // TODO } else if (cast(ast.Unary_Expression_Node) expr) { // NOP? } else if (cast(ast.Rune_Constant_Node) expr) { // NOP } else if (cast(ast.Integer_Constant_Node) expr) { // NOP } else if (cast(ast.Boolean_Constant_Node) expr) { // NOP } else if (cast(ast.Float_Constant_Node) expr) { // NOP } else if (cast(ast.String_Constant_Node) expr) { // NOP } else if (cast(ast.Rune_Constant_Node) expr) { // NOP } else if (cast(ast.Cast_Expression_Node) expr) { } else if (auto lambda = cast(ast.Lambda_Node) expr) { } else { writeln("moaning about ", to!string(expr)); this.log(Log_Level.Error, expr.get_tok_info(), "unhandled expr " ~ to!string(typeid(expr))); } } override void analyze_named_type_node(ast.Named_Type_Node node) { } override void analyze_var_stat_node(ast.Variable_Statement_Node var) { if (var.value !is null) { analyze_expr(var.value); } } override void analyze_function_node(ast.Function_Node func) { if (func.func_body !is null) { visit_block(func.func_body); } } override void visit_stat(ast.Statement_Node stat) { if (auto var = cast(ast.Variable_Statement_Node) stat) { analyze_var_stat_node(var); } else if (auto match = cast(ast.Switch_Statement_Node) stat) { // TODO } else if (auto expr = cast(ast.Expression_Node) stat) { analyze_expr(expr); } else if (auto sd = cast(ast.Structure_Destructuring_Statement_Node) stat) { // TODO NOP? } else if (auto w = cast(ast.While_Statement_Node) stat) { visit_block(w.block); } else if (auto f = cast(ast.For_Statement_Node) stat) { // the for loop does an assignment in the // second expression, so we need to visit this and // make sure we aren't mutating any constants. analyze_expr(f.step); visit_block(f.block); } else if (auto l = cast(ast.Loop_Statement_Node) stat) { visit_block(l.block); } else if (cast(ast.Return_Statement_Node) stat) { // NOP } else if (cast(ast.Defer_Statement_Node) stat) { // NOP } else { this.log(Log_Level.Warning, stat.get_tok_info(), "unhandled statement " ~ to!string(typeid(stat))); } } override void execute(ref Module mod, string sub_mod_name, AST as_tree) { foreach (node; as_tree) { if (node !is null) { super.process_node(node); } } } override string toString() const { return "mutability-pass"; } }
D
the top line of a hill, mountain, or wave the top or extreme point of something (usually a mountain or hill the center of a cambered road (heraldry) in medieval times, an emblem used to decorate a helmet a showy growth of e.g. feathers or skin on the head of a bird or other animal lie at the top of reach a high point
D
func int C_NpcIsGateGuard(var C_Npc slf) { if(Npc_IsInState(slf,ZS_Guard_Passage)) { return TRUE; } else { return FALSE; }; };
D
/* Copyright (c) 2017-2018 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module dagon.logics.entity; import dlib.core.memory; import dlib.container.array; import dlib.math.vector; import dlib.math.matrix; import dlib.math.transformation; import dlib.math.quaternion; import dagon.core.libs; import dagon.core.interfaces; import dagon.core.ownership; import dagon.core.event; import dagon.logics.controller; import dagon.logics.behaviour; import dagon.graphics.material; import dagon.graphics.rc; Matrix4x4f rotationPart(Matrix4x4f m) { Matrix4x4f res = m; res.a14 = 0.0f; res.a24 = 0.0f; res.a34 = 0.0f; return m; } enum Attach { Parent, Camera } class Entity: Owner, Drawable { uint id; uint groupID = 0; struct BehaviourListEntry { Behaviour behaviour; bool valid; } DynamicArray!BehaviourListEntry behaviours; Drawable drawable; EventManager eventManager; Entity parent = null; DynamicArray!Entity children; Vector3f position; Quaternionf rotation; Vector3f scaling; Matrix4x4f transformation; Matrix4x4f invTransformation; Matrix4x4f absoluteTransformation; Matrix4x4f invAbsoluteTransformation; Matrix4x4f prevTransformation; Matrix4x4f prevAbsoluteTransformation; EntityController controller; DefaultEntityController defaultController; Material material; RenderingContext rcLocal; bool visible = true; bool castShadow = true; Attach attach = Attach.Parent; bool useMotionBlur = true; bool clearZbuffer = false; int layer = 1; bool solid = false; this(EventManager emngr, Owner owner) { super(owner); eventManager = emngr; transformation = Matrix4x4f.identity; invTransformation = Matrix4x4f.identity; position = Vector3f(0, 0, 0); rotation = Quaternionf.identity; scaling = Vector3f(1, 1, 1); defaultController = New!DefaultEntityController(this); controller = defaultController; absoluteTransformation = Matrix4x4f.identity; invAbsoluteTransformation = Matrix4x4f.identity; prevTransformation = Matrix4x4f.identity; prevAbsoluteTransformation = Matrix4x4f.identity; } this(Entity parent) { this(parent.eventManager, parent); parent.children.append(this); this.parent = parent; } this(Entity parent, Owner owner) { this(parent.eventManager, owner); parent.children.append(this); this.parent = parent; } void release() { behaviours.free(); children.free(); } ~this() { release(); } Vector3f absolutePosition() { if (parent) return position * parent.transformation; else return position; } Behaviour addBehaviour(Behaviour b) { behaviours.append(BehaviourListEntry(b, true)); return b; } void removeBehaviour(Behaviour b) { foreach(i, ble; behaviours) { if (ble.behaviour is b) behaviours[i].valid = false; } } bool hasBehaviour(T)() { return this.behaviour!T() !is null; } T behaviour(T)() { T result = null; foreach(i, ble; behaviours) { T b = cast(T)ble.behaviour; if (b) { result = b; break; } } return result; } void processEvents() { foreach(i, ble; behaviours) { if (ble.valid) { ble.behaviour.processEvents(); } } foreach(child; children) { child.processEvents(); } } void updateTransformation() { prevTransformation = transformation; if (controller) controller.update(0.0); if (parent) { absoluteTransformation = parent.absoluteTransformation * transformation; prevAbsoluteTransformation = parent.prevAbsoluteTransformation * prevTransformation; } else { absoluteTransformation = transformation; prevAbsoluteTransformation = prevTransformation; } } void update(double dt) { updateTransformation(); foreach(i, ble; behaviours) { if (ble.valid) { ble.behaviour.update(dt); } } foreach(child; children) { child.update(dt); } if (drawable) drawable.update(dt); } void render(RenderingContext* rc) { render(rc, false); } void render(RenderingContext* rc, bool renderChildren) { if (!visible) return; bool transparent = false; bool ignore = false; if (material) { if (material.isTransparent || material.usesCustomShader) { ignore = rc.ignoreTransparentEntities; transparent = true; } else ignore = rc.ignoreOpaqueEntities; } if (!ignore) foreach(i, ble; behaviours) { if (ble.valid) ble.behaviour.bind(); } rcLocal = *rc; if (!ignore) { rcLocal.layer = layer; if (attach == Attach.Camera) { rcLocal.modelMatrix = translationMatrix(rcLocal.cameraPosition) * transformation; rcLocal.invModelMatrix = invTransformation * translationMatrix(-rcLocal.cameraPosition); if (useMotionBlur) rcLocal.prevModelViewProjMatrix = rcLocal.projectionMatrix * (rcLocal.prevViewMatrix * (translationMatrix(rcLocal.prevCameraPosition) * prevTransformation)); else rcLocal.prevModelViewProjMatrix = rcLocal.projectionMatrix * (rcLocal.viewMatrix * (translationMatrix(rcLocal.cameraPosition) * transformation)); } else { rcLocal.modelMatrix = absoluteTransformation; rcLocal.invModelMatrix = invAbsoluteTransformation; if (useMotionBlur) rcLocal.prevModelViewProjMatrix = rcLocal.projectionMatrix * (rcLocal.prevViewMatrix * prevAbsoluteTransformation); else rcLocal.prevModelViewProjMatrix = rcLocal.projectionMatrix * (rcLocal.viewMatrix * absoluteTransformation); } rcLocal.modelViewMatrix = rcLocal.viewMatrix * rcLocal.modelMatrix; rcLocal.normalMatrix = rcLocal.modelViewMatrix.inverse.transposed; rcLocal.blurModelViewProjMatrix = rcLocal.projectionMatrix * rcLocal.modelViewMatrix; if (useMotionBlur) rcLocal.blurMask = 1.0f; else rcLocal.blurMask = 0.0f; } bool shouldUseOverrideMat = true; if (transparent) shouldUseOverrideMat = !rcLocal.shadowPass; if (!ignore) { if (rcLocal.overrideMaterial && shouldUseOverrideMat) rcLocal.overrideMaterial.bind(&rcLocal); else if (material) material.bind(&rcLocal); if (clearZbuffer) glClear(GL_DEPTH_BUFFER_BIT); } if (drawable) { Entity drawableEntity = cast(Entity)drawable; if (drawableEntity) { auto absTrans = drawableEntity.absoluteTransformation; auto invAbsTrans = drawableEntity.invAbsoluteTransformation; auto prevAbsTrans = drawableEntity.prevAbsoluteTransformation; drawableEntity.absoluteTransformation = absoluteTransformation; drawableEntity.invAbsoluteTransformation = invAbsoluteTransformation; drawableEntity.prevAbsoluteTransformation = prevAbsoluteTransformation; foreach(child; drawableEntity.children) { child.updateTransformation(); } drawableEntity.render(&rcLocal, true); drawableEntity.absoluteTransformation = absTrans; drawableEntity.invAbsoluteTransformation = invAbsTrans; drawableEntity.prevAbsoluteTransformation = prevAbsTrans; } else if (!ignore) { drawable.render(&rcLocal); } } if (!ignore) { if (rcLocal.overrideMaterial && shouldUseOverrideMat) rcLocal.overrideMaterial.unbind(&rcLocal); else if (material) material.unbind(&rcLocal); } if (!ignore) foreach(i, ble; behaviours) { if (ble.valid) ble.behaviour.render(&rcLocal); } if (renderChildren) foreach(child; children) { child.render(&rcLocal); } if (!ignore) foreach_reverse(i, ble; behaviours.data) { if (ble.valid) ble.behaviour.unbind(); } } } unittest { EventManager emngr = null; class B1 : Behaviour { this(Entity e) {super(e);} } class B2 : Behaviour { this(Entity e) {super(e);} } auto e = New!Entity(emngr, null); New!B1(e); assert(e.hasBehaviour!B1()); New!B2(e); assert(e.hasBehaviour!B2()); auto b1 = e.behaviour!B1(); assert(b1); auto b2 = e.behaviour!B2(); assert(b2); // sets `valid` to false, but does not delete the behaviour e.removeBehaviour(b1); // ... so hasBehaviour reports true assert(e.hasBehaviour!B1()); }
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.build/Schema/SchemaCreator.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/MigrateCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/RevertCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Decode.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Range.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/SoftDeletable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Aggregate.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Transaction/TransactionSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationLog.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/AnyModel.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Children.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/QueryBuilder+Join.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Run.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/FluentProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaUpdater.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Filter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/FluentError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaCreator.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/DatabasesConfig+References.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Siblings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Operators.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Parent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/CommandConfig+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/KeyedCacheSupporting+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Database/DatabaseConnection+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ModelEvent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Pivot.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Sort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Copy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/CacheEntry.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/FluentProperty.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.build/Schema/SchemaCreator~partial.swiftmodule : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/MigrateCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/RevertCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Decode.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Range.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/SoftDeletable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Aggregate.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Transaction/TransactionSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationLog.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/AnyModel.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Children.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/QueryBuilder+Join.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Run.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/FluentProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaUpdater.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Filter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/FluentError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaCreator.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/DatabasesConfig+References.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Siblings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Operators.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Parent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/CommandConfig+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/KeyedCacheSupporting+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Database/DatabaseConnection+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ModelEvent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Pivot.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Sort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Copy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/CacheEntry.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/FluentProperty.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.build/Schema/SchemaCreator~partial.swiftdoc : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+CRUD.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/MigrateCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/RevertCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Decode.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Range.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/SoftDeletable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Aggregate.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Transaction/TransactionSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/MigrationLog.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Model.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/AnyModel.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Children.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Join/QueryBuilder+Join.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaSupporting+Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigration.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Run.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/FluentProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaUpdater.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Filter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/FluentError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/SchemaCreator.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Schema/DatabasesConfig+References.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Siblings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/Migrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Migration/AnyMigrations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Operators.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Relations/Parent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Service/CommandConfig+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/KeyedCacheSupporting+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Database/DatabaseConnection+Fluent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/ModelEvent.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Model/Pivot.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Sort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/QueryBuilder/QueryBuilder+Copy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Cache/CacheEntry.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/Fluent/Query/FluentProperty.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/** * Semantic analysis for cast-expressions. * * Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/dcast.d, _dcast.d) * Documentation: https://dlang.org/phobos/dmd_dcast.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/dcast.d */ module dmd.dcast; import core.stdc.stdio; import core.stdc.string; import dmd.aggregate; import dmd.aliasthis; import dmd.arrayop; import dmd.arraytypes; import dmd.astenums; import dmd.dclass; import dmd.declaration; import dmd.dscope; import dmd.dstruct; import dmd.dsymbol; import dmd.escape; import dmd.expression; import dmd.expressionsem; import dmd.func; import dmd.globals; import dmd.hdrgen; import dmd.location; import dmd.impcnvtab; import dmd.importc; import dmd.init; import dmd.intrange; import dmd.mtype; import dmd.opover; import dmd.root.ctfloat; import dmd.common.outbuffer; import dmd.root.rmem; import dmd.root.utf; import dmd.tokens; import dmd.typesem; enum LOG = false; /** * Attempt to implicitly cast the expression into type `t`. * * This routine will change `e`. To check the matching level, * use `implicitConvTo`. * * Params: * e = Expression that is to be casted * sc = Current scope * t = Expected resulting type * * Returns: * The resulting casted expression (mutating `e`), or `ErrorExp` * if such an implicit conversion is not possible. */ Expression implicitCastTo(Expression e, Scope* sc, Type t) { Expression visit(Expression e) { // printf("Expression.implicitCastTo(%s of type %s) => %s\n", e.toChars(), e.type.toChars(), t.toChars()); if (const match = (sc && sc.flags & SCOPE.Cfile) ? e.cimplicitConvTo(t) : e.implicitConvTo(t)) { // no need for an extra cast when matching is exact if (match == MATCH.convert && e.type.isTypeNoreturn()) { return specialNoreturnCast(e, t); } if (match == MATCH.constant && (e.type.constConv(t) || !e.isLvalue() && e.type.equivalent(t))) { /* Do not emit CastExp for const conversions and * unique conversions on rvalue. */ auto result = e.copy(); result.type = t; return result; } auto ad = isAggregate(e.type); if (ad && ad.aliasthis) { if (!ad.type || ad.type.isTypeError()) return e; auto ts = ad.type.isTypeStruct(); const adMatch = ts ? ts.implicitConvToWithoutAliasThis(t) : ad.type.isTypeClass().implicitConvToWithoutAliasThis(t); if (!adMatch) { Type tob = t.toBasetype(); Type t1b = e.type.toBasetype(); if (ad != isAggregate(tob)) { if (t1b.ty == Tclass && tob.ty == Tclass) { ClassDeclaration t1cd = t1b.isClassHandle(); ClassDeclaration tocd = tob.isClassHandle(); int offset; if (tocd.isBaseOf(t1cd, &offset)) { auto result = new CastExp(e.loc, e, t); result.type = t; return result; } } /* Forward the cast to our alias this member, rewrite to: * cast(to)e1.aliasthis */ auto result = resolveAliasThis(sc, e); return result.castTo(sc, t); } } } return e.castTo(sc, t); } auto result = e.optimize(WANTvalue); if (result != e) { return implicitCastTo(result, sc, t); } if (t.ty != Terror && e.type.ty != Terror) { if (!t.deco) { e.error("forward reference to type `%s`", t.toChars()); } else { //printf("type %p ty %d deco %p\n", type, type.ty, type.deco); //type = type.typeSemantic(loc, sc); //printf("type %s t %s\n", type.deco, t.deco); auto ts = toAutoQualChars(e.type, t); e.error("cannot implicitly convert expression `%s` of type `%s` to `%s`", e.toChars(), ts[0], ts[1]); } } return ErrorExp.get(); } Expression visitString(StringExp e) { //printf("StringExp::implicitCastTo(%s of type %s) => %s\n", e.toChars(), e.type.toChars(), t.toChars()); auto result = visit(e); if (auto se = result.isStringExp()) { // Retain polysemous nature if it started out that way se.committed = e.committed; } return result; } Expression visitError(ErrorExp e) { return e; } Expression visitFunc(FuncExp e) { //printf("FuncExp::implicitCastTo type = %p %s, t = %s\n", e.type, e.type ? e.type.toChars() : NULL, t.toChars()); FuncExp fe; if (e.matchType(t, sc, &fe) > MATCH.nomatch) { return fe; } return visit(e); } Expression visitArrayLiteral(ArrayLiteralExp e) { auto result = visit(e); Type tb = result.type.toBasetype(); if (auto ta = tb.isTypeDArray()) if (global.params.useTypeInfo && Type.dtypeinfo) semanticTypeInfo(sc, ta.next); return result; } Expression visitSlice(SliceExp e) { auto result = visit(e); if (auto se = result.isSliceExp()) if (auto ale = se.e1.isArrayLiteralExp()) { Type tb = t.toBasetype(); Type tx = (tb.ty == Tsarray) ? tb.nextOf().sarrayOf(ale.elements ? ale.elements.length : 0) : tb.nextOf().arrayOf(); se.e1 = ale.implicitCastTo(sc, tx); } return result; } switch (e.op) { default : return visit (e); case EXP.string_ : return visitString (e.isStringExp()); case EXP.error : return visitError (e.isErrorExp()); case EXP.function_ : return visitFunc (e.isFuncExp()); case EXP.arrayLiteral: return visitArrayLiteral(e.isArrayLiteralExp()); case EXP.slice : return visitSlice (e.isSliceExp()); } } /** * Checks whether or not an expression can be implicitly converted * to type `t`. * * Unlike `implicitCastTo`, this routine does not perform the actual cast, * but only checks up to what `MATCH` level the conversion would be possible. * * Params: * e = Expression that is to be casted * t = Expected resulting type * * Returns: * The `MATCH` level between `e.type` and `t`. */ MATCH implicitConvTo(Expression e, Type t) { MATCH visit(Expression e) { version (none) { printf("Expression::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } //static int nest; if (++nest == 10) assert(0); if (t == Type.terror) return MATCH.nomatch; if (!e.type) { e.error("`%s` is not an expression", e.toChars()); e.type = Type.terror; } Expression ex = e.optimize(WANTvalue); if (ex.type.equals(t)) { return MATCH.exact; } if (ex != e) { //printf("\toptimized to %s of type %s\n", e.toChars(), e.type.toChars()); return ex.implicitConvTo(t); } MATCH match = e.type.implicitConvTo(t); if (match != MATCH.nomatch) { return match; } /* See if we can do integral narrowing conversions */ if (e.type.isintegral() && t.isintegral() && e.type.isTypeBasic() && t.isTypeBasic()) { IntRange src = getIntRange(e); IntRange target = IntRange.fromType(t); if (target.contains(src)) { return MATCH.convert; } } return MATCH.nomatch; } /****** * Given expression e of type t, see if we can implicitly convert e * to type tprime, where tprime is type t with mod bits added. * Returns: * match level */ static MATCH implicitMod(Expression e, Type t, MOD mod) { Type tprime; if (t.ty == Tpointer) tprime = t.nextOf().castMod(mod).pointerTo(); else if (t.ty == Tarray) tprime = t.nextOf().castMod(mod).arrayOf(); else if (t.ty == Tsarray) tprime = t.nextOf().castMod(mod).sarrayOf(t.size() / t.nextOf().size()); else tprime = t.castMod(mod); return e.implicitConvTo(tprime); } static MATCH implicitConvToAddMin(BinExp e, Type t) { /* Is this (ptr +- offset)? If so, then ask ptr * if the conversion can be done. * This is to support doing things like implicitly converting a mutable unique * pointer to an immutable pointer. */ Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (typeb.ty != Tpointer || tb.ty != Tpointer) return MATCH.nomatch; Type t1b = e.e1.type.toBasetype(); Type t2b = e.e2.type.toBasetype(); if (t1b.ty == Tpointer && t2b.isintegral() && t1b.equivalent(tb)) { // ptr + offset // ptr - offset MATCH m = e.e1.implicitConvTo(t); return (m > MATCH.constant) ? MATCH.constant : m; } if (t2b.ty == Tpointer && t1b.isintegral() && t2b.equivalent(tb)) { // offset + ptr MATCH m = e.e2.implicitConvTo(t); return (m > MATCH.constant) ? MATCH.constant : m; } return MATCH.nomatch; } // Apply mod bits to each function parameter, // and see if we can convert the function argument to the modded type static bool parametersModMatch(Expressions* args, TypeFunction tf, MOD mod) { const size_t nparams = tf.parameterList.length; const size_t j = tf.isDstyleVariadic(); // if TypeInfoArray was prepended foreach (const i; j .. args.length) { Expression earg = (*args)[i]; Type targ = earg.type.toBasetype(); static if (LOG) { printf("[%d] earg: %s, targ: %s\n", cast(int)i, earg.toChars(), targ.toChars()); } if (i - j < nparams) { Parameter fparam = tf.parameterList[i - j]; if (fparam.isLazy()) return false; // not sure what to do with this Type tparam = fparam.type; if (!tparam) continue; if (fparam.isReference()) { if (targ.constConv(tparam.castMod(mod)) == MATCH.nomatch) return false; continue; } } static if (LOG) { printf("[%d] earg: %s, targm: %s\n", cast(int)i, earg.toChars(), targ.addMod(mod).toChars()); } if (implicitMod(earg, targ, mod) == MATCH.nomatch) return false; } return true; } MATCH visitAdd(AddExp e) { version (none) { printf("AddExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = visit(e); if (result == MATCH.nomatch) result = implicitConvToAddMin(e, t); return result; } MATCH visitMin(MinExp e) { version (none) { printf("MinExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = visit(e); if (result == MATCH.nomatch) result = implicitConvToAddMin(e, t); return result; } MATCH visitInteger(IntegerExp e) { version (none) { printf("IntegerExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } MATCH m = e.type.implicitConvTo(t); if (m >= MATCH.constant) { return m; } TY ty = e.type.toBasetype().ty; TY toty = t.toBasetype().ty; TY oldty = ty; if (m == MATCH.nomatch && t.ty == Tenum) return MATCH.nomatch; if (auto tv = t.isTypeVector()) { TypeBasic tb = tv.elementType(); if (tb.ty == Tvoid) return MATCH.nomatch; toty = tb.ty; } switch (ty) { case Tbool: case Tint8: case Tchar: case Tuns8: case Tint16: case Tuns16: case Twchar: ty = Tint32; break; case Tdchar: ty = Tuns32; break; default: break; } // Only allow conversion if no change in value immutable dinteger_t value = e.toInteger(); bool isLosslesslyConvertibleToFP(T)() { if (e.type.isunsigned()) { const f = cast(T) value; return cast(dinteger_t) f == value; } const f = cast(T) cast(sinteger_t) value; return cast(sinteger_t) f == cast(sinteger_t) value; } switch (toty) { case Tbool: if ((value & 1) != value) return MATCH.nomatch; break; case Tint8: if (ty == Tuns64 && value & ~0x7FU) return MATCH.nomatch; else if (cast(byte)value != value) return MATCH.nomatch; break; case Tchar: if ((oldty == Twchar || oldty == Tdchar) && value > 0x7F) return MATCH.nomatch; goto case Tuns8; case Tuns8: //printf("value = %llu %llu\n", cast(dinteger_t)cast(ubyte)value, value); if (cast(ubyte)value != value) return MATCH.nomatch; break; case Tint16: if (ty == Tuns64 && value & ~0x7FFFU) return MATCH.nomatch; else if (cast(short)value != value) return MATCH.nomatch; break; case Twchar: if (oldty == Tdchar && value > 0xD7FF && value < 0xE000) return MATCH.nomatch; goto case Tuns16; case Tuns16: if (cast(ushort)value != value) return MATCH.nomatch; break; case Tint32: if (ty == Tuns32) { } else if (ty == Tuns64 && value & ~0x7FFFFFFFU) return MATCH.nomatch; else if (cast(int)value != value) return MATCH.nomatch; break; case Tuns32: if (ty == Tint32) { } else if (cast(uint)value != value) return MATCH.nomatch; break; case Tdchar: if (value > 0x10FFFFU) return MATCH.nomatch; break; case Tfloat32: if (!isLosslesslyConvertibleToFP!float) return MATCH.nomatch; break; case Tfloat64: if (!isLosslesslyConvertibleToFP!double) return MATCH.nomatch; break; case Tfloat80: if (!isLosslesslyConvertibleToFP!real_t) return MATCH.nomatch; break; case Tpointer: //printf("type = %s\n", type.toBasetype().toChars()); //printf("t = %s\n", t.toBasetype().toChars()); if (ty == Tpointer && e.type.toBasetype().nextOf().ty == t.toBasetype().nextOf().ty) { /* Allow things like: * const char* P = cast(char *)3; * char* q = P; */ break; } goto default; default: return visit(e); } //printf("MATCH.convert\n"); return MATCH.convert; } MATCH visitError(ErrorExp e) { return MATCH.nomatch; } MATCH visitNull(NullExp e) { version (none) { printf("NullExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } if (e.type.equals(t)) { return MATCH.exact; } /* Allow implicit conversions from immutable to mutable|const, * and mutable to immutable. It works because, after all, a null * doesn't actually point to anything. */ if (t.equivalent(e.type)) { return MATCH.constant; } return visit(e); } MATCH visitStructLiteral(StructLiteralExp e) { version (none) { printf("StructLiteralExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = visit(e); if (result != MATCH.nomatch) return result; if (e.type.ty == t.ty && e.type.isTypeStruct() && e.type.isTypeStruct().sym == t.isTypeStruct().sym) { result = MATCH.constant; foreach (i, el; (*e.elements)[]) { if (!el) continue; Type te = e.sd.fields[i].type.addMod(t.mod); MATCH m2 = el.implicitConvTo(te); //printf("\t%s => %s, match = %d\n", el.toChars(), te.toChars(), m2); if (m2 < result) result = m2; } } return result; } MATCH visitString(StringExp e) { version (none) { printf("StringExp::implicitConvTo(this=%s, committed=%d, type=%s, t=%s)\n", e.toChars(), e.committed, e.type.toChars(), t.toChars()); } if (!e.committed && t.ty == Tpointer && t.nextOf().ty == Tvoid) return MATCH.nomatch; if (!(e.type.ty == Tsarray || e.type.ty == Tarray || e.type.ty == Tpointer)) return visit(e); TY tyn = e.type.nextOf().ty; if (!tyn.isSomeChar) return visit(e); switch (t.ty) { case Tsarray: if (e.type.ty == Tsarray) { TY tynto = t.nextOf().ty; if (tynto == tyn) { if (e.type.isTypeSArray().dim.toInteger() == t.isTypeSArray().dim.toInteger()) { return MATCH.exact; } return MATCH.nomatch; } if (tynto.isSomeChar) { if (e.committed && tynto != tyn) return MATCH.nomatch; size_t fromlen = e.numberOfCodeUnits(tynto); size_t tolen = cast(size_t)t.isTypeSArray().dim.toInteger(); if (tolen < fromlen) return MATCH.nomatch; if (tolen != fromlen) { // implicit length extending return MATCH.convert; } } if (!e.committed && tynto.isSomeChar) { return MATCH.exact; } } else if (e.type.ty == Tarray) { TY tynto = t.nextOf().ty; if (tynto.isSomeChar) { if (e.committed && tynto != tyn) return MATCH.nomatch; size_t fromlen = e.numberOfCodeUnits(tynto); size_t tolen = cast(size_t)t.isTypeSArray().dim.toInteger(); if (tolen < fromlen) return MATCH.nomatch; if (tolen != fromlen) { // implicit length extending return MATCH.convert; } } if (tynto == tyn) { return MATCH.exact; } if (!e.committed && tynto.isSomeChar) { return MATCH.exact; } } goto case; /+ fall through +/ case Tarray: case Tpointer: Type tn = t.nextOf(); MATCH m = MATCH.exact; if (e.type.nextOf().mod != tn.mod) { // https://issues.dlang.org/show_bug.cgi?id=16183 if (!tn.isConst() && !tn.isImmutable()) return MATCH.nomatch; m = MATCH.constant; } if (!e.committed) { switch (tn.ty) { case Tchar: if (e.postfix == 'w' || e.postfix == 'd') m = MATCH.convert; return m; case Twchar: if (e.postfix != 'w') m = MATCH.convert; return m; case Tdchar: if (e.postfix != 'd') m = MATCH.convert; return m; case Tenum: if (tn.isTypeEnum().sym.isSpecial()) { /* Allow string literal -> const(wchar_t)[] */ if (TypeBasic tob = tn.toBasetype().isTypeBasic()) return tn.implicitConvTo(tob); } break; default: break; } } break; default: break; } return visit(e); } MATCH visitArrayLiteral(ArrayLiteralExp e) { version (none) { printf("ArrayLiteralExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); auto result = MATCH.nomatch; if ((tb.ty == Tarray || tb.ty == Tsarray) && (typeb.ty == Tarray || typeb.ty == Tsarray)) { result = MATCH.exact; Type typen = typeb.nextOf().toBasetype(); if (auto tsa = tb.isTypeSArray()) { if (e.elements.length != tsa.dim.toInteger()) result = MATCH.nomatch; } Type telement = tb.nextOf(); if (!e.elements.length) { if (typen.ty != Tvoid) result = typen.implicitConvTo(telement); } else { if (e.basis) { MATCH m = e.basis.implicitConvTo(telement); if (m < result) result = m; } for (size_t i = 0; i < e.elements.length; i++) { Expression el = (*e.elements)[i]; if (result == MATCH.nomatch) break; if (!el) continue; MATCH m = el.implicitConvTo(telement); if (m < result) result = m; // remember worst match } } if (!result) result = e.type.implicitConvTo(t); return result; } else if (tb.ty == Tvector && (typeb.ty == Tarray || typeb.ty == Tsarray)) { result = MATCH.exact; // Convert array literal to vector type TypeVector tv = tb.isTypeVector(); TypeSArray tbase = tv.basetype.isTypeSArray(); assert(tbase); const edim = e.elements.length; const tbasedim = tbase.dim.toInteger(); if (edim > tbasedim) { return MATCH.nomatch; } Type telement = tv.elementType(); if (edim < tbasedim) { Expression el = typeb.nextOf.defaultInitLiteral(e.loc); MATCH m = el.implicitConvTo(telement); if (m < result) result = m; // remember worst match } foreach (el; (*e.elements)[]) { MATCH m = el.implicitConvTo(telement); if (m < result) result = m; // remember worst match if (result == MATCH.nomatch) break; // no need to check for worse } return result; } return visit(e); } MATCH visitAssocArrayLiteral(AssocArrayLiteralExp e) { auto taa = t.toBasetype().isTypeAArray(); Type typeb = e.type.toBasetype(); if (!(taa && typeb.ty == Taarray)) return visit(e); auto result = MATCH.exact; foreach (i, el; (*e.keys)[]) { MATCH m = el.implicitConvTo(taa.index); if (m < result) result = m; // remember worst match if (result == MATCH.nomatch) break; // no need to check for worse el = (*e.values)[i]; m = el.implicitConvTo(taa.nextOf()); if (m < result) result = m; // remember worst match if (result == MATCH.nomatch) break; // no need to check for worse } return result; } MATCH visitCall(CallExp e) { enum LOG = false; static if (LOG) { printf("CallExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = visit(e); if (result != MATCH.nomatch) return result; /* Allow the result of strongly pure functions to * convert to immutable */ if (e.f && (!global.params.fixImmutableConv || e.f.isPure() >= PURE.const_) && e.f.isReturnIsolated() // check isReturnIsolated last, because it is potentially expensive. ) { result = e.type.immutableOf().implicitConvTo(t); if (result > MATCH.constant) // Match level is MATCH.constant at best. result = MATCH.constant; return result; } /* Conversion is 'const' conversion if: * 1. function is pure (weakly pure is ok) * 2. implicit conversion only fails because of mod bits * 3. each function parameter can be implicitly converted to the mod bits */ auto tf = (e.f ? e.f.type : e.e1.type).toBasetype().isTypeFunction(); if (!tf) return result; if (tf.purity == PURE.impure) return result; if (e.f && e.f.isNested()) return result; /* See if fail only because of mod bits. * * https://issues.dlang.org/show_bug.cgi?id=14155 * All pure functions can access global immutable data. * So the returned pointer may refer an immutable global data, * and then the returned pointer that points non-mutable object * cannot be unique pointer. * * Example: * immutable g; * static this() { g = 1; } * const(int*) foo() pure { return &g; } * void test() { * immutable(int*) ip = foo(); // OK * int* mp = foo(); // should be disallowed * } */ if (e.type.immutableOf().implicitConvTo(t) < MATCH.constant && e.type.addMod(MODFlags.shared_).implicitConvTo(t) < MATCH.constant && e.type.implicitConvTo(t.addMod(MODFlags.shared_)) < MATCH.constant) { return result; } // Allow a conversion to immutable type, or // conversions of mutable types between thread-local and shared. /* Get mod bits of what we're converting to */ Type tb = t.toBasetype(); MOD mod = tb.mod; if (tf.isref) { } else { if (Type ti = getIndirection(t)) mod = ti.mod; } static if (LOG) { printf("mod = x%x\n", mod); } if (mod & MODFlags.wild) return result; // not sure what to do with this /* Apply mod bits to each function parameter, * and see if we can convert the function argument to the modded type */ if (auto dve = e.e1.isDotVarExp()) { /* Treat 'this' as just another function argument */ Type targ = dve.e1.type; if (targ.constConv(targ.castMod(mod)) == MATCH.nomatch) return result; } if (!parametersModMatch(e.arguments, tf, mod)) return result; /* Success */ return MATCH.constant; } MATCH visitAddr(AddrExp e) { version (none) { printf("AddrExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = e.type.implicitConvTo(t); //printf("\tresult = %d\n", result); if (result != MATCH.nomatch) return result; Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); // Look for pointers to functions where the functions are overloaded. if (e.e1.op == EXP.overloadSet && (tb.ty == Tpointer || tb.ty == Tdelegate) && tb.nextOf().ty == Tfunction) { OverExp eo = e.e1.isOverExp(); FuncDeclaration f = null; foreach (s; eo.vars.a[]) { FuncDeclaration f2 = s.isFuncDeclaration(); assert(f2); if (f2.overloadExactMatch(tb.nextOf())) { if (f) { /* Error if match in more than one overload set, * even if one is a 'better' match than the other. */ ScopeDsymbol.multiplyDefined(e.loc, f, f2); } else f = f2; result = MATCH.exact; } } } if (e.e1.op == EXP.variable && typeb.ty == Tpointer && typeb.nextOf().ty == Tfunction && tb.ty == Tpointer && tb.nextOf().ty == Tfunction) { /* I don't think this can ever happen - * it should have been * converted to a SymOffExp. */ assert(0); } //printf("\tresult = %d\n", result); return result; } MATCH visitSymOff(SymOffExp e) { version (none) { printf("SymOffExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = e.type.implicitConvTo(t); //printf("\tresult = %d\n", result); if (result != MATCH.nomatch) return result; Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); // Look for pointers to functions where the functions are overloaded. if (typeb.ty == Tpointer && typeb.nextOf().ty == Tfunction && (tb.ty == Tpointer || tb.ty == Tdelegate) && tb.nextOf().ty == Tfunction) { if (FuncDeclaration f = e.var.isFuncDeclaration()) { f = f.overloadExactMatch(tb.nextOf()); if (f) { if ((tb.ty == Tdelegate && (f.needThis() || f.isNested())) || (tb.ty == Tpointer && !(f.needThis() || f.isNested()))) { result = MATCH.exact; } } } } //printf("\tresult = %d\n", result); return result; } MATCH visitDelegate(DelegateExp e) { version (none) { printf("DelegateExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = e.type.implicitConvTo(t); if (result != MATCH.nomatch) return result; Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); // Look for pointers to functions where the functions are overloaded. if (typeb.ty == Tdelegate && tb.ty == Tdelegate) { if (e.func && e.func.overloadExactMatch(tb.nextOf())) result = MATCH.exact; } return result; } MATCH visitFunc(FuncExp e) { //printf("FuncExp::implicitConvTo type = %p %s, t = %s\n", e.type, e.type ? e.type.toChars() : NULL, t.toChars()); MATCH m = e.matchType(t, null, null, 1); if (m > MATCH.nomatch) { return m; } return visit(e); } MATCH visitAnd(AndExp e) { auto result = visit(e); if (result != MATCH.nomatch) return result; MATCH m1 = e.e1.implicitConvTo(t); MATCH m2 = e.e2.implicitConvTo(t); // Pick the worst match return (m1 < m2) ? m1 : m2; } MATCH visitOr(OrExp e) { auto result = visit(e); if (result != MATCH.nomatch) return result; MATCH m1 = e.e1.implicitConvTo(t); MATCH m2 = e.e2.implicitConvTo(t); // Pick the worst match return (m1 < m2) ? m1 : m2; } MATCH visitXor(XorExp e) { auto result = visit(e); if (result != MATCH.nomatch) return result; MATCH m1 = e.e1.implicitConvTo(t); MATCH m2 = e.e2.implicitConvTo(t); // Pick the worst match return (m1 < m2) ? m1 : m2; } MATCH visitCond(CondExp e) { e.econd = e.econd.optimize(WANTvalue); const opt = e.econd.toBool(); if (opt.isPresent()) { auto result = visit(e); if (result != MATCH.nomatch) return result; } MATCH m1 = e.e1.implicitConvTo(t); MATCH m2 = e.e2.implicitConvTo(t); //printf("CondExp: m1 %d m2 %d\n", m1, m2); // Pick the worst match return (m1 < m2) ? m1 : m2; } MATCH visitComma(CommaExp e) { return e.e2.implicitConvTo(t); } MATCH visitCast(CastExp e) { version (none) { printf("CastExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = e.type.implicitConvTo(t); if (result != MATCH.nomatch) return result; if (t.isintegral() && e.e1.type.isintegral() && e.e1.implicitConvTo(t) != MATCH.nomatch) result = MATCH.convert; else result = visit(e); return result; } MATCH visitNew(NewExp e) { version (none) { printf("NewExp::implicitConvTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } auto result = visit(e); if (result != MATCH.nomatch) return result; /* Calling new() is like calling a pure function. We can implicitly convert the * return from new() to t using the same algorithm as in CallExp, with the function * 'arguments' being: * thisexp * arguments * .init * 'member' need to be pure. */ /* See if fail only because of mod bits */ if (e.type.immutableOf().implicitConvTo(t.immutableOf()) == MATCH.nomatch) return MATCH.nomatch; /* Get mod bits of what we're converting to */ Type tb = t.toBasetype(); MOD mod = tb.mod; if (Type ti = getIndirection(t)) mod = ti.mod; static if (LOG) { printf("mod = x%x\n", mod); } if (mod & MODFlags.wild) return MATCH.nomatch; // not sure what to do with this /* Apply mod bits to each argument, * and see if we can convert the argument to the modded type */ if (e.thisexp) { /* Treat 'this' as just another function argument */ Type targ = e.thisexp.type; if (targ.constConv(targ.castMod(mod)) == MATCH.nomatch) return MATCH.nomatch; } /* Check call to 'member' */ if (e.member) { FuncDeclaration fd = e.member; if (fd.errors || fd.type.ty != Tfunction) return MATCH.nomatch; // error TypeFunction tf = fd.type.isTypeFunction(); if (tf.purity == PURE.impure) return MATCH.nomatch; // impure // Allow a conversion to immutable type, or // conversions of mutable types between thread-local and shared. if (e.type.immutableOf().implicitConvTo(t) < MATCH.constant && e.type.addMod(MODFlags.shared_).implicitConvTo(t) < MATCH.constant && e.type.implicitConvTo(t.addMod(MODFlags.shared_)) < MATCH.constant) { return MATCH.nomatch; } if (!parametersModMatch(e.arguments, tf, mod)) { return MATCH.nomatch; } } /* If no 'member', then construction is by simple assignment, * and just straight check 'arguments' */ if (!e.member && e.arguments) { for (size_t i = 0; i < e.arguments.length; ++i) { Expression earg = (*e.arguments)[i]; if (!earg) // https://issues.dlang.org/show_bug.cgi?id=14853 // if it's on overlapped field continue; Type targ = earg.type.toBasetype(); static if (LOG) { printf("[%d] earg: %s, targ: %s\n", cast(int)i, earg.toChars(), targ.toChars()); printf("[%d] earg: %s, targm: %s\n", cast(int)i, earg.toChars(), targ.addMod(mod).toChars()); } if (implicitMod(earg, targ, mod) == MATCH.nomatch) return MATCH.nomatch; } } /* Consider the .init expression as an argument */ Type ntb = e.newtype.toBasetype(); if (ntb.ty == Tarray) ntb = ntb.nextOf().toBasetype(); if (auto ts = ntb.isTypeStruct()) { // Don't allow nested structs - uplevel reference may not be convertible StructDeclaration sd = ts.sym; sd.size(e.loc); // resolve any forward references if (sd.isNested()) return MATCH.nomatch; } if (ntb.isZeroInit(e.loc)) { /* Zeros are implicitly convertible, except for special cases. */ if (auto tc = ntb.isTypeClass()) { /* With new() must look at the class instance initializer. */ ClassDeclaration cd = tc.sym; cd.size(e.loc); // resolve any forward references if (cd.isNested()) return MATCH.nomatch; // uplevel reference may not be convertible assert(!cd.isInterfaceDeclaration()); struct ClassCheck { extern (C++) static bool convertible(Expression e, ClassDeclaration cd, MOD mod) { for (size_t i = 0; i < cd.fields.length; i++) { VarDeclaration v = cd.fields[i]; Initializer _init = v._init; if (_init) { if (_init.isVoidInitializer()) { } else if (ExpInitializer ei = _init.isExpInitializer()) { // https://issues.dlang.org/show_bug.cgi?id=21319 // This is to prevent re-analyzing the same expression // over and over again. if (ei.exp == e) return false; Type tb = v.type.toBasetype(); if (implicitMod(ei.exp, tb, mod) == MATCH.nomatch) return false; } else { /* Enhancement: handle StructInitializer and ArrayInitializer */ return false; } } else if (!v.type.isZeroInit(e.loc)) return false; } return cd.baseClass ? convertible(e, cd.baseClass, mod) : true; } } if (!ClassCheck.convertible(e, cd, mod)) return MATCH.nomatch; } } else { Expression earg = e.newtype.defaultInitLiteral(e.loc); Type targ = e.newtype.toBasetype(); if (implicitMod(earg, targ, mod) == MATCH.nomatch) return MATCH.nomatch; } /* Success */ return MATCH.constant; } MATCH visitSlice(SliceExp e) { //printf("SliceExp::implicitConvTo e = %s, type = %s\n", e.toChars(), e.type.toChars()); auto result = visit(e); if (result != MATCH.nomatch) return result; Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.ty == Tsarray && typeb.ty == Tarray) { typeb = toStaticArrayType(e); if (typeb) { // Try: T[] -> T[dim] // (Slice with compile-time known boundaries to static array) result = typeb.implicitConvTo(t); if (result > MATCH.convert) result = MATCH.convert; // match with implicit conversion at most } return result; } /* If the only reason it won't convert is because of the mod bits, * then test for conversion by seeing if e1 can be converted with those * same mod bits. */ Type t1b = e.e1.type.toBasetype(); if (tb.ty == Tarray && typeb.equivalent(tb)) { Type tbn = tb.nextOf(); Type tx = null; /* If e.e1 is dynamic array or pointer, the uniqueness of e.e1 * is equivalent with the uniqueness of the referred data. And in here * we can have arbitrary typed reference for that. */ if (t1b.ty == Tarray) tx = tbn.arrayOf(); if (t1b.ty == Tpointer) tx = tbn.pointerTo(); /* If e.e1 is static array, at least it should be an rvalue. * If not, e.e1 is a reference, and its uniqueness does not link * to the uniqueness of the referred data. */ if (t1b.ty == Tsarray && !e.e1.isLvalue()) tx = tbn.sarrayOf(t1b.size() / tbn.size()); if (tx) { result = e.e1.implicitConvTo(tx); if (result > MATCH.constant) // Match level is MATCH.constant at best. result = MATCH.constant; } } // Enhancement 10724 if (tb.ty == Tpointer && e.e1.op == EXP.string_) result = e.e1.implicitConvTo(t); return result; } MATCH visitTuple(TupleExp e) { auto result = e.type.implicitConvTo(t); if (result != MATCH.nomatch) return result; /* If target type is a tuple of same length, test conversion of * each expression to the corresponding type in the tuple. */ TypeTuple totuple = t.isTypeTuple(); if (totuple && e.exps.length == totuple.arguments.length) { result = MATCH.exact; foreach (i, ex; *e.exps) { auto to = (*totuple.arguments)[i].type; MATCH mi = ex.implicitConvTo(to); if (mi < result) result = mi; } } return result; } switch (e.op) { default : return visit(e); case EXP.add : return visitAdd(e.isAddExp()); case EXP.min : return visitMin(e.isMinExp()); case EXP.int64 : return visitInteger(e.isIntegerExp()); case EXP.error : return visitError(e.isErrorExp()); case EXP.null_ : return visitNull(e.isNullExp()); case EXP.structLiteral : return visitStructLiteral(e.isStructLiteralExp()); case EXP.string_ : return visitString(e.isStringExp()); case EXP.arrayLiteral : return visitArrayLiteral(e.isArrayLiteralExp()); case EXP.assocArrayLiteral: return visitAssocArrayLiteral(e.isAssocArrayLiteralExp()); case EXP.call : return visitCall(e.isCallExp()); case EXP.address : return visitAddr(e.isAddrExp()); case EXP.symbolOffset : return visitSymOff(e.isSymOffExp()); case EXP.delegate_ : return visitDelegate(e.isDelegateExp()); case EXP.function_ : return visitFunc(e.isFuncExp()); case EXP.and : return visitAnd(e.isAndExp()); case EXP.or : return visitOr(e.isOrExp()); case EXP.xor : return visitXor(e.isXorExp()); case EXP.question : return visitCond(e.isCondExp()); case EXP.comma : return visitComma(e.isCommaExp()); case EXP.cast_ : return visitCast(e.isCastExp()); case EXP.new_ : return visitNew(e.isNewExp()); case EXP.slice : return visitSlice(e.isSliceExp()); case EXP.tuple : return visitTuple(e.isTupleExp()); } } /** * Same as implicitConvTo(); except follow C11 rules, which are quite a bit * more permissive than D. * C11 6.3 and 6.5.16.1 * Params: * e = Expression that is to be casted * t = Expected resulting type * Returns: * The `MATCH` level between `e.type` and `t`. */ MATCH cimplicitConvTo(Expression e, Type t) { Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.equals(typeb)) return MATCH.exact; if ((typeb.isintegral() || typeb.isfloating()) && (tb.isintegral() || tb.isfloating())) return MATCH.convert; if (tb.ty == Tpointer && typeb.isintegral()) // C11 6.3.2.3-5 return MATCH.convert; if (tb.isintegral() && typeb.ty == Tpointer) // C11 6.3.2.3-6 return MATCH.convert; if (tb.ty == Tpointer && typeb.ty == Tpointer) // C11 6.3.2.3-7 return MATCH.convert; return implicitConvTo(e, t); } /***************************************** */ Type toStaticArrayType(SliceExp e) { if (e.lwr && e.upr) { // For the following code to work, e should be optimized beforehand. // (eg. $ in lwr and upr should be already resolved, if possible) Expression lwr = e.lwr.optimize(WANTvalue); Expression upr = e.upr.optimize(WANTvalue); if (lwr.isConst() && upr.isConst()) { size_t len = cast(size_t)(upr.toUInteger() - lwr.toUInteger()); return e.type.toBasetype().nextOf().sarrayOf(len); } } else { Type t1b = e.e1.type.toBasetype(); if (t1b.ty == Tsarray) return t1b; } return null; } /************************************** * Do an explicit cast. * Assume that the expression `e` does not have any indirections. * (Parameter 'att' is used to stop 'alias this' recursion) */ Expression castTo(Expression e, Scope* sc, Type t, Type att = null) { //printf("castTo(e: %s from: %s to: %s\n", e.toChars(), e.type.toChars(), t.toChars()); Expression visit(Expression e) { //printf("Expression::castTo(this=%s, t=%s)\n", e.toChars(), t.toChars()); version (none) { printf("Expression::castTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } if (e.type.equals(t)) { return e; } if (e.type.isTypeNoreturn()) { return specialNoreturnCast(e, t); } if (auto ve = e.isVarExp()) { VarDeclaration v = ve.var.isVarDeclaration(); if (v && v.storage_class & STC.manifest) { auto result = e.ctfeInterpret(); /* https://issues.dlang.org/show_bug.cgi?id=18236 * * The expression returned by ctfeInterpret points * to the line where the manifest constant was declared * so we need to update the location before trying to cast */ result.loc = e.loc; return result.castTo(sc, t); } } Type tob = t.toBasetype(); Type t1b = e.type.toBasetype(); if (tob.equals(t1b)) { auto result = e.copy(); // because of COW for assignment to e.type result.type = t; return result; } /* Make semantic error against invalid cast between concrete types. * Assume that 'e' is never be any placeholder expressions. * The result of these checks should be consistent with CastExp::toElem(). */ // Fat Value types const(bool) tob_isFV = (tob.ty == Tstruct || tob.ty == Tsarray || tob.ty == Tvector); const(bool) t1b_isFV = (t1b.ty == Tstruct || t1b.ty == Tsarray || t1b.ty == Tvector); // Fat Reference types const(bool) tob_isFR = (tob.ty == Tarray || tob.ty == Tdelegate); const(bool) t1b_isFR = (t1b.ty == Tarray || t1b.ty == Tdelegate); // Reference types const(bool) tob_isR = (tob_isFR || tob.ty == Tpointer || tob.ty == Taarray || tob.ty == Tclass); const(bool) t1b_isR = (t1b_isFR || t1b.ty == Tpointer || t1b.ty == Taarray || t1b.ty == Tclass); // Arithmetic types (== valueable basic types) const(bool) tob_isA = ((tob.isintegral() || tob.isfloating()) && tob.ty != Tvector); const(bool) t1b_isA = ((t1b.isintegral() || t1b.isfloating()) && t1b.ty != Tvector); // Try casting the alias this member. // Return the expression if it succeeds, null otherwise. Expression tryAliasThisCast() { if (isRecursiveAliasThis(att, t1b)) return null; /* Forward the cast to our alias this member, rewrite to: * cast(to)e1.aliasthis */ auto exp = resolveAliasThis(sc, e); const errors = global.startGagging(); exp = castTo(exp, sc, t, att); return global.endGagging(errors) ? null : exp; } bool hasAliasThis; if (AggregateDeclaration t1ad = isAggregate(t1b)) { AggregateDeclaration toad = isAggregate(tob); if (t1ad != toad && t1ad.aliasthis) { if (t1b.ty == Tclass && tob.ty == Tclass) { ClassDeclaration t1cd = t1b.isClassHandle(); ClassDeclaration tocd = tob.isClassHandle(); int offset; if (tocd.isBaseOf(t1cd, &offset)) goto Lok; } hasAliasThis = true; } } else if (tob.ty == Tvector && t1b.ty != Tvector) { //printf("test1 e = %s, e.type = %s, tob = %s\n", e.toChars(), e.type.toChars(), tob.toChars()); TypeVector tv = tob.isTypeVector(); Expression result = new CastExp(e.loc, e, tv.elementType()); result = new VectorExp(e.loc, result, tob); result = result.expressionSemantic(sc); return result; } else if (tob.ty != Tvector && t1b.ty == Tvector) { // T[n] <-- __vector(U[m]) if (tob.ty == Tsarray) { if (t1b.size(e.loc) == tob.size(e.loc)) goto Lok; } goto Lfail; } else if (t1b.implicitConvTo(tob) == MATCH.constant && t.equals(e.type.constOf())) { auto result = e.copy(); result.type = t; return result; } // arithmetic values vs. other arithmetic values // arithmetic values vs. T* if (tob_isA && (t1b_isA || t1b.ty == Tpointer) || t1b_isA && (tob_isA || tob.ty == Tpointer)) { goto Lok; } // arithmetic values vs. references or fat values if (tob_isA && (t1b_isR || t1b_isFV) || t1b_isA && (tob_isR || tob_isFV)) { goto Lfail; } // Bugzlla 3133: A cast between fat values is possible only when the sizes match. if (tob_isFV && t1b_isFV) { if (hasAliasThis) { auto result = tryAliasThisCast(); if (result) return result; } if (t1b.size(e.loc) == tob.size(e.loc)) goto Lok; auto ts = toAutoQualChars(e.type, t); e.error("cannot cast expression `%s` of type `%s` to `%s` because of different sizes", e.toChars(), ts[0], ts[1]); return ErrorExp.get(); } // Fat values vs. null or references if (tob_isFV && (t1b.ty == Tnull || t1b_isR) || t1b_isFV && (tob.ty == Tnull || tob_isR)) { if (tob.ty == Tpointer && t1b.ty == Tsarray) { // T[n] sa; // cast(U*)sa; // ==> cast(U*)sa.ptr; return new AddrExp(e.loc, e, t); } if (tob.ty == Tarray && t1b.ty == Tsarray) { // T[n] sa; // cast(U[])sa; // ==> cast(U[])sa[]; const fsize = t1b.nextOf().size(); const tsize = tob.nextOf().size(); if (fsize == SIZE_INVALID || tsize == SIZE_INVALID) { return ErrorExp.get(); } if (fsize != tsize) { const dim = t1b.isTypeSArray().dim.toInteger(); if (tsize == 0 || (dim * fsize) % tsize != 0) { e.error("cannot cast expression `%s` of type `%s` to `%s` since sizes don't line up", e.toChars(), e.type.toChars(), t.toChars()); return ErrorExp.get(); } } goto Lok; } goto Lfail; } /* For references, any reinterpret casts are allowed to same 'ty' type. * T* to U* * R1 function(P1) to R2 function(P2) * R1 delegate(P1) to R2 delegate(P2) * T[] to U[] * V1[K1] to V2[K2] * class/interface A to B (will be a dynamic cast if possible) */ if (tob.ty == t1b.ty && tob_isR && t1b_isR) goto Lok; // typeof(null) <-- non-null references or values if (tob.ty == Tnull && t1b.ty != Tnull) goto Lfail; // https://issues.dlang.org/show_bug.cgi?id=14629 // typeof(null) --> non-null references or arithmetic values if (t1b.ty == Tnull && tob.ty != Tnull) goto Lok; // Check size mismatch of references. // Tarray and Tdelegate are (void*).sizeof*2, but others have (void*).sizeof. if (tob_isFR && t1b_isR || t1b_isFR && tob_isR) { if (tob.ty == Tpointer && t1b.ty == Tarray) { // T[] da; // cast(U*)da; // ==> cast(U*)da.ptr; goto Lok; } if (tob.ty == Tpointer && t1b.ty == Tdelegate) { // void delegate() dg; // cast(U*)dg; // ==> cast(U*)dg.ptr; // Note that it happens even when U is a Tfunction! e.deprecation("casting from %s to %s is deprecated", e.type.toChars(), t.toChars()); goto Lok; } goto Lfail; } if (t1b.ty == Tvoid && tob.ty != Tvoid) { Lfail: /* if the cast cannot be performed, maybe there is an alias * this that can be used for casting. */ if (hasAliasThis) { auto result = tryAliasThisCast(); if (result) return result; } e.error("cannot cast expression `%s` of type `%s` to `%s`", e.toChars(), e.type.toChars(), t.toChars()); return ErrorExp.get(); } Lok: auto result = new CastExp(e.loc, e, t); result.type = t; // Don't call semantic() //printf("Returning: %s\n", result.toChars()); return result; } Expression visitError(ErrorExp e) { return e; } Expression visitReal(RealExp e) { if (!e.type.equals(t)) { if ((e.type.isreal() && t.isreal()) || (e.type.isimaginary() && t.isimaginary())) { auto result = e.copy(); result.type = t; return result; } else return visit(e); } return e; } Expression visitComplex(ComplexExp e) { if (!e.type.equals(t)) { if (e.type.iscomplex() && t.iscomplex()) { auto result = e.copy(); result.type = t; return result; } else return visit(e); } return e; } Expression visitStructLiteral(StructLiteralExp e) { auto result = visit(e); if (auto sle = result.isStructLiteralExp()) sle.stype = t; // commit type return result; } Expression visitString(StringExp e) { /* This follows copy-on-write; any changes to 'this' * will result in a copy. * The this.string member is considered immutable. */ int copied = 0; //printf("StringExp::castTo(t = %s), '%s' committed = %d\n", t.toChars(), e.toChars(), e.committed); if (!e.committed && t.ty == Tpointer && t.nextOf().ty == Tvoid && (!sc || !(sc.flags & SCOPE.Cfile))) { e.error("cannot convert string literal to `void*`"); return ErrorExp.get(); } StringExp se = e; Expression lcast() { auto result = new CastExp(e.loc, se, t); result.type = t; // so semantic() won't be run on e return result; } if (!e.committed) { se = e.copy().isStringExp(); se.committed = true; copied = 1; } if (e.type.equals(t)) { return se; } Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); //printf("\ttype = %s\n", e.type.toChars()); if (tb.ty == Tdelegate && typeb.ty != Tdelegate) { return visit(e); } if (typeb.equals(tb)) { if (!copied) { se = e.copy().isStringExp(); copied = 1; } se.type = t; return se; } /* Handle reinterpret casts: * cast(wchar[3])"abcd"c --> [\u6261, \u6463, \u0000] * cast(wchar[2])"abcd"c --> [\u6261, \u6463] * cast(wchar[1])"abcd"c --> [\u6261] * cast(char[4])"a" --> ['a', 0, 0, 0] */ if (e.committed && tb.ty == Tsarray && typeb.ty == Tarray) { se = e.copy().isStringExp(); uinteger_t szx = tb.nextOf().size(); assert(szx <= 255); se.sz = cast(ubyte)szx; se.len = cast(size_t)tb.isTypeSArray().dim.toInteger(); se.committed = true; se.type = t; /* If larger than source, pad with zeros. */ const fullSize = (se.len + 1) * se.sz; // incl. terminating 0 if (fullSize > (e.len + 1) * e.sz) { void* s = mem.xmalloc(fullSize); const srcSize = e.len * e.sz; const data = se.peekData(); memcpy(s, data.ptr, srcSize); memset(s + srcSize, 0, fullSize - srcSize); se.setData(s, se.len, se.sz); } return se; } if (tb.ty != Tsarray && tb.ty != Tarray && tb.ty != Tpointer) { if (!copied) { se = e.copy().isStringExp(); copied = 1; } return lcast(); } if (typeb.ty != Tsarray && typeb.ty != Tarray && typeb.ty != Tpointer) { if (!copied) { se = e.copy().isStringExp(); copied = 1; } return lcast(); } const nextSz = typeb.nextOf().size(); if (nextSz == SIZE_INVALID) { return ErrorExp.get(); } if (nextSz == tb.nextOf().size()) { if (!copied) { se = e.copy().isStringExp(); copied = 1; } if (tb.ty == Tsarray) goto L2; // handle possible change in static array dimension se.type = t; return se; } if (e.committed) goto Lcast; auto X(T, U)(T tf, U tt) { return (cast(int)tf * 256 + cast(int)tt); } { OutBuffer buffer; size_t newlen = 0; int tfty = typeb.nextOf().toBasetype().ty; int ttty = tb.nextOf().toBasetype().ty; switch (X(tfty, ttty)) { case X(Tchar, Tchar): case X(Twchar, Twchar): case X(Tdchar, Tdchar): break; case X(Tchar, Twchar): for (size_t u = 0; u < e.len;) { dchar c; if (const s = utf_decodeChar(se.peekString(), u, c)) e.error("%.*s", cast(int)s.length, s.ptr); else buffer.writeUTF16(c); } newlen = buffer.length / 2; buffer.writeUTF16(0); goto L1; case X(Tchar, Tdchar): for (size_t u = 0; u < e.len;) { dchar c; if (const s = utf_decodeChar(se.peekString(), u, c)) e.error("%.*s", cast(int)s.length, s.ptr); buffer.write4(c); newlen++; } buffer.write4(0); goto L1; case X(Twchar, Tchar): for (size_t u = 0; u < e.len;) { dchar c; if (const s = utf_decodeWchar(se.peekWstring(), u, c)) e.error("%.*s", cast(int)s.length, s.ptr); else buffer.writeUTF8(c); } newlen = buffer.length; buffer.writeUTF8(0); goto L1; case X(Twchar, Tdchar): for (size_t u = 0; u < e.len;) { dchar c; if (const s = utf_decodeWchar(se.peekWstring(), u, c)) e.error("%.*s", cast(int)s.length, s.ptr); buffer.write4(c); newlen++; } buffer.write4(0); goto L1; case X(Tdchar, Tchar): for (size_t u = 0; u < e.len; u++) { uint c = se.peekDstring()[u]; if (!utf_isValidDchar(c)) e.error("invalid UCS-32 char \\U%08x", c); else buffer.writeUTF8(c); newlen++; } newlen = buffer.length; buffer.writeUTF8(0); goto L1; case X(Tdchar, Twchar): for (size_t u = 0; u < e.len; u++) { uint c = se.peekDstring()[u]; if (!utf_isValidDchar(c)) e.error("invalid UCS-32 char \\U%08x", c); else buffer.writeUTF16(c); newlen++; } newlen = buffer.length / 2; buffer.writeUTF16(0); goto L1; L1: if (!copied) { se = e.copy().isStringExp(); copied = 1; } { uinteger_t szx = tb.nextOf().size(); assert(szx <= 255); se.setData(buffer.extractSlice().ptr, newlen, cast(ubyte)szx); } break; default: assert(typeb.nextOf().size() != tb.nextOf().size()); goto Lcast; } } L2: assert(copied); // See if need to truncate or extend the literal if (auto tsa = tb.isTypeSArray()) { size_t dim2 = cast(size_t)tsa.dim.toInteger(); //printf("dim from = %d, to = %d\n", cast(int)se.len, cast(int)dim2); // Changing dimensions if (dim2 != se.len) { // Copy when changing the string literal const newsz = se.sz; const d = (dim2 < se.len) ? dim2 : se.len; void* s = mem.xmalloc((dim2 + 1) * newsz); memcpy(s, se.peekData().ptr, d * newsz); // Extend with 0, add terminating 0 memset(s + d * newsz, 0, (dim2 + 1 - d) * newsz); se.setData(s, dim2, newsz); } } se.type = t; return se; Lcast: auto result = new CastExp(e.loc, se, t); result.type = t; // so semantic() won't be run on e return result; } Expression visitAddr(AddrExp e) { version (none) { printf("AddrExp::castTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.equals(typeb)) { auto result = e.copy(); result.type = t; return result; } // Look for pointers to functions where the functions are overloaded. if (e.e1.isOverExp() && (tb.ty == Tpointer || tb.ty == Tdelegate) && tb.nextOf().ty == Tfunction) { OverExp eo = e.e1.isOverExp(); FuncDeclaration f = null; for (size_t i = 0; i < eo.vars.a.length; i++) { auto s = eo.vars.a[i]; auto f2 = s.isFuncDeclaration(); assert(f2); if (f2.overloadExactMatch(tb.nextOf())) { if (f) { /* Error if match in more than one overload set, * even if one is a 'better' match than the other. */ ScopeDsymbol.multiplyDefined(e.loc, f, f2); } else f = f2; } } if (f) { f.tookAddressOf++; auto se = new SymOffExp(e.loc, f, 0, false); auto se2 = se.expressionSemantic(sc); // Let SymOffExp::castTo() do the heavy lifting return visit(se2); } } if (e.e1.isVarExp() && typeb.ty == Tpointer && typeb.nextOf().ty == Tfunction && tb.ty == Tpointer && tb.nextOf().ty == Tfunction) { auto ve = e.e1.isVarExp(); auto f = ve.var.isFuncDeclaration(); if (f) { assert(f.isImportedSymbol()); f = f.overloadExactMatch(tb.nextOf()); if (f) { Expression result = new VarExp(e.loc, f, false); result.type = f.type; result = new AddrExp(e.loc, result, t); return result; } } } if (auto f = isFuncAddress(e)) { if (f.checkForwardRef(e.loc)) { return ErrorExp.get(); } } return visit(e); } Expression visitTuple(TupleExp e) { if (e.type.equals(t)) { return e; } /* If target type is a tuple of same length, cast each expression to * the corresponding type in the tuple. */ TypeTuple totuple; if (auto tt = t.isTypeTuple()) totuple = e.exps.length == tt.arguments.length ? tt : null; TupleExp te = e.copy().isTupleExp(); te.e0 = e.e0 ? e.e0.copy() : null; te.exps = e.exps.copy(); for (size_t i = 0; i < te.exps.length; i++) { Expression ex = (*te.exps)[i]; ex = ex.castTo(sc, totuple ? (*totuple.arguments)[i].type : t); (*te.exps)[i] = ex; } if (totuple) te.type = totuple; return te; /* Questionable behavior: In here, result.type is not set to t * if target type is not a tuple of same length. * Therefoe: * TypeTuple!(int, int) values; * auto values2 = cast(long)values; * // typeof(values2) == TypeTuple!(int, int) !! * * Only when the casted tuple is immediately expanded, it would work. * auto arr = [cast(long)values]; * // typeof(arr) == long[] */ } Expression visitArrayLiteral(ArrayLiteralExp e) { version (none) { printf("ArrayLiteralExp::castTo(this=%s, type=%s, => %s)\n", e.toChars(), e.type.toChars(), t.toChars()); } ArrayLiteralExp ae = e; Type tb = t.toBasetype(); if (tb.ty == Tarray) { if (checkArrayLiteralEscape(sc, ae, false)) { return ErrorExp.get(); } } if (e.type == t) { return e; } Type typeb = e.type.toBasetype(); if ((tb.ty == Tarray || tb.ty == Tsarray) && (typeb.ty == Tarray || typeb.ty == Tsarray)) { if (tb.nextOf().toBasetype().ty == Tvoid && typeb.nextOf().toBasetype().ty != Tvoid) { // Don't do anything to cast non-void[] to void[] } else if (typeb.ty == Tsarray && typeb.nextOf().toBasetype().ty == Tvoid) { // Don't do anything for casting void[n] to others } else { if (auto tsa = tb.isTypeSArray()) { if (e.elements.length != tsa.dim.toInteger()) goto L1; } ae = e.copy().isArrayLiteralExp(); if (e.basis) ae.basis = e.basis.castTo(sc, tb.nextOf()); ae.elements = e.elements.copy(); for (size_t i = 0; i < e.elements.length; i++) { Expression ex = (*e.elements)[i]; if (!ex) continue; ex = ex.castTo(sc, tb.nextOf()); (*ae.elements)[i] = ex; } ae.type = t; return ae; } } else if (tb.ty == Tpointer && typeb.ty == Tsarray) { Type tp = typeb.nextOf().pointerTo(); if (!tp.equals(ae.type)) { ae = e.copy().isArrayLiteralExp(); ae.type = tp; } } else if (tb.ty == Tvector && (typeb.ty == Tarray || typeb.ty == Tsarray)) { // Convert array literal to vector type TypeVector tv = tb.isTypeVector(); TypeSArray tbase = tv.basetype.isTypeSArray(); assert(tbase.ty == Tsarray); const edim = e.elements.length; const tbasedim = tbase.dim.toInteger(); if (edim > tbasedim) goto L1; ae = e.copy().isArrayLiteralExp(); ae.type = tbase; // https://issues.dlang.org/show_bug.cgi?id=12642 ae.elements = e.elements.copy(); Type telement = tv.elementType(); foreach (i; 0 .. edim) { Expression ex = (*e.elements)[i]; ex = ex.castTo(sc, telement); (*ae.elements)[i] = ex; } // Fill in the rest with the default initializer ae.elements.setDim(cast(size_t)tbasedim); foreach (i; edim .. cast(size_t)tbasedim) { Expression ex = typeb.nextOf.defaultInitLiteral(e.loc); ex = ex.castTo(sc, telement); (*ae.elements)[i] = ex; } Expression ev = new VectorExp(e.loc, ae, tb); ev = ev.expressionSemantic(sc); return ev; } L1: return visit(ae); } Expression visitAssocArrayLiteral(AssocArrayLiteralExp e) { //printf("AssocArrayLiteralExp::castTo(this=%s, type=%s, => %s)\n", e.toChars(), e.type.toChars(), t.toChars()); if (e.type == t) { return e; } Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.ty == Taarray && typeb.ty == Taarray && tb.nextOf().toBasetype().ty != Tvoid) { AssocArrayLiteralExp ae = e.copy().isAssocArrayLiteralExp(); ae.keys = e.keys.copy(); ae.values = e.values.copy(); assert(e.keys.length == e.values.length); for (size_t i = 0; i < e.keys.length; i++) { Expression ex = (*e.values)[i]; ex = ex.castTo(sc, tb.nextOf()); (*ae.values)[i] = ex; ex = (*e.keys)[i]; ex = ex.castTo(sc, tb.isTypeAArray().index); (*ae.keys)[i] = ex; } ae.type = t; return ae; } return visit(e); } Expression visitSymOff(SymOffExp e) { version (none) { printf("SymOffExp::castTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } if (e.type == t && !e.hasOverloads) { return e; } Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.equals(typeb)) { auto result = e.copy(); result.type = t; result.isSymOffExp().hasOverloads = false; return result; } // Look for pointers to functions where the functions are overloaded. if (e.hasOverloads && typeb.ty == Tpointer && typeb.nextOf().ty == Tfunction && (tb.ty == Tpointer || tb.ty == Tdelegate) && tb.nextOf().ty == Tfunction) { FuncDeclaration f = e.var.isFuncDeclaration(); f = f ? f.overloadExactMatch(tb.nextOf()) : null; if (f) { Expression result; if (tb.ty == Tdelegate) { if (f.needThis() && hasThis(sc)) { result = new DelegateExp(e.loc, new ThisExp(e.loc), f, false); result = result.expressionSemantic(sc); } else if (f.needThis()) { e.error("no `this` to create delegate for `%s`", f.toChars()); return ErrorExp.get(); } else if (f.isNested()) { result = new DelegateExp(e.loc, IntegerExp.literal!0, f, false); result = result.expressionSemantic(sc); } else { e.error("cannot cast from function pointer to delegate"); return ErrorExp.get(); } } else { result = new SymOffExp(e.loc, f, 0, false); result.type = t; } f.tookAddressOf++; return result; } } if (auto f = isFuncAddress(e)) { if (f.checkForwardRef(e.loc)) { return ErrorExp.get(); } } return visit(e); } Expression visitDelegate(DelegateExp e) { version (none) { printf("DelegateExp::castTo(this=%s, type=%s, t=%s)\n", e.toChars(), e.type.toChars(), t.toChars()); } static immutable msg = "cannot form delegate due to covariant return type"; Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (tb.equals(typeb) && !e.hasOverloads) { int offset; e.func.tookAddressOf++; if (e.func.tintro && e.func.tintro.nextOf().isBaseOf(e.func.type.nextOf(), &offset) && offset) e.error("%s", msg.ptr); auto result = e.copy(); result.type = t; return result; } // Look for delegates to functions where the functions are overloaded. if (typeb.ty == Tdelegate && tb.ty == Tdelegate) { if (e.func) { auto f = e.func.overloadExactMatch(tb.nextOf()); if (f) { int offset; if (f.tintro && f.tintro.nextOf().isBaseOf(f.type.nextOf(), &offset) && offset) e.error("%s", msg.ptr); if (f != e.func) // if address not already marked as taken f.tookAddressOf++; auto result = new DelegateExp(e.loc, e.e1, f, false, e.vthis2); result.type = t; return result; } if (e.func.tintro) e.error("%s", msg.ptr); } } if (auto f = isFuncAddress(e)) { if (f.checkForwardRef(e.loc)) { return ErrorExp.get(); } } return visit(e); } Expression visitFunc(FuncExp e) { //printf("FuncExp::castTo type = %s, t = %s\n", e.type.toChars(), t.toChars()); FuncExp fe; if (e.matchType(t, sc, &fe, 1) > MATCH.nomatch) { return fe; } return visit(e); } Expression visitCond(CondExp e) { if (!e.type.equals(t)) { auto result = new CondExp(e.loc, e.econd, e.e1.castTo(sc, t), e.e2.castTo(sc, t)); result.type = t; return result; } return e; } Expression visitComma(CommaExp e) { Expression e2c = e.e2.castTo(sc, t); if (e2c != e.e2) { auto result = new CommaExp(e.loc, e.e1, e2c); result.type = e2c.type; return result; } else { e.type = e.e2.type; return e; } } Expression visitSlice(SliceExp e) { //printf("SliceExp::castTo e = %s, type = %s, t = %s\n", e.toChars(), e.type.toChars(), t.toChars()); Type tb = t.toBasetype(); Type typeb = e.type.toBasetype(); if (e.type.equals(t) || typeb.ty != Tarray || (tb.ty != Tarray && tb.ty != Tsarray)) { return visit(e); } if (tb.ty == Tarray) { if (typeb.nextOf().equivalent(tb.nextOf())) { // T[] to const(T)[] auto result = e.copy(); result.type = t; return result; } else { return visit(e); } } // Handle the cast from Tarray to Tsarray with CT-known slicing TypeSArray tsa; { Type t = toStaticArrayType(e); tsa = t ? t.isTypeSArray() : null; } if (tsa && tsa.size(e.loc) == tb.size(e.loc)) { /* Match if the sarray sizes are equal: * T[a .. b] to const(T)[b-a] * T[a .. b] to U[dim] if (T.sizeof*(b-a) == U.sizeof*dim) * * If a SliceExp has Tsarray, it will become lvalue. * That's handled in SliceExp::isLvalue and toLvalue */ auto result = e.copy(); result.type = t; return result; } if (tsa && tsa.dim.equals(tb.isTypeSArray().dim)) { /* Match if the dimensions are equal * with the implicit conversion of e.e1: * cast(float[2]) [2.0, 1.0, 0.0][0..2]; */ Type t1b = e.e1.type.toBasetype(); if (t1b.ty == Tsarray) t1b = tb.nextOf().sarrayOf(t1b.isTypeSArray().dim.toInteger()); else if (t1b.ty == Tarray) t1b = tb.nextOf().arrayOf(); else if (t1b.ty == Tpointer) t1b = tb.nextOf().pointerTo(); else assert(0); if (e.e1.implicitConvTo(t1b) > MATCH.nomatch) { Expression e1x = e.e1.implicitCastTo(sc, t1b); assert(e1x.op != EXP.error); e = e.copy().isSliceExp(); e.e1 = e1x; e.type = t; return e; } } auto ts = toAutoQualChars(tsa ? tsa : e.type, t); e.error("cannot cast expression `%s` of type `%s` to `%s`", e.toChars(), ts[0], ts[1]); return ErrorExp.get(); } // Casting to noreturn isn't an actual cast // Rewrite cast(<qual> noreturn) <exp> // as <exp>, assert(false) if (t.isTypeNoreturn()) { // Don't generate an unreachable assert(false) if e will abort if (e.type.isTypeNoreturn()) { // Paint e to accomodate for different type qualifiers e.type = t; return e; } auto ini = t.defaultInitLiteral(e.loc); return Expression.combine(e, ini); } switch (e.op) { default : return visit(e); case EXP.error : return visitError(e.isErrorExp()); case EXP.float64 : return visitReal(e.isRealExp()); case EXP.complex80 : return visitComplex(e.isComplexExp()); case EXP.structLiteral : return visitStructLiteral(e.isStructLiteralExp()); case EXP.string_ : return visitString(e.isStringExp()); case EXP.address : return visitAddr(e.isAddrExp()); case EXP.tuple : return visitTuple(e.isTupleExp()); case EXP.arrayLiteral : return visitArrayLiteral(e.isArrayLiteralExp()); case EXP.assocArrayLiteral: return visitAssocArrayLiteral(e.isAssocArrayLiteralExp()); case EXP.symbolOffset : return visitSymOff(e.isSymOffExp()); case EXP.delegate_ : return visitDelegate(e.isDelegateExp()); case EXP.function_ : return visitFunc(e.isFuncExp()); case EXP.question : return visitCond(e.isCondExp()); case EXP.comma : return visitComma(e.isCommaExp()); case EXP.slice : return visitSlice(e.isSliceExp()); } } /**************************************** * Set type inference target * t Target type * flag 1: don't put an error when inference fails */ Expression inferType(Expression e, Type t, int flag = 0) { Expression visitAle(ArrayLiteralExp ale) { Type tb = t.toBasetype(); if (tb.ty == Tarray || tb.ty == Tsarray) { Type tn = tb.nextOf(); if (ale.basis) ale.basis = inferType(ale.basis, tn, flag); for (size_t i = 0; i < ale.elements.length; i++) { if (Expression e = (*ale.elements)[i]) { e = inferType(e, tn, flag); (*ale.elements)[i] = e; } } } return ale; } Expression visitAar(AssocArrayLiteralExp aale) { Type tb = t.toBasetype(); if (auto taa = tb.isTypeAArray()) { Type ti = taa.index; Type tv = taa.nextOf(); for (size_t i = 0; i < aale.keys.length; i++) { if (Expression e = (*aale.keys)[i]) { e = inferType(e, ti, flag); (*aale.keys)[i] = e; } } for (size_t i = 0; i < aale.values.length; i++) { if (Expression e = (*aale.values)[i]) { e = inferType(e, tv, flag); (*aale.values)[i] = e; } } } return aale; } Expression visitFun(FuncExp fe) { //printf("FuncExp::inferType('%s'), to=%s\n", fe.type ? fe.type.toChars() : "null", t.toChars()); if (t.ty == Tdelegate || t.ty == Tpointer && t.nextOf().ty == Tfunction) { fe.fd.treq = t; } return fe; } Expression visitTer(CondExp ce) { Type tb = t.toBasetype(); ce.e1 = inferType(ce.e1, tb, flag); ce.e2 = inferType(ce.e2, tb, flag); return ce; } if (t) switch (e.op) { case EXP.arrayLiteral: return visitAle(e.isArrayLiteralExp()); case EXP.assocArrayLiteral: return visitAar(e.isAssocArrayLiteralExp()); case EXP.function_: return visitFun(e.isFuncExp()); case EXP.question: return visitTer(e.isCondExp()); default: } return e; } /**************************************** * Scale addition/subtraction to/from pointer. */ Expression scaleFactor(BinExp be, Scope* sc) { Type t1b = be.e1.type.toBasetype(); Type t2b = be.e2.type.toBasetype(); Expression eoff; if (t1b.ty == Tpointer && t2b.isintegral()) { // Need to adjust operator by the stride // Replace (ptr + int) with (ptr + (int * stride)) Type t = Type.tptrdiff_t; uinteger_t stride = t1b.nextOf().size(be.loc); if (!t.equals(t2b)) be.e2 = be.e2.castTo(sc, t); eoff = be.e2; be.e2 = new MulExp(be.loc, be.e2, new IntegerExp(Loc.initial, stride, t)); be.e2.type = t; be.type = be.e1.type; } else if (t2b.ty == Tpointer && t1b.isintegral()) { // Need to adjust operator by the stride // Replace (int + ptr) with (ptr + (int * stride)) Type t = Type.tptrdiff_t; Expression e; uinteger_t stride = t2b.nextOf().size(be.loc); if (!t.equals(t1b)) e = be.e1.castTo(sc, t); else e = be.e1; eoff = e; e = new MulExp(be.loc, e, new IntegerExp(Loc.initial, stride, t)); e.type = t; be.type = be.e2.type; be.e1 = be.e2; be.e2 = e; } else assert(0); eoff = eoff.optimize(WANTvalue); if (eoff.op == EXP.int64 && eoff.toInteger() == 0) { } else if (sc.setUnsafe(false, be.loc, "pointer arithmetic not allowed in @safe functions")) { return ErrorExp.get(); } return be; } /************************************** * Return true if e is an empty array literal with dimensionality * equal to or less than type of other array. * [], [[]], [[[]]], etc. * I.e., make sure that [1,2] is compatible with [], * [[1,2]] is compatible with [[]], etc. */ private bool isVoidArrayLiteral(Expression e, Type other) { while (e.op == EXP.arrayLiteral && e.type.ty == Tarray && (e.isArrayLiteralExp().elements.length == 1)) { auto ale = e.isArrayLiteralExp(); e = ale[0]; if (other.ty == Tsarray || other.ty == Tarray) other = other.nextOf(); else return false; } if (other.ty != Tsarray && other.ty != Tarray) return false; Type t = e.type; return (e.op == EXP.arrayLiteral && t.ty == Tarray && t.nextOf().ty == Tvoid && e.isArrayLiteralExp().elements.length == 0); } /** * Merge types of `e1` and `e2` into a common subset * * Parameters `e1` and `e2` will be rewritten in place as needed. * * Params: * sc = Current scope * op = Operator such as `e1 op e2`. In practice, either EXP.question * or one of the binary operator. * pe1 = The LHS of the operation, will be rewritten * pe2 = The RHS of the operation, will be rewritten * * Returns: * The resulting type in case of success, `null` in case of error */ Type typeMerge(Scope* sc, EXP op, ref Expression pe1, ref Expression pe2) { //printf("typeMerge() %s op %s\n", e1.toChars(), e2.toChars()); Expression e1 = pe1; Expression e2 = pe2; // ImportC: do array/function conversions if (sc) { e1 = e1.arrayFuncConv(sc); e2 = e2.arrayFuncConv(sc); } Type Lret(Type result) { pe1 = e1; pe2 = e2; version (none) { printf("-typeMerge() %s op %s\n", e1.toChars(), e2.toChars()); if (e1.type) printf("\tt1 = %s\n", e1.type.toChars()); if (e2.type) printf("\tt2 = %s\n", e2.type.toChars()); printf("\ttype = %s\n", result.toChars()); } return result; } /// Converts one of the expression to the other Type convert(ref Expression from, Type to) { from = from.castTo(sc, to); return Lret(to); } /// Converts both expression to a third type Type coerce(Type towards) { e1 = e1.castTo(sc, towards); e2 = e2.castTo(sc, towards); return Lret(towards); } Type t1b = e1.type.toBasetype(); Type t2b = e2.type.toBasetype(); if (sc && sc.flags & SCOPE.Cfile) { // Integral types can be implicitly converted to pointers if ((t1b.ty == Tpointer) != (t2b.ty == Tpointer)) { if (t1b.isintegral()) { return convert(e1, t2b); } else if (t2b.isintegral()) { return convert(e2, t1b); } } } if (op != EXP.question || t1b.ty != t2b.ty && (t1b.isTypeBasic() && t2b.isTypeBasic())) { if (op == EXP.question && t1b.ty.isSomeChar() && t2b.ty.isSomeChar()) { e1 = e1.castTo(sc, Type.tdchar); e2 = e2.castTo(sc, Type.tdchar); } else { e1 = integralPromotions(e1, sc); e2 = integralPromotions(e2, sc); } } MATCH m; Type t1 = e1.type; Type t2 = e2.type; assert(t1); Type t = t1; /* The start type of alias this type recursion. * In following case, we should save A, and stop recursion * if it appears again. * X -> Y -> [A] -> B -> A -> B -> ... */ Type att1 = null; Type att2 = null; if (t1.mod != t2.mod && t1.ty == Tenum && t2.ty == Tenum && t1.isTypeEnum().sym == t2.isTypeEnum().sym) { ubyte mod = MODmerge(t1.mod, t2.mod); t1 = t1.castMod(mod); t2 = t2.castMod(mod); return Lret(t1); } Lagain: t1b = t1.toBasetype(); t2b = t2.toBasetype(); const ty = implicitConvCommonTy(t1b.ty, t2b.ty); if (ty != Terror) { const ty1 = implicitConvTy1(t1b.ty, t2b.ty); const ty2 = implicitConvTy1(t2b.ty, t1b.ty); if (t1b.ty == ty1) // if no promotions { if (t1.equals(t2)) return Lret(t1); if (t1b.equals(t2b)) return Lret(t1b); } t1 = Type.basic[ty1]; t2 = Type.basic[ty2]; if (!(t1 && t2)) return null; e1 = e1.castTo(sc, t1); e2 = e2.castTo(sc, t2); return Lret(Type.basic[ty]); } t1 = t1b; t2 = t2b; if (t1.ty == Ttuple || t2.ty == Ttuple) return null; if (t1.equals(t2)) { // merging can not result in new enum type if (t.ty == Tenum) return Lret(t1b); return Lret(t); } if ((t1.ty == Tpointer && t2.ty == Tpointer) || (t1.ty == Tdelegate && t2.ty == Tdelegate)) { // Bring pointers to compatible type Type t1n = t1.nextOf(); Type t2n = t2.nextOf(); if (t1n.equals(t2n)) return Lret(t); if (t1n.ty == Tvoid) // pointers to void are always compatible return Lret(t1); if (t2n.ty == Tvoid) return Lret(t2); if (t1.implicitConvTo(t2)) return convert(e1, t2); if (t2.implicitConvTo(t1)) return convert(e2, t1); if (t1n.ty == Tfunction && t2n.ty == Tfunction) { TypeFunction tf1 = t1n.isTypeFunction(); TypeFunction tf2 = t2n.isTypeFunction(); tf1.purityLevel(); tf2.purityLevel(); TypeFunction d = tf1.syntaxCopy(); if (tf1.purity != tf2.purity) d.purity = PURE.impure; assert(d.purity != PURE.fwdref); d.isnothrow = (tf1.isnothrow && tf2.isnothrow); d.isnogc = (tf1.isnogc && tf2.isnogc); if (tf1.trust == tf2.trust) d.trust = tf1.trust; else if (tf1.trust <= TRUST.system || tf2.trust <= TRUST.system) d.trust = TRUST.system; else d.trust = TRUST.trusted; Type tx = (t1.ty == Tdelegate) ? new TypeDelegate(d) : d.pointerTo(); tx = tx.typeSemantic(e1.loc, sc); if (t1.implicitConvTo(tx) && t2.implicitConvTo(tx)) return coerce(tx); return null; } if (t1n.mod != t2n.mod) { if (!t1n.isImmutable() && !t2n.isImmutable() && t1n.isShared() != t2n.isShared()) return null; ubyte mod = MODmerge(t1n.mod, t2n.mod); t1 = t1n.castMod(mod).pointerTo(); t2 = t2n.castMod(mod).pointerTo(); t = t1; goto Lagain; } if (t1n.ty == Tclass && t2n.ty == Tclass) { ClassDeclaration cd1 = t1n.isClassHandle(); ClassDeclaration cd2 = t2n.isClassHandle(); int offset; if (cd1.isBaseOf(cd2, &offset)) { if (offset) e2 = e2.castTo(sc, t); return Lret(t); } if (cd2.isBaseOf(cd1, &offset)) { if (offset) e1 = e1.castTo(sc, t2); return Lret(t2); } return null; } t1 = t1n.constOf().pointerTo(); t2 = t2n.constOf().pointerTo(); if (t1.implicitConvTo(t2)) return convert(e1, t2); if (t2.implicitConvTo(t1)) return convert(e2, t1); return null; } if ((t1.ty == Tsarray || t1.ty == Tarray) && (e2.op == EXP.null_ && t2.ty == Tpointer && t2.nextOf().ty == Tvoid || e2.op == EXP.arrayLiteral && t2.ty == Tsarray && t2.nextOf().ty == Tvoid && t2.isTypeSArray().dim.toInteger() == 0 || isVoidArrayLiteral(e2, t1))) { /* (T[n] op void*) => T[] * (T[] op void*) => T[] * (T[n] op void[0]) => T[] * (T[] op void[0]) => T[] * (T[n] op void[]) => T[] * (T[] op void[]) => T[] */ return coerce(t1.nextOf().arrayOf()); } if ((t2.ty == Tsarray || t2.ty == Tarray) && (e1.op == EXP.null_ && t1.ty == Tpointer && t1.nextOf().ty == Tvoid || e1.op == EXP.arrayLiteral && t1.ty == Tsarray && t1.nextOf().ty == Tvoid && t1.isTypeSArray().dim.toInteger() == 0 || isVoidArrayLiteral(e1, t2))) { /* (void* op T[n]) => T[] * (void* op T[]) => T[] * (void[0] op T[n]) => T[] * (void[0] op T[]) => T[] * (void[] op T[n]) => T[] * (void[] op T[]) => T[] */ return coerce(t2.nextOf().arrayOf()); } if ((t1.ty == Tsarray || t1.ty == Tarray) && (m = t1.implicitConvTo(t2)) != MATCH.nomatch) { // https://issues.dlang.org/show_bug.cgi?id=7285 // Tsarray op [x, y, ...] should to be Tsarray // https://issues.dlang.org/show_bug.cgi?id=14737 // Tsarray ~ [x, y, ...] should to be Tarray if (t1.ty == Tsarray && e2.op == EXP.arrayLiteral && op != EXP.concatenate) return convert(e2, t1); if (m == MATCH.constant && (op == EXP.addAssign || op == EXP.minAssign || op == EXP.mulAssign || op == EXP.divAssign || op == EXP.modAssign || op == EXP.powAssign || op == EXP.andAssign || op == EXP.orAssign || op == EXP.xorAssign)) { // Don't make the lvalue const return Lret(t2); } return convert(e1, t2); } if ((t2.ty == Tsarray || t2.ty == Tarray) && t2.implicitConvTo(t1)) { // https://issues.dlang.org/show_bug.cgi?id=7285 // https://issues.dlang.org/show_bug.cgi?id=14737 if (t2.ty == Tsarray && e1.op == EXP.arrayLiteral && op != EXP.concatenate) return convert(e1, t2); return convert(e2, t1); } if ((t1.ty == Tsarray || t1.ty == Tarray || t1.ty == Tpointer) && (t2.ty == Tsarray || t2.ty == Tarray || t2.ty == Tpointer) && t1.nextOf().mod != t2.nextOf().mod) { /* If one is mutable and the other immutable, then retry * with both of them as const */ Type t1n = t1.nextOf(); Type t2n = t2.nextOf(); ubyte mod; if (e1.op == EXP.null_ && e2.op != EXP.null_) mod = t2n.mod; else if (e1.op != EXP.null_ && e2.op == EXP.null_) mod = t1n.mod; else if (!t1n.isImmutable() && !t2n.isImmutable() && t1n.isShared() != t2n.isShared()) return null; else mod = MODmerge(t1n.mod, t2n.mod); if (t1.ty == Tpointer) t1 = t1n.castMod(mod).pointerTo(); else t1 = t1n.castMod(mod).arrayOf(); if (t2.ty == Tpointer) t2 = t2n.castMod(mod).pointerTo(); else t2 = t2n.castMod(mod).arrayOf(); t = t1; goto Lagain; } if (t1.ty == Tclass && t2.ty == Tclass) { if (t1.mod != t2.mod) { ubyte mod; if (e1.op == EXP.null_ && e2.op != EXP.null_) mod = t2.mod; else if (e1.op != EXP.null_ && e2.op == EXP.null_) mod = t1.mod; else if (!t1.isImmutable() && !t2.isImmutable() && t1.isShared() != t2.isShared()) return null; else mod = MODmerge(t1.mod, t2.mod); t1 = t1.castMod(mod); t2 = t2.castMod(mod); t = t1; goto Lagain; } goto Lcc; } if (t1.ty == Tclass || t2.ty == Tclass) { Lcc: while (1) { MATCH i1woat = MATCH.exact; MATCH i2woat = MATCH.exact; if (auto t2c = t2.isTypeClass()) i1woat = t2c.implicitConvToWithoutAliasThis(t1); if (auto t1c = t1.isTypeClass()) i2woat = t1c.implicitConvToWithoutAliasThis(t2); MATCH i1 = e2.implicitConvTo(t1); MATCH i2 = e1.implicitConvTo(t2); if (i1 && i2) { // We have the case of class vs. void*, so pick class if (t1.ty == Tpointer) i1 = MATCH.nomatch; else if (t2.ty == Tpointer) i2 = MATCH.nomatch; } // Match but without 'alias this' on classes if (i2 && i2woat) return coerce(t2); if (i1 && i1woat) return coerce(t1); // Here use implicitCastTo() instead of castTo() to try 'alias this' on classes Type coerceImplicit(Type towards) { e1 = e1.implicitCastTo(sc, towards); e2 = e2.implicitCastTo(sc, towards); return Lret(towards); } // Implicit conversion with 'alias this' if (i2) return coerceImplicit(t2); if (i1) return coerceImplicit(t1); if (t1.ty == Tclass && t2.ty == Tclass) { TypeClass tc1 = t1.isTypeClass(); TypeClass tc2 = t2.isTypeClass(); /* Pick 'tightest' type */ ClassDeclaration cd1 = tc1.sym.baseClass; ClassDeclaration cd2 = tc2.sym.baseClass; if (cd1 && cd2) { t1 = cd1.type.castMod(t1.mod); t2 = cd2.type.castMod(t2.mod); } else if (cd1) t1 = cd1.type; else if (cd2) t2 = cd2.type; else return null; } else if (t1.ty == Tstruct && t1.isTypeStruct().sym.aliasthis) { if (isRecursiveAliasThis(att1, e1.type)) return null; //printf("att tmerge(c || c) e1 = %s\n", e1.type.toChars()); e1 = resolveAliasThis(sc, e1); t1 = e1.type; continue; } else if (t2.ty == Tstruct && t2.isTypeStruct().sym.aliasthis) { if (isRecursiveAliasThis(att2, e2.type)) return null; //printf("att tmerge(c || c) e2 = %s\n", e2.type.toChars()); e2 = resolveAliasThis(sc, e2); t2 = e2.type; continue; } else return null; } } if (t1.ty == Tstruct && t2.ty == Tstruct) { if (t1.mod != t2.mod) { if (!t1.isImmutable() && !t2.isImmutable() && t1.isShared() != t2.isShared()) return null; ubyte mod = MODmerge(t1.mod, t2.mod); t1 = t1.castMod(mod); t2 = t2.castMod(mod); t = t1; goto Lagain; } TypeStruct ts1 = t1.isTypeStruct(); TypeStruct ts2 = t2.isTypeStruct(); if (ts1.sym != ts2.sym) { if (!ts1.sym.aliasthis && !ts2.sym.aliasthis) return null; MATCH i1 = MATCH.nomatch; MATCH i2 = MATCH.nomatch; Expression e1b = null; Expression e2b = null; if (ts2.sym.aliasthis) { if (isRecursiveAliasThis(att2, e2.type)) return null; //printf("att tmerge(s && s) e2 = %s\n", e2.type.toChars()); e2b = resolveAliasThis(sc, e2); i1 = e2b.implicitConvTo(t1); } if (ts1.sym.aliasthis) { if (isRecursiveAliasThis(att1, e1.type)) return null; //printf("att tmerge(s && s) e1 = %s\n", e1.type.toChars()); e1b = resolveAliasThis(sc, e1); i2 = e1b.implicitConvTo(t2); } if (i1 && i2) return null; if (i1) return convert(e2, t1); if (i2) return convert(e1, t2); if (e1b) { e1 = e1b; t1 = e1b.type.toBasetype(); } if (e2b) { e2 = e2b; t2 = e2b.type.toBasetype(); } t = t1; goto Lagain; } } if (t1.ty == Tstruct && t1.isTypeStruct().sym.aliasthis) { if (isRecursiveAliasThis(att1, e1.type)) return null; //printf("att tmerge(s || s) e1 = %s\n", e1.type.toChars()); e1 = resolveAliasThis(sc, e1); t1 = e1.type; t = t1; goto Lagain; } if (t2.ty == Tstruct && t2.isTypeStruct().sym.aliasthis) { if (isRecursiveAliasThis(att2, e2.type)) return null; //printf("att tmerge(s || s) e2 = %s\n", e2.type.toChars()); e2 = resolveAliasThis(sc, e2); t2 = e2.type; t = t2; goto Lagain; } if ((e1.op == EXP.string_ || e1.op == EXP.null_) && e1.implicitConvTo(t2)) return convert(e1, t2); if ((e2.op == EXP.string_ || e2.op == EXP.null_) && e2.implicitConvTo(t1)) return convert(e2, t1); if (t1.ty == Tsarray && t2.ty == Tsarray && e2.implicitConvTo(t1.nextOf().arrayOf())) return coerce(t1.nextOf().arrayOf()); if (t1.ty == Tsarray && t2.ty == Tsarray && e1.implicitConvTo(t2.nextOf().arrayOf())) return coerce(t2.nextOf().arrayOf()); if (t1.ty == Tvector && t2.ty == Tvector) { // https://issues.dlang.org/show_bug.cgi?id=13841 // all vector types should have no common types between // different vectors, even though their sizes are same. auto tv1 = t1.isTypeVector(); auto tv2 = t2.isTypeVector(); if (!tv1.basetype.equals(tv2.basetype)) return null; goto LmodCompare; } if (t1.ty == Tvector && t2.ty != Tvector && e2.implicitConvTo(t1)) { e2 = e2.castTo(sc, t1); t2 = t1; t = t1; goto Lagain; } if (t2.ty == Tvector && t1.ty != Tvector && e1.implicitConvTo(t2)) { e1 = e1.castTo(sc, t2); t1 = t2; t = t1; goto Lagain; } if (t1.isintegral() && t2.isintegral()) { if (t1.ty != t2.ty) { if (t1.ty == Tvector || t2.ty == Tvector) return null; e1 = integralPromotions(e1, sc); e2 = integralPromotions(e2, sc); t1 = e1.type; t2 = e2.type; goto Lagain; } assert(t1.ty == t2.ty); LmodCompare: if (!t1.isImmutable() && !t2.isImmutable() && t1.isShared() != t2.isShared()) return null; ubyte mod = MODmerge(t1.mod, t2.mod); t1 = t1.castMod(mod); t2 = t2.castMod(mod); t = t1; e1 = e1.castTo(sc, t); e2 = e2.castTo(sc, t); goto Lagain; } if (t1.ty == Tnull && t2.ty == Tnull) { ubyte mod = MODmerge(t1.mod, t2.mod); return coerce(t1.castMod(mod)); } if (t2.ty == Tnull && (t1.ty == Tpointer || t1.ty == Taarray || t1.ty == Tarray)) return convert(e2, t1); if (t1.ty == Tnull && (t2.ty == Tpointer || t2.ty == Taarray || t2.ty == Tarray)) return convert(e1, t2); /// Covers array operations for user-defined types Type checkArrayOpType(Expression e1, Expression e2, EXP op, Scope *sc) { // scalar op scalar - we shouldn't be here if (e1.type.ty != Tarray && e1.type.ty != Tsarray && e2.type.ty != Tarray && e2.type.ty != Tsarray) return null; // only supporting slices and array literals if (!e1.isSliceExp() && !e1.isArrayLiteralExp() && !e2.isSliceExp() && !e2.isArrayLiteralExp()) return null; // start with e1 op e2 and if either one of e1 or e2 is a slice or array literal, // replace it with the first element of the array Expression lhs = e1; Expression rhs = e2; // T[x .. y] op ? if (auto se1 = e1.isSliceExp()) lhs = new IndexExp(Loc.initial, se1.e1, IntegerExp.literal!0); // [t1, t2, .. t3] op ? if (auto ale1 = e1.isArrayLiteralExp()) lhs = ale1.opIndex(0); // ? op U[z .. t] if (auto se2 = e2.isSliceExp()) rhs = new IndexExp(Loc.initial, se2.e1, IntegerExp.literal!0); // ? op [u1, u2, .. u3] if (auto ale2 = e2.isArrayLiteralExp()) rhs = ale2.opIndex(0); // create a new binary expression with the new lhs and rhs (at this stage, at least // one of lhs/rhs has been replaced with the 0'th element of the array it was before) Expression exp; switch (op) { case EXP.add: exp = new AddExp(Loc.initial, lhs, rhs); break; case EXP.min: exp = new MinExp(Loc.initial, lhs, rhs); break; case EXP.mul: exp = new MulExp(Loc.initial, lhs, rhs); break; case EXP.div: exp = new DivExp(Loc.initial, lhs, rhs); break; case EXP.pow: exp = new PowExp(Loc.initial, lhs, rhs); break; default: exp = null; } if (exp) { // if T op U is valid and has type V // then T[] op U and T op U[] should be valid and have type V[] Expression e = exp.trySemantic(sc); if (e && e.type) return e.type.arrayOf; } return null; } if (t1.ty == Tarray && isBinArrayOp(op) && isArrayOpOperand(e1)) { if (e2.implicitConvTo(t1.nextOf())) { // T[] op T // T[] op cast(T)U e2 = e2.castTo(sc, t1.nextOf()); return Lret(t1.nextOf().arrayOf()); } if (t1.nextOf().implicitConvTo(e2.type)) { // (cast(T)U)[] op T (https://issues.dlang.org/show_bug.cgi?id=12780) // e1 is left as U[], it will be handled in arrayOp() later. return Lret(e2.type.arrayOf()); } if (t2.ty == Tarray && isArrayOpOperand(e2)) { if (t1.nextOf().implicitConvTo(t2.nextOf())) { // (cast(T)U)[] op T[] (https://issues.dlang.org/show_bug.cgi?id=12780) t = t2.nextOf().arrayOf(); // if cast won't be handled in arrayOp() later if (!isArrayOpImplicitCast(t1.isTypeDArray(), t2.isTypeDArray())) e1 = e1.castTo(sc, t); return Lret(t); } if (t2.nextOf().implicitConvTo(t1.nextOf())) { // T[] op (cast(T)U)[] (https://issues.dlang.org/show_bug.cgi?id=12780) // e2 is left as U[], it will be handled in arrayOp() later. t = t1.nextOf().arrayOf(); // if cast won't be handled in arrayOp() later if (!isArrayOpImplicitCast(t2.isTypeDArray(), t1.isTypeDArray())) e2 = e2.castTo(sc, t); return Lret(t); } } t = checkArrayOpType(e1, e2, op, sc); if (t !is null) return Lret(t); return null; } else if (t2.ty == Tarray && isBinArrayOp(op) && isArrayOpOperand(e2)) { if (e1.implicitConvTo(t2.nextOf())) { // T op T[] // cast(T)U op T[] e1 = e1.castTo(sc, t2.nextOf()); t = t2.nextOf().arrayOf(); } else if (t2.nextOf().implicitConvTo(e1.type)) { // T op (cast(T)U)[] (https://issues.dlang.org/show_bug.cgi?id=12780) // e2 is left as U[], it will be handled in arrayOp() later. t = e1.type.arrayOf(); } else { t = checkArrayOpType(e1, e2, op, sc); if (t is null) return null; } //printf("test %s\n", EXPtoString(op).ptr); e1 = e1.optimize(WANTvalue); if (isCommutative(op) && e1.isConst()) { /* Swap operands to minimize number of functions generated */ //printf("swap %s\n", EXPtoString(op).ptr); Expression tmp = e1; e1 = e2; e2 = tmp; } return Lret(t); } return null; } /************************************ * Bring leaves to common type. * Returns: * null on success, ErrorExp if error occurs */ Expression typeCombine(BinExp be, Scope* sc) { Expression errorReturn() { Expression ex = be.incompatibleTypes(); if (ex.op == EXP.error) return ex; return ErrorExp.get(); } Type t1 = be.e1.type.toBasetype(); Type t2 = be.e2.type.toBasetype(); if (be.op == EXP.min || be.op == EXP.add) { // struct+struct, and class+class are errors if (t1.ty == Tstruct && t2.ty == Tstruct) return errorReturn(); else if (t1.ty == Tclass && t2.ty == Tclass) return errorReturn(); else if (t1.ty == Taarray && t2.ty == Taarray) return errorReturn(); } if (auto result = typeMerge(sc, be.op, be.e1, be.e2)) { if (be.type is null) be.type = result; } else return errorReturn(); // If the types have no value, return an error if (be.e1.op == EXP.error) return be.e1; if (be.e2.op == EXP.error) return be.e2; return null; } /*********************************** * Do integral promotions (convertchk). * Don't convert <array of> to <pointer to> */ Expression integralPromotions(Expression e, Scope* sc) { //printf("integralPromotions %s %s\n", e.toChars(), e.type.toChars()); switch (e.type.toBasetype().ty) { case Tvoid: e.error("void has no value"); return ErrorExp.get(); case Tint8: case Tuns8: case Tint16: case Tuns16: case Tbool: case Tchar: case Twchar: e = e.castTo(sc, Type.tint32); break; case Tdchar: e = e.castTo(sc, Type.tuns32); break; default: break; } return e; } /****************************************************** * This provides a transition from the non-promoting behavior * of unary + - ~ to the C-like integral promotion behavior. * Params: * sc = context * ue = NegExp, UAddExp, or ComExp which is revised per rules * References: * https://issues.dlang.org/show_bug.cgi?id=16997 */ void fix16997(Scope* sc, UnaExp ue) { if (global.params.fix16997 || sc.flags & SCOPE.Cfile) ue.e1 = integralPromotions(ue.e1, sc); // desired C-like behavor else { switch (ue.e1.type.toBasetype.ty) { case Tint8: case Tuns8: case Tint16: case Tuns16: //case Tbool: // these operations aren't allowed on bool anyway case Tchar: case Twchar: case Tdchar: ue.deprecation("integral promotion not done for `%s`, remove '-revert=intpromote' switch or `%scast(int)(%s)`", ue.toChars(), EXPtoString(ue.op).ptr, ue.e1.toChars()); break; default: break; } } } /*********************************** * See if both types are arrays that can be compared * for equality without any casting. Return true if so. * This is to enable comparing things like an immutable * array with a mutable one. */ extern (C++) bool arrayTypeCompatibleWithoutCasting(Type t1, Type t2) { t1 = t1.toBasetype(); t2 = t2.toBasetype(); if ((t1.ty == Tarray || t1.ty == Tsarray || t1.ty == Tpointer) && t2.ty == t1.ty) { if (t1.nextOf().implicitConvTo(t2.nextOf()) >= MATCH.constant || t2.nextOf().implicitConvTo(t1.nextOf()) >= MATCH.constant) return true; } return false; } /******************************************************************/ /* Determine the integral ranges of an expression. * This is used to determine if implicit narrowing conversions will * be allowed. */ @trusted IntRange getIntRange(Expression e) { IntRange visit(Expression e) { return IntRange.fromType(e.type); } IntRange visitInteger(IntegerExp e) { return IntRange(SignExtendedNumber(e.getInteger()))._cast(e.type); } IntRange visitCast(CastExp e) { return getIntRange(e.e1)._cast(e.type); } IntRange visitAdd(AddExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 + ir2)._cast(e.type); } IntRange visitMin(MinExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 - ir2)._cast(e.type); } IntRange visitDiv(DivExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 / ir2)._cast(e.type); } IntRange visitMul(MulExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 * ir2)._cast(e.type); } IntRange visitMod(ModExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); // Modding on 0 is invalid anyway. if (!ir2.absNeg().imin.negative) { return visit(e); } return (ir1 % ir2)._cast(e.type); } IntRange visitAnd(AndExp e) { IntRange result; bool hasResult = false; result.unionOrAssign(getIntRange(e.e1) & getIntRange(e.e2), hasResult); assert(hasResult); return result._cast(e.type); } IntRange visitOr(OrExp e) { IntRange result; bool hasResult = false; result.unionOrAssign(getIntRange(e.e1) | getIntRange(e.e2), hasResult); assert(hasResult); return result._cast(e.type); } IntRange visitXor(XorExp e) { IntRange result; bool hasResult = false; result.unionOrAssign(getIntRange(e.e1) ^ getIntRange(e.e2), hasResult); assert(hasResult); return result._cast(e.type); } IntRange visitShl(ShlExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 << ir2)._cast(e.type); } IntRange visitShr(ShrExp e) { IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return (ir1 >> ir2)._cast(e.type); } IntRange visitUshr(UshrExp e) { IntRange ir1 = getIntRange(e.e1).castUnsigned(e.e1.type); IntRange ir2 = getIntRange(e.e2); return (ir1 >>> ir2)._cast(e.type); } IntRange visitAssign(AssignExp e) { return getIntRange(e.e2)._cast(e.type); } IntRange visitCond(CondExp e) { // No need to check e.econd; assume caller has called optimize() IntRange ir1 = getIntRange(e.e1); IntRange ir2 = getIntRange(e.e2); return ir1.unionWith(ir2)._cast(e.type); } IntRange visitVar(VarExp e) { Expression ie; VarDeclaration vd = e.var.isVarDeclaration(); if (vd && vd.range) return vd.range._cast(e.type); else if (vd && vd._init && !vd.type.isMutable() && (ie = vd.getConstInitializer()) !is null) return getIntRange(ie); else return visit(e); } IntRange visitComma(CommaExp e) { return getIntRange(e.e2); } IntRange visitCom(ComExp e) { IntRange ir = getIntRange(e.e1); return IntRange(SignExtendedNumber(~ir.imax.value, !ir.imax.negative), SignExtendedNumber(~ir.imin.value, !ir.imin.negative))._cast(e.type); } IntRange visitNeg(NegExp e) { IntRange ir = getIntRange(e.e1); return (-ir)._cast(e.type); } switch (e.op) { default : return visit(e); case EXP.int64 : return visitInteger(e.isIntegerExp()); case EXP.cast_ : return visitCast(e.isCastExp()); case EXP.add : return visitAdd(e.isAddExp()); case EXP.min : return visitMin(e.isMinExp()); case EXP.div : return visitDiv(e.isDivExp()); case EXP.mul : return visitMul(e.isMulExp()); case EXP.mod : return visitMod(e.isModExp()); case EXP.and : return visitAnd(e.isAndExp()); case EXP.or : return visitOr(e.isOrExp()); case EXP.xor : return visitXor(e.isXorExp()); case EXP.leftShift : return visitShl(e.isShlExp()); case EXP.rightShift : return visitShr(e.isShrExp()); case EXP.unsignedRightShift : return visitUshr(e.isUshrExp()); case EXP.blit : return visitAssign(e.isBlitExp()); case EXP.construct : return visitAssign(e.isConstructExp()); case EXP.assign : return visitAssign(e.isAssignExp()); case EXP.question : return visitCond(e.isCondExp()); case EXP.variable : return visitVar(e.isVarExp()); case EXP.comma : return visitComma(e.isCommaExp()); case EXP.tilde : return visitCom(e.isComExp()); case EXP.negate : return visitNeg(e.isNegExp()); } } /** * A helper function to "cast" from expressions of type noreturn to * any other type - noreturn is implicitly convertible to any other type. * However, the dmd backend does not like a naive cast from a noreturn expression * (particularly an `assert(0)`) so this function generates: * * `(assert(0), value)` instead of `cast(to)(assert(0))`. * * `value` is currently `to.init` however it cannot be read so could be made simpler. * Params: * toBeCasted = Expression of type noreturn to cast * to = Type to cast the expression to. * Returns: A CommaExp, upon any failure ErrorExp will be returned. */ Expression specialNoreturnCast(Expression toBeCasted, Type to) { return Expression.combine(toBeCasted, to.defaultInitLiteral(toBeCasted.loc)); }
D
/+ util + (c) 2007 John Ohno + Licensed under the GNU LGPL + Part of Project XANA +/ int isNull(T) (T t) { T tmp; return tmp==t; } T newNull(T) (T t) { T tmp; return tmp; }
D
/** * Copyright: Copyright (c) 2010-2011 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Aug 15, 2010 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module dvm.dvm.dvm; import dvm.dvm.Application; int main (string[] args) { return Application.instance.run(args); }
D
instance Mod_7275_OUT_Buerger_REL (Npc_Default) { // ------ NSC ------ name = "Bürger"; guild = GIL_OUT; id = 7275; voice = 1; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_REL_BUERGER; // ------ Attribute ------ B_SetAttributesToChapter (self, 1); //setzt Attribute und LEVEL entsprechend dem angegebenen Kapitel (1-6) // ------ Kampf-Taktik ------ fight_tactic = FAI_HUMAN_COWARD; // MASTER / STRONG / COWARD // ------ Equippte Waffen ------ //Munition wird automatisch generiert, darf aber angegeben werden EquipItem (self, ItMw_1h_Bau_Mace); // ------ Inventory ------ B_CreateAmbientInv (self); // ------ visuals ------ //Muss NACH Attributen kommen, weil in B_SetNpcVisual die Breite abh. v. STR skaliert wird B_SetNpcVisual (self, MALE, "Hum_Head_Bald", Face_N_ToughBart01, BodyTex_N, ITAR_VLK_M); Mdl_SetModelFatness (self, 1); Mdl_ApplyOverlayMds (self, "Humans_Relaxed.mds"); // Tired / Militia / Mage / Arrogance / Relaxed // ------ NSC-relevante Talente vergeben ------ B_GiveNpcTalents (self); // ------ Kampf-Talente ------ //Der enthaltene B_AddFightSkill setzt Talent-Ani abhängig von TrefferChance% - alle Kampftalente werden gleichhoch gesetzt B_SetFightSkills (self, 0); //Grenzen für Talent-Level liegen bei 30 und 60 // ------ TA anmelden ------ daily_routine = Rtn_PreStart_7275; }; FUNC VOID Rtn_PreStart_7275 () { TA_Sit_Bench (08,00,22,00,"REL_CITY_111"); TA_Sit_Bench (22,00,08,00,"REL_CITY_111"); };
D
instance DIA_Engor_EXIT(C_Info) { npc = VLK_4108_Engor; nr = 999; condition = DIA_Engor_EXIT_Condition; information = DIA_Engor_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Engor_EXIT_Condition() { return TRUE; }; func void DIA_Engor_EXIT_Info() { B_EquipTrader(self); AI_StopProcessInfos(self); }; instance DIA_Engor_HALLO(C_Info) { npc = VLK_4108_Engor; nr = 2; condition = DIA_Engor_HALLO_Condition; information = DIA_Engor_HALLO_Info; important = TRUE; }; func int DIA_Engor_HALLO_Condition() { if(Npc_IsInState(self,ZS_Talk)) { return TRUE; }; }; func void DIA_Engor_HALLO_Info() { AI_Output(self,other,"DIA_Engor_HALLO_13_00"); //Ах, ты тот парень, которому удалось пройти через Проход? AI_Output(other,self,"DIA_Engor_HALLO_15_01"); //Да. AI_Output(self,other,"DIA_Engor_HALLO_13_02"); //Отлично. Я Энгор - я обеспечиваю эту экспедицию. AI_Output(self,other,"DIA_Engor_HALLO_13_03"); //Только не думай, что можешь получить от меня что-нибудь бесплатно! AI_Output(self,other,"DIA_Engor_HALLO_13_04"); //Но если в твоих карманах позванивает золото, мы всегда договоримся. B_EngorTradeLog(); }; instance DIA_Engor_HANDELN(C_Info) { npc = VLK_4108_Engor; nr = 10; condition = DIA_Engor_HANDELN_Condition; information = DIA_Engor_HANDELN_Info; permanent = TRUE; trade = TRUE; description = DIALOG_TRADE_v4; }; func int DIA_Engor_HANDELN_Condition() { if(Npc_KnowsInfo(hero,DIA_Engor_HALLO)) { return TRUE; }; }; func void DIA_Engor_HANDELN_Info() { AI_Output(other,self,"DIA_Engor_HANDELN_15_00"); //Покажи мне свои товары. B_GiveTradeInv(self); B_RefreshTraderAmmo(self,50); Trade_IsActive = TRUE; }; instance DIA_Engor_ABOUTPARLAF(C_Info) { npc = VLK_4108_Engor; nr = 2; condition = DIA_Engor_ABOUTPARLAF_Condition; information = DIA_Engor_ABOUTPARLAF_Info; description = "Ты распределяешь пайки, как я слышал?"; }; func int DIA_Engor_ABOUTPARLAF_Condition() { if(Npc_KnowsInfo(hero,DIA_Parlaf_ENGOR)) { return TRUE; }; }; func void DIA_Engor_ABOUTPARLAF_Info() { AI_Output(other,self,"DIA_Engor_ABOUTPARLAF_15_00"); //Ты распределяешь пайки, как я слышал? AI_Output(self,other,"DIA_Engor_ABOUTPARLAF_13_01"); //Это так. А что? Мне теперь и тебя кормить придется? AI_Output(self,other,"DIA_Engor_ABOUTPARLAF_13_02"); //Если тебе что-то нужно, тебе придется платить за это - как и всем остальным. }; instance DIA_Engor_Ruestung(C_Info) { npc = VLK_4108_Engor; nr = 2; condition = DIA_Engor_Ruestung_Condition; information = DIA_Engor_Ruestung_Info; permanent = FALSE; description = "У тебя есть что-нибудь интересное для меня?"; }; func int DIA_Engor_Ruestung_Condition() { if(other.guild == GIL_MIL) { return TRUE; }; }; func void DIA_Engor_Ruestung_Info() { AI_Output(other,self,"DIA_Engor_Ruestung_15_00"); //У тебя есть что-нибудь интересное для меня? if(DIA_MIL_ARMOR_M_perm == FALSE) { AI_Output(self,other,"DIA_Engor_Ruestung_13_01"); //Я могу продать тебе хорошие доспехи - тяжелые доспехи ополчения. Если, конечно, тебе это интересно. AI_Output(self,other,"DIA_Engor_Ruestung_13_02"); //Они недешевы, конечно же. Но если у тебя есть золото, ты получишь их. } else { AI_Output(self,other,"DIA_Engor_RSkaufen_13_02"); //Сначала принеси золото. }; }; instance DIA_Engor_RSkaufen(C_Info) { npc = VLK_4108_Engor; nr = 2; condition = DIA_Engor_RSkaufen_Condition; information = DIA_Engor_RSkaufen_Info; permanent = TRUE; description = B_BuildPriceString("Купить тяжелые доспехи ополчения. Защита: 70/70/10/10.",VALUE_ITAR_MIL_M); }; func int DIA_Engor_RSkaufen_Condition() { if((other.guild == GIL_MIL) && Npc_KnowsInfo(other,DIA_Engor_Ruestung) && (DIA_MIL_ARMOR_M_perm == FALSE)) { return TRUE; }; }; func void DIA_Engor_RSkaufen_Info() { AI_Output(other,self,"DIA_Engor_RSkaufen_15_00"); //Дай мне доспехи. if(B_GiveInvItems(other,self,ItMi_Gold,VALUE_ITAR_MIL_M)) { AI_Output(self,other,"DIA_Engor_RSkaufen_13_01"); //Вот, держи, они надежно защитят тебя - это чертовски хорошие доспехи. B_GiveArmor(ITAR_MIL_M); DIA_MIL_ARMOR_M_perm = TRUE; } else { AI_Output(self,other,"DIA_Engor_RSkaufen_13_02"); //Сначала принеси золото. }; }; instance DIA_Engor_HELP(C_Info) { npc = VLK_4108_Engor; nr = 3; condition = DIA_Engor_HELP_Condition; information = DIA_Engor_HELP_Info; description = "Может, я смогу помочь тебе в твоей работе?"; }; func int DIA_Engor_HELP_Condition() { if(Npc_KnowsInfo(hero,DIA_Engor_ABOUTPARLAF)) { return TRUE; }; }; func void DIA_Engor_HELP_Info() { AI_Output(other,self,"DIA_Engor_HELP_15_00"); //Может, я смогу помочь тебе в твоей работе? AI_Output(self,other,"DIA_Engor_HELP_13_01"); //Хмм... Конечно, почему нет? Мне не помешала бы помощь. DIA_Common_SoWhatNeedsToBeDone(); AI_Output(self,other,"DIA_Engor_HELP_13_03"); //Наши запасы продовольствия на исходе. Хуже всего, что у нас почти не осталось мяса. AI_Output(self,other,"DIA_Engor_HELP_13_04"); //Так что если сможешь раздобыть мясо, сырое или приготовленное, окорока или колбасу, я был бы очень благодарен. Ну как? Ты поможешь нам? Info_ClearChoices(DIA_Engor_HELP); Info_AddChoice(DIA_Engor_HELP,"У меня нет времени на это.",DIA_Engor_HELP_NO); Info_AddChoice(DIA_Engor_HELP,"Не волнуйся, я принесу тебе мясо.",DIA_Engor_HELP_YES); }; func void DIA_Engor_HELP_NO() { AI_Output(other,self,"DIA_Engor_HELP_NO_15_00"); //У меня нет времени на это. AI_Output(self,other,"DIA_Engor_HELP_NO_13_01"); //Тогда зачем ты тратишь мое время попусту? MIS_Engor_BringMeat = LOG_OBSOLETE; AI_StopProcessInfos(self); }; func void DIA_Engor_HELP_YES() { AI_Output(other,self,"DIA_Engor_HELP_YES_15_00"); //Не волнуйся, я принесу тебе мясо. AI_Output(self,other,"DIA_Engor_HELP_YES_13_01"); //Две дюжины кусков хватило бы, чтобы накормить все эти голодные рты. Возвращайся, когда у тебя будет это мясо. А мне нужно работать. Log_CreateTopic(TOPIC_BringMeat,LOG_MISSION); Log_SetTopicStatus(TOPIC_BringMeat,LOG_Running); B_LogEntry(TOPIC_BringMeat,"Энгору нужно две дюжины кусков мяса, чтобы накормить людей в замке."); Log_AddEntry(TOPIC_BringMeat,"Неважно, что это будет - колбаса, окорок, сырое или жареное мясо. Что угодно, лишь бы это можно было жевать."); MIS_Engor_BringMeat = LOG_Running; AI_StopProcessInfos(self); }; instance DIA_Engor_BRINGMEAT(C_Info) { npc = VLK_4108_Engor; nr = 4; condition = DIA_Engor_BRINGMEAT_Condition; information = DIA_Engor_BRINGMEAT_Info; permanent = TRUE; description = "Вот, я принес тебе кое-что. (дать мясо)"; }; func int DIA_Engor_BRINGMEAT_Condition() { if((MIS_Engor_BringMeat == LOG_Running) && (Meat_Counter < Meat_Amount)) { if(Npc_HasItems(hero,ItFo_Bacon)) { return TRUE; }; if(Npc_HasItems(hero,ItFoMuttonRaw)) { return TRUE; }; if(Npc_HasItems(hero,ItFoMutton)) { return TRUE; }; if(Npc_HasItems(hero,ItFo_Sausage)) { return TRUE; }; if(Npc_HasItems(hero,ItFo_Schafswurst)) { if(Kapitel > 1) { return TRUE; }; if(MIS_GoraxEssen == LOG_SUCCESS) { return TRUE; }; }; }; }; func void DIA_Engor_BRINGMEAT_Info() { var int info_ypos; var string ConcatRaw; var string ConcatMutton; var string ConcatBacon; var string ConcatSausage; var string ConcatSchafswurst; var string GesamtFleisch; var int RawCounter; var int MuttonCounter; var int BaconCounter; var int SausageCounter; var int SchafswurstCounter; info_ypos = 35; AI_Output(other,self,"DIA_Engor_BRINGMEAT_15_00"); //Вот, я принес тебе кое-что. if(Npc_HasItems(other,ItFoMuttonRaw) && (Meat_Counter < Meat_Amount)) { Npc_GetInvItem(other,ItFoMuttonRaw); RawCounter = Meat_Amount - Meat_Counter; if(Npc_HasItems(other,ItFoMuttonRaw) > RawCounter) { ConcatRaw = IntToString(RawCounter); Meat_Counter += RawCounter; Npc_RemoveInvItems(other,ItFoMuttonRaw,RawCounter); } else { ConcatRaw = IntToString(Npc_HasItems(other,ItFoMuttonRaw)); Meat_Counter += Npc_HasItems(other,ItFoMuttonRaw); Npc_RemoveInvItems(other,ItFoMuttonRaw,Npc_HasItems(other,ItFoMuttonRaw)); }; ConcatRaw = ConcatStrings(ConcatRaw," кусков сырого мяса отдано"); AI_PrintScreen(ConcatRaw,-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Npc_HasItems(other,ItFoMutton) && (Meat_Counter < Meat_Amount)) { Npc_GetInvItem(other,ItFoMutton); MuttonCounter = Meat_Amount - Meat_Counter; if(Npc_HasItems(other,ItFoMutton) > MuttonCounter) { ConcatMutton = IntToString(MuttonCounter); Meat_Counter += MuttonCounter; Npc_RemoveInvItems(other,ItFoMutton,MuttonCounter); } else { ConcatMutton = IntToString(Npc_HasItems(other,ItFoMutton)); Meat_Counter += Npc_HasItems(other,ItFoMutton); Npc_RemoveInvItems(other,ItFoMutton,Npc_HasItems(other,ItFoMutton)); }; ConcatMutton = ConcatStrings(ConcatMutton," кусков жареного мяса отдано"); AI_PrintScreen(ConcatMutton,-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Npc_HasItems(other,ItFo_Bacon) && (Meat_Counter < Meat_Amount)) { Npc_GetInvItem(other,ItFo_Bacon); BaconCounter = Meat_Amount - Meat_Counter; if(Npc_HasItems(other,ItFo_Bacon) > BaconCounter) { ConcatBacon = IntToString(BaconCounter); Meat_Counter += BaconCounter; Npc_RemoveInvItems(other,ItFo_Bacon,BaconCounter); } else { ConcatBacon = IntToString(Npc_HasItems(other,ItFo_Bacon)); Meat_Counter += Npc_HasItems(other,ItFo_Bacon); Npc_RemoveInvItems(other,ItFo_Bacon,Npc_HasItems(other,ItFo_Bacon)); }; ConcatBacon = ConcatStrings(ConcatBacon," окороков отдано"); AI_PrintScreen(ConcatBacon,-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Npc_HasItems(other,ItFo_Sausage) && (Meat_Counter < Meat_Amount)) { Npc_GetInvItem(other,ItFo_Sausage); SausageCounter = Meat_Amount - Meat_Counter; if(Npc_HasItems(other,ItFo_Sausage) > SausageCounter) { ConcatSausage = IntToString(SausageCounter); Meat_Counter += SausageCounter; Npc_RemoveInvItems(other,ItFo_Sausage,SausageCounter); } else { ConcatSausage = IntToString(Npc_HasItems(other,ItFo_Sausage)); Meat_Counter += Npc_HasItems(other,ItFo_Sausage); Npc_RemoveInvItems(other,ItFo_Sausage,Npc_HasItems(other,ItFo_Sausage)); }; ConcatSausage = ConcatStrings(ConcatSausage," колбас отдано"); AI_PrintScreen(ConcatSausage,-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Npc_HasItems(other,ItFo_Schafswurst) && ((Kapitel > 1) || (MIS_GoraxEssen == LOG_SUCCESS)) && (Meat_Counter < Meat_Amount)) { Npc_GetInvItem(other,ItFo_Schafswurst); SchafswurstCounter = Meat_Amount - Meat_Counter; if(Npc_HasItems(other,ItFo_Schafswurst) > SchafswurstCounter) { ConcatSchafswurst = IntToString(SchafswurstCounter); Meat_Counter += SchafswurstCounter; Npc_RemoveInvItems(other,ItFo_Schafswurst,SchafswurstCounter); } else { ConcatSchafswurst = IntToString(Npc_HasItems(other,ItFo_Schafswurst)); Meat_Counter += Npc_HasItems(other,ItFo_Schafswurst); Npc_RemoveInvItems(other,ItFo_Schafswurst,Npc_HasItems(other,ItFo_Schafswurst)); }; ConcatSchafswurst = ConcatStrings(ConcatSchafswurst," бараньих колбас отдано"); AI_PrintScreen(ConcatSchafswurst,-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Npc_HasItems(other,ItFo_NiclasBacon) && (Meat_Counter < Meat_Amount)) { Meat_Counter += 1; Npc_RemoveInvItems(other,ItFo_NiclasBacon,1); AI_PrintScreen("1 нога крысокрота отдано",-1,info_ypos,FONT_ScreenSmall,3); info_ypos += 3; }; if(Meat_Amount > Meat_Counter) { AI_Output(self,other,"DIA_Engor_BRINGMEAT_13_01"); //Для начала и это неплохо, но мне нужно больше. GesamtFleisch = IntToString(Meat_Counter); GesamtFleisch = ConcatStrings("Всего отдано мяса: ",GesamtFleisch); AI_PrintScreen(GesamtFleisch,-1,info_ypos,FONT_ScreenSmall,3); }; if(Meat_Counter >= Meat_Amount) { AI_Output(self,other,"DIA_Engor_BRINGMEAT_13_02"); //Отлично, ты принес достаточно мяса. Этого хватит на некоторое время. AI_Output(self,other,"DIA_Engor_BRINGMEAT_13_03"); //Но даже не надейся, что я теперь буду давать тебе что-нибудь бесплатно! MIS_Engor_BringMeat = LOG_SUCCESS; B_GivePlayerXP(XP_BringMeat); Log_AddEntry(TOPIC_BringMeat,"Энгор получил свое мясо. Он разделит его между защитниками замка."); }; }; instance DIA_Engor_Business(C_Info) { npc = VLK_4108_Engor; nr = 1; condition = DIA_Engor_Business_Condition; information = DIA_Engor_Business_Info; permanent = FALSE; description = "Как бизнес?"; }; func int DIA_Engor_Business_Condition() { if((Kapitel >= 4) && (MIS_Engor_BringMeat == LOG_SUCCESS)) { return TRUE; }; }; func void DIA_Engor_Business_Info() { AI_Output(other,self,"DIA_Engor_Business_15_00"); //Как бизнес? if((hero.guild == GIL_MIL) || (hero.guild == GIL_PAL) || (hero.guild == GIL_KDF)) { AI_Output(self,other,"DIA_Engor_Business_13_01"); //Неважно. Я надеюсь, что хотя бы у этих охотников на драконов есть какое-нибудь золото. }; if((hero.guild == GIL_SLD) || (hero.guild == GIL_DJG)) { AI_Output(self,other,"DIA_Engor_Business_13_02"); //Паршиво! Паладины ничего не покупают. }; AI_Output(self,other,"DIA_Engor_Business_13_03"); //А как насчет тебя? Ты хочешь что-нибудь купить? };
D
/** * Authors: Szabo Bogdan <szabobogdan@yahoo.com> * Date: 2 25, 2015 * License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. * Copyright: Public Domain */ module vibedav.plugins.acldav; public import vibedav.base; import vibe.core.file; import vibe.inet.mimetypes; import vibe.http.server; interface ACLDavProperties { @property { /// rfc5397 - 3 @ResourceProperty("current-user-principal", "DAV:") @ResourcePropertyTagText("href", "DAV:") string currentUserPrincipal(DavResource resource); /// rfc3744 - 4.2 @ResourceProperty("principal-URL", "DAV:") @ResourcePropertyTagText("href", "DAV:") string principalURL(DavResource resource); /// rfc3744 - 5.8 @ResourceProperty("principal-collection-set", "DAV:") @ResourcePropertyTagText("href", "DAV:") string[] principalCollectionSet(DavResource resource); @ResourceProperty("owner", "DAV:") @ResourcePropertyTagText("href", "DAV:") string owner(DavResource resource); } } private bool matchPluginUrl(Path path) { string strPath = path.toString; enum len = "principals/".length; return strPath.length >= len && strPath[0..len] == "principals/"; } class ACLDavResourcePlugin : ACLDavProperties, IDavResourcePlugin, IDavReportSetProperties { string currentUserPrincipal(DavResource resource) { if(matchPluginUrl(resource.path)) return "/" ~ resource.rootURL ~ "principals/" ~ resource.username ~ "/"; throw new DavException(HTTPStatus.notFound, "not found"); } string principalURL(DavResource resource) { if(matchPluginUrl(resource.path)) return "/" ~ resource.rootURL ~ "principals/" ~ resource.username ~ "/"; throw new DavException(HTTPStatus.notFound, "not found"); } string owner(DavResource resource) { return principalURL(resource); } string[] principalCollectionSet(DavResource resource) { if(matchPluginUrl(resource.path)) return [ "/" ~ resource.rootURL ~ "principals/" ]; throw new DavException(HTTPStatus.notFound, "not found"); } string[] supportedReportSet(DavResource resource) { if(matchPluginUrl(resource.path)) return ["expand-property:DAV:", "principal-property-search:DAV:", "principal-search-property-set:DAV:"]; return []; } bool canSetContent(DavResource resource) { return false; } bool canGetStream(DavResource resource) { return false; } bool canSetProperty(DavResource resource, string name) { return false; } bool canRemoveProperty(DavResource resource, string name) { return false; } bool canGetProperty(DavResource resource, string name) { if(!matchPluginUrl(resource.path)) return false; if(hasDavInterfaceProperty!ACLDavProperties(name)) return true; if(hasDavInterfaceProperty!IDavReportSetProperties(name)) return true; return false; } bool[string] getChildren(DavResource resource) { bool[string] list; return list; } void setContent(DavResource resource, const ubyte[] content) { throw new DavException(HTTPStatus.internalServerError, "Can't set content."); } void setContent(DavResource resource, InputStream content, ulong size) { throw new DavException(HTTPStatus.internalServerError, "Can't set content."); } InputStream stream(DavResource resource) { throw new DavException(HTTPStatus.internalServerError, "Can't get stream."); } void copyPropertiesTo(URL source, URL destination) { } DavProp property(DavResource resource, string name) { if(!matchPluginUrl(resource.path)) throw new DavException(HTTPStatus.internalServerError, "Can't get property."); if(hasDavInterfaceProperty!ACLDavProperties(name)) return getDavInterfaceProperty!ACLDavProperties(name, this, resource); if(hasDavInterfaceProperty!IDavReportSetProperties(name)) return getDavInterfaceProperty!IDavReportSetProperties(name, this, resource); throw new DavException(HTTPStatus.internalServerError, "Can't get property."); } HTTPStatus setProperty(DavResource resource, string name, DavProp prop) { throw new DavException(HTTPStatus.internalServerError, "Can't set property."); } HTTPStatus removeProperty(DavResource resource, string name) { throw new DavException(HTTPStatus.internalServerError, "Can't remove property."); } @property { string name() { return "ACLDavResourcePlugin"; } } } class ACLDavPlugin : BaseDavPlugin { private IDav _dav; this(IDav dav) { super(dav); } bool isPrincipalsCollection(Path path) { return matchPluginUrl(path) && path.length == 1; } bool isUserCollection(Path path, string username) { return matchPluginUrl(path) && path.head == username && path.length == 2; } bool isRootCollection(Path path) { return path.length == 0; } override { bool exists(URL url, string username) { return isPrincipalsCollection(dav.path(url)) || isUserCollection(dav.path(url), username); } Path[] childList(URL url, string username) { Path[] list; if(dav.path(url).length == 0) { list = [ Path("principals/") ]; } if(isPrincipalsCollection(dav.path(url))) { list = [ Path("principals/" ~ username ~ "/") ]; } return list; } void bindResourcePlugins(DavResource resource) { resource.registerPlugin(new ACLDavResourcePlugin); } DavResource getResource(URL url, string username) { if(isPrincipalsCollection(dav.path(url)) || isUserCollection(dav.path(url), username)) { DavResource resource = super.getResource(url, username); resource.resourceType ~= "collection:DAV:"; return resource; } throw new DavException(HTTPStatus.internalServerError, "Can't get resource."); } } @property { string name() { return "ACLDavPlugin"; } override string[] support(URL url, string username) { return matchPluginUrl(dav.path(url)) ? [ "access-control" ] : []; } } }
D
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.build/Byte+Convenience.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Base64.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Convenience.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Data+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/String+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+PatternMatching.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+Shifting.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Random.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Base64Encoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/HexEncoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Aliases.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/ByteSequence+Conversions.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+UTF8Numbers.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+ControlCharacters.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Operators.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Alphabet.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Percent.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Hex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.build/Byte+Convenience~partial.swiftmodule : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Base64.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Convenience.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Data+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/String+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+PatternMatching.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+Shifting.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Random.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Base64Encoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/HexEncoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Aliases.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/ByteSequence+Conversions.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+UTF8Numbers.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+ControlCharacters.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Operators.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Alphabet.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Percent.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Hex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.build/Byte+Convenience~partial.swiftdoc : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Base64.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Convenience.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Data+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/String+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/BytesConvertible.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+PatternMatching.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/UnsignedInteger+Shifting.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Random.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Base64Encoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/HexEncoder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Aliases.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/ByteSequence+Conversions.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+UTF8Numbers.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+ControlCharacters.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Operators.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Byte+Alphabet.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Percent.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/bits.git-9196587591774126515/Sources/Bits/Bytes+Hex.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
#!/usr/bin/env rdmd -i -I.. import std.stdio; import std.conv; import std.functional; import kreikey.intmath; //alias factorial = factorial2; void main(string[] args) { ulong number = 0; ulong result; if (args.length > 1) { number = args[1].to!ulong(); } else { writeln("Tell me what number to factorialize!"); return; } result = factorial(number); writefln("factorial: %s", result); } //alias factorial = memoize!factorialImpl; //ulong factorialImpl(ulong number) { //if (number == 1) //return number; //return number * memoize!factorialImpl(number - 1); //}
D
instance BDT_10302_Addon_RangerBandit_L (Npc_Default) { // ------ NSC ------ name = NAME_BANDIT; guild = GIL_BDT; id = 10302; voice = 1; flags = 0; //NPC_FLAG_IMMORTAL oder 0 npctype = NPCTYPE_AMBIENT; // ------ Attribute ------ B_SetAttributesToChapter (self, 1); //setzt Attribute und LEVEL entsprechend dem angegebenen Kapitel (1-6) // ------ Kampf-Taktik ------ fight_tactic = FAI_HUMAN_NORMAL; // MASTER / STRONG / COWARD // ------ Equippte Waffen ------ //Munition wird automatisch generiert, darf aber angegeben werden EquipItem (self, ItMw_Addon_BanditTrader); //EquipItem (self, ItRw_SLD_Bow); CreateInvItems (self, ItWr_StonePlateCommon_Addon, 1); //Joly: will Erol wieder haben! // ------ Inventory ------ B_CreateAmbientInv (self); // ------ visuals ------ //Muss NACH Attributen kommen, weil in B_SetNpcVisual die Breite abh. v. STR skaliert wird B_SetNpcVisual (self, MALE, "Hum_Head_FatBald", Face_N_Normal04, BodyTex_N, ITAR_Leather_L); Mdl_SetModelFatness (self, 1); Mdl_ApplyOverlayMds (self, "Humans_Relaxed.mds"); // Tired / Militia / Mage / Arrogance / Relaxed // ------ NSC-relevante Talente vergeben ------ B_GiveNpcTalents (self); // ------ Kampf-Talente ------ //Der enthaltene B_AddFightSkill setzt Talent-Ani abhängig von TrefferChance% - alle Kampftalente werden gleichhoch gesetzt B_SetFightSkills (self, 40); //Grenzen für Talent-Level liegen bei 30 und 60 // ------ TA ------ daily_routine = Rtn_Start_10302; }; FUNC VOID Rtn_Start_10302 () { TA_Stand_ArmsCrossed (08,00,23,00,"NW_FARM2_TO_TAVERN_RANGERBANDITS_01"); TA_Stand_ArmsCrossed (23,00,08,00,"NW_FARM2_TO_TAVERN_RANGERBANDITS_01"); };
D
/* * Copyright 2015-2018 HuntLabs.cn * * 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. */ module hunt.sql.ast.statement.SQLExternalRecordFormat; import hunt.sql.ast.SQLExpr; import hunt.sql.ast.SQLObjectImpl; // import hunt.sql.dialect.oracle.ast.OracleSQLObjectImpl; // import hunt.sql.dialect.oracle.visitor.OracleASTVisitor; import hunt.sql.visitor.SQLASTVisitor; public class SQLExternalRecordFormat : SQLObjectImpl { private SQLExpr delimitedBy; private SQLExpr terminatedBy; override public void accept0(SQLASTVisitor visitor) { if (visitor.visit(this)) { acceptChild(visitor, delimitedBy); acceptChild(visitor, terminatedBy); } visitor.endVisit(this); } public SQLExpr getDelimitedBy() { return delimitedBy; } public void setDelimitedBy(SQLExpr delimitedBy) { if (delimitedBy !is null) { delimitedBy.setParent(this); } this.delimitedBy = delimitedBy; } public SQLExpr getTerminatedBy() { return terminatedBy; } public void setTerminatedBy(SQLExpr terminatedBy) { if (terminatedBy !is null) { terminatedBy.setParent(this); } this.terminatedBy = terminatedBy; } }
D
void main() { "Hello World".repeat(1000).each!writeln; } // =================================== import std.stdio; import std.string; import std.functional; import std.conv; import std.algorithm; import std.range; import std.traits; import std.math; import std.container; import std.bigint; import std.numeric; import std.conv; import std.typecons; import std.uni; import std.ascii; import std.bitmanip; import core.bitop; T readAs(T)() if (isBasicType!T) { return readln.chomp.to!T; } T readAs(T)() if (isArray!T) { return readln.split.to!T; } T[][] readMatrix(T)(uint height, uint width) if (!isSomeChar!T) { auto res = new T[][](height, width); foreach(i; 0..height) { res[i] = readAs!(T[]); } return res; } T[][] readMatrix(T)(uint height, uint width) if (isSomeChar!T) { auto res = new T[][](height, width); foreach(i; 0..height) { auto s = rs; foreach(j; 0..width) res[i][j] = s[j].to!T; } return res; } int ri() { return readAs!int; } double rd() { return readAs!double; } string rs() { return readln.chomp; }
D
module gargula.log; import std.string; import gargula.wrapper.raylib; /// Logging utilities struct Log { @disable this(); private alias StringToCharP(T : inout(string)) = const(char)*; private alias StringToCharP(T) = T; /// Log a `level` level message, converting `string` values to `const(char)*` static void Log(string fmt, Args...)(int level, const auto ref Args args) { import std.meta : staticMap; staticMap!(StringToCharP, Args) result; static foreach (i, a; args) { static if (__traits(compiles, toStringz(a))) { result[i] = toStringz(a); } else { result[i] = a; } } TraceLog(level, cast(const char*) fmt, result); } /// Log a trace level message static void Trace(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_TRACE, args); } /// Log a debug level message static void Debug(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_DEBUG, args); } /// Log a info level message static void Info(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_INFO, args); } /// Log a warning level message static void Warning(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_WARNING, args); } /// Log an error level message static void Error(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_ERROR, args); } /// Log a fatal level message static void Fatal(string fmt, Args...)(const auto ref Args args) { Log!fmt(LOG_FATAL, args); } } struct Logger(string _prefix) { enum string prefix = _prefix ~ ": "; /// Log a trace level message, optionally prefixed by `prefix: ` void Trace(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Trace!fmt(args); } /// Log a debug level message, optionally prefixed by `prefix: ` void Debug(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Debug!fmt(args); } /// Log an info level message, optionally prefixed by `prefix: ` void Info(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Info!fmt(args); } /// Log a warning level message, optionally prefixed by `prefix: ` void Warning(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Warning!fmt(args); } /// Log a error level message, optionally prefixed by `prefix: ` void Error(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Error!fmt(args); } /// Log a fatal level message, optionally prefixed by `prefix: ` void Fatal(string _fmt, bool addPrefix = true, Args...)(const auto ref Args args) { enum fmt = (addPrefix ? prefix ~ _fmt : _fmt); Log.Fatal!fmt(args); } }
D
module voxelman.net.plugininfo; enum id = "voxelman.net"; enum semver = "0.5.0"; enum deps = []; enum clientdeps = []; enum serverdeps = []; import pluginlib.pluginregistry; void register(ref PluginRegistry registry) { import voxelman.net.plugin; pluginRegistry.regClientPlugin(new NetClientPlugin); pluginRegistry.regServerPlugin(new NetServerPlugin); }
D
<?xml version="1.0" encoding="ASCII" standalone="no"?> <di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0"> <pageList> <availablePage> <emfPageIdentifier href="VAR_4_BeT-5849327951.notation#_copSALmGEeKQQp7P9cQvNQ"/> </availablePage> </pageList> <sashModel currentSelection="//@sashModel/@windows.0/@children.0"> <windows> <children xsi:type="di:TabFolder"> <children> <emfPageIdentifier href="VAR_4_BeT-5849327951.notation#_copSALmGEeKQQp7P9cQvNQ"/> </children> </children> </windows> </sashModel> </di:SashWindowsMngr>
D
#!/usr/bin/env rdmd /** * Copied + modified from dlang.org * Copyright: Martin Nowak 2015-. * License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: $(WEB code.dawg.eu, Martin Nowak) */ import std.algorithm, std.file, std.path, std.stdio, std.string, std.range; struct Tree { ref Tree insert(R)(R parts) { if (parts.front == "package") { pkgMod = true; return this; } auto tail = leaves.find!((tr, pkg) => tr.name == pkg)(parts.front); if (tail.empty) { leaves ~= Tree(parts.front); tail = leaves[$-1 .. $]; } parts.popFront(); return parts.empty ? this : tail.front.insert(parts); } void sort() { leaves = leaves.sort!((a, b) => a.name < b.name).release; foreach (ref l; leaves) l.sort(); } void dumpRoot() { writeln(); writefln("$(MENU_W_SUBMENU $(TT %s))", name); writefln("$(ITEMIZE"); dumpChildren([name]); writeln(")"); writeln("$(MENU_W_SUBMENU_END)"); } void dumpChildren(string[] pkgs) { foreach (i, ref l; leaves) { l.dump(pkgs); writeln(i + 1 == leaves.length ? "" : ","); } } void dump(string[] pkgs) { if (leaves.empty) { writef("%s$(MODULE%s %-(%s, %), %s)", indent(pkgs.length), pkgs.length + 1, pkgs, name); } else { if (pkgMod) writefln("%s$(PACKAGE $(MODULE%s %-(%s, %), %s),", indent(pkgs.length), pkgs.length + 1, pkgs, name); else writefln("%s$(PACKAGE $(PACKAGE_NAME %s),", indent(pkgs.length), name); dumpChildren(pkgs ~ name); writef("%s)", indent(pkgs.length)); } } ref Tree opIndex(string part) { auto tail = leaves.find!((tr, pkg) => tr.name == pkg)(part); return tail.front; } static string indent(size_t len) { static immutable spaces = " "; return spaces[0 .. 2 * len]; } string name; bool pkgMod; Tree[] leaves; } int main(string[] args) { if (args.length < 2) { stderr.writeln("usage: ./modlist <phobos-dir> [--ex=std.internal.] [--ex=core.sys.]"); return 1; } auto phobos = args[1]; auto excludes = args[2 .. $].map!(ex => ex.chompPrefix("--ex=")).array; bool included(string mod) { return !excludes.canFind!(e => mod.startsWith(e)); } void add(string path, ref Tree tree) { auto files = dirEntries(path, "*.d", SpanMode.depth) .filter!(de => de.isFile) .map!(de => de.name.chompPrefix(path).chompPrefix(dirSeparator)) // relative to path .map!(n => n.chomp(".d").replace(dirSeparator, ".")) // std/digest/sha.d => std.digest.sha .filter!included; foreach (string name; files) tree.insert(name.splitter(".")); } Tree tree; add(phobos, tree); tree.sort(); writeln("MODULE_MENU="); tree["cpuid"].dumpRoot(); writeln("_="); return 0; }
D
INSTANCE Info_Mod_Rath_Hi (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Hi_Condition; information = Info_Mod_Rath_Hi_Info; permanent = 0; important = 0; description = "Wer bist du?"; }; FUNC INT Info_Mod_Rath_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Rath_Hi_Info() { B_Say (hero, self, "$WHOAREYOU"); AI_Output(self, hero, "Info_Mod_Rath_Hi_08_01"); //Ich bin Rath. Was willst du? }; INSTANCE Info_Mod_Rath_Sumpfkraut (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Sumpfkraut_Condition; information = Info_Mod_Rath_Sumpfkraut_Info; permanent = 0; important = 0; description = "Ich hab hier 'ne Lieferung Sumpfkraut."; }; FUNC INT Info_Mod_Rath_Sumpfkraut_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Rath_Hi)) && (Npc_KnowsInfo(hero, Info_Mod_Namib_Dealer)) && (Npc_HasItems(hero, ItMi_HerbPaket) >= 1) { return 1; }; }; FUNC VOID Info_Mod_Rath_Sumpfkraut_Info() { AI_Output(hero, self, "Info_Mod_Rath_Sumpfkraut_15_00"); //Ich hab hier 'ne Lieferung Sumpfkraut. AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_01"); //Sumpfkraut? Was will ich mit dem Scheiß? AI_Output(hero, self, "Info_Mod_Rath_Sumpfkraut_15_02"); //Baal Namib hat gesagt, ich solle es bei dir abliefern. AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_03"); //(lacht, bricht mitten drin aber ab) Du meinst das ernst, oder? AI_Output(hero, self, "Info_Mod_Rath_Sumpfkraut_15_04"); //Wenn dem so wäre? AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_05"); //Das ist zu komisch (lacht) Kein Mensch raucht heute noch Sumpfkraut! AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_06"); //Das Zeug ist schweineteuer und du bist danach gerade mal für 'ne Stunde high. AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_07"); //Ich sag's dir, die Zukunft liegt in Freudenspender. AI_Output(hero, self, "Info_Mod_Rath_Sumpfkraut_15_08"); //Freudenspender? Was ist das schon wieder? AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_09"); //Wohnst du hinterm Mond? Freudenspender ist DIE neue Droge. Billig, stark und schnell. AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_10"); //Da kann Sumpfkraut in keiner Beziehung mithalten! AI_Output(hero, self, "Info_Mod_Rath_Sumpfkraut_15_11"); //Soso ... und woher bekommt ihr dieses Freudenspender? AI_Output(self, hero, "Info_Mod_Rath_Sumpfkraut_08_12"); //In Khorata wird dir das Ganze nachgeschmissen. Da ist so 'n Typ am Marktplatz, der das so gut wie verschenkt. B_LogEntry (TOPIC_MOD_SEKTE_DEALER, "Rath findet es sehr amüsant, dass ich ihm Sumpfkraut verkaufen wollte. Er meint, dass Sumpfkraut nicht mehr geraucht wird, da es viel zu teuer ist. Die neue Droge heißt Freudenspender, welches ein Typ auf dem Marktplatz von Khorata verkauft. Ich sollte Baal Namib davon berichten."); }; INSTANCE Info_Mod_Rath_Training (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Training_Condition; information = Info_Mod_Rath_Training_Info; permanent = 0; important = 0; description = "Das Training bei Patrick wartet."; }; FUNC INT Info_Mod_Rath_Training_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Patrick_Training)) { return 1; }; }; FUNC VOID Info_Mod_Rath_Training_Info() { AI_Output(hero, self, "Info_Mod_Rath_Training_15_00"); //Das Training bei Patrick wartet. AI_Output(self, hero, "Info_Mod_Rath_Training_08_01"); //Ohh, man, das muss jetzt aber echt nicht sein. Ich geh ein andermal. Info_ClearChoices (Info_Mod_Rath_Training); Info_AddChoice (Info_Mod_Rath_Training, "Dann muss ich deinem Willen vielleicht mit einigen Schlägen nachhelfen.", Info_Mod_Rath_Training_B); if (Npc_HasItems(hero, ItMi_Gold) >= 100) { Info_AddChoice (Info_Mod_Rath_Training, "Ich gebe dir 100 Goldmünzen. Was sagst du?", Info_Mod_Rath_Training_A); }; }; FUNC VOID Info_Mod_Rath_Training_B() { AI_Output(hero, self, "Info_Mod_Rath_Training_B_15_00"); //Dann muss ich deinem Willen vielleicht mit einigen Schlägen nachhelfen. AI_Output(self, hero, "Info_Mod_Rath_Training_B_08_01"); //Du Wicht willst dich mit mir anlegen?! Komm her! Info_ClearChoices (Info_Mod_Rath_Training); AI_StopProcessInfos (self); B_Attack (self, hero, AR_None, 0); Mod_SLD_Rath = 2; }; FUNC VOID Info_Mod_Rath_Training_A() { AI_Output(hero, self, "Info_Mod_Rath_Training_A_15_00"); //Ich gebe dir 100 Goldmünzen. Was sagst du? AI_Output(self, hero, "Info_Mod_Rath_Training_A_08_01"); //100 Goldmünzen? Was will ich damit. Ne, wenn du mir 5 grüne Novizen, oder 12 normale Sumpfkrautstängel besorgst, bin ich dabei. Info_ClearChoices (Info_Mod_Rath_Training); Mod_SLD_Rath = 1; }; INSTANCE Info_Mod_Rath_Joints (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Joints_Condition; information = Info_Mod_Rath_Joints_Info; permanent = 1; important = 0; description = "Hier hast du ..."; }; FUNC INT Info_Mod_Rath_Joints_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Rath_Training)) && (Mod_SLD_Rath == 1) { return 1; }; }; FUNC VOID Info_Mod_Rath_Joints_Info() { AI_Output(hero, self, "Info_Mod_Rath_Joints_15_00"); //Hier hast du ... Info_ClearChoices (Info_Mod_Rath_Joints); Info_AddChoice (Info_Mod_Rath_Joints, DIALOG_BACK, Info_Mod_Rath_Joints_C); if (Npc_HasItems(hero, ItMi_Joint) >= 12) { Info_AddChoice (Info_Mod_Rath_Joints, "... 12 Stängel Sumpfkraut", Info_Mod_Rath_Joints_B); }; if (Npc_HasItems(hero, ItMi_Addon_Joint_01) >= 5) { Info_AddChoice (Info_Mod_Rath_Joints, "... 5 grüne Novizen", Info_Mod_Rath_Joints_A); }; }; FUNC VOID Info_Mod_Rath_Joints_C() { Info_ClearChoices (Info_Mod_Rath_Joints); }; FUNC VOID Info_Mod_Rath_Joints_D() { AI_Output(self, hero, "Info_Mod_Rath_Joints_D_08_00"); //Ausgezeichnet. Du scheinst tatsächlich noch nicht lange im Lager zu sein. Für so viel Sumpfkraut würde ich es sogar mit zwei Trollen auf einmal aufnehmen. Info_ClearChoices (Info_Mod_Rath_Joints); AI_StopProcessInfos (self); Mod_SLD_Rath = 3; B_LogEntry (TOPIC_MOD_SLD_PATRICK, "So, mit etwas Überredungskunst ist Rath unterwegs zum Training."); B_StartOtherRoutine (self, "TRAINING"); }; FUNC VOID Info_Mod_Rath_Joints_B() { AI_Output(hero, self, "Info_Mod_Rath_Joints_B_15_00"); //... 12 Stängel Sumpfkraut. B_GiveInvItems (hero, self, ItMi_Joint, 12); Info_Mod_Rath_Joints_D(); }; FUNC VOID Info_Mod_Rath_Joints_A() { AI_Output(hero, self, "Info_Mod_Rath_Joints_A_15_00"); //... 5 grüne Novizen. B_GiveInvItems (hero, self, ItMi_Addon_Joint_01, 5); Info_Mod_Rath_Joints_D(); }; INSTANCE Info_Mod_Rath_Umgehauen (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Umgehauen_Condition; information = Info_Mod_Rath_Umgehauen_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Rath_Umgehauen_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Rath_Training)) && (Mod_SLD_Rath == 2) { return 1; }; }; FUNC VOID Info_Mod_Rath_Umgehauen_Info() { if (self.aivar[AIV_LastPlayerAR] == AR_NONE) //Kampf aus Dialog heraus. { if (B_GetAivar(self, AIV_LastFightAgainstPlayer) == FIGHT_LOST) { AI_Output(self, hero, "Info_Mod_Rath_Umgehauen_08_00"); //Verdammt, mein Rücken ... AI_Output(hero, self, "Info_Mod_Rath_Umgehauen_15_01"); //Na, ein bisschen Training wird deinem Rücken bestimmt gut tun. AI_Output(self, hero, "Info_Mod_Rath_Umgehauen_08_02"); //Jaja, ich geh ja schon. Mod_SLD_Rath = 3; B_LogEntry (TOPIC_MOD_SLD_PATRICK, "So, mit etwas Überredungskunst ist Rath unterwegs zum Training."); B_StartOtherRoutine (self, "TRAINING"); } else if (B_GetAivar(self, AIV_LastFightAgainstPlayer) == FIGHT_WON) { AI_Output(self, hero, "Info_Mod_Rath_Umgehauen_08_03"); //Nichts mit Trainig. Mod_SLD_Rath = 1; }; // ------ In jedem Fall: Arena-Kampf abgeschlossen ------ self.aivar[AIV_ArenaFight] = AF_NONE; // ------ AIVAR resetten! ------ self.aivar[AIV_LastFightComment] = TRUE; }; }; INSTANCE Info_Mod_Rath_Pickpocket (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_Pickpocket_Condition; information = Info_Mod_Rath_Pickpocket_Info; permanent = 1; important = 0; description = Pickpocket_60; }; FUNC INT Info_Mod_Rath_Pickpocket_Condition() { C_Beklauen (55, ItMi_Gold, 50); }; FUNC VOID Info_Mod_Rath_Pickpocket_Info() { Info_ClearChoices (Info_Mod_Rath_Pickpocket); Info_AddChoice (Info_Mod_Rath_Pickpocket, DIALOG_BACK, Info_Mod_Rath_Pickpocket_BACK); Info_AddChoice (Info_Mod_Rath_Pickpocket, DIALOG_PICKPOCKET, Info_Mod_Rath_Pickpocket_DoIt); }; FUNC VOID Info_Mod_Rath_Pickpocket_BACK() { Info_ClearChoices (Info_Mod_Rath_Pickpocket); }; FUNC VOID Info_Mod_Rath_Pickpocket_DoIt() { if (B_Beklauen() == TRUE) { Info_ClearChoices (Info_Mod_Rath_Pickpocket); } else { Info_ClearChoices (Info_Mod_Rath_Pickpocket); Info_AddChoice (Info_Mod_Rath_Pickpocket, DIALOG_PP_BESCHIMPFEN, Info_Mod_Rath_Pickpocket_Beschimpfen); Info_AddChoice (Info_Mod_Rath_Pickpocket, DIALOG_PP_BESTECHUNG, Info_Mod_Rath_Pickpocket_Bestechung); Info_AddChoice (Info_Mod_Rath_Pickpocket, DIALOG_PP_HERAUSREDEN, Info_Mod_Rath_Pickpocket_Herausreden); }; }; FUNC VOID Info_Mod_Rath_Pickpocket_Beschimpfen() { B_Say (hero, self, "$PICKPOCKET_BESCHIMPFEN"); B_Say (self, hero, "$DIRTYTHIEF"); Info_ClearChoices (Info_Mod_Rath_Pickpocket); AI_StopProcessInfos (self); B_Attack (self, hero, AR_Theft, 1); }; FUNC VOID Info_Mod_Rath_Pickpocket_Bestechung() { B_Say (hero, self, "$PICKPOCKET_BESTECHUNG"); var int rnd; rnd = r_max(99); if (rnd < 25) || ((rnd >= 25) && (rnd < 50) && (Npc_HasItems(hero, ItMi_Gold) < 50)) || ((rnd >= 50) && (rnd < 75) && (Npc_HasItems(hero, ItMi_Gold) < 100)) || ((rnd >= 75) && (rnd < 100) && (Npc_HasItems(hero, ItMi_Gold) < 200)) { B_Say (self, hero, "$DIRTYTHIEF"); Info_ClearChoices (Info_Mod_Rath_Pickpocket); AI_StopProcessInfos (self); B_Attack (self, hero, AR_Theft, 1); } else { if (rnd >= 75) { B_GiveInvItems (hero, self, ItMi_Gold, 200); } else if (rnd >= 50) { B_GiveInvItems (hero, self, ItMi_Gold, 100); } else if (rnd >= 25) { B_GiveInvItems (hero, self, ItMi_Gold, 50); }; B_Say (self, hero, "$PICKPOCKET_BESTECHUNG_01"); Info_ClearChoices (Info_Mod_Rath_Pickpocket); AI_StopProcessInfos (self); }; }; FUNC VOID Info_Mod_Rath_Pickpocket_Herausreden() { B_Say (hero, self, "$PICKPOCKET_HERAUSREDEN"); if (r_max(99) < Mod_Verhandlungsgeschick) { B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_01"); Info_ClearChoices (Info_Mod_Rath_Pickpocket); } else { B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_02"); }; }; INSTANCE Info_Mod_Rath_EXIT (C_INFO) { npc = Mod_1308_SLD_Rath_MT; nr = 1; condition = Info_Mod_Rath_EXIT_Condition; information = Info_Mod_Rath_EXIT_Info; permanent = 1; important = 0; description = DIALOG_ENDE; }; FUNC INT Info_Mod_Rath_EXIT_Condition() { return 1; }; FUNC VOID Info_Mod_Rath_EXIT_Info() { AI_StopProcessInfos (self); };
D
instance Mod_7751_OUT_Dubios_MT (Npc_Default) { // ------ NSC ------ name = "Dubiose Gestalt"; guild = GIL_OUT; id = 7751; voice = 6; flags = 0; npctype = NPCTYPE_AMBIENT; // ------ Attribute ------ B_SetAttributesToChapter (self, 2); // ------ Kampf-Taktik ------ fight_tactic = FAI_HUMAN_COWARD; // ------ Equippte Waffen ------ EquipItem (self, ItMw_1H_quantarie_Schwert_01); // ------ Inventory ------ B_CreateAmbientInv (self); // ------ visuals ------ B_SetNpcVisual (self, MALE, "Hum_Head_Bald", Face_N_Weak_Herek, BodyTex_N,ITAR_Vlk_M); Mdl_SetModelFatness (self,0); Mdl_ApplyOverlayMds (self, "Humans_Tired.mds"); // ------ NSC-relevante Talente vergeben ------ B_GiveNpcTalents (self); // ------ Kampf-Talente ------ B_SetFightSkills (self, 30); // ------ TA anmelden ------ daily_routine = Rtn_PreStart_7751; }; FUNC VOID Rtn_PreStart_7751() { TA_Stand_Guarding (08,00,23,00,"OW_PATH_1_5_3"); TA_Stand_Guarding (23,00,08,00,"OW_PATH_1_5_3"); };
D
/Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Maybe.o : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Deprecated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Cancelable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObserverType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Reactive.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/RecursiveLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Errors.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/AtomicInt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Event.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/First.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Linux.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/alloca.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Maybe~partial.swiftmodule : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Deprecated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Cancelable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObserverType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Reactive.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/RecursiveLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Errors.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/AtomicInt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Event.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/First.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Linux.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/alloca.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Maybe~partial.swiftdoc : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Deprecated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Cancelable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObserverType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Reactive.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/RecursiveLock.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Errors.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/AtomicInt.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Event.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/First.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Rx.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/Platform/Platform.Linux.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/alloca.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarRenderer.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarRenderer~partial.swiftmodule : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarRenderer~partial.swiftdoc : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule
D
/Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/build/Quizzler.build/Debug-iphonesimulator/Quizzler.build/Objects-normal/x86_64/ViewController.o : /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/AppDelegate.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/QuestionBank.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/Question.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/build/Quizzler.build/Debug-iphonesimulator/Quizzler.build/Objects-normal/x86_64/ViewController~partial.swiftmodule : /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/AppDelegate.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/QuestionBank.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/Question.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/build/Quizzler.build/Debug-iphonesimulator/Quizzler.build/Objects-normal/x86_64/ViewController~partial.swiftdoc : /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/AppDelegate.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/QuestionBank.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/Question.swift /Users/ellen/GitHub/JackTheGiant/Quizzler-iOS11-master/Quizzler/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
// 31 12 2014 - 1 1 2015 Well now it's 2015 and I can't fix my program. I'll go to Windows and play Battle Zone. I didn't win in that game either. I came second in Need for Speed Hot pursuit 2. Couldn't get Descent 2 to work on OS X Virtual Box, played a bit of Screamer though. I made it in a cone race, just, previously I didn't quite make it. struct ToDo { string label; int timeMinutes; string toString() const { import std.string; return format("%s - %s", timeMinutes, label); } } void main() { ToDo[] todos; auto rawData = "Shower|15|Battle Zone|30|Descent|20|Descent II|20|Free Online D book|30"; import std.stdio; import std.string; writeln("Enter eg. 'Battle Zone|30' label and time in minutes:"); rawData ~= "|" ~ readln.chomp; import std.string; auto data = rawData.split("|"); import std.range; import std.conv; foreach1: foreach(i; iota(0, data.length, 2)) { int line; try { if (data.length % 2 != 0) { line = __LINE__; throw new Exception("Uneven number of operants!"); } line = __LINE__; todos ~= ToDo(data[i], data[i+1].to!int); } catch(Exception e) { writeln("Error in line: ", line, " Exception ", e.toString); todos ~= ToDo(data[i], -1); break foreach1; } } import std.stdio; writeln("Time in minutes, and thing to for the duration of that time \\/"); foreach(todo; todos) { writeln(todo); } }
D
/Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Bits.build/BitsError.swift.o : /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Deprecated.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+require.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+string.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+peek.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Control.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/BitsError.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Strings.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Alphabet.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/cpp_magic.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIODarwin/include/c_nio_darwin.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/c-atomics.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOLinux/include/c_nio_linux.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio-zlib-support.git--8656613645092558840/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Bits.build/BitsError~partial.swiftmodule : /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Deprecated.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+require.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+string.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+peek.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Control.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/BitsError.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Strings.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Alphabet.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/cpp_magic.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIODarwin/include/c_nio_darwin.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/c-atomics.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOLinux/include/c_nio_linux.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio-zlib-support.git--8656613645092558840/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Bits.build/BitsError~partial.swiftdoc : /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Deprecated.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+require.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+string.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+peek.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Control.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/BitsError.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Bytes.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Data+Strings.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Alphabet.swift /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/core.git--2280532085018929318/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/cpp_magic.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIODarwin/include/c_nio_darwin.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOAtomics/include/c-atomics.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio.git-6105345694714423636/Sources/CNIOLinux/include/c_nio_linux.h /Users/jimallan/Downloads/starter/location-track-server/.build/checkouts/swift-nio-zlib-support.git--8656613645092558840/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/jimallan/Downloads/starter/location-track-server/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module card.util.parse.satisfy; import card.util.parse : Result; import std.array : empty, front, popFront; import std.functional : unaryFun; import std.range : ElementType, isInputRange; private struct Satisfy(alias F) { private alias f = unaryFun!F; template parse(I) if (isInputRange!I) { private alias O = ElementType!I; inout(Result!O) parse(ref I i) inout { if (i.empty) return Result!O(); auto r = i.front; if (!f(r)) return Result!O(); i.popFront; return Result!O(r); } } } /// Return a parser which succeeds iff the input is non-empty and the first token /// passes the given predicate. If it succeeds, it does so with the first token, /// consuming it. auto satisfy(alias F)() { return Satisfy!F(); } /// nothrow pure @nogc @safe unittest { const parser = satisfy!`a != ' '`; auto input = ""d; const result = parser.parse(input); assert (result.isNull); assert (input == ""d); } /// nothrow pure @nogc @safe unittest { const parser = satisfy!`a != ' '`; auto input = " foo"d; const result = parser.parse(input); assert (result.isNull); assert (input == " foo"d); } /// nothrow pure @nogc @safe unittest { const parser = satisfy!`a != ' '`; auto input = "foo"d; const result = parser.parse(input); assert (!result.isNull); assert (result.get == 'f'); assert (input == "oo"d); }
D
/Users/matthewdewey/Development/rustExercises/guessing_game/target/debug/deps/guessing_game-1b1e9a8ee43e202b: src/main.rs /Users/matthewdewey/Development/rustExercises/guessing_game/target/debug/deps/guessing_game-1b1e9a8ee43e202b.d: src/main.rs src/main.rs:
D
/Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session.o : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session~partial.swiftmodule : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session~partial.swiftdoc : /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartFormData.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/MultipartUpload.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPMethod.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/OperationQueue+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Alamofire.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Response.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoding.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Session.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Validation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ServerTrustEvaluation.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ResponseSerialization.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestTaskMap.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/SessionStateProvider.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/ParameterEncoder.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestRetrier.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/RequestAdapter.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/AFError.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Protector.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/EventMonitor.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Notifications.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/HTTPHeaders.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Result.swift /Users/yermakovanton/Desktop/privatNbyTest/Pods/Alamofire/Source/Request.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yermakovanton/Desktop/privatNbyTest/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/yermakovanton/Desktop/privatNbyTest/DerivedData/privatNbyTest/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
instance VLK_443_Arbeiter(Npc_Default) { name[0] = NAME_Arbeiter; guild = GIL_VLK; id = 443; voice = 1; flags = 0; npcType = NPCTYPE_AMBIENT; aivar[AIV_ToughGuy] = TRUE; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1H_Mace_L_04); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_N_Weak04,BodyTex_N,ITAR_Bau_L); Mdl_SetModelFatness(self,0); Mdl_ApplyOverlayMds(self,"Humans_Tired.mds"); B_GiveNpcTalents(self); B_SetFightSkills(self,30); daily_routine = Rtn_Start_443; }; func void Rtn_Start_443() { TA_Saw(4,55,19,5,"NW_CITY_HABOUR_08"); TA_Smalltalk(19,5,4,55,"NW_CITY_HABOUR_02"); };
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void get(Args...)(ref Args args) { import std.traits, std.meta, std.typecons; static if (Args.length == 1) { alias Arg = Args[0]; static if (isArray!Arg) { args[0] = readln.split.to!Arg; } else static if (isTuple!Arg) { auto input = readln.split; static foreach (i; 0..Fields!Arg.length) { args[0][i] = input[i].to!(Fields!Arg[i]); } } else { args[0] = readln.chomp.to!Arg; } } else { auto input = readln.split; assert(input.length == Args.length); static foreach (i; 0..Args.length) { args[i] = input[i].to!(Args[i]); } } } void get_lines(Args...)(size_t N, ref Args args) { import std.traits, std.range; static foreach (i; 0..Args.length) { static assert(isArray!(Args[i])); args[i].length = N; } foreach (i; 0..N) { static if (Args.length == 1) { get(args[0][i]); } else { auto input = readln.split; static foreach (j; 0..Args.length) { args[j][i] = input[j].to!(ElementType!(Args[j])); } } } } void main() { int K; get(K); string s; while (K--) s ~= "ACL"; writeln(s); }
D
module owlchain.xdr.xdrDataOutputStream; import std.string; import std.conv; import owlchain.core.stream; import owlchain.xdr.type; class XdrDataOutputStream : OutputStream { ubyte[] data; size_t offset; this() { data.length = 0; offset = 0; } invariant() { assert(offset <= data.length); } ubyte[] toBytes() { return data[0 .. offset]; } void reserve(size_t nbytes) @trusted in { assert(offset + nbytes >= offset); } out { assert(offset + nbytes <= data.length); } body { if (data.length < offset + nbytes) { void[] vdata = data; vdata.length = (offset + nbytes + 256); data = cast(ubyte[]) vdata; } } void write(in ubyte[] bytes) { reserve(bytes.length); data[offset .. offset + bytes.length] = bytes[]; offset += bytes.length; } void write(in byte[] bytes) { write(cast(ubyte[]) bytes); } void writeInt(in int value) { reserve(int.sizeof); *cast(int*)&data[offset] = value; offset += int.sizeof; } void writeLong(in long value) { reserve(long.sizeof); *cast(long*)&data[offset] = value; offset += long.sizeof; } void writeUint(in uint value) { reserve(uint.sizeof); *cast(uint*)&data[offset] = value; offset += uint.sizeof; } void writeUlong(in ulong value) { reserve(ulong.sizeof); *cast(ulong*)&data[offset] = value; offset += ulong.sizeof; } void writeInt32(in int32 value) { reserve(int32.sizeof); *cast(int32*)&data[offset] = value; offset += int32.sizeof; } void writeInt64(in int64 value) { reserve(int64.sizeof); *cast(int64*)&data[offset] = value; offset += int64.sizeof; } void writeUint32(in uint32 value) { reserve(uint32.sizeof); *cast(uint32*)&data[offset] = value; offset += uint32.sizeof; } void writeUint64(in uint64 value) { reserve(uint64.sizeof); *cast(uint64*)&data[offset] = value; offset += uint64.sizeof; } void writeUint256(in uint256 value) { reserve(uint256.sizeof); *cast(uint256*)&data[offset] = value; offset += uint256.sizeof; } void writeUint512(in uint512 value) { reserve(uint512.sizeof); *cast(uint512*)&data[offset] = value; offset += uint512.sizeof; } void writeString(string value) { ubyte[] ascii = cast(ubyte[]) value; writeInt32(cast(int32) ascii.length); write(ascii); } void write(in int32 value) { reserve(int32.sizeof); *cast(int32*)&data[offset] = value; offset += int32.sizeof; } void write(in int64 value) { reserve(int64.sizeof); *cast(int64*)&data[offset] = value; offset += int64.sizeof; } void write(in uint32 value) { reserve(uint32.sizeof); *cast(uint32*)&data[offset] = value; offset += uint32.sizeof; } void write(in uint64 value) { reserve(uint64.sizeof); *cast(uint64*)&data[offset] = value; offset += uint64.sizeof; } void write(in uint256 value) { reserve(uint256.sizeof); *cast(uint256*)&data[offset] = value; offset += uint256.sizeof; } void write(in uint512 value) { reserve(uint512.sizeof); *cast(uint512*)&data[offset] = value; offset += uint512.sizeof; } /* void write(in string value) { writeString(value); } */ void write(InputStream stream, ulong nbytes = 0) { } void flush() { data.length = 0; offset = 0; } void clear() { data.length = 0; offset = 0; } void finalize() { data.length = 0; offset = 0; } }
D
module org.serviio.library.local.metadata.extractor.embedded.h264; public import org.serviio.library.local.metadata.extractor.embedded.h264.AbstractBufferWrapper; public import org.serviio.library.local.metadata.extractor.embedded.h264.AnnexBNALUnitReader; public import org.serviio.library.local.metadata.extractor.embedded.h264.AspectRatio; public import org.serviio.library.local.metadata.extractor.embedded.h264.BitstreamElement; public import org.serviio.library.local.metadata.extractor.embedded.h264.BitstreamReader; public import org.serviio.library.local.metadata.extractor.embedded.h264.BTree; public import org.serviio.library.local.metadata.extractor.embedded.h264.BufferWrapper; public import org.serviio.library.local.metadata.extractor.embedded.h264.BufferWrapperImpl; public import org.serviio.library.local.metadata.extractor.embedded.h264.CAVLCReader; public import org.serviio.library.local.metadata.extractor.embedded.h264.CharCache; public import org.serviio.library.local.metadata.extractor.embedded.h264.ChromaFormat; public import org.serviio.library.local.metadata.extractor.embedded.h264.HRDParameters; public import org.serviio.library.local.metadata.extractor.embedded.h264.NALUnit; public import org.serviio.library.local.metadata.extractor.embedded.h264.NALUnitReader; public import org.serviio.library.local.metadata.extractor.embedded.h264.NALUnitType; public import org.serviio.library.local.metadata.extractor.embedded.h264.ScalingList; public import org.serviio.library.local.metadata.extractor.embedded.h264.ScalingMatrix; public import org.serviio.library.local.metadata.extractor.embedded.h264.SeqParameterSet; public import org.serviio.library.local.metadata.extractor.embedded.h264.VUIParameters;
D
import std.stdio, std.math, std.string, std.array; void main(){ string input = "37107287533902102798797998220837590246510135740250463769376774900097126481248969700780504170182605387432498619952474105947423330951305812372661730962991942213363574161572522430563301811072406154908250230675882075393461711719803104210475137780632466768926167069662363382013637841838368417873436172675728112879812849979408065481931592621691275889832738442742289174325203219235894228767964876702721893184745144573600130643909116721685684458871160315327670386486105843025439939619828917593665686757934951621764571418565606295021572231965867550793241933316490635246274190492910143244581382266334794475817892575867718337217661963751590579239728245598838407582035653253593990084026335689488301894586282278288018119938482628201427819413994056758715117009439035398664372827112653829987240784473053190104293586865155060062958648615320752733719591914205172558297169388870771546649911559348760353292171497005693854370070576826684624621495650076471787294438377604532826541087568284431911906346940378552177792951453612327252500029607107508256381565671088525835072145876576172410976447339110607218265236877223636045174237069058518606604482076212098132878607339694128114266041808683061932846081119106155694051268969251934325451728388641918047049293215058642563049483624672216484350762017279180399446930047329563406911573244438690812579451408905770622942919710792820955037687525678773091862540744969844508330393682126183363848253301546861961243487676812975343759465158038628759287849020152168555482871720121925776695478182833757993103614740356856449095527097864797581167263201004368978425535399209318374414978068609844840309812907779179908821879532736447567559084803087086987551392711854517078544161852424320693150332599594068957565367821070749269665376763262354472106979395067965269474259770973916669376304263398708541052684708299085211399427365734116182760315001271653786073615010808570091499395125570281987460043753582903531743471732693212357815498262974255273730794953759765105305946966067683156574377167401875275889028025717332296191766687138199318110487701902712526768027607800301367868099252546340106163286652636270218540497705585629946580636237993140746255962240744869082311749777923654662572469233228109171419143028819710328859780666976089293863828502533340334413065578016127815921815005561868836468420090470230530811728164304876237919698424872550366387845831148769693215490281042402013833512446218144177347063783299490636259666498587618221225225512486764533677201869716985443124195724099139590089523100588229554825530026352078153229679624948164195386821877476085327132285723110424803456124867697064507995236377742425354112916842768655389262050249103265729672370191327572567528565324825826546309220705859652229798860272258331913126375147341994889534765745501184957014548792889848568277260777137214037988797153829820378303147352772158034814451349137322665138134829543829199918180278916522431027392251122869539409579530664052326325380441000596549391598795936352974615218550237130764225512118369380358038858490341698116222072977186158236678424689157993532961922624679571944012690438771072750481023908955235974572318970677254791506150550495392297953090112996751986188088225875314529584099251203829009407770775672113067397083047244838165338735023408456470580773088295917476714036319800818712901187549131054712658197623331044818386269515456334926366572897563400500428462801835170705278318394258821455212272512503275512160354698120058176216521282765275169129689778932238195734329339946437501907836945765883352399886755061649651847751807381688378610915273579297013376217784275219262340194239963916804498399317331273132924185707147349566916674687634660915035914677504995186714302352196288948901024233251169136196266227326746080059154747183079839286853520694694454072476841822524674417161514036427982273348055556214818971426179103425986472045168939894221798260880768528778364618279934631376775430780936333301898264209010848802521674670883215120185883543223812876952786713296124747824645386369930090493103636197638780396218407357239979422340623539380833965132740801111666627891981488087797941876876144230030984490851411606618262936828367647447792391803351109890697907148578694408955299065364044742557608365997664579509666024396409905389607120198219976047599490197230297649139826800329731560371200413779037855660850892521673093931987275027546890690370753941304265231501194809377245048795150954100921645863754710598436791786391670211874924319957006419179697775990283006991536871371193661495281130587638027841075444973307840789923115535562561142322423255033685442488917353448899115014406480203690680639606723221932041495354150312888033953605329934036800697771065056663195481234880673210146739058568557934581403627822703280826165707739483275922328459417065250945123252306082291880205877731971983945018088807242966198081119777158542502016545090413245809786882778948721859617721078384350691861554356628840622574736922845095162084960398013400172393067166682355524525280460972253503534226472524250874054075591789781264330331690"; for(){ } }
D