code
stringlengths 3
10M
| language
stringclasses 31
values |
|---|---|
module dbindings;
import pyd.pyd;
import ea.population;
import ea.individual;
import ea.ea_config;
import flatland.agent;
import flatland.simulator;
import flatland.evolve;
import ann.ann;
import beertracker.agent;
import beertracker.object;
import beertracker.simulator;
import beertracker.evolve;
import ann.ann_config;
import ea.beertrackerindividual;
import ea.beertrackerpopulation;
import ann.ctrnn;
public class DBindings { }
// PyD API
extern(C) void PydMain() {
module_init();
wrap_class!(
Population,
Init!(EaConfig),
Repr!(Population.toString),
Property!(Population.getChildren),
Property!(Population.getAdults),
Property!(Population.getAverageFitness),
Property!(Population.getStandardDeviation),
Def!(Population.develop),
Def!(Population.evaluate),
Def!(Population.adultSelection),
Def!(Population.parentSelection),
Def!(Population.reproduce),
Def!(Population.generateInformation)
)();
wrap_class!(
Individual,
Init!(EaConfig),
Property!(Individual.getPhenotype),
Property!(Individual.getFitness),
Property!(Individual.setFitnessRange),
Property!(Individual.getFitnessRange),
Property!(Individual.addDevouredFood),
Property!(Individual.addDevouredPoison)
)();
wrap_class!(
FlatlandAgent,
Init!(int, int),
Def!(FlatlandAgent.setX),
Def!(FlatlandAgent.setY),
Def!(FlatlandAgent.moveForward),
Def!(FlatlandAgent.turnRight),
Def!(FlatlandAgent.turnLeft),
Def!(FlatlandAgent.getX),
Def!(FlatlandAgent.getY),
Def!(FlatlandAgent.sense),
Def!(FlatlandAgent.getFoodsEaten),
Def!(FlatlandAgent.getPoisonsEaten)
)();
wrap_class!(
FlatlandSimulator,
Init!(int, int, int[][], int),
Def!(FlatlandSimulator.completed),
Def!(FlatlandSimulator.move),
Def!(FlatlandSimulator.printStats),
Def!(FlatlandSimulator.getMoves),
Property!(FlatlandSimulator.getCells),
Property!(FlatlandSimulator.getDevouredFood),
Property!(FlatlandSimulator.getDevouredPoison),
Property!(FlatlandSimulator.getAgent),
Property!(FlatlandSimulator.getTotalFoods),
Property!(FlatlandSimulator.getTotalPoisons)
)();
wrap_class!(
EaConfig,
Init!(),
Init!(int,int,int,int,string,string,float,int,float,float,float,int,string,float,float,float,float,float,float,float,bool,bool,int),
Property!(EaConfig.getGenerations),
Property!(EaConfig.getPopulationSize),
Property!(EaConfig.getNumberOfChildren),
Property!(EaConfig.getGenotypeLength),
Property!(EaConfig.getAdultSelection),
Property!(EaConfig.getParentSelection),
Property!(EaConfig.getTournamentEpsilon),
Property!(EaConfig.getTournamentGroupSize),
Property!(EaConfig.getBoltzmannTemperature),
Property!(EaConfig.getBoltzmannDeltaT),
Property!(EaConfig.getCrossoverRate),
Property!(EaConfig.getChildrenPerPair),
Property!(EaConfig.getMutationType),
Property!(EaConfig.getMutationRate),
Property!(EaConfig.getFoodBonus),
Property!(EaConfig.getPoisonPenalty),
Property!(EaConfig.getSmallObjectBonus),
Property!(EaConfig.getBigObjectPenalty),
Property!(EaConfig.isNoWrap),
Property!(EaConfig.isPullMode)
)();
wrap_class!(
AnnConfig,
Init!(),
Property!(AnnConfig.getLayer1Function),
Property!(AnnConfig.getLayer2Function)
)();
wrap_class!(
BeerTrackerObject,
Init!(int, int),
Property!(BeerTrackerObject.getX),
Property!(BeerTrackerObject.getY),
Property!(BeerTrackerObject.getSize)
)();
wrap_class!(
BeerTrackerAgent,
Init!()
)();
wrap_class!(
BeerTrackerSimulator,
Init!(EaConfig),
Property!(BeerTrackerSimulator.getObject),
Property!(BeerTrackerSimulator.getAgent),
Property!(BeerTrackerSimulator.getAvoidedBigObjects),
Property!(BeerTrackerSimulator.getAvoidedSmallObjects),
Property!(BeerTrackerSimulator.getCapturedBigObjects),
Property!(BeerTrackerSimulator.getCapturedSmallObjects),
Def!(BeerTrackerSimulator.descendObject),
Def!(BeerTrackerSimulator.moveAgent),
Def!(BeerTrackerSimulator.completed),
Def!(BeerTrackerSimulator.getSensors),
Def!(BeerTrackerSimulator.reset)
)();
wrap_class!(
ANN,
Init!(AnnConfig),
Def!(ANN.setWeightsSynapsis0),
Def!(ANN.setWeightsSynapsis1),
Def!(ANN.predict),
Def!(ANN.getMove)
)();
wrap_class!(
FlatlandEvolve,
Init!(Population, ANN, int, int, int[][][], int, bool),
Property!(FlatlandEvolve.getHighestFitness),
Property!(FlatlandEvolve.getFittestPhenotype),
Def!(FlatlandEvolve.evolve),
Def!(FlatlandEvolve.generateMap)
)();
wrap_class!(
BeerTrackerEvolve,
Init!(EaConfig),
Property!(BeerTrackerEvolve.getHighestFitness),
Property!(BeerTrackerEvolve.getFittestPhenotype),
Def!(BeerTrackerEvolve.evolve),
Property!(BeerTrackerEvolve.getStandardDeviation),
Property!(BeerTrackerEvolve.getAverageFitness),
Property!(BeerTrackerSimulator.getAvoidedBigObjects),
Property!(BeerTrackerSimulator.getAvoidedSmallObjects),
Property!(BeerTrackerSimulator.getCapturedBigObjects),
Property!(BeerTrackerSimulator.getCapturedSmallObjects)
)();
wrap_class!(
BeerTrackerIndividual,
Init!(EaConfig),
Property!(BeerTrackerIndividual.getPhenotype),
Property!(BeerTrackerIndividual.getFitness),
Property!(BeerTrackerIndividual.setFitnessRange),
Property!(BeerTrackerIndividual.getFitnessRange),
Property!(BeerTrackerIndividual.setAvoidedBigObjects),
Property!(BeerTrackerIndividual.getAvoidedBigObjects),
Property!(BeerTrackerIndividual.setAvoidedSmallObjects),
Property!(BeerTrackerIndividual.getAvoidedSmallObjects),
Property!(BeerTrackerIndividual.setCapturedBigObjects),
Property!(BeerTrackerIndividual.getCapturedBigObjects),
Property!(BeerTrackerIndividual.setCapturedSmallObjects),
Property!(BeerTrackerIndividual.getCapturedSmallObjects)
)();
wrap_class!(
BeerTrackerPopulation,
Init!(EaConfig),
Repr!(BeerTrackerPopulation.toString),
Property!(BeerTrackerPopulation.getChildren),
Property!(BeerTrackerPopulation.getAdults),
Property!(BeerTrackerPopulation.getAverageFitness),
Property!(BeerTrackerPopulation.getStandardDeviation),
Def!(BeerTrackerPopulation.develop),
Def!(BeerTrackerPopulation.evaluate),
Def!(BeerTrackerPopulation.adultSelection),
Def!(BeerTrackerPopulation.parentSelection),
Def!(BeerTrackerPopulation.reproduce),
Def!(BeerTrackerPopulation.generateInformation)
)();
wrap_class!(
CTRNN,
Init!(AnnConfig, EaConfig),
Def!(CTRNN.setWeightsSynapsis0),
Def!(CTRNN.setWeightsSynapsis1),
Def!(CTRNN.setGains0),
Def!(CTRNN.setGains1),
Def!(CTRNN.setTimeConstants0),
Def!(CTRNN.setTimeConstants1),
Def!(CTRNN.getMove),
Def!(CTRNN.loadPhenotype),
Def!(CTRNN.predict)
)();
}
|
D
|
module SetAffinity;
pragma(lib, "gdi32.lib");
import core.memory;
import core.runtime;
import core.thread;
import core.stdc.string;
import std.conv;
import std.math;
import std.range;
import std.string;
import std.utf;
import core.sys.windows.windef;
import core.sys.windows.winuser;
import core.sys.windows.wingdi;
import core.sys.windows.winbase;
import core.sys.windows.commdlg;
pragma(lib, "comdlg32.lib");
import std.algorithm;
import std.array;
import std.stdio;
import std.conv;
import std.typetuple;
import std.typecons;
import std.traits;
auto toUTF16z(S) (S s)
{
return toUTFz!(const(wchar)*)(s);
}
size_t getNthAffinityMaskBit(size_t n)
{
version (Windows)
{
/*
* This basically asks the system for the affinity
* mask and uses the N-th set bit in it, where
* N == thread id % number of bits set in the mask.
*
* Could be rewritten with intrinsics, but only
* DMD seems to have these.
*/
size_t sysAffinity, thisAffinity;
if (!GetProcessAffinityMask(
GetCurrentProcess(),
&thisAffinity,
&sysAffinity
) || 0 == sysAffinity)
{
throw new Exception("GetProcessAffinityMask failed");
}
size_t i = n;
size_t affinityMask = 1;
while (i-- != 0)
{
do
{
affinityMask <<= 1;
if (0 == affinityMask)
{
affinityMask = 1;
}
}
while (0 == (affinityMask & thisAffinity));
}
affinityMask &= thisAffinity;
assert(affinityMask != 0);
}
else
{
// todo
assert(n < size_t.sizeof * 8);
size_t affinityMask = 1;
affinityMask <<= n;
}
return affinityMask;
}
extern (Windows)
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow)
{
int result;
try
{
Runtime.initialize();
myMain();
Runtime.terminate();
}
catch (Throwable o)
{
MessageBox(null, o.toString().toUTF16z, "Error", MB_OK | MB_ICONEXCLAMATION);
result = 0;
}
return result;
}
void myMain()
{
writeln( getNthAffinityMaskBit(0) );
writeln( getNthAffinityMaskBit(1) );
writeln( getNthAffinityMaskBit(2) );
writeln( getNthAffinityMaskBit(3) );
writeln( getNthAffinityMaskBit(4) );
}
|
D
|
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
module visuald.colorizer;
import visuald.windows;
import std.string;
import std.ascii;
import std.utf;
import std.conv;
import std.algorithm;
import std.datetime;
import visuald.comutil;
import visuald.logutil;
import visuald.hierutil;
import visuald.fileutil;
import visuald.stringutil;
import visuald.pkgutil;
import visuald.simpleparser;
import visuald.dpackage;
import visuald.dlangsvc;
import visuald.config;
import vdc.lexer;
import vdc.versions;
import stdext.string;
import sdk.port.vsi;
import sdk.vsi.textmgr;
import sdk.vsi.textmgr2;
import sdk.vsi.vsshell80;
// version = LOG;
enum TokenColor
{
// assumed to match lexer.TokenCat and colorableItems in dlangsvc.d
Text = cast(int) TokenCat.Text,
Keyword = TokenCat.Keyword,
Comment = TokenCat.Comment,
Identifier = TokenCat.Identifier,
String = TokenCat.String,
Literal = TokenCat.Literal,
Text2 = TokenCat.Text2,
Operator = TokenCat.Operator,
// colorizer specifics:
AsmRegister,
AsmMnemonic,
UserType,
Version,
DisabledKeyword,
DisabledComment,
DisabledIdentifier,
DisabledString,
DisabledLiteral,
DisabledText,
DisabledOperator,
DisabledAsmRegister,
DisabledAsmMnemonic,
DisabledUserType,
DisabledVersion,
StringKeyword,
StringComment,
StringIdentifier,
StringString,
StringLiteral,
StringText,
StringOperator,
StringAsmRegister,
StringAsmMnemonic,
StringUserType,
StringVersion,
CoverageKeyword,
NonCoverageKeyword,
}
int[wstring] parseUserTypes(string spec)
{
int color = TokenColor.UserType;
int[wstring] types;
types["__ctfe"] = TokenColor.Keyword;
foreach(t; tokenizeArgs(spec))
{
switch(t)
{
case "[Keyword]": color = TokenColor.Keyword; break;
case "[Comment]": color = TokenColor.Comment; break;
case "[Identifier]": color = TokenColor.Identifier; break;
case "[String]": color = TokenColor.String; break;
case "[Number]": color = TokenColor.Literal; break;
case "[Text]": color = TokenColor.Text; break;
case "[Operator]": color = TokenColor.Operator; break;
case "[Register]": color = TokenColor.AsmRegister;break;
case "[Mnemonic]": color = TokenColor.AsmMnemonic;break;
case "[Type]": color = TokenColor.UserType; break;
case "[Version]": color = TokenColor.Version; break;
default: types[to!wstring(t)] = color; break;
}
}
return types;
}
///////////////////////////////////////////////////////////////////////////////
class ColorableItem : DComObject, IVsColorableItem, IVsHiColorItem
{
private string mDisplayName;
private COLORINDEX mBackground;
private COLORINDEX mForeground;
private COLORREF mRgbForeground;
private COLORREF mRgbBackground;
this(string displayName, COLORINDEX foreground, COLORINDEX background,
COLORREF rgbForeground = 0, COLORREF rgbBackground = 0)
{
mDisplayName = displayName;
mBackground = background;
mForeground = foreground;
mRgbForeground = rgbForeground;
mRgbBackground = rgbBackground;
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface!(IVsColorableItem) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsHiColorItem) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// IVsColorableItem
HRESULT GetDefaultColors(/+[out]+/ COLORINDEX *piForeground, /+[out]+/ COLORINDEX *piBackground)
{
if(!piForeground || !piBackground)
return E_INVALIDARG;
*piForeground = mForeground;
*piBackground = mBackground;
return S_OK;
}
HRESULT GetDefaultFontFlags(/+[out]+/ DWORD *pdwFontFlags) // see FONTFLAGS enum
{
if(!pdwFontFlags)
return E_INVALIDARG;
*pdwFontFlags = 0;
return S_OK;
}
HRESULT GetDisplayName(/+[out]+/ BSTR * pbstrName)
{
if(!pbstrName)
return E_INVALIDARG;
*pbstrName = allocBSTR(mDisplayName);
return S_OK;
}
// IVsHiColorItem
HRESULT GetColorData(in VSCOLORDATA cdElement, /+[out]+/ COLORREF* pcrColor)
{
if(cdElement == CD_FOREGROUND && mForeground == -1)
{
*pcrColor = mRgbForeground;
return S_OK;
}
if(cdElement == CD_BACKGROUND && mBackground == -1)
{
*pcrColor = mRgbBackground;
return S_OK;
}
return E_NOTIMPL;
}
final HRESULT SetDefaultForegroundColor(COLORREF color)
{
mRgbForeground = color;
return S_OK;
}
final string GetDisplayName()
{
return mDisplayName;
}
}
class Colorizer : DisposingComObject, IVsColorizer, ConfigModifiedListener
{
// mLineState keeps track of evaluated states, assuming the interesting lines have been processed
// after the last changes
// the lower 20 bits are used by the lexer, the upper 12 bits encode the version state
// TBBB_BBBB_PPPP
// PPPP - version parse state
// BBBB - brace count
// T - toggle bit to force change
int[] mLineState;
int mLastValidLine;
Source mSource;
ParserBase!wstring mParser;
Config mConfig;
bool mColorizeVersions;
bool mColorizeCoverage;
bool mParseSource;
enum int kIndexVersion = 0;
enum int kIndexDebug = 1;
// index 0 for version, index 1 for debug
int[wstring][2] mVersionIds; // positive: lineno defined
int[2] mVersionLevel = [ -1, -1 ];
int[2] mVersionLevelLine = [ -2, -2 ]; // -2 never defined, -1 if set on command line
int[wstring] mDebugIds; // positive: lineno defined
int mDebugLevel = -1;
int mDebugLevelLine = -2; // -2 never defined, -1 if set on command line
string[2] mConfigVersions;
ubyte mConfigRelease;
bool mConfigUnittest;
bool mConfigX64;
bool mConfigMSVCRT;
bool mConfigCoverage;
bool mConfigDoc;
bool mConfigNoBoundsCheck;
ubyte mConfigCompiler;
int[] mCoverage;
float mCoveragePercent;
string mLastCoverageFile;
SysTime mLastTestCoverageFile;
SysTime mLastModifiedCoverageFile;
enum VersionParseState
{
IdleEnabled,
IdleDisabled,
IdleEnabledVerify, // verify enable state on next token
IdleDisabledVerify,
VersionParsed, // version, expecting = or (
AssignParsed, // version=, expecting identifier or number
ParenLParsed, // version(, expecting identifier or number
IdentNumberParsedEnable, // version(identifier|number, expecting )
IdentNumberParsedDisable, // version(identifier|number, expecting )
ParenRParsedEnable, // version(identifier|number), check for '{'
ParenRParsedDisable, // version(identifier|number), check for '{'
AsmParsedEnabled, // enabled asm, expecting {
AsmParsedDisabled, // disabled asm, expecting {
InAsmBlockEnabled, // inside asm {}, expecting {
InAsmBlockDisabled, // inside disabled asm {}, expecting {
}
static assert(VersionParseState.max <= 15);
this(Source src)
{
mSource = src;
mParser = new ParserBase!wstring;
mColorizeVersions = Package.GetGlobalOptions().ColorizeVersions;
mColorizeCoverage = Package.GetGlobalOptions().ColorizeCoverage;
mParseSource = Package.GetGlobalOptions().parseSource;
UpdateConfig();
UpdateCoverage(true);
}
~this()
{
}
override void Dispose()
{
if(mConfig)
{
mConfig.RemoveModifiedListener(this);
mConfig = null;
}
}
override HRESULT QueryInterface(in IID* riid, void** pvObject)
{
if(queryInterface!(IVsColorizer) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
// IVsColorizer //////////////////////////////////////
override int GetStateMaintenanceFlag(BOOL* pfFlag)
{
// version(LOG) mixin(LogCallMix2);
*pfFlag = false;
return S_OK;
}
override int GetStartState(int* piStartState)
{
version(LOG) mixin(LogCallMix2);
*piStartState = 0;
return S_OK;
}
override int ColorizeLine(in int iLine, in int iLength, in wchar* pText, in int iState, uint* pAttributes)
{
bool versionsChanged = false;
int state = GetLineState(iLine);
GetLineState(iLine + 1); // ensure the line has been parsed
wstring text = to_cwstring(pText, iLength);
version(LOG) logCall("%s.ColorizeLine(%d,%x): %s", this, iLine, state, text);
version(LOG) mixin(_LogIndentNoRet);
uint pos = 0;
bool inTokenString = (Lexer.tokenStringLevel(state) > 0);
int cov = -1;
int covtype = TokenColor.CoverageKeyword;
if(mColorizeCoverage && mCoverage.length)
{
int covLine = mSource.adjustLineNumberSinceLastBuildReverse(iLine, true);
cov = covLine >= mCoverage.length ? -1 : mCoverage[covLine];
covtype = cov == 0 ? TokenColor.NonCoverageKeyword : TokenColor.CoverageKeyword;
}
int back = 0; // COLOR_MARKER_MASK;
LanguageService langsvc = Package.GetLanguageService();
while(pos < iLength)
{
uint prevpos = pos;
int type = dLex.scan(state, text, pos);
bool nowInTokenString = (Lexer.tokenStringLevel(state) > 0);
wstring tok = text[prevpos..pos];
ParserSpan span;
if (pos >= text.length)
span = ParserSpan(prevpos, iLine, 0, iLine + 1);
else
span = ParserSpan(prevpos, iLine, pos, iLine);
if(tok[0] == 'i')
if(tok == "in" || tok == "is")
{
if(langsvc.isBinaryOperator(mSource, iLine + 1, prevpos, iLine + 1, pos))
type = TokenColor.Operator;
else
type = TokenColor.Keyword;
}
if(cov >= 0)
{
type = covtype;
}
else
{
if(mColorizeVersions)
{
if(Lexer.isCommentOrSpace(type, tok) || (inTokenString || nowInTokenString))
{
int parseState = getParseState(state);
if(type == TokenColor.Identifier || type == TokenColor.Keyword)
type = userColorType(tok, type);
if(parseState == VersionParseState.IdleDisabled || parseState == VersionParseState.IdleDisabledVerify)
type = disabledColorType(type);
}
else
{
type = parseVersions(span, type, tok, state, versionsChanged);
}
}
if(inTokenString || nowInTokenString)
type = stringColorType(type);
//else if(mParseSource)
// type = parseErrors(span, type, tok);
}
inTokenString = nowInTokenString;
while(prevpos < pos)
pAttributes[prevpos++] = type | back;
}
pAttributes[iLength] = (cov >= 0 ? covtype : TokenColor.Text) | back;
return S_OK;
}
override int GetStateAtEndOfLine(in int iLine, in int iLength, in wchar* pText, in int iState)
{
version(LOG) mixin(LogCallMix2);
assert(_false); // should not be called if GetStateMaintenanceFlag return false
bool versionsChanged;
wstring text = to_cwstring(pText, iLength);
return GetStateAtEndOfLine(iLine, text, iState, versionsChanged);
}
int ScanAndParse(int iLine, wstring text, bool doShift, ref int state, ref uint pos, ref bool versionsChanged)
{
uint prevpos = pos;
int id;
int type = dLex.scan(state, text, pos, id);
if(mColorizeVersions)
{
wstring txt = text[prevpos..pos];
if(!dLex.isCommentOrSpace(type, txt))
{
ParserToken!wstring tok;
tok.type = type;
tok.text = txt;
tok.id = id;
if (pos >= text.length)
tok.span = ParserSpan(prevpos, iLine, 0, iLine + 1);
else
tok.span = ParserSpan(prevpos, iLine, pos, iLine);
bool inTokenString = (dLex.tokenStringLevel(state) > 0);
if(doShift)
mParser.shift(tok);
if (!inTokenString)
type = parseVersions(tok.span, type, txt, state, versionsChanged);
}
}
return type;
}
int GetStateAtEndOfLine(in int iLine, wstring text, in int iState, ref bool versionsChanged)
{
version(LOG) logCall("%s.GetStateAtEndOfLine(%d,%s,%x)", this, iLine, text, iState);
version(LOG) mixin(_LogIndentNoRet);
// SaveLineState(iLine, iState);
if(mColorizeVersions)
{
versionsChanged = clearVersions(iLine);
syncParser(iLine);
}
int state = iState;
uint pos = 0;
while(pos < text.length)
ScanAndParse(iLine, text, true, state, pos, versionsChanged);
/*
if(versionsChanged && iLine + 1 < mLineState.length)
{
int nextState = mLineState[iLine + 1];
if(nextState == state)
state ^= 1 << 31;
}
*/
lastParserLine = iLine + 1;
lastParserIndex = 0;
version(LOG) logCall("%s.GetStateAtEndOfLine returns state %x", this, state);
return state;
}
override int CloseColorizer()
{
version(LOG) mixin(LogCallMix);
return S_OK;
}
//////////////////////////////////////////////////////////////
void drawCoverageOverlay(HWND hwnd, WPARAM wParam, LPARAM lParam, IVsTextView view)
{
if(!mColorizeCoverage || !mCoverage.length)
return;
HDC hDC = GetDC(hwnd);
RECT r;
GetClientRect(hwnd, &r);
SelectObject(hDC, GetStockObject(BLACK_PEN));
int h = 10;
view.GetLineHeight(&h);
int iMinUnit, iMaxUnit, iVisibleUnits, iFirstVisibleUnit;
view.GetScrollInfo (1, &iMinUnit, &iMaxUnit, &iVisibleUnits, &iFirstVisibleUnit);
LOGFONTW logfont;
FontInfo fontInfo;
ColorableItemInfo textColor, covColor, noncovColor, nocovColor;
IVsFontAndColorStorage pIVsFontAndColorStorage = queryService!(IVsFontAndColorStorage);
if(pIVsFontAndColorStorage)
{
scope(exit) release(pIVsFontAndColorStorage);
auto flags = FCSF_READONLY|FCSF_LOADDEFAULTS|FCSF_NOAUTOCOLORS;
if(pIVsFontAndColorStorage.OpenCategory(&GUID_TextEditorFC, flags) == S_OK)
{
pIVsFontAndColorStorage.GetFont(&logfont, &fontInfo);
pIVsFontAndColorStorage.GetItem("Plain Text", &textColor);
pIVsFontAndColorStorage.GetItem("Indicator Margin", &covColor);
textColor.bBackgroundValid = covColor.bBackgroundValid;
textColor.crBackground = covColor.crBackground;
pIVsFontAndColorStorage.GetItem("Visual D Text Coverage", &covColor);
pIVsFontAndColorStorage.GetItem("Visual D Text Non-Coverage", &noncovColor);
pIVsFontAndColorStorage.GetItem("Visual D Margin No Coverage", &nocovColor);
pIVsFontAndColorStorage.CloseCategory();
}
}
HFONT fnt = CreateFontIndirect(&logfont);
if(fnt)
SelectObject(hDC, fnt);
SetTextAlign(hDC, TA_RIGHT);
int x0 = r.right - 40;
for(int i = 0; i <= iVisibleUnits; i++)
{
RECT tr = { x0, h * i, r.right, h * i + h };
int iLine = iFirstVisibleUnit + i;
int covLine = mSource.adjustLineNumberSinceLastBuildReverse(iLine, true);
int cov = covLine >= mCoverage.length ? -1 : mCoverage[covLine];
string s;
ColorableItemInfo *info = &covColor;
if(cov < 0)
{
if (iLine == 0 && mCoveragePercent >= 0)
s = text(mCoveragePercent) ~ "%";
info = &nocovColor;
}
else if(cov == 0)
{
s = "0";
info = &noncovColor;
}
else if(cov > 9999)
s = ">9999";
else
s = text(cov);
if(info.bForegroundValid)
SetTextColor(hDC, info.crForeground);
if(info.bBackgroundValid)
SetBkColor(hDC, info.crBackground);
ExtTextOutA(hDC, tr.right - 1, tr.top, ETO_OPAQUE, &tr, s.ptr, s.length, null);
}
MoveToEx(hDC, x0, r.top, null);
LineTo(hDC, x0, r.bottom);
if(fnt)
DeleteObject(fnt);
ReleaseDC(hwnd, hDC);
}
//////////////////////////////////////////////////////////////
int lastParserLine;
int lastParserIndex;
void syncParser(int line)
{
if(line == lastParserLine && lastParserIndex == 0)
return;
lastParserLine = line;
lastParserIndex = 0;
mParser.prune(lastParserLine, lastParserIndex);
if(line == lastParserLine && lastParserIndex == 0)
return;
assert(lastParserLine >= 0 && lastParserLine < line);
assert(lastParserLine < mLineState.length);
version(LOG) logCall("%s.syncParser(%d) restarts at [%d,%d]", this, line, lastParserLine, lastParserIndex);
version(LOG) mixin(_LogIndentNoRet);
int state = mLineState[lastParserLine];
assert(state != -1);
wstring text = mSource.GetText(lastParserLine, 0, lastParserLine, -1);
bool versionsChanged;
// scan until we find the position of the parser token
uint pos = 0;
while(pos < text.length && pos < lastParserIndex)
ScanAndParse(lastParserLine, text, false, state, pos, versionsChanged);
// parse the rest of the lines
for( ; ; )
{
while(pos < text.length)
ScanAndParse(lastParserLine, text, true, state, pos, versionsChanged);
lastParserLine++;
if(lastParserLine >= line)
break;
text = mSource.GetText(lastParserLine, 0, lastParserLine, -1);
pos = 0;
}
lastParserIndex = 0;
}
//////////////////////////////////////////////////////////////
bool _clearVersions(int debugOrVersion, int iLine)
{
wstring[] toremove;
foreach(id, line; mVersionIds[debugOrVersion])
if(line == iLine)
toremove ~= id;
foreach(id; toremove)
mVersionIds[debugOrVersion].remove(id);
if(mVersionLevelLine[debugOrVersion] == iLine)
{
mVersionLevelLine[debugOrVersion] = -2;
mVersionLevel[debugOrVersion] = -1;
return true;
}
return toremove.length > 0;
}
bool clearVersions(int iLine)
{
return _clearVersions(0, iLine)
| _clearVersions(1, iLine);
}
void defineVersion(int line, int num, int debugOrVersion, ref bool versionsChanged)
{
if(mVersionLevel[debugOrVersion] < 0 || line < mVersionLevelLine[debugOrVersion])
{
mVersionLevelLine[debugOrVersion] = line;
mVersionLevel[debugOrVersion] = num;
versionsChanged = true;
}
}
bool isVersionEnabled(int line, int num, int debugOrVersion)
{
if(num == 0)
return true;
if(line >= mVersionLevelLine[debugOrVersion] && num <= mVersionLevel[debugOrVersion])
return true;
string versionids = mConfigVersions[debugOrVersion];
string[] versions = tokenizeArgs(versionids);
foreach(ver; versions)
if(dLex.isInteger(ver) && to!int(ver) >= num)
return true;
return false;
}
bool defineVersion(int line, wstring ident, int debugOrVersion, ref bool versionsChanged)
{
if (debugOrVersion == 0)
{
int res = versionPredefined(ident);
if(res != 0)
return false;
}
int *pline = ident in mVersionIds[debugOrVersion];
if(!pline)
mVersionIds[debugOrVersion][ident] = line;
else if(*pline < 0 && -*pline > line)
*pline = line;
else if(*pline >= 0 && *pline > line)
*pline = line;
else if(*pline >= 0 && *pline == line)
return true;
else
return false;
versionsChanged = true;
return true;
}
__gshared int[wstring] predefinedVersions;
shared static this()
{
foreach(v, p; vdc.versions.sPredefinedVersions)
predefinedVersions[to!wstring(v)] = p;
}
int versionPredefined(wstring ident)
{
int* p = ident in predefinedVersions;
if(!p)
return 0;
if(*p != 0)
return *p;
switch(ident)
{
case "unittest":
return mConfigUnittest ? 1 : -1;
case "assert":
return mConfigUnittest || mConfigRelease != 1 ? 1 : -1;
case "D_Coverage":
return mConfigCoverage ? 1 : -1;
case "D_Ddoc":
return mConfigDoc ? 1 : -1;
case "D_NoBoundsChecks":
return mConfigNoBoundsCheck ? 1 : -1;
case "Win32":
case "X86":
case "D_InlineAsm_X86":
return mConfigX64 ? -1 : 1;
case "Win64":
case "X86_64":
case "D_InlineAsm_X86_64":
case "D_LP64":
return mConfigX64 ? 1 : -1;
case "GNU":
return mConfigCompiler == Compiler.GDC ? 1 : -1;
case "LDC":
return mConfigCompiler == Compiler.LDC ? 1 : -1;
case "DigitalMars":
return mConfigCompiler == Compiler.DMD ? 1 : -1;
case "CRuntime_DigitalMars":
return mConfigCompiler == Compiler.DMD && !mConfigMSVCRT ? 1 : -1;
case "CRuntime_Microsoft":
return (mConfigCompiler == Compiler.DMD || mConfigCompiler == Compiler.LDC) && mConfigMSVCRT ? 1 : -1;
case "MinGW":
return mConfigCompiler == Compiler.GDC || (mConfigCompiler == Compiler.LDC && !mConfigMSVCRT) ? 1 : -1;
default:
assert(false, "inconsistent predefined versions");
}
}
bool isVersionEnabled(int line, wstring ident, int debugOrVersion)
{
if(dLex.isInteger(ident))
return isVersionEnabled(line, to!int(ident), debugOrVersion);
if (debugOrVersion)
{
if(ident.length == 0 && mConfigRelease != 0)
return true;
}
else
{
int res = versionPredefined(ident);
if(res < 0)
return false;
if(res > 0)
return true;
}
string versionids = mConfigVersions[debugOrVersion];
string[] versions = tokenizeArgs(versionids);
foreach(ver; versions)
if(cmp(ver, ident) == 0)
return true;
int *pline = ident in mVersionIds[debugOrVersion];
if(!pline || *pline < 0 || *pline > line)
return false;
return true;
}
int disabledColorType(int type)
{
switch(type)
{
case TokenColor.Text2:
case TokenColor.Text: return TokenColor.DisabledText;
case TokenColor.Keyword: return TokenColor.DisabledKeyword;
case TokenColor.Comment: return TokenColor.DisabledComment;
case TokenColor.Identifier: return TokenColor.DisabledIdentifier;
case TokenColor.String: return TokenColor.DisabledString;
case TokenColor.Literal: return TokenColor.DisabledLiteral;
case TokenColor.Operator: return TokenColor.DisabledOperator;
case TokenColor.AsmRegister: return TokenColor.DisabledAsmRegister;
case TokenColor.AsmMnemonic: return TokenColor.DisabledAsmMnemonic;
case TokenColor.UserType: return TokenColor.DisabledUserType;
case TokenColor.Version: return TokenColor.DisabledVersion;
default: break;
}
return type;
}
int stringColorType(int type)
{
switch(type)
{
case TokenColor.Text2:
case TokenColor.Text: return TokenColor.StringText;
case TokenColor.Keyword: return TokenColor.StringKeyword;
case TokenColor.Comment: return TokenColor.StringComment;
case TokenColor.Identifier: return TokenColor.StringIdentifier;
case TokenColor.String: return TokenColor.StringString;
case TokenColor.Literal: return TokenColor.StringLiteral;
case TokenColor.AsmRegister: return TokenColor.StringAsmRegister;
case TokenColor.AsmMnemonic: return TokenColor.StringAsmMnemonic;
case TokenColor.UserType: return TokenColor.StringUserType;
case TokenColor.Version: return TokenColor.StringVersion;
default: break;
}
return type;
}
__gshared int[wstring] asmIdentifiers;
static const wstring[] asmKeywords = [ "__LOCAL_SIZE", "dword", "even", "far", "naked", "near", "ptr", "qword", "seg", "word", ];
static const wstring[] asmRegisters = [
"AL", "AH", "AX", "EAX",
"BL", "BH", "BX", "EBX",
"CL", "CH", "CX", "ECX",
"DL", "DH", "DX", "EDX",
"BP", "EBP", "SP", "ESP",
"DI", "EDI", "SI", "ESI",
"ES", "CS", "SS", "DS", "GS", "FS",
"CR0", "CR2", "CR3", "CR4",
"DR0", "DR1", "DR2", "DR3", "DR4", "DR5", "DR6", "DR7",
"TR3", "TR4", "TR5", "TR6", "TR7",
"MM0", "MM1", "MM2", "MM3", "MM4", "MM5", "MM6", "MM7",
"XMM0", "XMM1", "XMM2", "XMM3", "XMM4", "XMM5", "XMM6", "XMM7",
];
static const wstring[] asmMnemonics = [
"__emit", "_emit", "aaa", "aad", "aam", "aas",
"adc", "add", "addpd", "addps", "addsd", "addss",
"addsubpd", "addsubps", "and", "andnpd", "andnps", "andpd",
"andps", "arpl", "blendpd", "blendps", "blendvpd", "blendvps",
"bound", "bsf", "bsr", "bswap", "bt", "btc",
"btr", "bts", "call", "cbw", "cdq", "cdqe",
"clc", "cld", "clflush", "cli", "clts", "cmc",
"cmova", "cmovae", "cmovb", "cmovbe", "cmovc", "cmove",
"cmovg", "cmovge", "cmovl", "cmovle", "cmovna", "cmovnae",
"cmovnb", "cmovnbe", "cmovnc", "cmovne", "cmovng", "cmovnge",
"cmovnl", "cmovnle", "cmovno", "cmovnp", "cmovns", "cmovnz",
"cmovo", "cmovp", "cmovpe", "cmovpo", "cmovs", "cmovz",
"cmp", "cmppd", "cmpps", "cmps", "cmpsb", "cmpsd",
"cmpsq", "cmpss", "cmpsw", "cmpxchg", "cmpxchg16b", "cmpxchg8b",
"comisd", "comiss", "cpuid", "cqo", "crc32", "cvtdq2pd",
"cvtdq2ps", "cvtpd2dq", "cvtpd2pi", "cvtpd2ps", "cvtpi2pd", "cvtpi2ps",
"cvtps2dq", "cvtps2pd", "cvtps2pi", "cvtsd2si", "cvtsd2ss", "cvtsi2sd",
"cvtsi2ss", "cvtss2sd", "cvtss2si", "cvttpd2dq", "cvttpd2pi", "cvttps2dq",
"cvttps2pi", "cvttsd2si", "cvttss2si", "cwd", "cwde", "da",
"daa", "das", "db", "dd", "de", "dec",
"df", "di", "div", "divpd", "divps", "divsd",
"divss", "dl", "dppd", "dpps", "dq", "ds",
"dt", "dw", "emms", "enter", "extractps", "f2xm1",
"fabs", "fadd", "faddp", "fbld", "fbstp", "fchs",
"fclex", "fcmovb", "fcmovbe", "fcmove", "fcmovnb", "fcmovnbe",
"fcmovne", "fcmovnu", "fcmovu", "fcom", "fcomi", "fcomip",
"fcomp", "fcompp", "fcos", "fdecstp", "fdisi", "fdiv",
"fdivp", "fdivr", "fdivrp", "feni", "ffree", "fiadd",
"ficom", "ficomp", "fidiv", "fidivr", "fild", "fimul",
"fincstp", "finit", "fist", "fistp", "fisttp", "fisub",
"fisubr", "fld", "fld1", "fldcw", "fldenv", "fldl2e",
"fldl2t", "fldlg2", "fldln2", "fldpi", "fldz", "fmul",
"fmulp", "fnclex", "fndisi", "fneni", "fninit", "fnop",
"fnsave", "fnstcw", "fnstenv", "fnstsw", "fpatan", "fprem",
"fprem1", "fptan", "frndint", "frstor", "fsave", "fscale",
"fsetpm", "fsin", "fsincos", "fsqrt", "fst", "fstcw",
"fstenv", "fstp", "fstsw", "fsub", "fsubp", "fsubr",
"fsubrp", "ftst", "fucom", "fucomi", "fucomip", "fucomp",
"fucompp", "fwait", "fxam", "fxch", "fxrstor", "fxsave",
"fxtract", "fyl2x", "fyl2xp1", "haddpd", "haddps", "hlt",
"hsubpd", "hsubps", "idiv", "imul", "in", "inc",
"ins", "insb", "insd", "insertps", "insw", "int",
"into", "invd", "invlpg", "iret", "iretd", "ja",
"jae", "jb", "jbe", "jc", "jcxz", "je",
"jecxz", "jg", "jge", "jl", "jle", "jmp",
"jna", "jnae", "jnb", "jnbe", "jnc", "jne",
"jng", "jnge", "jnl", "jnle", "jno", "jnp",
"jns", "jnz", "jo", "jp", "jpe", "jpo",
"js", "jz", "lahf", "lar", "lddqu", "ldmxcsr",
"lds", "lea", "leave", "les", "lfence", "lfs",
"lgdt", "lgs", "lidt", "lldt", "lmsw", "lock",
"lods", "lodsb", "lodsd", "lodsq", "lodsw", "loop",
"loope", "loopne", "loopnz", "loopz", "lsl", "lss",
"ltr", "maskmovdqu", "maskmovq", "maxpd", "maxps", "maxsd",
"maxss", "mfence", "minpd", "minps", "minsd", "minss",
"monitor", "mov", "movapd", "movaps", "movd", "movddup",
"movdq2q", "movdqa", "movdqu", "movhlps", "movhpd", "movhps",
"movlhps", "movlpd", "movlps", "movmskpd", "movmskps", "movntdq",
"movntdqa", "movnti", "movntpd", "movntps", "movntq", "movq",
"movq2dq", "movs", "movsb", "movsd", "movshdup", "movsldup",
"movsq", "movss", "movsw", "movsx", "movupd", "movups",
"movzx", "mpsadbw", "mul", "mulpd", "mulps", "mulsd",
"mulss", "mwait", "neg", "nop", "not", "or",
"orpd", "orps", "out", "outs", "outsb", "outsd",
"outsw", "pabsb", "pabsd", "pabsw", "packssdw", "packsswb",
"packusdw", "packuswb", "paddb", "paddd", "paddq", "paddsb",
"paddsw", "paddusb", "paddusw", "paddw", "palignr", "pand",
"pandn", /*"pause",*/ "pavgb", "pavgusb", "pavgw", "pblendvb",
"pblendw", "pcmpeqb", "pcmpeqd", "pcmpeqq", "pcmpeqw", "pcmpestri",
"pcmpestrm", "pcmpgtb", "pcmpgtd", "pcmpgtq", "pcmpgtw", "pcmpistri",
"pcmpistrm", "pextrb", "pextrd", "pextrq", "pextrw", "pf2id",
"pfacc", "pfadd", "pfcmpeq", "pfcmpge", "pfcmpgt", "pfmax",
"pfmin", "pfmul", "pfnacc", "pfpnacc", "pfrcp", "pfrcpit1",
"pfrcpit2", "pfrsqit1", "pfrsqrt", "pfsub", "pfsubr", "phaddd",
"phaddsw", "phaddw", "phminposuw", "phsubd", "phsubsw", "phsubw",
"pi2fd", "pinsrb", "pinsrd", "pinsrq", "pinsrw", "pmaddubsw",
"pmaddwd", "pmaxsb", "pmaxsd", "pmaxsw", "pmaxub", "pmaxud",
"pmaxuw", "pminsb", "pminsd", "pminsw", "pminub", "pminud",
"pminuw", "pmovmskb", "pmovsxbd", "pmovsxbq", "pmovsxbw", "pmovsxdq",
"pmovsxwd", "pmovsxwq", "pmovzxbd", "pmovzxbq", "pmovzxbw", "pmovzxdq",
"pmovzxwd", "pmovzxwq", "pmuldq", "pmulhrsw", "pmulhrw", "pmulhuw",
"pmulhw", "pmulld", "pmullw", "pmuludq", "pop", "popa",
"popad", "popcnt", "popf", "popfd", "popfq", "por",
"prefetchnta","prefetcht0", "prefetcht1", "prefetcht2", "psadbw", "pshufb",
"pshufd", "pshufhw", "pshuflw", "pshufw", "psignb", "psignd",
"psignw", "pslld", "pslldq", "psllq", "psllw", "psrad",
"psraw", "psrld", "psrldq", "psrlq", "psrlw", "psubb",
"psubd", "psubq", "psubsb", "psubsw", "psubusb", "psubusw",
"psubw", "pswapd", "ptest", "punpckhbw", "punpckhdq", "punpckhqdq",
"punpckhwd", "punpcklbw", "punpckldq", "punpcklqdq", "punpcklwd", "push",
"pusha", "pushad", "pushf", "pushfd", "pushfq", "pxor",
"rcl", "rcpps", "rcpss", "rcr", "rdmsr", "rdpmc",
"rdtsc", "rep", "repe", "repne", "repnz", "repz",
"ret", "retf", "rol", "ror", "roundpd", "roundps",
"roundsd", "roundss", "rsm", "rsqrtps", "rsqrtss", "sahf",
"sal", "sar", "sbb", "scas", "scasb", "scasd",
"scasq", "scasw", "seta", "setae", "setb", "setbe",
"setc", "sete", "setg", "setge", "setl", "setle",
"setna", "setnae", "setnb", "setnbe", "setnc", "setne",
"setng", "setnge", "setnl", "setnle", "setno", "setnp",
"setns", "setnz", "seto", "setp", "setpe", "setpo",
"sets", "setz", "sfence", "sgdt", "shl", "shld",
"shr", "shrd", "shufpd", "shufps", "sidt", "sldt",
"smsw", "sqrtpd", "sqrtps", "sqrtsd", "sqrtss", "stc",
"std", "sti", "stmxcsr", "stos", "stosb", "stosd",
"stosq", "stosw", "str", "sub", "subpd", "subps",
"subsd", "subss", "syscall", "sysenter", "sysexit", "sysret",
"test", "ucomisd", "ucomiss", "ud2", "unpckhpd", "unpckhps",
"unpcklpd", "unpcklps", "verr", "verw", "wait", "wbinvd",
"wrmsr", "xadd", "xchg", "xlat", "xlatb", "xor",
"xorpd", "xorps",
];
shared static this()
{
foreach(id; asmKeywords)
asmIdentifiers[id] = TokenColor.Keyword;
foreach(id; asmRegisters)
asmIdentifiers[id] = TokenColor.AsmRegister;
foreach(id; asmMnemonics)
asmIdentifiers[id] = TokenColor.AsmMnemonic;
}
private int asmColorType(wstring text)
{
if(auto p = text in asmIdentifiers)
return *p;
return TokenColor.Identifier;
}
private int userColorType(wstring text, int type)
{
if(auto p = text in Package.GetGlobalOptions().UserTypes)
return *p;
return type;
}
private static int getParseState(int iState)
{
return (iState >> 20) & 0x0f;
}
private static int getDebugOrVersion(int iState)
{
return (iState >> 24) & 0x1;
}
int parseVersions(ref ParserSpan span, int type, wstring text, ref int iState, ref bool versionsChanged)
{
int iLine = span.iStartLine;
version(none)
{
// COLORIZER_ATTRIBUTE flags
// 0x00100: gray background
// 0x00200: black on dark blue
// 0x40000: underlined
// COLOR_MARKER_MASK = 0x00003f00: select color encoding, 0 standard, other from color list
// LINE_MARKER_MASK = 0x000fc000: underline style: 0-none, 4~blue, 5~red, 6~magenta, 7-gray, 11~green,
// 16-black, 23=magenta, 24=red, 35-maroon, 56-yellow, 58-ltgray
// PRIVATE_CLIENT_MASK1 = 0x00100000:
// PRIVATE_CLIENT_MASK2 = 0x00600000: ident marker style: 0-none, 1-blue start mark, 2,3-red end mark
// PRIVATE_CLIENT_MASK3 = 0x00800000: disable text coloring
// PRIVATE_EDITOR_MASK = 0xfc000000:
// SEPARATOR_AFTER_ATTR = 0x02000000: if on char after line, draws line between text rows
int lineMarker = 0; // iLine & 0x3f;
int privClient = (iLine >> 0) & 0xf;
int privEditor = (iLine >> 4) & 0x3f;
int attr = (lineMarker << 14) | (privClient << 20) | (privEditor << 26);
type |= attr;
}
version(all)
{
//if(dLex.isCommentOrSpace(type, text))
// return type;
int parseState = getParseState(iState);
int debugOrVersion = getDebugOrVersion(iState);
int ntype = type;
if(ntype == TokenColor.Identifier || ntype == TokenColor.Keyword)
ntype = userColorType(text, ntype);
final switch(cast(VersionParseState) parseState)
{
case VersionParseState.IdleDisabledVerify:
case VersionParseState.IdleEnabledVerify:
if(isAddressEnabled(span.iStartLine, span.iStartIndex))
{
parseState = VersionParseState.IdleEnabled;
goto case VersionParseState.IdleEnabled;
}
parseState = VersionParseState.IdleDisabled;
goto case VersionParseState.IdleDisabled;
case VersionParseState.IdleDisabled:
ntype = disabledColorType(ntype);
if(text == "asm")
parseState = VersionParseState.AsmParsedDisabled;
else if(versionPredefined(text) && isVersionCondition(span))
ntype = TokenColor.DisabledVersion;
break;
case VersionParseState.IdleEnabled:
if(text == "version")
{
parseState = VersionParseState.VersionParsed;
debugOrVersion = 0;
}
else if(text == "debug")
{
parseState = VersionParseState.VersionParsed;
debugOrVersion = 1;
}
else if(text == "asm")
parseState = VersionParseState.AsmParsedEnabled;
break;
case VersionParseState.VersionParsed:
if(text == "=")
parseState = VersionParseState.AssignParsed;
else if(text == "(")
parseState = VersionParseState.ParenLParsed;
else if(debugOrVersion)
{
if(isVersionEnabled(iLine, "", debugOrVersion))
{
parseState = VersionParseState.IdleEnabled;
goto case VersionParseState.IdleEnabled;
}
else
{
parseState = VersionParseState.IdleDisabled;
goto case VersionParseState.IdleDisabled;
}
}
else
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.AssignParsed:
if(dLex.isIdentifier(text))
{
if(debugOrVersion == 0 && versionPredefined(text))
ntype = TokenColor.Version;
if(!defineVersion(iLine, text, debugOrVersion, versionsChanged))
ntype |= 5 << 14; // red ~~~~ on VS2008
}
else if(dLex.isInteger(text))
defineVersion(iLine, to!int(text), debugOrVersion, versionsChanged);
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.ParenLParsed:
if(dLex.isIdentifier(text) || dLex.isInteger(text))
{
if(debugOrVersion == 0 && versionPredefined(text))
ntype = TokenColor.Version;
if(isVersionEnabled(iLine, text, debugOrVersion))
parseState = VersionParseState.IdentNumberParsedEnable;
else
parseState = VersionParseState.IdentNumberParsedDisable;
}
else
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.IdentNumberParsedDisable:
if(text == ")")
parseState = VersionParseState.ParenRParsedDisable;
else
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.IdentNumberParsedEnable:
if(text == ")")
parseState = VersionParseState.ParenRParsedEnable;
else
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.ParenRParsedEnable:
parseState = VersionParseState.IdleEnabled;
goto case VersionParseState.IdleEnabled;
case VersionParseState.ParenRParsedDisable:
parseState = VersionParseState.IdleDisabled;
goto case VersionParseState.IdleDisabled;
// asm block
case VersionParseState.AsmParsedEnabled:
if(text == "{")
parseState = VersionParseState.InAsmBlockEnabled;
else if (text != "nothrow" && text != "pure" && !text.startsWith("@"))
parseState = VersionParseState.IdleEnabled;
break;
case VersionParseState.AsmParsedDisabled:
if(text == "{")
parseState = VersionParseState.InAsmBlockDisabled;
else if (text != "nothrow" && text != "pure" && !text.startsWith("@"))
parseState = VersionParseState.IdleDisabled;
goto case VersionParseState.IdleDisabled;
case VersionParseState.InAsmBlockEnabled:
if(text == "}")
parseState = VersionParseState.IdleEnabled;
else if(ntype == TokenColor.Identifier)
ntype = asmColorType(text);
break;
case VersionParseState.InAsmBlockDisabled:
if(text == "}")
parseState = VersionParseState.IdleDisabled;
else if(ntype == TokenColor.Identifier)
ntype = asmColorType(text);
goto case VersionParseState.IdleDisabled;
}
if(text == ";" || text == "}")
{
if(parseState == VersionParseState.IdleDisabled)
parseState = text == ";" ? VersionParseState.IdleDisabledVerify : VersionParseState.IdleEnabledVerify;
}
else if(text == "else")
{
if(isAddressEnabled(span.iEndLine, span.iEndIndex))
{
parseState = VersionParseState.IdleEnabled;
ntype = type; // restore enabled type
}
else
{
parseState = VersionParseState.IdleDisabled;
ntype = disabledColorType(ntype);
}
}
iState = (iState & 0x800fffff) | (parseState << 20) | (debugOrVersion << 24);
}
return ntype;
}
int parseErrors(ref ParserSpan span, int type, wstring tok)
{
if(!dLex.isCommentOrSpace(type, tok))
if(mSource.hasParseError(span))
type |= 5 << 14; // red ~
return type;
}
wstring getVersionToken(LocationBase!wstring verloc)
{
if(verloc.children.length == 0)
return "";
ParserSpan span = verloc.children[0].span;
wstring text = mSource.GetText(span.iStartLine, span.iStartIndex, span.iEndLine, span.iEndIndex);
text = strip(text);
if(text.length == 0 || text[0] != '(' || text[$-1] != ')')
return ""; // parsing unfinished or debug statement without argument
text = strip(text[1..$-1]);
return text;
}
bool isAddressEnabled(int iLine, int iIndex)
{
mParser.fixExtend();
LocationBase!wstring loc = mParser.findLocation(iLine, iIndex, true);
LocationBase!wstring child = null;
while(loc)
{
if(VersionStatement!wstring verloc = cast(VersionStatement!wstring) loc)
{
wstring ver = getVersionToken(verloc);
if(isVersionEnabled(verloc.span.iStartLine, ver, 0))
{
if(verloc.children.length > 2 && child == verloc.children[2]) // spanContains(verloc.children[2].span, iLine, iIndex))
return false; // else statement
}
else
{
if(verloc.children.length > 1 && child == verloc.children[1]) // spanContains(verloc.children[1].span, iLine, iIndex))
return false; // then statement
}
}
else if(DebugStatement!wstring dbgloc = cast(DebugStatement!wstring) loc)
{
wstring ver = getVersionToken(dbgloc);
if(isVersionEnabled(dbgloc.span.iStartLine, ver, 1))
{
if(dbgloc.children.length > 2 && child == dbgloc.children[2]) // spanContains(dbgloc.children[2].span, iLine, iIndex))
return false; // else statement
}
else
{
if(dbgloc.children.length > 1 && child == dbgloc.children[1]) // spanContains(dbgloc.children[1].span, iLine, iIndex))
return false; // then statement
}
}
child = loc;
loc = loc.parent;
}
return true;
}
bool isVersionCondition(ref ParserSpan vspan)
{
mParser.fixExtend();
LocationBase!wstring loc = mParser.findLocation(vspan.iStartLine, vspan.iStartIndex, true);
LocationBase!wstring child = null;
while(loc)
{
if(VersionStatement!wstring verloc = cast(VersionStatement!wstring) loc)
{
if(verloc.children.length > 0)
{
if(spanContains(verloc.children[0].span, vspan.iStartLine, vspan.iStartIndex))
return true;
}
}
child = loc;
loc = loc.parent;
}
return false;
}
bool isInUnittest(int iLine, int iIndex)
{
mParser.fixExtend();
LocationBase!wstring loc = mParser.findLocation(iLine, iIndex, true);
LocationBase!wstring child = null;
while(loc)
{
if(auto utloc = cast(UnittestStatement!wstring) loc)
return true;
child = loc;
loc = loc.parent;
}
return false;
}
//////////////////////////////////////////////////////////////
void SaveLineState(int iLine, int state)
{
if(iLine >= mLineState.length)
{
int i = mLineState.length;
mLineState.length = iLine + 100;
for( ; i < mLineState.length; i++)
mLineState[i] = -1;
}
mLineState[iLine] = state;
}
void UpdateLineState(int line)
{
UpdateLineStates(line, line);
}
void UpdateLineStates(int line, int endline)
{
version(LOG) mixin(LogCallMix2);
int ln = line;
if(ln >= mLineState.length)
ln = max(mLineState.length, 1) - 1;
while(ln > 0 && mLineState[ln] == -1)
ln--;
if(ln == 0)
SaveLineState(0, 0);
int state = mLineState[ln];
bool stateChanged = false;
bool versionsChanged = false;
while(ln <= endline)
{
SaveLineState(ln, state);
wstring txt = mSource.GetText(ln, 0, ln, -1);
state = GetStateAtEndOfLine(ln, txt, state, versionsChanged);
ln++;
}
int prevState = ln < mLineState.length ? mLineState[ln] : -1;
SaveLineState(ln, state);
if(versionsChanged || mColorizeVersions || state != prevState)
{
ln++;
while(ln < mLineState.length)
{
if(mLineState[ln] == -1)
break;
mLineState[ln++] = -1;
}
mSource.ReColorizeLines(line, -1);
}
}
int GetLineState(int iLine)
{
int state = -1;
if(iLine >= 0 && iLine < mLineState.length)
state = mLineState[iLine];
if(state == -1)
{
UpdateLineState(iLine);
state = mLineState[iLine];
}
assert(state != -1);
return state;
}
//////////////////////////////////////////////////////////////
int OnLinesChanged(int iStartLine, int iOldEndLine, int iNewEndLine, bool fLast)
{
version(LOG) mixin(LogCallMix);
int p;
int diffLines = iNewEndLine - iOldEndLine;
int lines = mSource.GetLineCount(); // new line count
SaveLineState(lines, -1); // ensure mLineState[] is large enough
if(diffLines > 0)
{
for(p = lines; p > iNewEndLine; p--)
mLineState[p] = mLineState[p - diffLines];
for(; p > iStartLine; p--)
mLineState[p] = -1;
}
else if(diffLines < 0)
{
for(p = iStartLine + 1; p < iNewEndLine; p++)
mLineState[p] = -1;
for(; p - diffLines < lines; p++)
mLineState[p] = mLineState[p - diffLines];
for(; p < lines; p++)
mLineState[p] = -1;
}
if(iStartLine < mLineState.length && mLineState[iStartLine] != -1)
UpdateLineStates(iStartLine, iNewEndLine);
return S_OK;
}
//////////////////////////////////////////////////////////////
int modifyValue(V)(V val, ref V var)
{
if(var == val)
return 0;
var = val;
return 1;
}
bool UpdateConfig()
{
int changes = 0;
string file = mSource.GetFileName ();
Config cfg = getProjectConfig(file);
release(cfg); // we don't need a reference
if(cfg != mConfig)
{
if(mConfig)
mConfig.RemoveModifiedListener(this);
mConfig = cfg;
if(mConfig)
mConfig.AddModifiedListener(this);
changes++;
}
if(mConfig)
{
ProjectOptions opts = mConfig.GetProjectOptions();
changes += modifyValue(opts.versionids, mConfigVersions[kIndexVersion]);
changes += modifyValue(opts.debugids, mConfigVersions[kIndexDebug]);
changes += modifyValue(opts.release, mConfigRelease);
changes += modifyValue(opts.useUnitTests, mConfigUnittest);
changes += modifyValue(opts.isX86_64, mConfigX64);
changes += modifyValue(opts.useMSVCRT(), mConfigMSVCRT);
changes += modifyValue(opts.cov, mConfigCoverage);
changes += modifyValue(opts.doDocComments, mConfigDoc);
changes += modifyValue(opts.noboundscheck, mConfigNoBoundsCheck);
changes += modifyValue(opts.compiler, mConfigCompiler);
}
return changes != 0;
}
Config GetConfig()
{
if(!mConfig)
{
UpdateConfig();
}
return mConfig;
}
// ConfigModifiedListener
override void OnConfigModified()
{
OnConfigModified(false);
}
void OnConfigModified(bool force)
{
int changes = UpdateConfig();
changes += modifyValue(Package.GetGlobalOptions().ColorizeVersions, mColorizeVersions);
changes += modifyValue(Package.GetGlobalOptions().ColorizeCoverage, mColorizeCoverage);
if(changes || force)
{
mLineState[] = -1;
mSource.ReColorizeLines(0, -1);
}
}
//////////////////////////////////////////////////////////
static int[] ReadCoverageFile(string lstname, out float coveragePercent)
{
coveragePercent = -1;
try
{
char[] lst = cast(char[]) std.file.read(lstname);
char[][] lines = splitLines(lst);
int[] coverage = new int[lines.length];
foreach(i, ln; lines)
{
auto pos = std.string.indexOf(ln, '|');
int cov = -1;
if(pos > 0)
{
auto num = strip(ln[0..pos]);
if(num.length)
cov = parse!int(num);
}
coverage[i] = cov;
}
if (lines.length > 0)
{
char[] ln = lines[$-1];
auto pos = std.string.indexOf(ln, "% covered");
if(pos > 0)
{
auto end = pos;
while(pos > 0 && isDigit(ln[pos-1]) || ln[pos - 1] == '.')
pos--;
auto num = ln[pos..end];
if(num.length)
coveragePercent = parse!float(num); // very last entry is percent
}
}
return coverage;
}
catch(Error)
{
}
return null;
}
bool lastCoverageFileIsValid()
{
return (mLastCoverageFile.length > 0 && std.file.exists(mLastCoverageFile) && std.file.isFile(mLastCoverageFile));
}
bool FindCoverageFile()
{
if(lastCoverageFileIsValid())
return true;
mLastCoverageFile = Package.GetGlobalOptions().findCoverageFile(mSource.GetFileName());
return lastCoverageFileIsValid();
}
bool UpdateCoverage(bool force)
{
if(mColorizeCoverage)
{
auto now = Clock.currTime();
if(!force && mLastTestCoverageFile + dur!"seconds"(2) >= now)
return false;
mLastTestCoverageFile = now;
if(FindCoverageFile())
{
auto lsttm = std.file.timeLastModified(mLastCoverageFile);
auto srctm = std.file.timeLastModified(mSource.GetFileName());
if (lsttm < srctm)
{
ClearCoverage();
}
else if(force || lsttm != mLastModifiedCoverageFile)
{
mLastModifiedCoverageFile = lsttm;
mCoverage = ReadCoverageFile(mLastCoverageFile, mCoveragePercent);
mSource.ReColorizeLines(0, -1);
}
return true;
}
}
ClearCoverage();
return false;
}
void ClearCoverage()
{
mCoverage = mCoverage.init;
if(mLastModifiedCoverageFile != SysTime(0))
{
mLastCoverageFile = null;
mLastModifiedCoverageFile = SysTime(0);
mSource.ReColorizeLines(0, -1);
}
}
}
|
D
|
/Users/Ayaz/Documents/Courses/Hands-on Rust (The Pragmatic Programmers)/Testing/1/flappy_dragon/target/debug/build/miniz_oxide-8a97087d3a0b5fbb/build_script_build-8a97087d3a0b5fbb: /Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.4/build.rs
/Users/Ayaz/Documents/Courses/Hands-on Rust (The Pragmatic Programmers)/Testing/1/flappy_dragon/target/debug/build/miniz_oxide-8a97087d3a0b5fbb/build_script_build-8a97087d3a0b5fbb.d: /Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.4/build.rs
/Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.4/build.rs:
|
D
|
instance DIA_ATTILA_EXIT(C_INFO)
{
npc = vlk_494_attila;
nr = 999;
condition = dia_attila_exit_condition;
information = dia_attila_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_attila_exit_condition()
{
return TRUE;
};
func void dia_attila_exit_info()
{
AI_StopProcessInfos(self);
};
instance DIA_ATTILA_PICKPOCKET(C_INFO)
{
npc = vlk_494_attila;
nr = 900;
condition = dia_attila_pickpocket_condition;
information = dia_attila_pickpocket_info;
permanent = TRUE;
description = PICKPOCKET_60;
};
func int dia_attila_pickpocket_condition()
{
return c_beklauen(55,100);
};
func void dia_attila_pickpocket_info()
{
Info_ClearChoices(dia_attila_pickpocket);
Info_AddChoice(dia_attila_pickpocket,DIALOG_BACK,dia_attila_pickpocket_back);
Info_AddChoice(dia_attila_pickpocket,DIALOG_PICKPOCKET,dia_attila_pickpocket_doit);
};
func void dia_attila_pickpocket_doit()
{
b_beklauen();
Info_ClearChoices(dia_attila_pickpocket);
};
func void dia_attila_pickpocket_back()
{
Info_ClearChoices(dia_attila_pickpocket);
};
instance DIA_ATTILA_HALLO(C_INFO)
{
npc = vlk_494_attila;
nr = 1;
condition = dia_attila_hallo_condition;
information = dia_attila_hallo_info;
permanent = FALSE;
important = TRUE;
};
func int dia_attila_hallo_condition()
{
if(MIS_THIEFGUILD_SUCKED == TRUE)
{
return TRUE;
};
};
func void dia_attila_hallo_info()
{
AI_Output(self,other,"DIA_Attila_Hallo_09_00"); //(спокойно) Ах, наконец. Я ждал тебя, чужеземец.
Info_ClearChoices(dia_attila_hallo);
Info_AddChoice(dia_attila_hallo,"Что тебе нужно от меня?",dia_attila_hallo_was);
Info_AddChoice(dia_attila_hallo,"Кто ты?",dia_attila_hallo_wer);
b_giveplayerxp(XP_ATTILA_METHIM);
};
func void dia_attila_hallo_wer()
{
AI_Output(other,self,"DIA_Attila_Hallo_Wer_15_00"); //Кто ты?
AI_Output(self,other,"DIA_Attila_Hallo_Wer_09_01"); //Меня зовут Аттила... но разве мое имя важно? Наши имена ничего не значат.
AI_Output(self,other,"DIA_Attila_Hallo_Wer_09_02"); //Ты это должен знать, чужеземец. (тихо смеется)
KNOWS_ATTILA_WER = TRUE;
Info_ClearChoices(dia_attila_hallo);
if(KNOWS_ATTILA_WAS == FALSE)
{
Info_AddChoice(dia_attila_hallo,"Что тебе нужно от меня?",dia_attila_hallo_was);
};
Info_AddChoice(dia_attila_hallo,"К чему весь этот фарс?",dia_attila_hallo_theater);
};
func void dia_attila_hallo_was()
{
AI_Output(other,self,"DIA_Attila_Hallo_Was_15_00"); //Что тебе нужно от меня?
AI_Output(self,other,"DIA_Attila_Hallo_Was_09_01"); //Я здесь, чтобы объяснить тебе несколько вещей. И кроме этого, я собираюсь убить тебя.
KNOWS_ATTILA_WAS = TRUE;
Info_ClearChoices(dia_attila_hallo);
if(KNOWS_ATTILA_WER == FALSE)
{
Info_AddChoice(dia_attila_hallo,"Кто ты?",dia_attila_hallo_wer);
};
Info_AddChoice(dia_attila_hallo,"Кто платит тебе за это?",dia_attila_hallo_auftrag);
Info_AddChoice(dia_attila_hallo,"К чему весь этот фарс?",dia_attila_hallo_theater);
};
func void dia_attila_hallo_theater()
{
AI_Output(other,self,"DIA_Attila_Hallo_Theater_15_00"); //К чему весь этот фарс?
AI_Output(self,other,"DIA_Attila_Hallo_Theater_09_01"); //Ты не должен умереть в неведении. Считай это проявлением уважения к приговоренным.
Info_ClearChoices(dia_attila_hallo);
Info_AddChoice(dia_attila_hallo,"Я, пожалуй, пойду. (КОНЕЦ)",dia_attila_hallo_ende);
Info_AddChoice(dia_attila_hallo,"Кто платит тебе за это?",dia_attila_hallo_auftrag);
Info_AddChoice(dia_attila_hallo,"Почему ты хочешь убить меня?",dia_attila_hallo_warum);
};
func void dia_attila_hallo_ende()
{
AI_Output(other,self,"DIA_Attila_Hallo_Ende_15_00"); //Я, пожалуй, пойду...
AI_Output(self,other,"DIA_Attila_Hallo_Ende_09_01"); //Боюсь... я не могу позволить тебе этого. Смирись. Пришло время умереть.
AI_DrawWeapon(self);
Info_ClearChoices(dia_attila_hallo);
Info_AddChoice(dia_attila_hallo,"Кто платит тебе за это?",dia_attila_hallo_auftrag);
Info_AddChoice(dia_attila_hallo,"Почему ты хочешь убить меня?",dia_attila_hallo_warum);
};
func void dia_attila_hallo_auftrag()
{
AI_Output(other,self,"DIA_Attila_Hallo_Auftrag_15_00"); //Кто платит тебе за это?
AI_Output(self,other,"DIA_Attila_Hallo_Auftrag_09_01"); //Мои хозяева стараются работать в тени, как и я.
AI_Output(self,other,"DIA_Attila_Hallo_Auftrag_09_02"); //В условиях моего контракта записано, что я не имею права разглашать ни их имя, ни их резиденцию.
Info_ClearChoices(dia_attila_hallo);
Info_AddChoice(dia_attila_hallo,"Почему ты хочешь убить меня?",dia_attila_hallo_warum);
};
func void dia_attila_hallo_warum()
{
AI_Output(other,self,"DIA_Attila_Hallo_Warum_15_00"); //Почему ты хочешь убить меня?
if(BETRAYAL_HALVOR == TRUE)
{
AI_Output(self,other,"DIA_Attila_Hallo_Warum_09_01"); //Ты сдал Халвора. Теперь он сидит в тюрьме. Так не пойдет.
};
if(RENGARU_INKNAST == TRUE)
{
AI_Output(self,other,"DIA_Attila_Hallo_Warum_09_02"); //Ты продал Ренгару ополчению. Он всего лишь мелкий воришка, но тебе не следовало делать этого.
};
if(NAGUR_AUSGELIEFERT == TRUE)
{
AI_Output(self,other,"DIA_Attila_Hallo_Warum_09_03"); //Нагур попал за решетку по твоей вине. Кое-кому кажется, что это непростительная ошибка.
};
AI_Output(self,other,"DIA_Attila_Hallo_Warum_09_04"); //Мои хозяева недовольны этим. Чтобы не дать тебе совершить еще одну ошибку, они послали меня.
Info_ClearChoices(dia_attila_hallo);
Info_AddChoice(dia_attila_hallo,"Я могу дать тебе золото - много золота.",dia_attila_hallo_gold);
Info_AddChoice(dia_attila_hallo,"Дай мне хотя бы вынуть свое оружие.",dia_attila_hallo_attacke);
};
func void dia_attila_hallo_gold()
{
AI_Output(other,self,"DIA_Attila_Hallo_Gold_15_00"); //Я могу дать тебе золото - много золота.
AI_Output(self,other,"DIA_Attila_Hallo_Gold_09_01"); //Тщетно. Я не за этим сюда пришел. Единственная цена, которую ты заплатишь - твоя жизнь. И заплатишь ты ее прямо сейчас.
AI_StopProcessInfos(self);
b_attack(self,other,AR_NONE,1);
};
func void dia_attila_hallo_attacke()
{
AI_Output(other,self,"DIA_Attila_Hallo_Attacke_15_00"); //Дай мне хотя бы вынуть свое оружие.
if(Npc_HasEquippedWeapon(other) == TRUE)
{
AI_Output(self,other,"DIA_Attila_Hallo_Attacke_09_01"); //Хорошо, приготовься к своей последней битве.
AI_StopProcessInfos(self);
b_attack(self,other,AR_NONE,1);
}
else
{
AI_Output(self,other,"DIA_Attila_Hallo_Attacke_09_02"); //Да у тебя нет никакого оружия на поясе. У тебя осталось очень мало времени, чужеземец. Смерть уже близко.
AI_StopProcessInfos(self);
b_attack(self,other,AR_NONE,2);
};
};
instance DIA_ATTILA_WILLKOMMEN(C_INFO)
{
npc = vlk_494_attila;
nr = 1;
condition = dia_attila_willkommen_condition;
information = dia_attila_willkommen_info;
permanent = FALSE;
important = TRUE;
};
func int dia_attila_willkommen_condition()
{
if(Npc_IsInState(self,zs_talk) && (MIS_THIEFGUILD_SUCKED == FALSE))
{
return TRUE;
};
};
func void dia_attila_willkommen_info()
{
AI_Output(self,other,"DIA_Attila_Willkommen_09_00"); //Ах, наконец. Я ждал тебя, чужеземец.
b_giveplayerxp(XP_ATTILA_FRIEND);
AI_Output(other,self,"DIA_Attila_Willkommen_15_01"); //Кто ты и что тебе нужно от меня?
AI_Output(self,other,"DIA_Attila_Willkommen_09_02"); //Это неважно. Важно лишь то, что ты делал. Ты оставался лояльным - даже если ты сам не знал об этом.
AI_Output(self,other,"DIA_Attila_Willkommen_09_03"); //Некоторые покровители прослышали про твою лояльность. И они дают тебе шанс. Так используй его.
AI_Output(other,self,"DIA_Attila_Willkommen_15_04"); //Эй, просто скажи мне кто они.
AI_Output(self,other,"DIA_Attila_Willkommen_09_05"); //У меня есть для тебя подарок. А все остальное в твоих руках, чужеземец. (тихо смеется)
b_giveinvitems(self,other,itke_thiefguildkey_mis,1);
ATTILA_KEY = TRUE;
AI_StopProcessInfos(self);
Npc_ExchangeRoutine(self,"AFTER");
};
instance DIA_ATTILA_NACHSCHLUESSEL(C_INFO)
{
npc = vlk_494_attila;
nr = 1;
condition = dia_attila_nachschluessel_condition;
information = dia_attila_nachschluessel_info;
permanent = TRUE;
important = TRUE;
};
func int dia_attila_nachschluessel_condition()
{
if(Npc_KnowsInfo(other,dia_attila_wer) && Npc_IsInState(self,zs_talk))
{
return TRUE;
};
};
func void dia_attila_nachschluessel_info()
{
AI_Output(self,other,"DIA_Attila_NachSchluessel_09_00"); //Моя задача выполнена - пока.
AI_Output(self,other,"DIA_Attila_NachSchluessel_09_01"); //Но кто знает, может, наши пути опять пересекутся...
AI_StopProcessInfos(self);
};
instance DIA_ATTILA_WER(C_INFO)
{
npc = vlk_494_attila;
nr = 1;
condition = dia_attila_wer_condition;
information = dia_attila_wer_info;
permanent = FALSE;
description = "Кто ты?";
};
func int dia_attila_wer_condition()
{
if(Npc_KnowsInfo(other,dia_attila_willkommen))
{
return TRUE;
};
};
func void dia_attila_wer_info()
{
AI_Output(other,self,"DIA_Attila_Hallo_Wer_15_00"); //Кто ты?
AI_Output(self,other,"DIA_Attila_Hallo_Wer_09_01"); //Меня зовут Аттила... но разве мое имя важно? Наши имена ничего не значат.
AI_Output(self,other,"DIA_Attila_Hallo_Wer_09_02"); //Ты это должен знать, чужеземец. (тихо смеется)
AI_StopProcessInfos(self);
};
|
D
|
/*
* Copyright (C) 2013 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.
*/
package com.android.layoutlib.bridge.impl.binding;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import com.android.ide.common.rendering.api.DataBindingItem;
/**
* This is the items provided by the adapter. They are dynamically generated.
*/
final class AdapterItem {
private final DataBindingItem mItem;
private final int mType;
private final int mFullPosition;
private final int mPositionPerType;
private List<AdapterItem> mChildren;
protected AdapterItem(DataBindingItem item, int type, int fullPosition,
int positionPerType) {
mItem = item;
mType = type;
mFullPosition = fullPosition;
mPositionPerType = positionPerType;
}
void addChild(AdapterItem child) {
if (mChildren == null) {
mChildren = new ArrayList<AdapterItem>();
}
mChildren.add(child);
}
List<AdapterItem> getChildren() {
if (mChildren != null) {
return mChildren;
}
return Collections.emptyList();
}
int getType() {
return mType;
}
int getFullPosition() {
return mFullPosition;
}
int getPositionPerType() {
return mPositionPerType;
}
DataBindingItem getDataBindingItem() {
return mItem;
}
}
|
D
|
module main;
import std.stdio;
import numd.linearalgebra.matrix;
void main(string[] args)
{
auto m1 = Matrix!(3, 2)(1, 2,
3, 4,
5, 6);
auto m2 = Matrix!(2, 2)(7, 8,
9, 10);
auto m3 = Matrix!(3, 2)(7, 8,
9, 10,
11, 12);
auto m4 = m1 * m2;
auto m5 = m1 + m3;
writeln("m1:");
writeln(m1);
writeln("m2:");
writeln(m2);
writeln("m3:");
writeln(m3);
writeln("m4 = m1 * m2:");
writeln(m4);
writeln("m5 = m1 + m3:");
writeln(m5);
}
|
D
|
module dapt.token;
import std.ascii;
import std.uni : toLower;
import std.algorithm.iteration : map;
import std.conv;
import dapt.stream;
import dapt.lexer : LexerError;
class Token {
enum Code {
none, symbol, id, number, string, boolean,
module_, struct_, class_, enum_,
// Macros
macroForeachTypes, macroImportType, macroType,
macroTypeModuleFile, macroTypeModuleName,
};
this(IStream stream) {
this.p_stream = stream;
this.p_line = stream.line;
this.p_pos = stream.pos;
}
@property string identifier() { return p_identifier; }
@property float number() { return p_number; }
@property bool boolean() { return p_boolean; }
@property string str() { return p_string; }
@property dstring utfStr() { return p_utfstring; }
@property Code code() { return p_code; }
@property char symbol() { return p_symbol; }
@property int line() { return p_line; }
@property int pos() { return p_pos; }
@property IStream stream() { return p_stream; }
private:
IStream p_stream;
char p_symbol;
Code p_code;
int p_line;
int p_pos;
protected:
string p_identifier;
float p_number;
bool p_boolean;
string p_string;
dstring p_utfstring;
}
class SymbolToken : Token {
this(IStream stream, in char symbol) {
super(stream);
this.p_symbol = symbol;
this.p_identifier = to!string(symbol);
this.p_code = Code.symbol;
}
}
class StringToken : Token {
this(IStream stream) {
super(stream);
this.lex();
}
private:
void lex() {
do {
stream.read();
if (stream.lastChar != '\"')
p_string ~= stream.lastChar;
} while (stream.lastChar != '\"' && !stream.eof);
if (stream.eof) {
throw new LexerError(stream.line, stream.pos, "unexpected end of file");
} else {
stream.read();
}
p_code = Code.string;
p_utfstring = to!dstring(p_string);
p_identifier = '"' ~ p_string ~ '"';
}
}
// Identifier: [a-zA-Z_][a-zA-Z0-9_]*
class IdToken : Token {
this(IStream stream) {
super(stream);
p_code = Code.id;
lex();
}
private:
bool isIdChar() {
return isAlphaNum(stream.lastChar) || stream.lastChar == '_';
}
void lex() {
while (isIdChar()) {
p_identifier ~= stream.lastChar;
stream.read();
}
switch (p_identifier) {
case "module":
p_code = Code.module_;
return;
case "struct":
p_code = Code.struct_;
return;
case "class":
p_code = Code.class_;
return;
// case "enum":
// p_code = Code.enum_;
// return;
// case "true":
// p_code = Code.boolean;
// p_boolean = true;
// return;
// case "false":
// p_code = Code.boolean;
// p_boolean = false;
// return;
default:
p_code = Code.id;
}
}
}
class MacroToken : Token {
this(IStream stream) {
super(stream);
p_code = Code.id;
stream.read();
lex();
}
private:
bool isIdChar() {
return isAlphaNum(stream.lastChar) || stream.lastChar == '_';
}
void lex() {
while (isIdChar()) {
p_identifier ~= stream.lastChar;
stream.read();
}
switch (p_identifier) {
case "foreachTypes":
p_code = Code.macroForeachTypes;
return;
case "importType":
p_code = Code.macroImportType;
return;
case "type":
p_code = Code.macroType;
return;
case "typeModuleFile":
p_code = Code.macroTypeModuleFile;
return;
case "typeModuleName":
p_code = Code.macroTypeModuleName;
return;
default:
p_code = Code.id;
p_identifier = "#" ~ p_identifier;
}
}
}
|
D
|
module android.java.android.hardware.camera2.params.RecommendedStreamConfigurationMap;
public import android.java.android.hardware.camera2.params.RecommendedStreamConfigurationMap_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!RecommendedStreamConfigurationMap;
import import0 = android.java.java.util.Set;
|
D
|
module pshared.packets.stats;
import pnet.packet;
/// 8001
final class StatsRequest : Packet
{
public:
final:
ushort strength;
ushort agility;
ushort vitality;
ushort endurance;
ushort spirit;
ushort accuracy;
this(ubyte[] buffer)
{
super(buffer);
strength = read!ushort;
agility = read!ushort;
vitality = read!ushort;
endurance = read!ushort;
spirit = read!ushort;
accuracy = read!ushort;
}
}
|
D
|
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Validation.o : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/MultipartFormData.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Timeline.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Response.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/TaskDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ParameterEncoding.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Validation.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ResponseSerialization.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/AFError.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Notifications.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Result.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Request.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ServerTrustPolicy.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/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Validation~partial.swiftmodule : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/MultipartFormData.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Timeline.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Response.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/TaskDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ParameterEncoding.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Validation.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ResponseSerialization.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/AFError.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Notifications.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Result.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Request.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ServerTrustPolicy.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/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Validation~partial.swiftdoc : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/MultipartFormData.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Timeline.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Alamofire.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Response.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/TaskDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionDelegate.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ParameterEncoding.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Validation.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ResponseSerialization.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/SessionManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/AFError.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Notifications.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Result.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/Request.swift /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Alamofire/Source/ServerTrustPolicy.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/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.build/Exports.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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/Core.build/Exports~partial.swiftmodule : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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/Core.build/Exports~partial.swiftdoc : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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
|
/**
This module contains the engine behind Pegged, the expression templates building blocks to create a top-down
recursive-descent parser.
The terminals and non-terminals described here are meant to be used inside a Pegged grammar.
As such, they are a bit less user-friendly than what's output by pegged.grammar.
For example they take a ParseTree as input, not a string.
See the /docs directory for the full documentation as markdown files.
*/
module pegged.peg;
/*
NOTE:
Do not use the GrammarTester for unittesting in this module. This module needs
to be able to pass its unittests before the GrammarTester is even trustable.
Writing tests the long way is preferred here, as it will avoid the circular
dependency.
*/
import std.algorithm: map, startsWith;
import std.uni : isAlpha;
import std.array;
import std.conv;
import std.range: equal;
import std.string: strip;
import std.typetuple;
import std.uni: isAlpha;
/**
CT Switch for testing 'keywords' implementations
*/
enum
{
IFCHAIN,
TRIE
}
enum KEYWORDS = IFCHAIN;
/**
The basic parse tree, as used throughout the project.
You can defined your own parse tree node, but respect the basic layout.
*/
struct ParseTree
{
string name; /// The node name
bool successful; /// Indicates whether a parsing was successful or not
string[] matches; /// The matched input's parts. Some expressions match at more than one place, hence matches is an array.
string input; /// The input string that generated the parse tree. Stored here for the parse tree to be passed to other expressions, as input.
size_t begin, end; /// Indices for the matched part (from the very beginning of the first match to the last char of the last match.
ParseTree[] children; /// The sub-trees created by sub-rules parsing.
/**
Basic toString for easy pretty-printing.
*/
string toString(string tabs = "")
{
string result = name;
string childrenString;
bool allChildrenSuccessful = true;
foreach(i,child; children)
{
childrenString ~= tabs ~ " +-" ~ child.toString(tabs ~ ((i < children.length -1 ) ? " | " : " "));
if (!child.successful)
allChildrenSuccessful = false;
}
if (successful)
{
result ~= " " ~ to!string([begin, end]) ~ to!string(matches) ~ "\n";
}
else // some failure info is needed
{
if (allChildrenSuccessful) // no one calculated the position yet
{
Position pos = position(this);
string left, right;
if (pos.index < 10)
left = input[0 .. pos.index];
else
left = input[pos.index-10 .. pos.index];
//left = strip(left);
if (pos.index + 10 < input.length)
right = input[pos.index .. pos.index + 10];
else
right = input[pos.index .. $];
//right = strip(right);
result ~= " failure at line " ~ to!string(pos.line) ~ ", col " ~ to!string(pos.col) ~ ", "
~ (left.length > 0 ? "after \"" ~ left ~ "\" " : "")
~ "expected "~ (matches.length > 0 ? matches[$-1] : "NO MATCH")
~ ", but got \"" ~ right ~ "\"\n";
}
else
{
result ~= " (failure)\n";
}
}
return result ~ childrenString;
}
/**
Comparing ParseTree's.
This function is templated so that the compiler can automatically choose a
const ref or plain const version for the 'p' parameter.
See this for more details: http://goo.gl/vfKKG
*/
bool opEquals(T)(auto ref T p) const
{
return ( p.name == name
&& p.successful == successful
&& p.matches == matches
&& p.input == input
&& p.begin == begin
&& p.end == end
&& (p.children == children) );
}
ParseTree dup() @property
{
ParseTree result = this;
result.matches = result.matches.dup;
result.children = map!(p => p.dup)(result.children).array();
return result;
}
}
unittest // ParseTree testing
{
ParseTree p;
assert(p == p, "Self-identity on null tree.");
p = ParseTree("Name", true, ["abc", "", "def"], "input", 0, 1, null);
assert(p == p, "Self identity on non-null tree.");
ParseTree child = ParseTree("Child", true, ["abc", "", "def"], "input", 0, 1, null);
p.children = [child, child];
ParseTree q = p;
assert(p == q, "Copying creates equal trees.");
assert(p.children == q.children);
p.children = [child, child, child];
assert(q.children != p.children, "Disconnecting children.");
p = ParseTree("Name", true, ["abc", "", "def"], "input", 0, 1, null);
p.children = [child, child];
q = p.dup;
assert(p == q, "Dupping creates equal trees.");
assert(p.children == q.children, "Equal children for dupped trees.");
p.children = null;
assert(q.children != p.children);
q.children = [p,p];
assert(p != q, "Tree with different children are not equal.");
p.children = [p,p];
assert(p == q, "Adding equivalent children is OK.");
p.matches = null;
assert(p != q, "Nulling matches makes trees unequal.");
p.matches = q.matches;
assert(p == q, "Copying matches makes equal trees.");
}
/// To compare two trees for content (not bothering with node names)
/// That's useful to compare the results from two different grammars.
bool softCompare(ParseTree p1, ParseTree p2)
{
return p1.successful == p2.successful
&& p1.matches == p2.matches
&& p1.begin == p2.begin
&& p1.end == p2.end
&& std.algorithm.equal!(softCompare)(p1.children, p2.children); // the same for children
}
unittest // softCompare
{
ParseTree p = ParseTree("Name", true, ["abc", "", "def"], "input", 0, 1, null);
ParseTree child = ParseTree("Child", true, ["abc", "", "def"], "input", 0, 1, null);
p.children = [child, child];
ParseTree q = p;
assert(p == q, "Copy => Equal trees.");
assert(softCompare(p,q), "Copy => Trees equal for softCompare.");
q.name = "Another One";
assert(p != q, "Name change => non-equal trees.");
assert(softCompare(p,q), "Name change => Trees equal for softCompare.");
}
/// To record a position in a text
struct Position
{
size_t line;/// line number (starts at 0)
size_t col;/// column number (starts at 0)
size_t index;/// index (starts at 0)
}
/**
Given an input string, returns the position corresponding to the end of the string.
For example:
---
assert(position("abc") == Position(0,3,3));
assert(position("abc
") == Position(1,0,4));
assert(position("abc
") == Position(2,4,8));
---
*/
Position position(string s)
{
size_t col, line, index;
foreach(i,c; s)
{
if (eol(ParseTree("", false, [], s, 0,i)).successful)
{
col = 0;
++line;
++index;
}
else
{
++col;
++index;
}
}
return Position(line,col,index);
}
/**
Same as previous overload, but from the begin of P.input to p.end
*/
Position position(ParseTree p)
{
return position(p.input[0..p.end]);
}
unittest
{
assert(position("") == Position(0,0,0), "Null string, position 0.");
assert(position("abc") == Position(0,3,3), "length 3 string, no line feed.");
assert(position("abc
") == Position(1,0,4), "One end of line.");
assert(position("abc
----") == Position(2,4,9), "Three lines (second one empty).");
assert(position("abc
----
----") == Position(2,4,13), "Three lines.");
assert(position("
") == Position(3,0,3), "Four lines, all empty.");
}
string getName(alias expr)() @property
{
static if (is(typeof( { expr(GetName()); })))
return expr(GetName());
else
return __traits(identifier, expr);
}
struct GetName {}
/**
Basic rule, that always fail without consuming.
*/
ParseTree fail(ParseTree p)
{
return ParseTree("fail", false, [], p.input, p.end, p.end, null);
}
/// ditto
ParseTree fail(string input)
{
return fail(ParseTree("", false, [], input));
}
string fail(GetName g)
{
return "fail";
}
unittest // 'fail' unit test
{
ParseTree input = ParseTree("input", true, [], "This is the input string.", 0,0, null);
ParseTree result = fail(input);
assert(result.name == "fail");
assert(!result.successful, "'fail' fails.");
assert(result.matches is null, "'fail' makes no match.");
assert(result.input == input.input, "'fail' does not change the input.");
assert(result.end == input.end, "'fail' puts the index after the previous parse.");
assert(result.children is null, "'fail' has no children.");
result = fail("This is the input string.");
assert(!result.successful, "'fail' fails.");
}
/**
Matches the end of input. Fails if there is any character left.
*/
ParseTree eoi(ParseTree p)
{
if (p.end == p.input.length)
return ParseTree("eoi", true, [], p.input, p.end, p.end);
else
return ParseTree("eoi", false, ["end of input"], p.input, p.end, p.end);
}
/// ditto
ParseTree eoi(string input)
{
return eoi(ParseTree("", false, [], input));
}
string eoi(GetName g)
{
return "eoi";
}
alias eoi endOfInput; /// helper alias.
unittest // 'eoi' unit test
{
ParseTree input = ParseTree("input", true, [], "This is the input string.", 0,0, null);
ParseTree result = eoi(input);
assert(result.name == "eoi");
assert(!result.successful, "'eoi' fails on non-null string.");
assert(result.matches == ["end of input"], "'eoi' error message.");
assert(result.input == input.input, "'eoi' does not change the input.");
assert(result.end == input.end, "'eoi' puts the index after the previous parse.");
assert(result.children is null, "'eoi' has no children.");
input = ParseTree("input", true, [], "", 0,0, null);
result = eoi(input);
assert(result.successful, "'eoi' succeeds on strings of length 0.");
result = eoi("");
assert(result.successful, "'eoi' succeeds on strings of length 0.");
result = eoi(null);
assert(result.successful, "'eoi' succeeds on null strings");
}
/**
Match any character. As long as there is at least a character left in the input, it succeeds.
Conversely, it fails only if called at the end of the input.
*/
ParseTree any(ParseTree p)
{
if (p.end < p.input.length)
return ParseTree("any", true, [p.input[p.end..p.end+1]], p.input, p.end, p.end+1);
else
return ParseTree("any", false, ["any char"], p.input, p.end, p.end);
}
/// ditto
ParseTree any(string input)
{
return any(ParseTree("", false, [], input));
}
string any(GetName g)
{
return "any";
}
unittest // 'any' unit test
{
ParseTree input = ParseTree("input", true, [], "This is the input string.", 0,0, null);
ParseTree result = any(input);
assert(result.name == "any");
assert(result.successful, "'any' succeeds on non-null strings.");
assert(result.matches == ["T"], "'any' matches the first char in an input.");
assert(result.input == input.input, "'any' does not change the input.");
assert(result.end == input.end+1, "'any' advances the index by one position.");
assert(result.children is null, "'any' has no children.");
result = any("a");
assert(result.successful, "'any' matches on strings of length one.");
assert(result.matches == ["a"], "'any' matches the first char in an input.");
assert(result.input == "a", "'any' does not change the input.");
assert(result.end == 1, "'any' advances the index by one position.");
assert(result.children is null, "'any' has no children.");
input = ParseTree("input", true, [], "", 0,0, null);
result = any(input);
assert(!result.successful, "'any' fails on strings of length 0.");
assert(result.matches == ["any char"], "'any' error message on strings of length 0.");
assert(result.end == 0, "'any' does not advance the index.");
result = any("");
assert(!result.successful, "'any' fails on strings of length 0.");
assert(result.matches == ["any char"], "'any' error message on strings of length 0.");
assert(result.end == 0, "'any' does not advance the index.");
result = any(null);
assert(!result.successful, "'any' fails on null strings.");
assert(result.matches == ["any char"], "'any' error message on strings of length 0.");
assert(result.end == 0, "'any' does not advance the index.");
}
/**
Predefined parser: matches word boundaries, as \b for regexes.
*/
ParseTree wordBoundary(ParseTree p)
{
// TODO: I added more indexing guards and now this could probably use
// some simplification. Too tired to write it better. --Chad
bool matched = (p.end == 0 && isAlpha(p.input.front()))
|| (p.end == p.input.length && isAlpha(p.input.back()))
|| (p.end > 0 && isAlpha(p.input[p.end-1]) && p.end < p.input.length && !isAlpha(p.input[p.end]))
|| (p.end > 0 && !isAlpha(p.input[p.end-1]) && p.end < p.input.length && isAlpha(p.input[p.end]));
if (matched)
return ParseTree("wordBoundary", matched, [], p.input, p.end, p.end, null);
else
return ParseTree("wordBoundary", matched, ["word boundary"], p.input, p.end, p.end, null);
}
/// ditto
ParseTree wordBoundary(string input)
{
return ParseTree("wordBoundary", isAlpha(input.front()), [], input, 0,0, null);
}
string wordBoundary(GetName g)
{
return "wordBoundary";
}
unittest // word boundary
{
ParseTree input = ParseTree("", false, [], "This is a word.");
auto wb = [// "This"
0:true, 1:false, 2:false, 3:false, 4: true,
// "is"
5: true, 6:false, 7: true,
// "a"
8: true, 9:true,
// "word"
10:true, 11:false, 12:false, 13:false, 14:true,
// "."
15:false
];
foreach(size_t index; 0 .. input.input.length)
{
input.end = index;
ParseTree result = wordBoundary(input);
assert(result.name == "wordBoundary");
assert(result.successful == wb[index]); // true, false, ...
// for errors, there is an error message
assert(result.successful && result.matches is null || !result.successful);
assert(result.begin == input.end);
assert(result.end == input.end);
assert(result.children is null);
}
}
/**
Represents a literal in a PEG, like "abc" or 'abc' (or even '').
It succeeds if a prefix of the input is equal to its template parameter and fails otherwise.
*/
template literal(string s)
{
enum name = "literal!(\""~s~"\")";
ParseTree literal(ParseTree p)
{
enum lit = "\"" ~ s ~ "\"";
if (p.end+s.length <= p.input.length && p.input[p.end..p.end+s.length] == s)
return ParseTree(name, true, [s], p.input, p.end, p.end+s.length);
else
return ParseTree(name, false, [lit], p.input, p.end, p.end);
}
ParseTree literal(string input)
{
return .literal!(s)(ParseTree("", false, [], input));
}
string literal(GetName g)
{
return name;
}
}
unittest // 'literal' unit test
{
ParseTree input = ParseTree("input", true, [], "abcdef", 0,0, null);
alias literal!"a" a;
alias literal!"abc" abc;
alias literal!"" empty;
ParseTree result = a(input);
assert(result.name == `literal!("a")`, "Literal name test.");
assert(result.successful, "'a' succeeds on inputs beginning with 'a'.");
assert(result.matches == ["a"], "'a' matches the 'a' at the beginning.");
assert(result.input == input.input, "'a' does not change the input.");
assert(result.end == input.end+1, "'a' advances the index by one position.");
assert(result.children is null, "'a' has no children.");
result = a("abcdef");
assert(result.successful, "'a' succeeds on inputs beginning with 'a'.");
assert(result.matches == ["a"], "'a' matches the 'a' at the beginning.");
assert(result.input == input.input, "'a' does not change the input.");
assert(result.end == input.end+1, "'a' advances the index by one position.");
assert(result.children is null, "'a' has no children.");
result = abc(input);
assert(result.name == `literal!("abc")`, "Literal name test.");
assert(result.successful, "'abc' succeeds on inputs beginning with 'abc'.");
assert(result.matches == ["abc"], "'abc' matches 'abc' at the beginning.");
assert(result.input == input.input, "'abc' does not change the input.");
assert(result.end == input.end+3, "'abc' advances the index by 3 positions.");
assert(result.children is null, "'abc' has no children.");
result = abc("abcdef");
assert(result.successful, "'abc' succeeds on inputs beginning with 'abc'.");
assert(result.matches == ["abc"], "'abc' matches 'abc' at the beginning.");
assert(result.input == input.input, "'abc' does not change the input.");
assert(result.end == input.end+3, "'abc' advances the index by 3 positions.");
assert(result.children is null, "'abc' has no children.");
result = empty(input);
assert(result.name == `literal!("")`, "Literal name test.");
assert(result.successful, "'' succeeds on non-null inputs.");
assert(result.matches == [""], "'' matches '' at the beginning.");
assert(result.input == input.input, "'' does not change the input.");
assert(result.end == input.end+0, "'' does not advance the index.");
assert(result.children is null, "'' has no children.");
result = empty("abcdef");
assert(result.successful, "'' succeeds on non-null inputs.");
assert(result.matches == [""], "'' matches '' at the beginning.");
assert(result.input == input.input, "'' does not change the input.");
assert(result.end == input.end+0, "'' does not advance the index.");
assert(result.children is null, "'' has no children.");
input.input = "bcdef";
result = a(input);
assert(!result.successful, "'a' fails on inputs not beginning with 'a'.");
assert(result.matches == ["\"a\""], "'a' makes no match on 'bcdef'.");
assert(result.input == input.input, "'a' does not change the input.");
assert(result.end == input.end, "'a' does not advances the index on 'bcdef'.");
assert(result.children is null, "'a' has no children.");
result = abc(input);
assert(!result.successful, "'abc' fails on inputs not beginning with 'abc'.");
assert(result.matches == ["\"abc\""], "'abc' does no match on 'bcdef'.");
assert(result.input == input.input, "'abc' does not change the input.");
assert(result.end == input.end, "'abc' does not advance the index on 'bcdef'.");
assert(result.children is null, "'abc' has no children.");
result = empty(input);
assert(result.successful, "'' succeeds on non-null inputs.");
assert(result.matches == [""], "'' matches '' at the beginning.");
assert(result.input == input.input, "'' does not change the input.");
assert(result.end == input.end+0, "'' does not advance the index.");
assert(result.children is null, "'' has no children.");
input.input = "";
result = a(input);
assert(!result.successful, "'a' fails on empty strings.");
assert(result.matches == ["\"a\""], "'a' does not match ''.");
assert(result.input == input.input, "'a' does not change the input.");
assert(result.end == input.end, "'a' does not advance the index on 'bcdef'.");
assert(result.children is null, "'a' has no children.");
result = abc(input);
assert(!result.successful, "'abc' fails on empty strings.");
assert(result.matches == ["\"abc\""], "'abc' does not match ''.");
assert(result.input == input.input, "'abc' does not change the input.");
assert(result.end == input.end, "'abc' does not advance the index on 'bcdef'.");
assert(result.children is null, "'abc' has no children.");
result = empty(input);
assert(result.successful, "'' succeeds on empty strings.");
assert(result.matches == [""], "'' matches '' at the beginning, even on empty strings.");
assert(result.input == input.input, "'' does not change the input.");
assert(result.end == input.end+0, "'' does not advance the index.");
assert(result.children is null, "'' has no children.");
}
/**
Represents a range of chars, from begin to end, included. So charRange!('a','z') matches
all English lowercase letters. If fails if the input is empty or does not begin with a character
between begin and end.
If begin == end, it will match one char (begin... or end).
begin > end is non-legal.
*/
template charRange(dchar begin, dchar end) if (begin <= end)
{
enum name = "charRange!('"~to!string(begin)~"','" ~ to!string(end) ~ "')";
ParseTree charRange(ParseTree p)
{
enum longname = "a char between '"~to!string(begin)~"' and '"~to!string(end)~"'";
if (p.end < p.input.length && p.input[p.end] >= begin && p.input[p.end] <= end)
return ParseTree(name, true, [p.input[p.end..p.end+1]], p.input, p.end, p.end+1);
else
return ParseTree(name, false, [longname], p.input, p.end, p.end);
}
ParseTree charRange(string input)
{
return .charRange!(begin,end)(ParseTree("",false,[],input));
}
string charRange(GetName g)
{
return name;
}
}
unittest // 'charRange' unit test
{
ParseTree input = ParseTree("input", true, [], "abcdef", 0,0, null);
alias charRange!('a','a') aa;
alias charRange!('a','b') ab;
alias charRange!('a','z') az;
alias charRange!(dchar.min,dchar.max) allChars;
alias charRange!('\U00000000','\U000000FF') ASCII;
static assert(!__traits(compiles, {alias charRange!('z','a') za;}));
ParseTree result = aa(input);
assert(result.name == "charRange!('a','a')", "charRange name test.");
assert(result.successful, "'a-a' succeeds on inputs beginning with 'a'.");
assert(result.matches == ["a"], "'a-a' matches the 'a' at the beginning.");
assert(result.input == input.input, "'a-a' does not change the input.");
assert(result.end == input.end+1, "'a-a' advances the index by one position.");
assert(result.children is null, "'a-a' has no children.");
result = ab("abcdef");
assert(result.name == "charRange!('a','b')", "charRange name test.");
assert(result.successful, "'a-b' succeeds on inputs beginning with 'a'.");
assert(result.matches == ["a"], "'a-b' matches the 'a' at the beginning.");
assert(result.input == input.input, "'a-b' does not change the input.");
assert(result.end == input.end+1, "'a-b' advances the index by one position.");
assert(result.children is null, "'a-b' has no children.");
result = az(input);
assert(result.name == "charRange!('a','z')", "charRange name test.");
assert(result.successful, "'a-z' succeeds on inputs beginning with 'abc'.");
assert(result.matches == ["a"], "'a-z' matches 'a' at the beginning.");
assert(result.input == input.input, "'a-z' does not change the input.");
assert(result.end == input.end+1, "'a-z' advances the index by one position.");
assert(result.children is null, "'a-z' has no children.");
input.input = "bcdef";
result = aa(input);
assert(!result.successful, "'a-a' fails on inputs not beginning with 'a'.");
assert(result.matches == ["a char between 'a' and 'a'"], "'a-a' makes no match on 'bcdef'.");
assert(result.input == input.input, "'a-a' does not change the input.");
assert(result.end == input.end, "'a-a' does not advances the index on 'bcdef'.");
assert(result.children is null, "'a-a' has no children.");
result = ab(input);
assert(result.successful, "'a-b' succeeds on inputs beginning with 'b'.");
assert(result.matches == ["b"], "'a-b' matches on 'bcdef'.");
assert(result.input == input.input, "'a-b' does not change the input.");
assert(result.end == input.end+1, "'a-b' advances the index by one position'.");
assert(result.children is null, "'a-b' has no children.");
result = az(input);
assert(result.successful, "'a-z' succeeds on 'bcdef'.");
assert(result.matches == ["b"], "'a-z' matches 'b' at the beginning of 'bcdef'.");
assert(result.input == input.input, "'a-z' does not change the input.");
assert(result.end == input.end+1, "'a-z' advances the index by one position.");
assert(result.children is null, "'a-z' has no children.");
input.input = "";
result = aa(input);
assert(!result.successful, "'a-a' fails on empty strings.");
assert(result.matches == ["a char between 'a' and 'a'"], "'a-a' does not match ''.");
assert(result.input == input.input, "'a-a' does not change the input.");
assert(result.end == input.end, "'a-a' does not advance the index on ''.");
assert(result.children is null, "'a-a' has no children.");
result = ab(input);
assert(!result.successful, "'a-b' fails on empty strings.");
assert(result.matches == ["a char between 'a' and 'b'"], "'a-b' does not match ''.");
assert(result.input == input.input, "'a-b' does not change the input.");
assert(result.end == input.end, "'a-b' does not advance the index on ''.");
assert(result.children is null, "'a-b' has no children.");
result = az(input);
assert(!result.successful, "'a-z' fails on empty strings.");
assert(result.matches == ["a char between 'a' and 'z'"], "'a-z' does not match ''.");
assert(result.input == input.input, "'a-z' does not change the input.");
assert(result.end == input.end, "'a-z' does not advance the index on ''.");
assert(result.children is null, "'a-z' has no children.");
input.input = "123";
result = aa(input);
assert(!result.successful, "'a-a' fails on '123'.");
assert(result.matches == ["a char between 'a' and 'a'"], "'a-a' does not match '123'.");
assert(result.input == input.input, "'a-a' does not change the input.");
assert(result.end == input.end, "'a-a' does not advance the index on '123'.");
assert(result.children is null, "'a-a' has no children.");
result = ab(input);
assert(!result.successful, "'a-b' fails on '123'.");
assert(result.matches == ["a char between 'a' and 'b'"], "'a-b' does not match '123'.");
assert(result.input == input.input, "'a-b' does not change the input.");
assert(result.end == input.end, "'a-b' does not advance the index on '123'.");
assert(result.children is null, "'a-b' has no children.");
result = az(input);
assert(!result.successful, "'a-z' fails on '123'.");
assert(result.matches == ["a char between 'a' and 'z'"], "'a-z' does not match '123'.");
assert(result.input == input.input, "'a-z' does not change the input.");
assert(result.end == input.end, "'a-z' does not advance the index on '123'.");
assert(result.children is null, "'a-z' has no children.");
foreach(dchar ch; 0..256*(128+64+16+8))
assert(allChars(to!string(ch)).successful);
assert(!allChars("").successful);
}
/**
eps matches the empty string (usually denoted by the Greek letter 'epsilon') and always succeeds.
It's equivalent to literal!"" (for example, it creates a match of [""]: one match, the empty string).
*/
ParseTree eps(ParseTree p)
{
return ParseTree("eps", true, [""], p.input, p.end, p.end);
}
ParseTree eps(string input)
{
return eps(ParseTree("",false,[], input));
}
string eps(GetName g)
{
return "eps";
}
unittest // 'eps' unit test
{
ParseTree input = ParseTree("input", true, [], "abcdef", 0,0, null);
ParseTree result = eps(input);
assert(result.name == "eps");
assert(result.successful, "'eps' succeeds on non-null inputs.");
assert(result.matches == [""], "'eps' matches '' at the beginning.");
assert(result.input == input.input, "'eps' does not change the input.");
assert(result.end == input.end+0, "'eps' does not advance the index.");
assert(result.children is null, "'eps' has no children.");
input.input = "";
result = eps(input);
assert(result.name == "eps");
assert(result.successful, "'eps' succeeds on empty strings.");
assert(result.matches == [""], "'eps' matches '' at the beginning, even on empty strings.");
assert(result.input == input.input, "'eps' does not change the input.");
assert(result.end == input.end+0, "'eps' does not advance the index.");
assert(result.children is null, "'eps' has no children.");
}
/**
Basic operator: it matches if all its subrules (stored in the rules template parameter tuple) match
the input successively. Its subrules parse trees are stored as its children and its matches field
will contain all its subrules matches, in order.
----
alias and!(literal!"abc", charRange!('a','z')) rule; // abc followed by any letter between a and z.
ParseTree input = ParseTree("",false,[],"abcd"); // low-level plumbing,
// the rules described here act on ParseTree's not strings.
// It's equivalent to "abcd" as input
auto result = rule(input);
assert(result.successful); // OK, 'abc' followed by 'd'
assert(result.matches == ["abc", "d"]); // stores the matches
assert(result.children.length == 2); // two children, the result of "abc" on "abcd" and the result of [a-z] on "d"
input.input = "abc"; // changing the input string;
assert(!rule(input)).successful); // NOK, abc alone
input.input = "ab";
assert(!rule(input)).successful); // NOK, does not begin by abc
----
If it fails, the last children will contain the failed node. That way, when printing, as sort of diagnostic is given:
----
alias and!(literal!"abc", charRange!('a','z')) rule; // 'abc[a-z]', aka 'abc' followed by any letter between 'a' and 'z'.
ParseTree input = ParseTree("",false,[],"abc1"); // equivalent to "abc1"
auto failure = rule(input);
writeln(failure);
/+
writes:
and (failure)
+-literal(abc) [0, 3]["abc"]
+-charRange(a,z) failure at line 0, col 3, after "abc" a char between 'a' and 'z', but got "1"
+/
----
So we know the global 'and' failed, that the first sub-rule ('abc') succeeded on input[0..3] with "abc"
and that the second subrule ('[a-z]') failed at position 3 (so, on '1').
*/
template and(rules...) if (rules.length > 0)
{
string ctfeGetNameAnd()
{
string name = "and!(";
foreach(i,rule; rules)
name ~= __traits(identifier, rule) // because using getName!(rule) causes an infinite loop during compilation
// for recursive rules
~ (i < rules.length -1 ? ", " : "");
name ~= ")";
return name;
}
enum name = ctfeGetNameAnd();
ParseTree and(ParseTree p)
{
bool keepNode(ParseTree node)
{
return node.name.startsWith("keep!(")
|| ( !node.name.startsWith("discard!(")
//&& !node.name.startsWith("drop!(")
&& node.matches !is null
//&& node.begin != node.end
);
}
ParseTree result = ParseTree(name, false, [], p.input, p.end, p.end, []);
foreach(i,r; rules)
{
ParseTree temp = r(result);
result.end = temp.end;
if (temp.successful)
{
if (keepNode(temp))
{
result.matches ~= temp.matches;
if (temp.name.startsWith("drop!("))
{}
else if (temp.name.startsWith("propagate!("))
result.children ~= temp.children;
else
result.children ~= temp;
}
}
else
{
result.children ~= temp;// add the failed node, to indicate which failed
if (temp.matches.length > 0)
result.matches ~= temp.matches[$-1];
return result; // and end the parsing attempt right there
}
}
result.successful = true;
return result;
}
ParseTree and(string input)
{
return .and!(rules)(ParseTree("",false,[],input));
}
string and(GetName g)
{
return name;
}
}
unittest // 'and' unit test
{
alias literal!"abc" abc;
alias literal!"de" de;
alias literal!"f" f;
alias and!(abc) abcAnd;
alias and!(abc,de) abcde;
alias and!(abc,de,f) abcdef;
alias and!(eps, abc, eps, de, eps, f, eps) withEps;
//assert(getName!(abcAnd)() == `and!(literal!("abc"))`);
//assert(getName!(abcde)() == `and!(literal!("abc"), literal!("de"))`);
//assert(getName!(abcdef)() == `and!(literal!("abc"), literal!("de"), literal!("f"))`);
ParseTree input = ParseTree("",false,[], "abcdefghi");
ParseTree result = abcAnd(input);
assert(result.successful, "and!('abc') parses 'abcdefghi'");
assert(result.matches == ["abc"], "and!('abc') matches 'abc' at the beginning of 'abcdefghi'");
assert(result.end == input.end+3, "and!('abc') advances the index by 'abc' size (3).");
assert(result.children == [abc(input)], "and!('abc') has one child: the one created by 'abc'.");
result = abcde(input);
assert(result.successful, "and!('abc','de') parses 'abcdefghi'");
assert(result.matches == ["abc","de"],
"and!('abc','de') matches 'abc' and 'de' at the beginning of 'abcdefghi'");
assert(result.end == input.end+5, "and!('abc','de') advances the index by 3+2 positions.");
assert(result.children == [abc(input), de(abc(input))],
"and!('abc','de') has two children, created by 'abc' and 'de'.");
result = abcdef(input);
assert(result.successful, "and!('abc','de','f') parses 'abcdefghi'");
assert(result.matches == ["abc","de","f"],
"and!('abc','de','f') matches 'abcdef' at the beginning of 'abcdefghi'");
assert(result.end == input.end+6, "and!('abc','de','f') advances the index by 3+2+1 positions.");
assert(result.children == [abc(input), de(abc(input)), f(de(abc(input)))]
, "and!('abc','de') has two children, created by 'abc' and 'de'.");
result = withEps(input);
assert(result.successful, "and!('','abc','','de','','f','') parses 'abcdefghi'");
assert(result.matches == ["","abc","","de","","f",""],
"and!('','abc','','de','','f','') matches 'abcdef' at the beginning of 'abcdefghi'");
assert(result.end == input.end+6,
"and!('','abc','','de','','f','') advances the index by 0+3+0+2+0+1+0 positions.");
input.input = "bcdefghi";
result = abcdef(input);
assert(!result.successful, "'abc' 'de' 'f' fails on 'bcdefghi'");
//assert(result.matches is null, "'abc' 'de' 'f' has no match on 'bcdefghi'");
assert(result.end == input.end);
assert(result.children == [abc(input)], "'abc' 'de' 'f' has one child (a failure) on 'bcdefghi'");
input.input = "abc_efghi";
result = abcdef(input);
assert(!result.successful, "'abc' 'de' 'f' fails on 'abc_efghi'");
//assert(result.matches == ["abc"], "Only the first match, from 'abc'.");
assert(result.end == input.end+3, "Advances by 3 positions, due to 'abc'");
assert(result.children == [abc(input), de(abc(input))]
, "'abc' 'de' 'f' has two child on 'abc_efghi', the one from 'abc' (success) and the one from 'de' (failure).");
}
template wrapAround(alias before, alias target, alias after)
{
enum name = "wrapAround!(" ~ getName!(before)() ~
", " ~ getName!(target)() ~
", " ~ getName!(after)() ~ ")";
ParseTree wrapAround(ParseTree p)
{
ParseTree temp = before(p);
if (!temp.successful)
return temp;
ParseTree result = target(temp);
if (!result.successful)
return result;
result.begin = temp.begin;
temp = after(result);
if (!temp.successful)
return temp;
result.end = temp.end;
return result;
}
ParseTree wrapAround(string input)
{
return .wrapAround!(before, target, after)(ParseTree("",false,[],input));
}
string wrapAround(GetName g)
{
return name;
}
}
/**
Basic operator: it matches if one of its subrules (stored in the rules template parameter tuple) match
the input. The subrules are tested in order, from rules[0] to rules[$-1].
The matching subrule parse trees is stored as its only child and its matches field
will contain all the subrule matches, in order.
----
alias or!(literal!"abc", charRange!('a','z')) rule; // abc or, failing that, any letter between a and z.
ParseTree input = ParseTree("",false,[],"defg"); // low-level plumbing, the rules described here act on ParseTree's not strings.
// It's equivalent to "defg" as input
auto result = rule(input);
assert(result.successful); // OK
assert(result.matches == ["d"]); // stores the (in this case) only match
assert(result.children.length == 1); // one child, the result of "abc" or [a-z], depending on which rule succeeded.
input.input = "abc"; // changing the input string;
assert(rule(input)).successful); // Still OK
input.input = "1abc";
assert(!rule(input)).successful); // NOK, does not begin by abc nor by [a-z]
----
If it fails, the last children will contain the failed node that matched furthest (longes match).
That way, when printing, as sort of diagnostic is given:
----
alias or!(literal!"abc", and!(literal!"ab", charRange!('0','9'))) rule; // 'abc' or 'ab[0-9]'
ParseTree input = ParseTree("",false,[],"abd"); // equivalent to "abd"
auto failure = rule(input);
writeln(failure);
/+
or (failure)
+-and (failure)
+-literal(ab) [0, 2]["ab"]
+-charRange(0,9) failure at line 0, col 2, after "ab" expected a char between '0' and '9', but got "d"
+/
----
So we know 'or' failed, that the 'and' sub-rule had the longest match, matching 'ab' and failing for [0-9] on index 2.
*/
template or(rules...) if (rules.length > 0)
{
string ctfeGetNameOr()
{
string name = "or!(";
foreach(i,rule; rules)
name ~= getName!(rule)
~ (i < rules.length -1 ? ", " : "");
name ~= ")";
return name;
}
enum name = ctfeGetNameOr();
ParseTree or(ParseTree p)
{
// error-management
ParseTree longestFail = ParseTree(name, false, [], p.input, p.end, 0);
string[] errorStrings;
size_t errorStringChars;
string orErrorString;
ParseTree[rules.length] results;
string[rules.length] names;
size_t[rules.length] failedLength;
size_t maxFailedLength;
// Real 'or' loop
foreach(i,r; rules)
{
ParseTree temp = r(p);
if (temp.successful)
{
temp.children = [temp];
temp.name = name;
return temp;
}
else
{
enum errName = " (" ~ getName!(r)() ~")";
failedLength[i] = temp.end;
if (temp.end >= longestFail.end)
{
maxFailedLength = temp.end;
longestFail = temp;
names[i] = errName;
results[i] = temp;
if (temp.end == longestFail.end)
errorStringChars += temp.matches[$-1].length + errName.length + 4;
else
errorStringChars = temp.matches[$-1].length + errName.length + 4;
}
// Else, this error parsed less input than another one: we discard it.
}
}
// All subrules failed, we will take the longest match as the result
// If more than one node failed at the same (farthest) position, we concatenate their error messages
char[] errString;// = new char[](errorStringChars);
errString.length = errorStringChars;
uint start = 0;
foreach(i; 0..rules.length)
{
if (failedLength[i] == maxFailedLength)
{
auto temp = results[i];
auto len = temp.matches[$-1].length;
auto nlen = names[i].length;
errString[start .. start+len] = temp.matches[$-1];
errString[start+len .. start+len+names[i].length] = names[i];
errString[start+len+nlen .. start+len+nlen+4] = " or ";
start += len + names[i].length + 4;
}
}
orErrorString = cast(string)(errString[0..$-4]);
longestFail.matches = longestFail.matches[0..$-1] // discarding longestFail error message
~ [orErrorString]; // and replacing it by the new, concatenated one.
longestFail.name = name;
longestFail.begin = p.end;
return longestFail;
}
ParseTree or(string input)
{
return .or!(rules)(ParseTree("",false,[],input));
}
string or(GetName g)
{
return name;
}
}
unittest // 'or' unit test
{
alias charRange!('a','b') ab;
alias charRange!('c','d') cd;
alias or!(ab) abOr;
alias or!(ab,cd) abOrcd;
assert(getName!(ab)() == "charRange!('a','b')");
assert(getName!(cd)() == "charRange!('c','d')");
ParseTree input = ParseTree("",false,[], "abcdefghi");
ParseTree result = abOr(input);
assert(result.name == "or!(charRange!('a','b'))", "or name test.");
assert(result.successful, "or!([a-b]) parses 'abcdefghi'");
assert(result.matches == ["a"], "or!([a-b]) matches 'a' at the beginning of 'abcdefghi'");
assert(result.end == input.end+1, "or!([a-b]) advances the index by 'a' size (1).");
assert(result.children == [ab(input)], "or!([a-b]) has one child: the one created by '[a-b]'.");
result = abOrcd(input);
assert(result.name == "or!(charRange!('a','b'), charRange!('c','d'))", "or name test.");
assert(result.successful, "or!([a-b],[c-d]) parses 'abcdefghi'");
assert(result.matches == ["a"], "or!([a-b],[c-d]) matches 'a' at the beginning of 'abcdefghi'");
assert(result.end == input.end+1, "or!([a-b],[c-d]) advances the index by 1 position.");
assert(result.children == [ab(input)], "or!([a-b],[c-d]) has one child, created by [a-b].");
input.input = "cdefghi";
result = abOrcd(input);
assert(result.name == "or!(charRange!('a','b'), charRange!('c','d'))", "or name test.");
assert(result.successful, "or!([a-b],[c-d]) parses 'cdefghi'");
assert(result.matches == ["c"], "or!([a-b],[c-d]) matches 'c' at the beginning of 'cdefghi'");
assert(result.end == input.end+1, "or!([a-b],[c-d]) advances the index by 1 position.");
assert(result.children == [cd(input)], "or!([a-b],[c-d]) has one child, created by [c-d].");
input.input = "_abcdefghi";
result = abOrcd(input);
assert(!result.successful, "or!([a-b],[c-d]) fails on '_abcdefghi'");
assert(result.end == input.end+0, "or!([a-b],[c-d]) does not advance the index.");
assert(result.matches ==
[ "a char between 'a' and 'b' (charRange!('a','b')) or a char between 'c' and 'd' (charRange!('c','d'))"]
, "or!([a-b],[c-d]) error message. |" ~ result.matches[0]~ "|");
input.input = "";
result = abOrcd(input);
assert(!result.successful, "or!([a-b],[c-d]) fails on and empty input");
assert(result.end == input.end+0, "or!([a-b],[c-d]) does not advance the index.");
assert(result.matches ==
[ "a char between 'a' and 'b' (charRange!('a','b')) or a char between 'c' and 'd' (charRange!('c','d'))"]
, "or!([a-b],[c-d]) error message.");
}
/**
Compile-time switch trie from Brian Schott
*/
class Trie(V) : TrieNode!(V)
{
/**
* Adds the given value to the trie with the given key
*/
void add(string key, V value) pure
{
TrieNode!(V) current = this;
foreach(dchar keyPart; key)
{
if ((keyPart in current.children) is null)
{
auto node = new TrieNode!(V);
current.children[keyPart] = node;
current = node;
}
else
current = current.children[keyPart];
}
current.value = value;
}
}
class TrieNode(V)
{
V value;
TrieNode!(V)[dchar] children;
}
string printCaseStatements(V)(TrieNode!(V) node, string indentString)
{
string s = "";
string idnt = indentString;
void incIndent() { idnt ~= " "; }
void decIndent() { idnt = idnt[2..$]; }
void put(string k) { s ~= idnt ~ k; }
void append(string k) { s ~= k;}
foreach(dchar k, TrieNode!(V) v; node.children)
{
put("case '");
switch(k)
{
case '\n': append("\\n"); break;
case '\t': append("\\t"); break;
case 92: append("\\"); break;
default: append(to!string(k));
}
append("':\n");
incIndent();
put("temp.end++;\n");
if (v.children.length > 0)
{
put("if (temp.end >= temp.input.length)\n");
put("{\n");
incIndent();
if (node.children[k].value.length != 0)
put("return ParseTree(name, true, [`" ~ node.children[k].value ~ "`], temp.input, p.end, temp.end)");
else
put("return ParseTree(name, false, [failString], p.input, p.end, p.end)");
append(";\n");
decIndent();
put("}\n");
put("switch (temp.input[temp.end])\n");
put("{\n");
incIndent();
append(printCaseStatements(v, idnt));
put("default:\n");
incIndent();
if (v.value.length != 0)
put("return ParseTree(name, true, [`" ~ v.value ~ "`], temp.input, p.end, temp.end)");
else
put("return ParseTree(name, false, [failString], p.input, p.end, p.end)");
append(";\n");
decIndent();
decIndent();
put("}\n");
}
else
{
if (v.value.length != 0)
put("return ParseTree(name, true, [`" ~ v.value ~ "`], temp.input, p.end, temp.end)");
else
put("return ParseTree(name, false, [failString], p.input, p.end, p.end)");
append(";\n");
}
}
return s;
}
string generateCaseTrie(string[] args ...)
{
auto t = new Trie!(string);
foreach(arg; args)
{
t.add(arg, arg);
}
return printCaseStatements(t, "");
}
/**
or special case for literal list ("abstract"/"alias"/...)
*/
template keywords(kws...) if (kws.length > 0)
{
string ctfeGetNameKeywords()
{
string name= "keywords!(";
foreach(i,kw;kws)
name ~= "\"" ~ kw ~ "\""~ (i < kws.length -1 ? ", " : "");
name ~= ")";
return name;
}
string ctfeConcatKeywords()
{
string s = "[";
foreach(i, k; kws)
{
s ~= "\"" ~ k ~ "\"";
if (i < kws.length - 1)
s ~= ", ";
}
return s ~= "]";
}
enum name = ctfeGetNameKeywords();
enum failString = "one among " ~ ctfeConcatKeywords();
ParseTree keywords(ParseTree p)
{
string keywordCode(string[] keywords)
{
string result;
foreach(kw; keywords)
result ~= "if (p.end+"~to!string(kw.length) ~ " <= p.input.length "
~" && p.input[p.end..p.end+"~to!string(kw.length)~"]==`"
~kw~"`) return ParseTree(`"
~name~"`,true,[`"~kw~"`],p.input,p.end,p.end+"
~to!string(kw.length)~");\n";
result ~= "return ParseTree(`"~name~"`,false,[`" ~ failString ~ "`],p.input,p.end,p.end);";
return result;
}
static if (KEYWORDS == IFCHAIN)
{
mixin(keywordCode([kws]));
}
else static if (KEYWORDS == TRIE)
{
auto temp = p;
if (p.end < p.input.length) // is this conditional required?
{
switch(p.input[p.end])
{
mixin(generateCaseTrie([kws]));
mixin("default: return ParseTree(`"~name~"`,false,[`" ~ failString ~ "`],p.input,p.end,p.end);");
}
}
else
{
mixin("return ParseTree(`"~name~"`,false,[`" ~ failString ~ "`],p.input,p.end,p.end);");
}
}
}
ParseTree keywords(string input)
{
return .keywords!(kws)(ParseTree("",false,[],input));
}
string keywords(GetName g)
{
return name;
}
}
unittest
{
alias keywords!("abc","de","f") kw;
assert(getName!(kw)() == `keywords!("abc", "de", "f")`);
ParseTree input = ParseTree("",false,[],"abcd");
ParseTree result = kw(input);
assert(result.name == `keywords!("abc", "de", "f")`, "keywords name test.");
assert(result.successful, "keywords success on `abcd`");
assert(result.matches == ["abc"], "keywords matches `abc` on `abcd`");
assert(result.end == input.end+3, "keywords advances the index by 3 positions.");
assert(result.children is null, "No children for `keywords`.");
input.input = "def";
result = kw(input);
assert(result.successful, "keywords success on `def`");
assert(result.matches == ["de"], "keywords matches `de` on `def`");
assert(result.end == input.end+2, "keywords advances the index by 2 positions.");
assert(result.children is null, "No children for `keywords`.");
input.input = "ab_def";
result = kw(input);
assert(!result.successful, "keywords fails on `ab_def`.");
assert(result.matches == [`one among ["abc", "de", "f"]`], "keywords error message." ~ result.matches[0]);
assert(result.end == input.end, "keywords does not advance the index.");
assert(result.children is null, "No children for `keywords`.");
input.input = "";
result = kw(input);
assert(!result.successful, "keywords fails on an empty input.");
assert(result.matches == [`one among ["abc", "de", "f"]`], "keywords error message.");
assert(result.end == input.end, "keywords does not advance the index.");
assert(result.children is null, "No children for `keywords`.");
}
/**
Tries to match subrule 'r' zero or more times. It always succeeds, since if 'r' fails
from the very beginning, it matched 'r' zero times...
Its matches are those of its subrules (they might be different for each match) and its
children are all the parse trees returned by the successive application of 'r'.
----
alias zeroOrMore!(or!(literal!"abc", literal!"d")) rule; // in PEG-speak: '("abc" / "d")*'
ParseTree input = ParseTree("",false,[], "abcdabce");
ParseTree result = rule(input);
assert(result.successful);
assert(result.matches == ["abc", "d", "abc"]);
assert(result.end == 7); // matched "abcdabce"[0..7] => "abcdabc". "e" at the end is not part of the parse tree.
assert(result.children.length == 3);
writeln(result);
/+
writes:
zeroOrMore [0, 7]["abc", "d", "abc"]
+-or [0, 3]["abc"]
| +-literal(abc) [0, 3]["abc"]
+-or [3, 4]["d"]
| +-literal(d) [3, 4]["d"]
+-or [4, 7]["abc"]
+-literal(abc) [4, 7]["abc"]
+/
----
So we know the first child used the 'literal!"abc"' sub-rule and matched input[0..3].
The second matched input[3..4] and the third input[4..7].
----
input = ParseTree("",false,[], "efgh");
result = rule(input);
assert(result.successful); // succeed, even though all patterns failed.
assert(result.children.length == 0);
----
*/
template zeroOrMore(alias r)
{
enum name = "zeroOrMore!(" ~ getName!(r) ~ ")";
ParseTree zeroOrMore(ParseTree p)
{
auto result = ParseTree(name, true, [], p.input, p.end, p.end);
auto temp = r(result);
while(temp.successful
&& (temp.begin < temp.end // To avoid infinite loops on epsilon-matching rules
|| temp.name.startsWith("discard!(")))
{
result.matches ~= temp.matches;
result.children ~= temp;
result.end = temp.end;
temp = r(result);
}
result.successful = true;
return result;
}
ParseTree zeroOrMore(string input)
{
return .zeroOrMore!(r)(ParseTree("",false,[],input));
}
string zeroOrMore(GetName g)
{
return name;
}
}
unittest // 'zeroOrMore' unit test
{
alias literal!"a" a;
alias literal!"abc" abc;
alias charRange!('a','z') az;
alias zeroOrMore!(a) as;
alias zeroOrMore!(abc) abcs;
alias zeroOrMore!(az) azs;
assert(getName!(as)() == `zeroOrMore!(literal!("a"))`);
assert(getName!(abcs)() == `zeroOrMore!(literal!("abc"))`);
assert(getName!(azs)() == `zeroOrMore!(charRange!('a','z'))`);
assert(as("").successful);
assert(as("a").successful);
assert(as("aa").successful);
assert(as("aaa").successful);
assert(as("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").successful);
assert(as("b").successful);
ParseTree result = as("aaa");
assert(result.name == `zeroOrMore!(literal!("a"))`);
assert(result.successful);
assert(result.matches == ["a","a","a"]);
assert(result.begin == 0);
assert(result.end == 3);
assert(result.children.length == 3);
assert(result.children == [ a("aaa"), a(a("aaa")), a(a(a("aaa")))]);
assert(abcs("").successful);
assert(abcs("abc").successful);
assert(abcs("abcabc").successful);
assert(abcs("abcabcabc").successful);
assert(abcs("abcabcabcabcabcabcabcabcabcabcabcabcabcabcabc").successful);
assert(abcs("ab").successful);
result = abcs("abcabcabc");
assert(result.name == `zeroOrMore!(literal!("abc"))`);
assert(result.successful);
assert(result.matches == ["abc","abc","abc"]);
assert(result.begin == 0);
assert(result.end == 3*3);
assert(result.children.length == 3);
assert(result.children == [ abc("abcabcabc"), abc(abc("abcabcabc")), abc(abc(abc("abcabcabc")))]);
assert(azs("").successful);
assert(azs("a").successful);
assert(azs("abc").successful);
assert(azs("abcdefghijklmnoqrstuvwxyz").successful);
assert(azs("abcdefghijklmnoqrstuvwxyz 1234567890").successful);
result = azs("abc");
assert(result.name == `zeroOrMore!(charRange!('a','z'))`);
assert(result.successful);
assert(result.matches == ["a","b","c"]);
assert(result.begin == 0);
assert(result.end == 3);
assert(result.children.length == 3);
assert(result.children == [ az("abc"), az(az("abc")), az(az(az("abc")))]);
}
/**
Tries to match subrule 'r' one or more times. If 'r' fails
from the very beginning, it fails and else succeeds.
Its matches are those of its subrules (they might be different for each match) and its
children are all the parse trees returned by the successive application of 'r'.
----
alias oneOrMore!(or!(literal!"abc", literal!"d")) rule; // in PEG-speak: '("abc" / "d")*'
ParseTree input = ParseTree("",false,[], "abcdabce");
ParseTree result = rule(input);
assert(result.successful);
assert(result.matches == ["abc", "d", "abc"]);
assert(result.end == 7); // matched "abcdabce"[0..7] => "abcdabc". "e" at the end is not part of the parse tree.
assert(result.children.length == 3);
writeln(result);
/+
writes:
oneOrMore [0, 7]["abc", "d", "abc"]
+-or [0, 3]["abc"]
| +-literal(abc) [0, 3]["abc"]
+-or [3, 4]["d"]
| +-literal(d) [3, 4]["d"]
+-or [4, 7]["abc"]
+-literal(abc) [4, 7]["abc"]
+/
----
So we know the first child used the 'literal!"abc"' sub-rule and matched input[0..3].
The second matched input[3..4] and the third input[4..7].
----
input = ParseTree("",false,[], "efgh");
result = rule(input);
assert(!result.successful); // fails, since it failed on the first try.
----
*/
template oneOrMore(alias r)
{
enum name = "oneOrMore!(" ~ getName!(r) ~ ")";
ParseTree oneOrMore(ParseTree p)
{
auto result = ParseTree(name, false, [], p.input, p.end, p.end);
auto temp = r(result);
if (!temp.successful)
{
result.matches = temp.matches;
result.children = [temp];
result.end = temp.end;
}
else
{
while( temp.successful
&& (temp.begin < temp.end // To avoid infinite loops on epsilon-matching rules
|| temp.name.startsWith("discard!(")))
{
result.matches ~= temp.matches;
result.children ~= temp;
result.end = temp.end;
temp = r(result);
}
result.successful = true;
}
return result;
}
ParseTree oneOrMore(string input)
{
return .oneOrMore!(r)(ParseTree("",false,[],input));
}
string oneOrMore(GetName g)
{
return name;
}
}
unittest // 'oneOrMore' unit test
{
alias literal!"a" a;
alias literal!"abc" abc;
alias charRange!('a','z') az;
alias oneOrMore!(a) as;
alias oneOrMore!(abc) abcs;
alias oneOrMore!(az) azs;
assert(getName!(as)() == `oneOrMore!(literal!("a"))`);
assert(getName!(abcs)() == `oneOrMore!(literal!("abc"))`);
assert(getName!(azs)() == `oneOrMore!(charRange!('a','z'))`);
assert(!as("").successful);
assert(as("a").successful);
assert(as("aa").successful);
assert(as("aaa").successful);
assert(as("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa").successful);
assert(!as("b").successful);
ParseTree result = as("aaa");
assert(result.name == `oneOrMore!(literal!("a"))`);
assert(result.successful);
assert(result.matches == ["a","a","a"]);
assert(result.begin == 0);
assert(result.end == 3);
assert(result.children.length == 3);
assert(result.children == [ a("aaa"), a(a("aaa")), a(a(a("aaa")))]);
assert(!abcs("").successful);
assert(abcs("abc").successful);
assert(abcs("abcabc").successful);
assert(abcs("abcabcabc").successful);
assert(abcs("abcabcabcabcabcabcabcabcabcabcabcabcabcabcabc").successful);
assert(!abcs("ab").successful);
result = abcs("abcabcabc");
assert(result.name == `oneOrMore!(literal!("abc"))`);
assert(result.successful);
assert(result.matches == ["abc","abc","abc"]);
assert(result.begin == 0);
assert(result.end == 3*3);
assert(result.children.length == 3);
assert(result.children == [ abc("abcabcabc"), abc(abc("abcabcabc")), abc(abc(abc("abcabcabc")))]);
assert(!azs("").successful);
assert(azs("a").successful);
assert(azs("abc").successful);
assert(azs("abcdefghijklmnoqrstuvwxyz").successful);
assert(azs("abcdefghijklmnoqrstuvwxyz 1234567890").successful);
assert(!azs(".").successful);
result = azs("abc");
assert(result.name == `oneOrMore!(charRange!('a','z'))`);
assert(result.successful);
assert(result.matches == ["a","b","c"]);
assert(result.begin == 0);
assert(result.end == 3);
assert(result.children.length == 3);
assert(result.children == [ az("abc"), az(az("abc")), az(az(az("abc")))]);
}
/**
Given a subrule 'r', represents the expression 'r?'. It tries to match 'r' and if this matches
successfully, it returns this match. If 'r' failed, 'r?' is still a success, but without any child nor match.
----
alias option!(literal!"abc") rule; // Aka '"abc"?'
ParseTree input = ParseTree("",false,[],"abcd");
ParseTree result = rule(input);
assert(result.successful);
assert(result.matches == ["abc"]);
assert(result.children.length == 1);
assert(result.children[0] == literal!"abc"(input));
----
*/
template option(alias r)
{
enum name = "option!(" ~ getName!(r) ~ ")";
ParseTree option(ParseTree p)
{
auto result = r(p);
if (result.successful)
return ParseTree(name, true, result.matches, result.input, result.begin, result.end, [result]);
else
return ParseTree(name, true, [], p.input, p.end, p.end, null);
}
ParseTree option(string input)
{
return .option!(r)(ParseTree("",false,[],input));
}
string option(GetName g)
{
return name;
}
}
unittest // 'option' unit test
{
alias literal!"a" a;
alias literal!"abc" abc;
alias option!(a) a_;
alias option!(abc) abc_;
assert(getName!(a_)() == `option!(literal!("a"))`);
assert(getName!(abc_)() == `option!(literal!("abc"))`);
assert(a_("").successful);
assert(a_("a").successful);
assert(a_("aa").successful);
assert(a_("b").successful);
ParseTree result = a_("a");
assert(result.name == `option!(literal!("a"))`);
assert(result.successful);
assert(result.matches == ["a"]);
assert(result.begin == 0);
assert(result.end == 1);
assert(result.children.length == 1);
assert(result.children == [ a("a")]);
result = a_("");
assert(result.name == `option!(literal!("a"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
assert(abc_("").successful);
assert(abc_("abc").successful);
assert(abc_("abcabc").successful);
assert(abc_("ab").successful);
result = abc_("abcdef");
assert(result.name == `option!(literal!("abc"))`);
assert(result.successful);
assert(result.matches == ["abc"]);
assert(result.begin == 0);
assert(result.end == 3);
assert(result.children.length == 1);
assert(result.children == [ abc("abcdef")]);
result = abc_("def");
assert(result.name == `option!(literal!("abc"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
}
/**
Tries 'r' on the input. If it succeeds, the rule also succeeds, without consuming any input.
If 'r' fails, then posLookahead!r also fails. Low-level implementation of '&r'.
*/
template posLookahead(alias r)
{
enum name = "posLookahead!(" ~ getName!(r) ~ ")";
ParseTree posLookahead(ParseTree p)
{
auto temp = r(p);
if (temp.successful)
return ParseTree(name, temp.successful, [], p.input, p.end, p.end);
else
return ParseTree(name, temp.successful, [temp.matches[$-1]], p.input, p.end, p.end);
}
ParseTree posLookahead(string input)
{
return .posLookahead!(r)(ParseTree("",false,[],input));
}
string posLookahead(GetName g)
{
return name;
}
}
unittest // 'posLookahead' unit test
{
alias literal!"a" a;
alias literal!"abc" abc;
alias posLookahead!(a) a_;
alias posLookahead!(abc) abc_;
assert(getName!(a_)() == `posLookahead!(literal!("a"))`);
assert(getName!(abc_)() == `posLookahead!(literal!("abc"))`);
assert(!a_("").successful);
assert(a_("a").successful);
assert(a_("aa").successful);
assert(!a_("b").successful);
ParseTree result = a_("a");
assert(result.name == `posLookahead!(literal!("a"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
result = a_("");
assert(result.name == `posLookahead!(literal!("a"))`);
assert(!result.successful);
assert(result.matches == [`"a"`], "posLookahead error message.");
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
assert(!abc_("").successful);
assert(abc_("abc").successful);
assert(abc_("abcabc").successful);
assert(!abc_("ab").successful);
result = abc_("abcdef");
assert(result.name == `posLookahead!(literal!("abc"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
result = abc_("def");
assert(result.name == `posLookahead!(literal!("abc"))`);
assert(!result.successful);
assert(result.matches == [`"abc"`], "posLookahead error message.");
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
}
/**
Tries 'r' on the input. If it fails, the rule succeeds, without consuming any input.
If 'r' succeeds, then negLookahead!r fails. Low-level implementation of '!r'.
*/
template negLookahead(alias r)
{
enum name = "negLookahead!(" ~ getName!(r) ~ ")";
ParseTree negLookahead(ParseTree p)
{
auto temp = r(p);
if (temp.successful)
return ParseTree(name, false, ["anything but \"" ~ p.input[temp.begin..temp.end] ~ "\""], p.input, p.end, p.end);
else
return ParseTree(name, true, [], p.input, p.end, p.end);
}
ParseTree negLookahead(string input)
{
return .negLookahead!(r)(ParseTree("",false,[],input));
}
string negLookahead(GetName g)
{
return name;
}
}
unittest // 'negLookahead' unit test
{
alias literal!"a" a;
alias literal!"abc" abc;
alias negLookahead!(a) a_;
alias negLookahead!(abc) abc_;
assert(getName!(a_)() == `negLookahead!(literal!("a"))`);
assert(getName!(abc_)() == `negLookahead!(literal!("abc"))`);
assert(a_("").successful);
assert(!a_("a").successful);
assert(!a_("aa").successful);
assert(a_("b").successful);
ParseTree result = a_("a");
assert(result.name == `negLookahead!(literal!("a"))`);
assert(!result.successful);
assert(result.matches == [`anything but "a"`]);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
result = a_("");
assert(result.name == `negLookahead!(literal!("a"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
assert(abc_("").successful);
assert(!abc_("abc").successful);
assert(!abc_("abcabc").successful);
assert(abc_("ab").successful);
result = abc_("abcdef");
assert(result.name == `negLookahead!(literal!("abc"))`);
assert(!result.successful);
assert(result.matches == [`anything but "abc"`]);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
result = abc_("def");
assert(result.name == `negLookahead!(literal!("abc"))`);
assert(result.successful);
assert(result.matches is null);
assert(result.begin == 0);
assert(result.end == 0);
assert(result.children.length == 0);
}
/**
Internal helper template, to get a parse tree node with a name. For example, given:
----
alias or!(literal!("abc"), charRange!('0','9')) myRule;
----
myRule gives nodes named "or", since its the parent rule. If you want nodes to be named "myRule":
----
alias named!(
or!(literal!("abc"), charRange!('0','9')),
"myRule"
) myRule;
----
*/
template named(alias r, string name)
{
ParseTree named(ParseTree p)
{
ParseTree result = r(p);
result.name = name;
return result;
}
ParseTree named(string input)
{
return .named!(r,name)(ParseTree("",false,[],input));
}
string named(GetName g)
{
return name;
}
}
unittest // 'named' unit test
{
alias or!(literal!("abc"), charRange!('0','9')) rule;
alias named!(rule, "myRule") myRule;
assert(getName!(rule)() == `or!(literal!("abc"), charRange!('0','9'))`);
assert(getName!(myRule)() == "myRule");
// Equality on success (except for the name)
ParseTree result = rule("abc0");
ParseTree myResult = myRule("abc0");
assert(myResult.successful == result.successful);
assert(myResult.name == "myRule");
assert(myResult.matches == result.matches);
assert(myResult.begin == result.begin);
assert(myResult.end == result.end);
assert(myResult.children == result.children);
// Equality on failure (except for the name)
result = rule("_abc");
myResult = myRule("_abc");
assert(myResult.successful == result.successful);
assert(myResult.name == "myRule");
assert(myResult.matches == result.matches);
assert(myResult.begin == result.begin);
assert(myResult.end == result.end);
assert(myResult.children == result.children);
}
/**
Low-level representation for the expression 'r {act}'. That is, it applies rule 'r'
on the input and then calls 'act' on the resulting ParseTree.
*/
template action(alias r, alias act)
{
ParseTree action(ParseTree p)
{
return act(r(p));
}
ParseTree action(string input)
{
return .action!(r,act)(ParseTree("",false,[],input));
}
string action(GetName g)
{
enum name = "action!("~ getName!(r)() ~ ", " ~ __traits(identifier, act) ~ ")";
return name;
}
}
unittest // 'action' unit test
{
ParseTree foo(ParseTree p)
{
p.matches ~= p.matches; // doubling matches
return p;
}
alias literal!("abc") abc;
alias action!(abc, foo) abcfoo;
assert(getName!(abcfoo) == `action!(literal!("abc"), foo)`);
ParseTree result = abcfoo("abc");
ParseTree reference = abc("abc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(result.matches == reference.matches ~ reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children == reference.children);
// On failure
result = abcfoo("_abc");
reference = abc("_abc");
assert(result.successful == reference.successful);
assert(!result.successful);
assert(result.matches == reference.matches ~ reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children == reference.children);
}
/**
Concatenates a ParseTree's matches as one match and discards its children. Equivalent to the expression '~r'.
*/
template fuse(alias r)
{
ParseTree fuse(ParseTree p)
{
p = r(p);
if(p.successful)
{
if (p.matches.length != 0)
p.matches = [std.array.join(p.matches)];
p.children = null; // also discard children
}
return p;
}
ParseTree fuse(string input)
{
return .fuse!(r)(ParseTree("",false,[],input));
}
string fuse(GetName g)
{
enum name = "fuse!(" ~ getName!(r)() ~ ")";
return name;
}
}
unittest // 'fuse' unit test
{
alias oneOrMore!(literal!("abc")) abcs;
alias fuse!(abcs) f;
assert(getName!(f) == `fuse!(oneOrMore!(literal!("abc")))`);
ParseTree result = f("abcabcabc");
ParseTree reference = abcs("abcabcabc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(reference.matches == ["abc", "abc", "abc"]);
assert(result.matches == ["abcabcabc"]);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
// On failure
result = f("_abc");
reference = abcs("_abc");
assert(result.successful == reference.successful);
assert(!result.successful);
assert(result.matches == reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children == reference.children);
alias discard!(literal!("abc")) dabc;
alias fuse!(dabc) f2;
result = f2("abcabc");
reference = dabc("abcabc");
assert(result.successful);
assert(result.matches is null);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children == reference.children);
}
/**
Calls 'r' on the input and then discards its children nodes.
*/
template discardChildren(alias r)
{
ParseTree discardChildren(ParseTree p)
{
p = r(p);
p.children = null;
return p;
}
ParseTree discardChildren(string input)
{
return .discardChildren!(r)(ParseTree("",false,[],input));
}
string discardChildren(GetName g)
{
enum name = "discardChildren!(" ~ getName!(r)() ~ ")";
return name;
}
}
/**
Calls 'r' on the input and then discards its matches.
*/
template discardMatches(alias r)
{
ParseTree discardMatches(ParseTree p)
{
p = r(p);
if (p.successful)
p.matches = null;
return p;
}
ParseTree discardMatches(string input)
{
return .discardMatches!(r)(ParseTree("",false,[],input));
}
string discardMatches(GetName g)
{
enum name = "discardMatches!(" ~ getName!(r)() ~ ")";
return name;
}
}
/**
Calls 'r' on the input and then discard everything 'r' returned: no children, no match and index
put at the end of the match. It's the low-level engine behind ':r'.
*/
template discard(alias r)
{
ParseTree discard(ParseTree p)
{
ParseTree result = r(p);
result.name = "discard!(" ~ getName!(r)() ~ ")";
//result.begin = result.end;
result.children = null;
if (result.successful)
result.matches = null;//to keep error messages, if any
return result;
}
ParseTree discard(string input)
{
return .discard!(r)(ParseTree("",false,[],input));
}
string discard(GetName g)
{
return "discard!(" ~ getName!(r)() ~ ")";
}
}
unittest // 'discard' unit test
{
alias literal!"abc" abc;
alias oneOrMore!abc abcs;
alias discard!(literal!("abc")) dabc;
alias discard!(oneOrMore!(literal!("abc")))dabcs;
ParseTree reference = abc("abc");
ParseTree result =dabc("abc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(result.name == `discard!(literal!("abc"))`);
assert(result.matches is null);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
reference = abcs("abcabcabc");
result = dabcs("abcabcabc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(result.name == `discard!(oneOrMore!(literal!("abc")))`);
assert(result.matches is null);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
// On failure
reference = abcs("");
result = dabcs("");
assert(result.successful == reference.successful);
assert(!result.successful);
assert(result.name == `discard!(oneOrMore!(literal!("abc")))`);
assert(result.matches == [`"abc"`], "discard error message.");
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
// Action on 'and'
alias and!(abc,dabc,abc) discardMiddle;
result = discardMiddle("abcabcabc");
assert(result.successful);
assert(result.matches == ["abc", "abc"]);
assert(result.begin == 0);
assert(result.end == 3*3);
assert(result.children.length == 2);
assert(result.children == [abc("abcabcabc"), abc(abc(abc("abcabcabc")))]);
}
/**
Calls 'r' on the input and then discards everything 'r' did, except its matches (so that
they propagate upwards). Equivalent to ';r'.
*/
template drop(alias r)
{
ParseTree drop(ParseTree p)
{
ParseTree result = r(p);
//result.begin = result.end;
result.children = null;
if (result.successful)
result.name = "drop!(" ~ getName!(r)() ~ ")";
return result;
}
ParseTree drop(string input)
{
return .drop!(r)(ParseTree("",false,[],input));
}
string drop(GetName g)
{
return "drop!(" ~ getName!(r)() ~ ")";
}
}
unittest // 'drop' unit test
{
alias literal!"abc" abc;
alias oneOrMore!abc abcs;
alias drop!(literal!("abc")) dabc;
alias drop!(oneOrMore!(literal!("abc"))) dabcs;
ParseTree reference = abc("abc");
ParseTree result =dabc("abc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(result.name == `drop!(literal!("abc"))`);
assert(result.matches == reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
reference = abcs("abcabcabc");
result = dabcs("abcabcabc");
assert(result.successful == reference.successful);
assert(result.successful);
assert(result.name == `drop!(oneOrMore!(literal!("abc")))`);
assert(result.matches == reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
// On failure
reference = abcs("");
result = dabcs("");
assert(result.successful == reference.successful);
assert(!result.successful);
assert(result.name == reference.name);
assert(result.matches == [`"abc"`], "'drop' error message.");
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children is null);
// Action on 'and'
alias and!(abc,dabc,abc) discardMiddle;
result = discardMiddle("abcabcabc");
assert(result.successful);
assert(result.matches == ["abc", "abc", "abc"], "3 matches.");
assert(result.begin == 0);
assert(result.end == 3*3);
assert(result.children.length == 2, "but only 2 children.");
assert(result.children == [abc("abcabcabc"), abc(abc(abc("abcabcabc")))]);
}
/**
Makes r disappear in a sequence, letting its children take its place. It's equivalent
to the '%' operator. Given A <- B %C D and C <- E F, a successful parse for A will
generate a three with four children: B, E, F and D parse trees.
*/
template propagate(alias r)
{
ParseTree propagate(ParseTree p)
{
ParseTree result = r(p);
if (result.successful)
result.name = "propagate!(" ~ getName!(r)() ~ ")";
return result;
}
ParseTree propagate(string input)
{
return .propagate!(r)(ParseTree("",false,[],input));
}
string propagate(GetName g)
{
return "propagate!(" ~ getName!(r)() ~ ")";
}
}
/**
Makes 'r's result be kept when it would be discarded by the tree-decimation done by a grammar.
Equivalent to '^r'.
*/
template keep(alias r)
{
ParseTree keep(ParseTree p)
{
ParseTree result = r(p);
if (result.successful)
{
result.children = [result];
result.name = "keep!(" ~ getName!(r)() ~ ")";
}
return result;
}
ParseTree keep(string input)
{
return .keep!(r)(ParseTree("",false,[],input));
}
string keep(GetName g)
{
return "keep!(" ~ getName!(r)() ~ ")";
}
}
unittest // 'keep' unit test
{
// Grammar mimicry
struct KeepTest
{
static bool isRule(string s)
{
if (s == "A" || s == "KA")
return true;
else
return false;
}
mixin decimateTree;
// Equivalent to A <- 'a' 'b'
static ParseTree A(string s)
{
return decimateTree(named!(and!(literal!"a", literal!"b"), "A")(s));
}
// Here we use keep to protect 'b'
// Equivalent to KA <- 'a' ^'b'
static ParseTree KA(string s)
{
return decimateTree(named!(and!(literal!"a", keep!(literal!"b")), "KA")(s));
}
}
ParseTree reference = KeepTest.A("abc");
ParseTree result = KeepTest.KA("abc");
assert(result.successful == reference.successful);
assert(result.matches == reference.matches);
assert(result.matches == ["a","b"]);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(reference.children.length == 0);
assert(result.children.length == 1);
assert(result.children == [literal!("b")(literal!("a")("abc"))], "'b' node was kept.");
}
/* pre-defined rules */
alias named!(or!(literal!"\r\n", literal!"\n", literal!"\r"), "endOfLine") endOfLine; /// predefined end-of-line parser
alias endOfLine eol; /// helper alias.
alias or!(literal!(" "), literal!("\t")) space; /// predefined space-recognizing parser (space or tabulation).
alias named!(literal!"\t", "tab") tab; /// A parser recognizing \t (tabulation)
alias named!(fuse!(discardChildren!(oneOrMore!space)),
"spaces") spaces; /// aka '~space+'
alias or!(space, endOfLine) blank; /// Any blank char (spaces or end of line).
alias named!(discard!(zeroOrMore!blank),
"spacing") spacing; /// The basic space-management parser: discard zero or more blank spaces.
alias charRange!('0', '9') digit; /// Decimal digit: [0-9]
alias named!(fuse!(discardChildren!(oneOrMore!digit)), "digits") digits; /// [0-9]+
alias or!(charRange!('0','9'), charRange!('a','f'), charRange!('A', 'F')) hexDigit; /// Hexadecimal digit: [0-9a-fA-F]
alias charRange!('a', 'z') alpha; /// [a-z]
alias charRange!('A', 'Z') Alpha; /// [A-Z]
alias and!(oneOrMore!(or!(alpha, Alpha, literal!("_"))), zeroOrMore!(or!(digit, alpha, Alpha, literal!("_")))) ident;
alias named!(fuse!(discardChildren!ident),
"identifier") identifier; /// [a-zA-Z_][a-zA-Z_0-9]*, the basic C-family identifier
alias named!(fuse!(discardChildren!(and!(identifier, zeroOrMore!(and!(literal!".", identifier))))),
"qualifiedIdentifier") qualifiedIdentifier; /// qualified identifiers (ids separated by dots: abd.def.g).
alias named!(literal!"/", "slash") slash; /// A parser recognizing '/'
alias named!(literal!"\\", "backslash") backslash; /// A parser recognizing '\'
alias named!(literal!"'", "quote") quote; /// A parser recognizing ' (single quote)
alias named!(literal!"\"", "doublequote") doublequote; /// A parser recognizing " (double quote)
alias named!(literal!"`", "backquote") backquote; /// A parser recognizing ` (backquote)
/// A list of elem's separated by sep's. One element minimum.
template list(alias elem, alias sep)
{
alias named!(spaceAnd!(oneOrMore!blank, and!(elem, zeroOrMore!(spaceAnd!(discardMatches!(sep), elem)))), "list") list;
}
/// A list of elem's separated by sep's. The empty list (no elem, no sep) is OK.
template list0(alias elem, alias sep)
{
alias named!(spaceAnd!(oneOrMore!blank, option!(and!(elem, zeroOrMore!(spaceAnd!(discardMatches!(sep), elem))))), "list0") list0;
}
template AddSpace(alias sp)
{
template AddSpace(alias r)
{
alias TypeTuple!(r, discard!sp) AddSpace;
}
}
/**
The engine formerly behind the '< ' Pegged rule: all sequence subelements of a rule are interspersed
with a space-consuming rule, given as the first template parameter. It's not used by Pegged anymore
but can be useful for low-level code. It might become deprecated, but it's not there yet.
----
alias and!(literal!"abc", literal!"def") rule1; // "abc" "def", equivalent to "abcdef"
alias spaceAnd!(oneOrMore!blank, literal!"abc", literal!"def") rule2; // "abc" "def", but with spaces in-between.
string input1 = "abcdef";
string input2 = " abc
def "; // with spaces and end of line markers.
assert(rule1(input1).successful); // OK
assert(!rule1(input2).successful); // NOK, couldn't find "def" after "abc"
assert(rule2(input1).successful); // OK
assert(rule2(input2).successful); // Still OK
assert(rule2(input2).matches == ["abc","def"]);// rule2 finds the literals among the spaces
----
As you can see on the previous line, spaceAnd discards the matched spaces
and returns matches only for the 'real' subrules.
Note: by using a non-space rule as the first template argument,
you can use spaceAnd as a generic 'find these patterns, possibly separated by this pattern' rule.
For example, using digits as separators:
----
alias spaceAnd!(digit, literal!"abc", litera!"def") rule3;
ParseTree result = rule3("123abc45def67890");
assert(rule3.successful);
assert(rule3.matches == ["abc", "def"]);
assert(rule3.children.length == 2);
assert(rule3.begin == 0;)
assert(rule3.end == "123abc45def67890".length);
----
*/
template spaceAnd(alias sp, rules...)
{
alias and!(discard!(zeroOrMore!sp), staticMap!(AddSpace!(zeroOrMore!sp), rules)) spaceAnd;
}
unittest // 'spaceAnd' unit test
{
alias literal!"a" a;
alias literal!"b" b;
//Basic use
alias and!(a,b) ab;
alias spaceAnd!(oneOrMore!blank, a, b) a_b;
ParseTree reference = ab("ab");
ParseTree result = a_b("ab");
assert(reference.successful);
assert(result.successful);
assert(result.matches == reference.matches);
assert(result.begin == reference.begin);
assert(result.end == reference.end);
assert(result.children == reference.children);
reference = ab(" a b ");
result = a_b( " a b ");
assert(!reference.successful);
assert(result.successful);
assert(result.matches == ["a","b"]);
assert(result.begin == 0);
assert(result.end == " a b ".length);
assert(result.children.length == 2);
reference = ab("ac");
result = a_b("ac");
assert(!reference.successful);
assert(!result.successful);
reference = ab(" a c ");
result = a_b(" a c ");
assert(!reference.successful);
assert(!result.successful);
// With another separator than spaces
alias spaceAnd!(digit, a, b) a0b;
assert(a0b("ab").successful);
assert(!a0b(" a b ").successful);
result = a0b("012a34b567");
assert(result.successful);
assert(result.matches == ["a", "b"]);
assert(result.begin == 0);
assert(result.end == "012a34b567".length);
assert(result.children.length == 2);
}
/// Mixin to simplify a parse tree inside a grammar
mixin template decimateTree()
{
static ParseTree decimateTree(ParseTree p)
{
if(p.children.length == 0) return p;
ParseTree[] filterChildren(ParseTree pt)
{
ParseTree[] result;
foreach(child; pt.children)
{
if ( (isRule(child.name) && child.matches.length != 0)
|| !child.successful && child.children.length == 0)
{
child.children = filterChildren(child);
result ~= child;
}
else if (child.name.startsWith("keep!(")) // 'keep' node are never discarded.
// They have only one child, the node to keep
{
result ~= child.children[0];
}
else // discard this node, but see if its children contain nodes to keep
{
result ~= filterChildren(child);
}
}
return result;
}
p.children = filterChildren(p);
return p;
}
}
/**
Discard one-child nodes and replace them with their children.
Most grammar tend to produce long one-child/one-child branches,
simplifyTree compacts these.
*/
ParseTree simplifyTree(ParseTree p)
{
foreach(ref child; p.children)
child = simplifyTree(child);
if (p.children.length != 1)
return p;
else // linear tree
return p.children[0];
}
/**
Returns: the number of nodes in a parse tree.
*/
size_t size(ParseTree p)
{
size_t result = 1;
foreach(child; p.children)
result += size(child);
return result;
}
/**
Generic ParseTree modifier:
predicate must be callable with a ParseTree and return a boolean.
modifier must be callable with a ParseTree and return a ParseTree.
If predicate is true on input, modify calls modifier on input and return the result.
If not, it continues with the children.
*/
ParseTree modify(alias predicate, alias modifier)(ParseTree input)
{
foreach(ref child; input.children)
child = modify!(predicate, modifier)(child);
if (predicate(input))
input = modifier(input);
return input;
}
|
D
|
module vips.conv;
import vips.bindings : GObject;
/**
* Similar to G_X macro with type safety
* Convert any obj to GObject
*/
GObject* toGObject(void* p)
{
return cast(GObject*)p;
}
|
D
|
CHAIN IF
WEIGHT #8
~
CombatCounter(0)
!See([ENEMY])
Range("Iylos",30)
!StateCheck("K#Auren",CD_STATE_NOTVALID)
!StateCheck("Iylos",CD_STATE_NOTVALID)
Global("G#XB.IylosAurenToBBanter1","GLOBAL",0)~ THEN K#Aur25B IylosAurenToBBanter1
~Do you have a moment, Iylos?~
DO ~SetGlobal("G#XB.IylosAurenToBBanter1","GLOBAL",1)~
== BLK#IYL ~Of course. Many, in fact.~
== K#Aur25B ~All right, then I shall take three or four. Only joking, Iylos, don't look at me that way. And while we are on the subject, how come I never see you smiling?~
= ~You always look like death is walking behind you.~
== BLK#IYL ~(Iylos glances towards <CHARNAME> momentarily, before returning his eyes to Auren.)~
= ~Isn't <PRO_HESHE>?~
== K#Aur25B ~(Auren glance at <CHARNAME> as well, and looks a bit confused.) Err...I don't think so. Not that I've seen anyway. Unless...~
= ~Hmm...perhaps I am completely wrong, but it is almost as if you are not capable of trusting <CHARNAME>.~
== BLK#IYL ~<PRO_HESHE> hasn't done anything worthy of my respect, or trust.~
= ~When each day the idea that I am travelling with a <PRO_MANWOMAN> who could quite realistically kill thousands in one day - and enjoy it - hangs over my head, I find it a little hard to smile, sometimes. I'm sure you understand.~
== K#Aur25B ~Of course, my friend, I understand. However, I hope you do not believe the same about me.~
= ~(She grins.) Besides, what's the fun in life if you're not taking risks?~
== BLK#IYL ~You have a point, Miss Aseph. But you are not the bloodthirsty Bhaalspawn in this group.~
== K#Aur25B IF ~InParty("Imoen2")~ THEN ~No, that would be <CHARNAME> and Imoen. They aren't that bad, really, Iylos. I can understand your reasons, but I think you're overdramatising the situation here.~
== K#Aur25B IF ~!InParty("Imoen2")~ THEN ~No, that would be <CHARNAME>. <PRO_HESHE> isn't that bad, really, Iylos. I can understand your reasons, but I think you're overdramatising the situation here.~
== BLK#IYL ~Perhaps. But that does not change the fact that you have taken more than your alloted amount of moments, Auren. Leave me be.~
EXIT
CHAIN IF
WEIGHT #9
~
CombatCounter(0)
!See([ENEMY])
Range("K#Auren",30)
!StateCheck("K#Auren",CD_STATE_NOTVALID)
!StateCheck("Iylos",CD_STATE_NOTVALID)
Global("G#XB.IylosAurenToBBanter1","GLOBAL",1)
Global("G#XB.IylosAurenToBBanter2","GLOBAL",0)~ THEN BLK#IYL IylosAurenToBBanter2
~I hear you started adventuring at the age of fourteen, Auren.~
DO ~SetGlobal("Global(G#XB.IylosAurenToBBanter2","GLOBAL",1)~
== K#Aur25B ~That's correct, sir, though I am curious as to why you bring that up.~
== BLK#IYL ~What provoked you to leave home at such an early age? I find it a bit hard to believe that a girl of only fourteen would become a mercenary and leave her her hometown without terrible cause.~
== BLK#IYL ~In fact, I find it hard to believe at all.~
== K#Aur25B ~My friend, you are misinformed. True, I did leave my hometown, but a mercenary I was certainly not.~
= ~You see, I had always been facinated by the idea of adventuring, and in my youth, I would spend most of my time at the famous Taerom Thunderhammer's shop, watching him forge the weapons that adventurers used to battle evil.~
= ~When I was thirteen, some adventurers arrived in my town, and I watched them eat and drink and talk about their plans for the future. I think they noticed me eavesdropping.~
= ~Anyway, to make a long story short, I begged the leader to teach me all that he knew about swordplay. He agreed, though rather reluctantly, and convinced the group to stay awhile in Beregost. When I was fourteen, I joined their group and left Beregost when they did.~
== BLK#IYL ~What of your parents? What did they think of their daughter leaving at such an early age?~
== K#Aur25B ~My parents? Well...~
= ~They hated the very idea of me leaving. My mother blamed my father. He was a traveling merchant, and I spent my childhood listening to tales of adventurers he would meet on the road. My older brother called me suicidal.~
== BLK#IYL ~So why did you still leave, if your family were so against it?~
== K#Aur25B ~Because, Iylos, I wasn't about to live the rest of my life as a commoner. As a 'nobody'. I wanted my life to mean something, and I wanted to affect how other people lived their lives. I wanted for people to be able to sleep at night because of me. Plus, the prospect of making quite a bit of gold convinced me that even though my family was against my leaving, I could make it up to them.~
== BLK#IYL ~And did you?~
== K#Aur25B IF ~Global("AurenQuest","GLOBAL",8)~ THEN ~Heh...that I did, my friend.~
== K#Aur25B IF ~GlobalLT("AurenQuest","GLOBAL",8)~ THEN ~I...well, not yet, my friend.~
= ~But I will.~
EXIT
|
D
|
/home/liyun/clink/zkp_test/ckb-zkp/target/debug/deps/rand_core-0ac6063a726ee617.rmeta: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/lib.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/error.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/block.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/impls.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/le.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/os.rs
/home/liyun/clink/zkp_test/ckb-zkp/target/debug/deps/rand_core-0ac6063a726ee617.d: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/lib.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/error.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/block.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/impls.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/le.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/os.rs
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/lib.rs:
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/error.rs:
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/block.rs:
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/impls.rs:
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/le.rs:
/home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_core-0.5.1/src/os.rs:
|
D
|
/Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/Objects-normal/x86_64/MBRoute.o : /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBComponentRepresentable.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLane.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionType.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteLeg.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/String.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatch.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBIntersection.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBSpokenInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBCongestion.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteStep.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionBanner.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirections.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatchOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsResult.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndicationComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBTracepoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBWaypoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/Array.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.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/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/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/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/Polyline/Polyline-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/MapboxDirections.swift/MapboxDirections.swift-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Polyline/Polyline/Polyline.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MapboxDirections.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.h /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/unextended-module.modulemap /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/Polyline.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/Objects-normal/x86_64/MBRoute~partial.swiftmodule : /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBComponentRepresentable.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLane.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionType.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteLeg.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/String.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatch.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBIntersection.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBSpokenInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBCongestion.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteStep.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionBanner.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirections.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatchOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsResult.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndicationComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBTracepoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBWaypoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/Array.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.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/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/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/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/Polyline/Polyline-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/MapboxDirections.swift/MapboxDirections.swift-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Polyline/Polyline/Polyline.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MapboxDirections.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.h /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/unextended-module.modulemap /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/Polyline.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/Objects-normal/x86_64/MBRoute~partial.swiftdoc : /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBComponentRepresentable.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLane.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionType.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoute.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteLeg.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/String.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatch.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBIntersection.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBSpokenInstruction.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBCongestion.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteStep.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionBanner.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirections.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBMatchOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsOptions.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBDirectionsResult.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndicationComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBVisualInstructionComponent.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Match/MBTracepoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBWaypoint.swift /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/Extensions/Array.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.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/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/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/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/Polyline/Polyline-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Target\ Support\ Files/MapboxDirections.swift/MapboxDirections.swift-umbrella.h /Users/Lorenzo/Desktop/EO18_2/Pods/Polyline/Polyline/Polyline.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBAttribute.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBLaneIndication.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRoadClasses.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MapboxDirections.h /Users/Lorenzo/Desktop/EO18_2/Pods/MapboxDirections.swift/MapboxDirections/MBRouteOptions.h /Users/Lorenzo/Desktop/EO18_2/Build/Products/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/MapboxDirections.swift.build/unextended-module.modulemap /Users/Lorenzo/Desktop/EO18_2/Build/Intermediates/Pods.build/Debug-iphonesimulator/Polyline.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/MapKit.framework/Headers/MapKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
import std.stdio;
import std.exception;
import std.string;
import std.conv;
import std.range;
import std.algorithm;
import updb.config;
import updb.command;
import dpq.connection;
import dpq.query;
import dpq.result;
enum Command {
init,
status,
create,
deploy,
rollback,
back = rollback,
disable,
edit,
help
}
import std.meta;
auto ref T makeCommand(T)()
if (is(T == class) || is(T == struct))
{
auto opts = Config.getCommandOpts!(mixin("T.Opts"));
static if (is(T == class))
return new T(opts);
else
return T(opts);
}
void processCommand(string commandName)
{
Command command;
try {
command = commandName.to!Command;
}
catch (Exception e) {
throw new Exception("Unknown command " ~ commandName, e);
}
switch (command) {
case Command.init:
processCommand!(Command.init);
break;
case Command.create:
processCommand!(Command.create);
break;
case Command.deploy:
processCommand!(Command.deploy);
break;
case Command.rollback:
processCommand!(Command.rollback);
break;
case Command.edit:
processCommand!(Command.edit);
break;
default:
throw new Exception(commandName ~ " not implemented");
}
}
void processCommand(Command command)()
{
static if (command == Command.init)
{
//auto cmd = new InitCmd;
auto cmd = makeCommand!InitCmd;
}
else static if (command == Command.create)
{
//auto cmd = new CreateCmd;
auto cmd = makeCommand!CreateCmd;
}
else static if (command == Command.deploy)
{
//auto cmd = new DeployCmd();
auto cmd = makeCommand!DeployCmd;
}
else static if (command == Command.rollback)
{
//auto cmd = new RollbackCmd();
auto cmd = makeCommand!RollbackCmd;
}
else static if (command == Command.edit)
auto cmd = makeCommand!EditCmd;
else
static assert(0, command.to!string ~ " not implemented");
cmd.process();
}
int main(string[] args)
{
try {
auto cfg = Config.init();
if (cfg.needHelp || args.length < 2)
{
writeln("usage: ....");
return 0;
}
processCommand(args[1]);
}
catch (Exception e) {
writeln(e.msg);
writeln("=".cycle.take(42));
writeln(e);
writeln("=".cycle.take(42));
}
return 0;
}
|
D
|
social insect living in organized colonies
|
D
|
module UnrealScript.Engine.SoundNodeAmbient;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.SoundNode;
import UnrealScript.Core.DistributionFloat;
import UnrealScript.Engine.SoundNodeAttenuation;
import UnrealScript.Engine.SoundNodeWave;
extern(C++) interface SoundNodeAmbient : SoundNode
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class Engine.SoundNodeAmbient")); }
private static __gshared SoundNodeAmbient mDefaultProperties;
@property final static SoundNodeAmbient DefaultProperties() { mixin(MGDPC("SoundNodeAmbient", "SoundNodeAmbient Engine.Default__SoundNodeAmbient")); }
struct AmbientSoundSlot
{
private ubyte __buffer__[16];
public extern(D):
private static __gshared ScriptStruct mStaticClass;
@property final static ScriptStruct StaticClass() { mixin(MGSCS("ScriptStruct Engine.SoundNodeAmbient.AmbientSoundSlot")); }
@property final auto ref
{
float Weight() { mixin(MGPS("float", 12)); }
float VolumeScale() { mixin(MGPS("float", 8)); }
float PitchScale() { mixin(MGPS("float", 4)); }
SoundNodeWave Wave() { mixin(MGPS("SoundNodeWave", 0)); }
}
}
@property final
{
auto ref
{
ScriptArray!(SoundNodeAmbient.AmbientSoundSlot) SoundSlots() { mixin(MGPC("ScriptArray!(SoundNodeAmbient.AmbientSoundSlot)", 120)); }
DistributionFloat.RawDistributionFloat VolumeModulation() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 276)); }
DistributionFloat.RawDistributionFloat PitchModulation() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 248)); }
DistributionFloat.RawDistributionFloat LPFMaxRadius() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 220)); }
DistributionFloat.RawDistributionFloat LPFMinRadius() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 192)); }
DistributionFloat.RawDistributionFloat MaxRadius() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 164)); }
DistributionFloat.RawDistributionFloat MinRadius() { mixin(MGPC("DistributionFloat.RawDistributionFloat", 136)); }
SoundNodeWave Wave() { mixin(MGPC("SoundNodeWave", 132)); }
float VolumeMax() { mixin(MGPC("float", 116)); }
float VolumeMin() { mixin(MGPC("float", 112)); }
float PitchMax() { mixin(MGPC("float", 108)); }
float PitchMin() { mixin(MGPC("float", 104)); }
float LPFRadiusMax() { mixin(MGPC("float", 100)); }
float LPFRadiusMin() { mixin(MGPC("float", 96)); }
float RadiusMax() { mixin(MGPC("float", 92)); }
float RadiusMin() { mixin(MGPC("float", 88)); }
SoundNodeAttenuation.SoundDistanceModel DistanceModel() { mixin(MGPC("SoundNodeAttenuation.SoundDistanceModel", 84)); }
float dBAttenuationAtMax() { mixin(MGPC("float", 80)); }
}
bool bAttenuateWithLowPassFilter() { mixin(MGBPC(76, 0x8)); }
bool bAttenuateWithLowPassFilter(bool val) { mixin(MSBPC(76, 0x8)); }
bool bAttenuateWithLPF() { mixin(MGBPC(76, 0x4)); }
bool bAttenuateWithLPF(bool val) { mixin(MSBPC(76, 0x4)); }
bool bSpatialize() { mixin(MGBPC(76, 0x2)); }
bool bSpatialize(bool val) { mixin(MSBPC(76, 0x2)); }
bool bAttenuate() { mixin(MGBPC(76, 0x1)); }
bool bAttenuate(bool val) { mixin(MSBPC(76, 0x1)); }
}
}
|
D
|
not causing anger or annoyance
giving no offense
substituting a mild term for a harsher or distasteful one
|
D
|
module cmsed.base.registration.model;
import cmsed.base.internal.config;
import cmsed.base.internal.generators.js.model;
import dvorm.logging;
import std.file : write;
import std.path : buildPath;
/**
* Registers models to be configured at runtime for their database.
* If a model includes an init method with no args it will execute upon loading.
*/
private shared {
alias void function() configureModelDatabasesFunc;
alias void delegate() configureModelDatabasesOnInitFunc;
configureModelDatabasesFunc[] configureModelDatabases;
configureModelDatabasesOnInitFunc[] configureModelDatabasesOnInit;
void configureModelDatabase(C)() {
C.logMe();
string clasz = C.stringof;
shared Database db = configuration.modelDatabases.get(clasz, null);
if (db is Database.init)
db = configuration.globalDatabase;
C.databaseConnection(db.getDbConnections());
}
}
/**
* Registers a dvorm data model.
* To be configured and managed by Cmsed.
*/
void registerModel(C)() {
synchronized {
configureModelDatabases ~= &configureModelDatabase!C;
static if (__traits(compiles, { configureModelDatabasesOnInitFunc f = &C.init;})) {
configureModelDatabasesOnInit ~= C.init();
}
generateJavascriptModel!C;
}
}
/**
* If we were talking about only using our main then these would be protected.
* But since no public.
*/
void configureModels() {
synchronized {
foreach(func; configureModelDatabases) {
func();
}
foreach(func; configureModelDatabasesOnInit) {
func();
}
// log it
write(buildPath(configuration.logging.dir, configuration.logging.ormFile), getOrmLog());
}
}
|
D
|
/Users/harry/Desktop/sportsUp/Build/Intermediates/sportsUp.build/Debug-iphoneos/sportsUp.build/Objects-normal/arm64/AddEventDetailViewController.o : /Users/harry/Desktop/sportsUp/sportsUp/AppDelegate.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListItemModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/StadiumModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UserModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetUserRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ProfileTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/EventsTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/AddEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/UsersInEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ActivityTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/customedUINavigationController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/CustomedTabBarController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LoginPageUiewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ProfileTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventsTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/UsersInEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ActivityTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LaunchScreenViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/RegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/SecondRegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/tools/Tools.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule
/Users/harry/Desktop/sportsUp/Build/Intermediates/sportsUp.build/Debug-iphoneos/sportsUp.build/Objects-normal/arm64/AddEventDetailViewController~partial.swiftmodule : /Users/harry/Desktop/sportsUp/sportsUp/AppDelegate.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListItemModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/StadiumModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UserModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetUserRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ProfileTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/EventsTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/AddEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/UsersInEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ActivityTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/customedUINavigationController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/CustomedTabBarController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LoginPageUiewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ProfileTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventsTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/UsersInEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ActivityTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LaunchScreenViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/RegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/SecondRegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/tools/Tools.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule
/Users/harry/Desktop/sportsUp/Build/Intermediates/sportsUp.build/Debug-iphoneos/sportsUp.build/Objects-normal/arm64/AddEventDetailViewController~partial.swiftdoc : /Users/harry/Desktop/sportsUp/sportsUp/AppDelegate.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListResponseModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListItemModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/StadiumModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UserModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventDetailRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/CreateStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetStadiumRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/LoginRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/GetUserRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/RegisterRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/UnrollEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/NewEventRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/models/EventListRequestModel.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ProfileTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/EventsTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/AddEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/UsersInEventTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/views/ActivityTableViewCell.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/customedUINavigationController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/CustomedTabBarController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LoginPageUiewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ProfileTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventsTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/UsersInEventTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/ActivityTableViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/EventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/AddEventDetailViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/LaunchScreenViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/RegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/controllers/SecondRegisterViewController.swift /Users/harry/Desktop/sportsUp/sportsUp/tools/Tools.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule
|
D
|
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Cpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Lpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseEBCellFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LevelDataI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/IndexTMI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/MiniIVFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDmpi.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/GenericArithmeticI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Tuple.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDcore.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BaseFabMacros.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : BaseBCFuncEval.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LoadBalance.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Zpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/ClockTicks.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDfamily.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BoxLayoutData.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LayoutIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseIndex.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/Stencils.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/DataIndex.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/CH_Thread.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BoxIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBFluxFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/SliceSpec.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Tpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBData.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : BaseEBBC.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/RefCountedPtr.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBISBox.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/List.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/NamespaceHeader.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/ListImplem.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Misc.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5public.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/ProblemDomain.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5PLpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBFaceFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/BitSet.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BoxLayout.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDsec2.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/NamespaceVar.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/IntVect.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseIVFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5pubconf.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/LoHiSide.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5version.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/IrregNode.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/MiniIFFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/FArrayBox.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/DebugOut.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDlog.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDmpio.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Apublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBISLayout.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/FluxBox.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/RealVect.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/parstream.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/VoFIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDmulti.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/HDF5Portable.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Fpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Arena.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BaseFabImplem.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/TimedDataIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBCellFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBISLevel.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/TreeIntVectSet.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : BaseBCValue.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseIVFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : DirichletConductivityEBBC.cpp
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/GenericArithmetic.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDstdio.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BaseFab.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/CH_HDF5.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/Copier.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBArith.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Ppublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Interval.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Vector.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5ACpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/MiniIFFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/SPMD.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/GraphNode.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/memtrack.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/GeometryService.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Metaprograms.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseEBFaceFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/CH_OpenMP.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/NodeFArrayBox.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/VolIndex.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : DirichletConductivityEBBC.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/IndexTM.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/DataIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/MiniIVFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5MMpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseEBFaceFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDdirect.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/BoxLayoutDataI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Epubgen.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/FaceIndex.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/Pool.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Rpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseIFFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Dpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LevelData.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/BaseNamespaceHeader.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/MayDay.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LayoutDataI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/CH_Timer.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/NamespaceFooter.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseIFFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBStencil.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5api_adpt.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/SPMDI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/SPACE.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Opublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Epublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/CH_assert.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/IntVectSet.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/DisjointBoxLayout.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBDebugOut.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBGraph.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Ipublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5FDpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/IVSFABI.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : DirichletPoissonEBBC.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Gpublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/LayoutData.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/BaseNamespaceFooter.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/DenseIntVectSet.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBLevelGrid.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/H5Spublic.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BaseTools/REAL.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/FaceIterator.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/IVSFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/BoxTools/Box.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /opt/apps/intel15/impi_5_0/phdf5/1.8.16/x86_64/include/hdf5.h
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/BaseEBCellFAB.H
/work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../libebamrelliptic2d.Linux.mpicxx.ifort.DEBUG.MPI.a(DirichletConductivityEBBC.o) d/2d.Linux.mpicxx.ifort.DEBUG.MPI/DirichletConductivityEBBC.d : /work/02138/siddarth/CHOMBO/EBAMRRANS/lib/src/EBAMRElliptic/../../src/EBTools/EBIndexSpace.H
|
D
|
instance Non_4022_Postronek (Npc_Default)
{
//-------- primary data --------
name = "Postronek";
npctype = NPCTYPE_MAIN;
guild = GIL_NONE;
level = 26;
voice = 6;
id = 4022;
spawnDelay = NPC_FLAG_BRAVE;
//-------- abilities --------
attribute[ATR_STRENGTH] = 140;
attribute[ATR_DEXTERITY] = 100;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX]= 280;
attribute[ATR_HITPOINTS] = 280;
//-------- visuals --------
// animations
Mdl_SetVisual (self,"HUMANS.MDS");
Mdl_ApplyOverlayMds (self,"Humans_Relaxed.mds");
// body mesh ,bdytex,skin,head mesh ,headtex,teethtex,ruestung
Mdl_SetVisualBody (self,"hum_body_Naked0",0,1,"Hum_Head_Thief",6,2,TH_ARMOR_H);
B_Scale (self);
Mdl_SetModelFatness(self,0);
Npc_SetAivar(self,AIV_IMPORTANT, TRUE);
fight_tactic = FAI_HUMAN_STRONG;
Npc_SetTalentSkill (self,NPC_TALENT_2H,1);
Npc_SetTalentSkill (self,NPC_TALENT_1H,2);
Npc_SetTalentSkill (self,NPC_TALENT_BOW,2);
//-------- inventory --------
EquipItem (self,ItMw_2h_Post);
CreateInvItems(self,ItMiNugget,18);
CreateInvItems (self,ItFoRice,8);
CreateInvItems (self,ItLsTorch,2);
CreateInvItems (self,ItFo_Potion_Health_01,3);
CreateInvItem (self,ItFoMutton);
CreateInvItem (self,ItFoLoaf);
CreateInvItems (self,ItAmArrow,350);
CreateInvItems (self,ItMiNugget,32);
CreateInvItems (self,ItFo_Potion_Health_02,5);
CreateInvItem (self,ItLsTorch);
CreateInvItems (self,ItMiJoint_2,1);
//-------------Daily Routine-------------
daily_routine = Rtn_Start_4022;
};
FUNC VOID Rtn_Start_4022 ()
{
TA_Stand (06,00,09,00,"TH_EXIT");
TA_Smith_Sharp (09,00,12,00,"TH_SHARP");
TA_Stand (12,00,14,00,"TH_EXIT");
TA_Smith_Sharp (14,00,18,00,"TH_SHARP");
TA_Stand (18,00,23,00,"TH_EXIT");
TA_SitCampfire (23,00,06,00,"TH_CAMPFIRE");
};
FUNC VOID Rtn_HUNT_4022 ()
{
TA_FollowKira (06,00,16,00,"TH_PATH_01");
TA_FollowKira (16,00,06,00,"TH_PATH_01");
};
FUNC VOID Rtn_EnforceOR_4022 ()
{
TA_TH_ENFORCES (23,01,23,00,"OW_PATH_OC_NC");
};
FUNC VOID Rtn_NC3_4022 ()
{
TA_Guard (06,00,16,00,"MIS_GRDPATROL1_1");
TA_Guard (16,00,06,00,"MIS_GRDPATROL1_1");
};
|
D
|
import std.stdio;
import layout;
import terminal;
import termapp;
import diesel.vec;
import diesel.gl.font;
import imageformats;
import luainterpreter : script;
class BindBase {
abstract void call();
}
class Bind(FN, SOURCE) : BindBase {
override void call() {
fn(s);
}
FN fn;
SOURCE s;
}
class Bind(FN, SOURCE : int delegate()) : BindBase {
override void call() {
fn(s());
}
FN fn;
SOURCE s;
}
class Bind(FN, SOURCE : int[]) : BindBase {
override void call() {
fn(s[i]);
i = (i + 1) % cast(int)s.length;
}
FN fn;
SOURCE s;
int i = 0;
}
class Bind(FN : void delegate(), SOURCE) : BindBase {
override void call() {
fn();
}
FN fn;
}
BindBase[uint] binds;
class TermOps
{
TermApp app;
alias NODE = Node!Terminal;
alias app this;
void bind(FN, SOURCE)(uint key, FN fn, SOURCE value)
{
auto b = new Bind!(FN, SOURCE);
b.fn = fn;
b.s = value;
binds[key] = b;
}
void bind(uint key, void delegate() fn)
{
auto b = new Bind!(typeof(fn), void);
b.fn = fn;
binds[key] = b;
}
@script void bindKey(uint key, void delegate() fn)
{
auto b = new Bind!(typeof(fn), void);
b.fn = fn;
binds[key] = b;
}
bool handle(uint key)
{
auto ptr = (key in binds);
if(ptr) {
ptr.call();
return true;
}
return false;
}
@script void setBorder(int b = -1) {
border = b;
writeln("BORDER " ,b);
if(currentTerm) {
currentTerm.border = b;
currentTerm.resize();
}
}
@script setShader(string shader) {
try {
app.setShader(shader);
} catch (Exception e) {
writeln(e);
}
}
/* lua.registerFunction("setBackground", (string b64data) { */
/* try { */
/* auto data = Base64.decode(b64data); */
/* auto img = read_image_from_mem(data); */
/* background = Texture(img.w, img.h, cast(uint*)img.pixels.ptr); */
/* } catch (Exception e) { */
/* writeln("Failed to load bg"); */
/* } */
/* }); */
@script void setPalette(uint[] colors) {
defaultPalette = colors;
bgColor = vec3f(colors[0]);
if(currentTerm)
currentTerm.setPalette(colors);
}
@script void setFont(string spec) {
writeln("SET FONT ", spec, win.getScale());
Font font = new Font(spec, win.getScale());
this.font = font;
this.zoom = 1;
}
this(TermApp app) {
this.app = app;
}
bool zoomed = false;
NODE zoomedNode;
NODE savedRoot;
@script void toggleZoom() {
if(!zoomed) {
savedRoot = root;
zoomedNode = currentNode;
root = currentNode.detach();
root.resize(savedRoot.x, savedRoot.y, savedRoot.w, savedRoot.h);
currentNode = root;
reorg();
} else {
root = savedRoot;
root.resize(root.x, root.y, root.w, root.h);
currentNode = zoomedNode;
reorg();
}
zoomed = !zoomed;
}
@script void setTermScale(int scale)
{
if(currentTerm) {
currentTerm.zoom = scale;
currentTerm.resize();
}
}
@script void setFontSize(int size)
{
if(currentTerm) {
currentTerm.font.setSize(size * win.getScale());
currentTerm.resize();
}
}
// TODO: Split seems to leave both active = true ?
@script void horizontalSplit()
{
NODE n;
if(!currentNode.parent)
return;
if(!currentNode.parent.horizontal) {
n = currentNode.parent.add();
} else {
auto nodes = currentNode.split();
nodes[0].payload = currentNode.payload;
currentNode.payload = null;
n = nodes[1];
}
newTerm(n);
currentTerm = n.payload;
}
@script void closeCurrent()
{
closeTerm(currentNode);
}
@script void verticalSplit()
{
NODE n;
if(!currentNode.parent)
return;
if(currentNode.parent.horizontal) {
n = currentNode.parent.add();
} else {
auto nodes = currentNode.split();
nodes[0].payload = currentNode.payload;
currentNode.payload = null;
n = nodes[1];
}
newTerm(n);
currentTerm = n.payload;
}
@script void equalizeAll()
{
/* root.forEach((NODE n) { */
/* n.weight = 1.0; */
/* n.parent.weight = 1.0; */
/* }); */
//root.layout();
reorg();
}
@script string getLayout()
{
root.forEach((NODE n) {
});
return "";
}
@script void goUp()
{
if(!currentNode) return;
if(lastNode && lastNode.findBelow() == currentNode)
setTerm(lastNode);
else
setTerm(currentNode.findAbove());
}
@script void goDown()
{
if(!currentNode) return;
if(lastNode && lastNode.findAbove() == currentNode)
setTerm(lastNode);
else
setTerm(currentNode.findBelow());
}
@script void goLeft()
{
if(!currentNode) return;
if(lastNode && lastNode.findRight() == currentNode)
setTerm(lastNode);
else
setTerm(currentNode.findLeft());
}
@script void goRight()
{
if(lastNode && lastNode.findLeft() == currentNode)
setTerm(lastNode);
else
setTerm(currentNode.findRight());
}
void grow(int n)
{
auto sz = currentNode.payload.font.size * n;
resize([sz.x, sz.y]);
}
void shrink(int n)
{
auto sz = currentNode.payload.font.size * -n;
resize([sz.x, sz.y]);
}
@script void paste()
{
Terminal ct = currentTerm;
if(ct) {
auto text = win.getClipboard();
foreach(dchar c ; text)
ct.putKey(c);
}
}
void resize(int[2] delta)
{
auto x = delta[0];
auto y = delta[1];
auto nl = currentNode.findLeft();
auto nr = currentNode.findRight();
auto na = currentNode.findAbove();
auto nb = currentNode.findBelow();
if(nl) {
auto s = getSplit(nl, currentNode);
s.move(s.x - x, 0, minSplitSize);
}
if(nr) {
auto s = getSplit(nr, currentNode);
s.move(s.x + x, 0, minSplitSize);
}
if(na) {
auto s = getSplit(na, currentNode);
s.move(0, s.y - y, minSplitSize);
}
if(nb) {
auto s = getSplit(nb, currentNode);
s.move(0, s.y + y, minSplitSize);
}
root.print();
reorg();
}
void takeScreenshot()
{
auto tex = currentTerm.console.screenTexture;
auto d = tex.getPixels();
auto data = new uint[d.length];
int a = 0;
int b = (tex.height-1) * tex.width;
foreach(_ ; 0 .. tex.height) {
data[a .. a+tex.width] = d[b .. b + tex.width];
a += tex.width;
b -= tex.width;
}
write_image("shot.tga", tex.width, tex.height, cast(const ubyte[])data);
}
@script void toast(string title)
{
}
@script void onCommand(string pattern, void delegate() onStart, void delegate() onEnd)
{
}
}
|
D
|
/*****************************************************************************
*
* Higgs JavaScript Virtual Machine
*
* This file is part of the Higgs project. The project is distributed at:
* https://github.com/maximecb/Higgs
*
* Copyright (c) 2013-2015, Maxime Chevalier-Boisvert. All rights reserved.
*
* This software is licensed under the following license (Modified BSD
* License):
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*****************************************************************************/
module runtime.gc;
import core.memory;
import core.stdc.stdlib;
import core.stdc.string;
import std.stdint;
import std.stdio;
import std.string;
import std.conv;
import std.algorithm;
import ir.ir;
import ir.ops;
import runtime.vm;
import runtime.layout;
import runtime.string;
import runtime.object;
import util.misc;
import stats;
/**
GC root object
*/
struct GCRoot
{
// Warning: do not assign directly
ValuePair pair;
private GCRoot* prev;
private GCRoot* next;
@disable this();
this(ValuePair pair)
{
// Use the assignment operator
this = pair;
}
this(Word w, Tag t)
{
this(ValuePair(w, t));
}
this(refptr p, Tag t)
{
assert (isHeapPtr(t));
this(Word.ptrv(p), t);
}
~this()
{
//writeln("ptr=", ptr);
// Unregister this root
this = NULL;
//writeln("GCRoot destructor done");
}
GCRoot* opAssign(ValuePair v)
{
// If the new pointer is non-null and this root isn't listed yet
if (v.word.ptrVal && !ptr)
{
assert (
vm !is null,
"vm is null"
);
this.next = vm.firstRoot;
if (vm.firstRoot)
{
assert (vm.firstRoot.prev is null);
vm.firstRoot.prev = &this;
}
vm.firstRoot = &this;
}
// If the new pointer is null but the old pointer was non-null
// The root needs to be unregistered
else if (!v.word.ptrVal && ptr)
{
assert (
vm !is null,
"vm is null"
);
if (prev)
prev.next = next;
else
vm.firstRoot = next;
if (next)
next.prev = prev;
this.prev = null;
this.next = null;
}
// Store the value pair
this.pair = v;
return &this;
}
GCRoot* opAssign(GCRoot v)
{
this = v.pair;
return &this;
}
Word word()
{
return pair.word;
}
Tag tag()
{
return pair.tag;
}
refptr ptr()
{
return pair.word.ptrVal;
}
auto nextRoot()
{
return next;
}
}
/**
Check that a pointer points in a VM's from-space heap
*/
bool inFromSpace(VM vm, refptr ptr)
{
return (ptr >= vm.heapStart && ptr < vm.heapLimit);
}
/**
Check that a pointer points in a VM's to-space heap
*/
bool inToSpace(VM vm, refptr ptr)
{
return (ptr >= vm.toStart && ptr < vm.toLimit);
}
/**
Check that a pointer points to a valid chunk of memory
*/
bool ptrValid(void* ptr)
{
// Query the D GC regarding this pointer
return GC.query(ptr) != GC.BlkInfo.init;
}
/**
Allocate a memory block to serve as a VM heap
*/
rawptr allocHeapBlock(VM vm, size_t heapSize)
{
// Allocate a memory block for the to-space
auto memBlock = cast(ubyte*)GC.malloc(
heapSize,
GC.BlkAttr.NO_SCAN |
GC.BlkAttr.NO_INTERIOR |
GC.BlkAttr.NO_MOVE
);
if (memBlock is null)
{
writeln("failed to allocate heap memory block");
exit(-1);
}
return memBlock;
}
/**
Allocate an object in the heap
*/
refptr heapAlloc(VM vm, size_t size)
{
// If this allocation exceeds the heap limit
if (vm.allocPtr + size > vm.heapLimit)
{
//writefln("gc on alloc of size %s", size);
// Perform garbage collection
gcCollect(vm);
//writefln("gc done");
auto allocSize = vm.allocPtr - vm.heapStart;
// While this allocation exceeds the heap limit
while (vm.allocPtr + size > vm.heapLimit)
{
auto newHeapSize = 2 * vm.heapSize;
writeln(
"heap space exhausted, expanding heap to ",
newHeapSize / (1024 * 1024),
"MiB"
);
// Double the size of the heap
gcCollect(vm, newHeapSize);
assert (allocSize == vm.allocPtr - vm.heapStart);
}
}
// Store the pointer to the new object
refptr ptr = vm.allocPtr;
// Update and align the allocation pointer
vm.allocPtr = alignPtr(vm.allocPtr + size);
assert (inFromSpace(vm, ptr));
// Return the object pointer
return ptr;
}
/**
Perform a garbage collection
*/
void gcCollect(VM vm, size_t heapSize = 0)
{
/*
Cheney's Algorithm:
flip() =
Fromspace, Tospace = Tospace, Fromspace
top_of_space = Tospace + space_size
scan = free = Tospace
for R in roots
R = copy(R)
while scan < free
for P in Children(scan)
*P = copy(*P)
scan = scan + size (scan)
copy(P) =
if forwarded(P)
return forwarding_address(P)
else
addr = free
move(P,free)
free = free + size(P)
forwarding_address(P) = addr
return addr
*/
writeln("entering gcCollect");
//writeln("curInstr: ", vm.curInstr);
//writeln("cur fun: ", vm.curInstr.block.fun.getName);
// Start recording garbage collection time
stats.gcTimeStart();
// If a VM heap resizing is requested
if (heapSize != 0)
{
// Update the VM heap size
vm.heapSize = heapSize;
}
// If the to-space heap size doesn't match the VM heap size
if (vm.toLimit - vm.toStart != vm.heapSize)
{
writeln("resizing to-space heap");
// Free the old to-space heap block
GC.free(vm.toStart);
// Reallocate a memory block for the to-space
vm.toStart = allocHeapBlock(vm, vm.heapSize);
vm.toLimit = vm.toStart + vm.heapSize;
}
// Zero-out the to-space
// Note: the runtime relies on this behavior to
// avoid initializing all object and array fields
assert (vm.toLimit - vm.toStart is vm.heapSize);
memset(vm.toStart, 0, vm.heapSize);
// Initialize the to-space allocation pointer
vm.toAlloc = vm.toStart;
//writeln("visiting root objects");
// Forward the root objects
vm.objProto.word.ptrVal = gcForward(vm, vm.objProto.word.ptrVal);
vm.arrProto.word.ptrVal = gcForward(vm, vm.arrProto.word.ptrVal);
vm.funProto.word.ptrVal = gcForward(vm, vm.funProto.word.ptrVal);
vm.strProto.word.ptrVal = gcForward(vm, vm.strProto.word.ptrVal);
vm.globalObj.word.ptrVal = gcForward(vm, vm.globalObj.word.ptrVal);
//writeln("visiting stack roots");
// Visit the stack roots
visitStackRoots(vm);
//writeln("visiting GC root objects");
// Visit the root objects
for (GCRoot* pRoot = vm.firstRoot; pRoot !is null; pRoot = pRoot.next)
pRoot.pair.word = gcForward(vm, pRoot.word, pRoot.tag);
//writeln("scanning to-space");
// Scan Pointer: All objects behind it (i.e. to its left) have been fully
// processed; objects in front of it have been copied but not processed.
// Free Pointer: All copied objects are behind it; Space to its right is free
// Initialize the scan pointer at the to-space heap start
auto scanPtr = vm.toStart;
// Until the to-space scan is complete
size_t numObjs;
for (numObjs = 0;; ++numObjs)
{
// If we are past the free pointer, scanning done
if (scanPtr >= vm.toAlloc)
break;
assert (
vm.inToSpace(scanPtr),
"scan pointer past to-space limit"
);
// Get the object size
auto objSize = layout_sizeof(scanPtr);
assert (
scanPtr + objSize <= vm.toLimit,
"object extends past to-space limit"
);
//writefln("scanning object of size %s", objSize);
//writefln("scanning %s (%s)", scanPtr, numObjs);
//writefln("obj header: %s", obj_get_header(scanPtr));
// Visit the object layout, forward its references
layout_visit_gc(vm, scanPtr);
//writeln("visited layout");
// Move to the next object
scanPtr = alignPtr(scanPtr + objSize);
}
//writefln("objects copied/scanned: %s", numObjs);
// Swap the from and to-space heaps
swap(vm.heapStart, vm.toStart);
swap(vm.heapLimit, vm.toLimit);
vm.allocPtr = vm.toAlloc;
//writefln("rebuilding string table");
// Store a pointer to the old string table
auto oldStrTbl = vm.strTbl;
auto strTblCap = strtbl_get_cap(oldStrTbl);
// Allocate a new string table
vm.strTbl = strtbl_alloc(vm, strTblCap);
// Add only the forwarded strings to the new string table
for (uint32 i = 0; i < strTblCap; ++i)
{
auto ptr = strtbl_get_str(oldStrTbl, i);
if (ptr is null)
continue;
auto next = obj_get_next(ptr);
if (next is null)
continue;
getTableStr(vm, next);
}
//writefln("old live funs count: %s", vm.funRefs.length);
// Collect the dead functions
foreach (ptr, fun; vm.funRefs)
if (ptr !in vm.liveFuns)
collectFun(vm, fun);
// Swap the function reference sets
vm.funRefs = vm.liveFuns;
destroy(vm.liveFuns);
//writefln("new live funs count: %s", vm.funRefs.length);
// Increment the garbage collection count
vm.gcCount++;
writeln("leaving gcCollect");
//writefln("free space: %s", (vm.heapLimit - vm.allocPtr));
// Sop recording garbage collection time
stats.gcTimeStop();
}
/**
Function to forward a memory object. The argument is an unboxed reference.
*/
refptr gcForward(VM vm, refptr ptr)
{
// Pseudocode:
//
// if forwarded(P)
// return forwarding_address(P)
// else
// addr = free
// move(P,free)
// free = free + size(P)
// forwarding_address(P) = addr
// return addr
if (ptr is null)
return null;
//writefln("forwarding object %s (%s)", ptr, vm.inFromSpace(ptr));
//writeln("header=", obj_get_header(ptr));
assert (
vm.inFromSpace(ptr),
format(
"gcForward: object not in from-space heap\n" ~
"ptr : %s\n" ~
"start : %s\n" ~
"limit : %s\n" ~
"header: %s",
ptr,
vm.heapStart,
vm.heapLimit,
(ptrValid(ptr)? to!string(obj_get_header(ptr)):"???")
)
);
// Get the next pointer
auto nextPtr = obj_get_next(ptr);
// Get the layout type
auto header = obj_get_header(ptr);
// If this is a closure
if (header == LAYOUT_CLOS)
{
auto fun = getFunPtr(ptr);
assert (fun !is null);
visitFun(vm, fun);
}
// If this is an object of some kind
if (header == LAYOUT_OBJ ||
header == LAYOUT_ARR ||
header == LAYOUT_CLOS)
{
// If the next pointer points to an extension table
if (vm.inFromSpace(nextPtr))
{
// Forward the extension table, but not the original object
auto oldObj = ptr;
ptr = nextPtr;
nextPtr = obj_get_next(ptr);
// If the extension table hasn't yet been forwarded
if (nextPtr is null)
{
// Switch on the layout type
switch (header)
{
case LAYOUT_OBJ:
break;
case LAYOUT_ARR:
setArrLen(ptr, getArrLen(oldObj));
setArrTbl(ptr, getArrTbl(oldObj));
break;
case LAYOUT_CLOS:
auto numCells = clos_get_num_cells(oldObj);
for (uint32_t i = 0; i < numCells; ++i)
clos_set_cell(ptr, i, clos_get_cell(oldObj, i));
break;
default:
assert (false, "unhandled object type");
}
// Copy over the original object's property words and types
auto objCap = obj_get_cap(oldObj);
for (uint32_t i = 0; i < objCap; ++i)
setSlotPair(ptr, i, getSlotPair(oldObj, i));
// Set the object shape
obj_set_shape_idx(ptr, obj_get_shape_idx(oldObj));
}
}
}
// If the object is not already forwarded to the to-space
if (nextPtr is null)
{
//writefln("copying");
// Copy the object into the to-space
nextPtr = gcCopy(vm, ptr, layout_sizeof(ptr));
assert (
obj_get_next(ptr) == nextPtr,
"next pointer not set"
);
}
assert (
vm.inToSpace(nextPtr),
format(
"gcForward: next pointer is outside of to-space\n" ~
"objPtr : %s\n" ~
"nextPtr : %s\n" ~
"to-start: %s\n" ~
"to-limit: %s\n",
ptr,
nextPtr,
vm.toStart,
vm.toLimit,
)
);
//writefln("object forwarded");
// Return the forwarded pointer
return nextPtr;
}
/**
Forward a word/value pair
*/
Word gcForward(VM vm, Word word, Tag tag)
{
// Switch on the type tag
switch (tag)
{
// Heap reference pointer
// Forward the pointer
case Tag.REFPTR:
case Tag.OBJECT:
case Tag.ARRAY:
case Tag.CLOSURE:
case Tag.STRING:
case Tag.ROPE:
return Word.ptrv(gcForward(vm, word.ptrVal));
// Function pointer (IRFunction)
// Return the pointer unchanged
case Tag.FUNPTR:
auto fun = word.funVal;
assert (fun !is null, "null IRFunction pointer");
visitFun(vm, fun);
return word;
// Return address
case Tag.RETADDR:
assert (
word.ptrVal in vm.retAddrMap,
format("ret addr not found: %s", word.ptrVal)
);
auto retEntry = vm.retAddrMap[word.ptrVal];
if (retEntry.callInstr !is null)
{
auto fun = retEntry.callInstr.block.fun;
visitFun(vm, fun);
}
return word;
// Non-GCd types
// Return the word unchanged
case Tag.UNDEF:
case Tag.NULL:
case Tag.BOOL:
case Tag.INT32:
case Tag.INT64:
case Tag.FLOAT64:
case Tag.RAWPTR:
return word;
default:
assert (false);
}
}
/**
Forward a word/value pair
*/
uint64 gcForward(VM vm, uint64 word, uint8 tag)
{
// Forward the pointer
return gcForward(vm, Word.uint64v(word), cast(Tag)tag).uint64Val;
}
/**
Copy a live object into the to-space.
*/
refptr gcCopy(VM vm, refptr ptr, size_t size)
{
assert (
vm.inFromSpace(ptr),
format(
"gcCopy: object not in from-space heap\n" ~
"ptr : %s\n" ~
"start : %s\n" ~
"limit : %s\n" ~
"header: %s",
ptr,
vm.heapStart,
vm.heapLimit,
obj_get_header(ptr)
)
);
assert (
obj_get_next(ptr) == null,
"next pointer in object to forward is not null"
);
// The object will be copied at the to-space allocation pointer
auto nextPtr = vm.toAlloc;
assert (
nextPtr + size <= vm.toLimit,
format(
"cannot copy in to-space, heap limit exceeded\n" ~
"ptr : %s\n" ~
"size : %s\n" ~
"fr-limit: %s\n" ~
"to-alloc: %s\n" ~
"to-limit: %s\n" ~
"header : %s",
ptr,
size,
vm.heapLimit,
vm.toAlloc,
vm.toLimit,
obj_get_header(ptr)
)
);
// Update the allocation pointer
vm.toAlloc += size;
vm.toAlloc = alignPtr(vm.toAlloc);
// Copy the object to the to-space
for (size_t i = 0; i < size; ++i)
nextPtr[i] = ptr[i];
assert (
vm.inToSpace(nextPtr),
"gcCopy: next pointer is outside of to-space"
);
// Write the forwarding pointer in the old object
obj_set_next(ptr, nextPtr);
// Return the copied object pointer
return nextPtr;
}
/**
Walk the stack and forward references to the to-space
*/
void visitStackRoots(VM vm)
{
auto visitFrame = delegate void(
IRFunction fun,
Word* wsp,
Tag* tsp,
size_t depth,
size_t frameSize,
IRInstr curInstr
)
{
/// Forward a value at a given index in the current frame
void forward(StackIdx idx)
{
assert (idx < frameSize);
//writefln("ref %s/%s", idx, frameSize);
Word word = wsp[idx];
Tag tag = tsp[idx];
//writefln("tag: %s", tag);
// If this is a pointer, forward it
wsp[idx] = gcForward(vm, word, tag);
auto fwdPtr = wsp[idx].ptrVal;
assert (
!isHeapPtr(tag) ||
fwdPtr == null ||
vm.inToSpace(fwdPtr),
format(
"invalid forwarded stack pointer\n" ~
"ptr : %s\n" ~
"to-alloc: %s\n" ~
"to-limit: %s",
fwdPtr,
vm.toStart,
vm.toLimit
)
);
}
//writeln("visiting frame for: ", fun.getName(), " ", fun.ast.pos);
//writeln(fun);
//writeln("frame size: ", frameSize);
//writeln("\n", fun, "\n");
// Visit the function this stack frame belongs to
visitFun(vm, fun);
// Get the values live at the current instruction
IRDstValue[] liveVals;
if (depth is 0)
liveVals = fun.liveInfo.valsLiveBefore(curInstr);
else
liveVals = fun.liveInfo.valsLiveAfter(curInstr);
// For each live value
foreach (val; liveVals)
{
// The current instruction hasn't completed, skip it
if (val is curInstr)
continue;
if (val is fun.closVal)
{
// Forward the closure pointer
// Note: the closure pointer is not type tagged
auto closIdx = fun.closVal.outSlot;
wsp[closIdx] = gcForward(vm, wsp[closIdx], Tag.CLOSURE);
continue;
}
if (val is fun.raVal)
{
// Forward the return address
// Note: the return address is not type tagged
auto raIdx = fun.raVal.outSlot;
wsp[raIdx] = gcForward(vm, wsp[raIdx], Tag.RETADDR);
continue;
}
if (val is fun.argcVal)
{
// The argument count doesn't need forwarding
continue;
}
// Forward the value
//writeln(val);
forward(val.outSlot);
}
// Forward supernumerary arguments, if any
size_t extraArgs = frameSize - fun.numLocals;
auto argSlot = fun.argcVal.outSlot + 1;
for (StackIdx i = 0; i < extraArgs; ++i)
{
forward(fun.argcVal.outSlot + 1 + fun.numParams + i);
}
//writeln("done visiting frame");
};
vm.visitStack(visitFrame);
//writefln("done scanning stack");
}
/**
Visit a function and its sub-functions
*/
void visitFun(VM vm, IRFunction fun)
{
// If this function was already visited, stop
if (cast(void*)fun in vm.liveFuns)
return;
// Add the function to the set of live functions
vm.liveFuns[cast(void*)fun] = fun;
// For each block
for (IRBlock block = fun.firstBlock; block !is null; block = block.next)
{
// For each phi node
for (PhiNode phi = block.firstPhi; phi !is null; phi = phi.next)
{
for (size_t iIdx = 0; iIdx < phi.block.numIncoming; ++iIdx)
{
auto branch = phi.block.getIncoming(iIdx);
auto arg = branch.getPhiArg(phi);
// String argument
if (auto strArg = cast(IRString)arg)
{
if (vm.inFromSpace(strArg.ptr))
strArg.ptr = gcForward(vm, strArg.ptr);
}
}
}
// For each instruction
for (IRInstr instr = block.firstInstr; instr !is null; instr = instr.next)
{
for (size_t argIdx = 0; argIdx < instr.numArgs; ++argIdx)
{
auto arg = instr.getArg(argIdx);
// IR function pointer
if (auto funArg = cast(IRFunPtr)arg)
{
if (funArg.fun !is null)
visitFun(vm, funArg.fun);
}
// String argument
else if (auto strArg = cast(IRString)arg)
{
if (vm.inFromSpace(strArg.ptr))
strArg.ptr = gcForward(vm, strArg.ptr);
}
}
}
}
}
/**
Collect resources held by a dead function
*/
void collectFun(VM vm, IRFunction fun)
{
//writefln("* freeing dead function: \"%s\"", fun.getName);
// For each basic block
for (IRBlock block = fun.firstBlock; block !is null; block = block.next)
{
// For each instruction
for (IRInstr instr = block.firstInstr; instr !is null; instr = instr.next)
{
// For each instruction argument
for (size_t argIdx = 0; argIdx < instr.numArgs; ++argIdx)
{
auto arg = instr.getArg(argIdx);
// Remove this argument reference
instr.remArg(argIdx);
}
}
}
//writefln("destroying function: \"%s\" (%s)", fun.getName, cast(void*)fun);
// Destroy the function
destroy(fun);
}
|
D
|
import dsfml.graphics;
import std.math;
class DynamicSprite : Drawable {
Sprite sprite;
float angle;
float speed;
this(Vector2f pos, float speed, float angle, Texture texture) {
this.speed = speed;
this.angle = angle;
sprite = new Sprite();
sprite.setTexture(texture);
sprite.position = pos;
sprite.origin = Vector2f(texture.getSize().x / 2, texture.getSize().y / 2);
}
this(Sprite s) {
this.sprite = s;
}
void update() {
updatePosition();
}
void updatePosition() {
sprite.rotation = angle + 90;
Vector2f velocity = Vector2f(speed * cos(angle * (PI / 180)), speed * sin(angle * (PI / 180)));
sprite.move(velocity);
}
void draw(RenderTarget target, RenderStates states) {
target.draw(sprite);
}
auto dup() {
DynamicSprite s = new DynamicSprite(sprite.dup());
s.angle = angle;
s.speed = speed;
return s;
}
}
|
D
|
// hexadecimal integer
void main() {
int i = 0x0123456789ABCDEF;
}
|
D
|
/Users/ryojisimizu/rust/networkprogramming/packet-capture/target/rls/debug/deps/unicode_xid-1aa3ad15b1990815.rmeta: /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/tables.rs
/Users/ryojisimizu/rust/networkprogramming/packet-capture/target/rls/debug/deps/libunicode_xid-1aa3ad15b1990815.rlib: /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/tables.rs
/Users/ryojisimizu/rust/networkprogramming/packet-capture/target/rls/debug/deps/unicode_xid-1aa3ad15b1990815.d: /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs /Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/tables.rs
/Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/lib.rs:
/Users/ryojisimizu/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.2/src/tables.rs:
|
D
|
#!/usr/bin/env rdmd-release
/**
Task-Parallel Quicksort in D.
*/
import std.array;
import std.stdio;
import std.algorithm;
import std.parallelism;
import std.conv;
import std.exception;
import std.range;
import std.string;
import std.traits;
/** Python-Style Alias. */
string str(T)(T x) { return to!string(x); }
/** Nice Aliases. */
alias writeln wrln;
alias isOrdered = isSorted;
/** Evaluate exp n times like in Lisp. */
void doTimes(uint n, lazy void exp) { while (n--) exp(); }
/** Sorts an Array \p a using a \em 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
*/
void parallelSort(T)(T[] a)
{
// Sort small subarrays serially.
if (a.length < 100) { // todo: find this limits through benchmarks
std.algorithm.sort(a);
return;
}
// Partition the array.
swap(a[$ / 2], a[$ - 1]);
auto pivot = a[$ - 1];
bool ltPivot(T elem) { return elem < pivot; } // less than pivot
auto ge = partition!ltPivot(a[0..$ - 1]); // greater than or equal
swap(a[$ - ge.length - 1], a[$ - 1]);
auto less = a[0..$ - ge.length - 1]; // less than
ge = a[$ - ge.length..$];
// Execute both recursion branches in parallel.
auto recurseTask = task!(parallelSort)(ge);
taskPool.put(recurseTask);
parallelSort(less);
recurseTask.yieldForce;
}
void testSort(T, bool useStatic = false)(size_t n, bool show = false)
{
// allocate
static if (useStatic) {
T a[n];
} else {
auto a = new T[n];
}
// sort
std.algorithm.sort(a);
parallelSort(a);
assert(std.algorithm.isSorted(a)); // verify result
// show result
if (show) {
writeln(a);
}
}
void testAll(T)()
{
for (size_t i = 2; i <= 15; i++) {
testSort!T(i);
}
for (size_t i = 16; i <= 4096 * 64 * 4; i *= 2) {
testSort!T(i);
}
}
void main(string[] args)
{
testAll!int();
testAll!long();
testAll!float();
testAll!double();
testAll!double();
}
|
D
|
/*
* Copyright 2002-2018 the original author or authors.
*
* 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.stomp.simp.SimpMessagingTemplate;
import hunt.stomp.simp.SimpMessageHeaderAccessor;
import hunt.stomp.simp.SimpMessageSendingOperations;
import hunt.stomp.simp.SimpMessageType;
import hunt.stomp.Message;
import hunt.stomp.MessageChannel;
import hunt.stomp.MessageHeaders;
import hunt.stomp.MessagingException;
import hunt.stomp.core.AbstractMessageSendingTemplate;
import hunt.stomp.core.MessagePostProcessor;
import hunt.stomp.support.MessageBuilder;
import hunt.stomp.support.MessageHeaderAccessor;
import hunt.stomp.support.NativeMessageHeaderAccessor;
// import hunt.framework.util.StringUtils;
import hunt.collection.Map;
import hunt.logging;
import std.array;
import std.conv;
import std.string;
/**
* An implementation of
* {@link hunt.stomp.simp.SimpMessageSendingOperations}.
*
* <p>Also provides methods for sending messages to a user. See
* {@link hunt.stomp.simp.user.UserDestinationResolver
* UserDestinationResolver}
* for more on user destinations.
*
* @author Rossen Stoyanchev
* @since 4.0
*/
class SimpMessagingTemplate : AbstractMessageSendingTemplate!(string), SimpMessageSendingOperations {
private MessageChannel messageChannel;
private string destinationPrefix = "/user/";
private long sendTimeout = -1;
private MessageHeaderInitializer headerInitializer;
/**
* Create a new {@link SimpMessagingTemplate} instance.
* @param messageChannel the message channel (never {@code null})
*/
this(MessageChannel messageChannel) {
assert(messageChannel, "MessageChannel must not be null");
this.messageChannel = messageChannel;
}
/**
* Return the configured message channel.
*/
MessageChannel getMessageChannel() {
return this.messageChannel;
}
/**
* Configure the prefix to use for destinations targeting a specific user.
* <p>The default value is "/user/".
* @see hunt.stomp.simp.user.UserDestinationMessageHandler
*/
void setUserDestinationPrefix(string prefix) {
assert(!prefix.empty, "User destination prefix must not be empty");
this.destinationPrefix = (prefix.endsWith("/") ? prefix : prefix ~ "/");
}
/**
* Return the configured user destination prefix.
*/
string getUserDestinationPrefix() {
return this.destinationPrefix;
}
/**
* Specify the timeout value to use for send operations (in milliseconds).
*/
void setSendTimeout(long sendTimeout) {
this.sendTimeout = sendTimeout;
}
/**
* Return the configured send timeout (in milliseconds).
*/
long getSendTimeout() {
return this.sendTimeout;
}
/**
* Configure a {@link MessageHeaderInitializer} to apply to the headers of all
* messages created through the {@code SimpMessagingTemplate}.
* <p>By default, this property is not set.
*/
void setHeaderInitializer(MessageHeaderInitializer headerInitializer) {
this.headerInitializer = headerInitializer;
}
/**
* Return the configured header initializer.
*/
MessageHeaderInitializer getHeaderInitializer() {
return this.headerInitializer;
}
/**
* If the headers of the given message already contain a
* {@link hunt.stomp.simp.SimpMessageHeaderAccessor#DESTINATION_HEADER
* SimpMessageHeaderAccessor#DESTINATION_HEADER} then the message is sent without
* further changes.
* <p>If a destination header is not already present ,the message is sent
* to the configured {@link #setDefaultDestination(Object) defaultDestination}
* or an exception an {@code IllegalStateException} is raised if that isn't
* configured.
* @param message the message to send (never {@code null})
*/
override
void send(MessageBase message) {
assert(message !is null, "Message is required");
string destination = SimpMessageHeaderAccessor.getDestination(message.getHeaders());
if (destination !is null) {
sendInternal(message);
return;
}
doSend(getRequiredDefaultDestination(), message);
}
override
protected void doSend(string destination, MessageBase message) {
assert(destination, "Destination must not be null");
SimpMessageHeaderAccessor simpAccessor =
MessageHeaderAccessor.getAccessor!SimpMessageHeaderAccessor(message);
if (simpAccessor !is null) {
if (simpAccessor.isMutable()) {
simpAccessor.setDestination(destination);
simpAccessor.setMessageTypeIfNotSet(SimpMessageType.MESSAGE);
simpAccessor.setImmutable();
sendInternal(message);
return;
}
else {
// Try and keep the original accessor type
simpAccessor = cast(SimpMessageHeaderAccessor) MessageHeaderAccessor.getMutableAccessor(message);
initHeaders(simpAccessor);
}
}
else {
simpAccessor = SimpMessageHeaderAccessor.wrap(message);
initHeaders(simpAccessor);
}
simpAccessor.setDestination(destination);
simpAccessor.setMessageTypeIfNotSet(SimpMessageType.MESSAGE);
Message!(string) m = cast(Message!(string))message;
if(m is null) {
warning("Can't handle messsage: ", typeid(cast(Object)message));
} else {
message = MessageHelper.createMessage(m.getPayload(), simpAccessor.getMessageHeaders());
sendInternal(message);
}
}
private void sendInternal(MessageBase message) {
string destination = SimpMessageHeaderAccessor.getDestination(message.getHeaders());
assert(destination, "Destination header required");
long timeout = this.sendTimeout;
bool sent = (timeout >= 0 ? this.messageChannel.send(message, timeout) : this.messageChannel.send(message));
if (!sent) {
throw new MessageDeliveryException(message,
"Failed to send message to destination '" ~ destination ~
"' within timeout: " ~ timeout.to!string());
}
}
private void initHeaders(SimpMessageHeaderAccessor simpAccessor) {
if (getHeaderInitializer() !is null) {
getHeaderInitializer().initHeaders(simpAccessor);
}
}
override
void convertAndSendToUser(string user, string destination, Object payload) {
convertAndSendToUser(user, destination, payload, cast(MessagePostProcessor) null);
}
override
void convertAndSendToUser(string user, string destination, Object payload,
Map!(string, Object) headers) {
convertAndSendToUser(user, destination, payload, headers, null);
}
override
void convertAndSendToUser(string user, string destination, Object payload,
MessagePostProcessor postProcessor) {
convertAndSendToUser(user, destination, payload, null, postProcessor);
}
override
void convertAndSendToUser(string user, string destination, Object payload,
Map!(string, Object) headers, MessagePostProcessor postProcessor) {
assert(user, "User must not be null");
user = user.replace("/", "%2F");
destination = destination.startsWith("/") ? destination : "/" ~ destination;
super.convertAndSend(this.destinationPrefix ~ user ~ destination, payload, headers, postProcessor);
}
/**
* Creates a new map and puts the given headers under the key
* {@link NativeMessageHeaderAccessor#NATIVE_HEADERS NATIVE_HEADERS NATIVE_HEADERS NATIVE_HEADERS}.
* effectively treats the input header map as headers to be sent out to the
* destination.
* <p>However if the given headers already contain the key
* {@code NATIVE_HEADERS NATIVE_HEADERS} then the same headers instance is
* returned without changes.
* <p>Also if the given headers were prepared and obtained with
* {@link SimpMessageHeaderAccessor#getMessageHeaders()} then the same headers
* instance is also returned without changes.
*/
override
protected Map!(string, Object) processHeadersToSend(Map!(string, Object) headers) {
if (headers is null) {
SimpMessageHeaderAccessor headerAccessor = SimpMessageHeaderAccessor.create(SimpMessageType.MESSAGE);
initHeaders(headerAccessor);
headerAccessor.setLeaveMutable(true);
return headerAccessor.getMessageHeaders();
}
if (headers.containsKey(NativeMessageHeaderAccessor.NATIVE_HEADERS)) {
return headers;
}
MessageHeaders mheaders = cast(MessageHeaders) headers;
if (mheaders !is null) {
SimpMessageHeaderAccessor accessor =
MessageHeaderAccessor.getAccessor!(SimpMessageHeaderAccessor)(mheaders);
if (accessor !is null) {
return headers;
}
}
SimpMessageHeaderAccessor headerAccessor = SimpMessageHeaderAccessor.create(SimpMessageType.MESSAGE);
initHeaders(headerAccessor);
foreach(string key, Object value; headers) {
headerAccessor.setNativeHeader(key, (value !is null ? value.toString() : null));
}
return headerAccessor.getMessageHeaders();
}
}
|
D
|
//**************************
// Skeleton-Mage Prototype
//**************************
PROTOTYPE Mst_Default_Skeleton_Mage(C_Npc)
{
//----- Monster ----
name = "Skelettmagier";
guild = GIL_SKELETON_MAGE;
aivar[AIV_MM_REAL_ID] = ID_SKELETON_MAGE;
level = 42;
//----- Attribute ----
attribute [ATR_STRENGTH] = 370;
attribute [ATR_DEXTERITY] = 370;
attribute [ATR_HITPOINTS_MAX] = 710;
attribute [ATR_HITPOINTS] = 710;
attribute [ATR_MANA_MAX] = 1000;
attribute [ATR_MANA] = 1000;
//----- Protections ----
protection [PROT_BLUNT] = 375;
protection [PROT_EDGE] = 375;
protection [PROT_POINT] = 405;
protection [PROT_FIRE] = 375;
protection [PROT_FLY] = 375;
protection [PROT_MAGIC] = 345;
//----- Damage Types ----
damagetype = DAM_EDGE;
// damage [DAM_INDEX_BLUNT] = 0;
// damage [DAM_INDEX_EDGE] = 0;
// damage [DAM_INDEX_POINT] = 0;
// damage [DAM_INDEX_FIRE] = 0;
// damage [DAM_INDEX_FLY] = 0;
// damage [DAM_INDEX_MAGIC] = 0;
//----- Kampf-Taktik ----
fight_tactic = FAI_HUMAN_STRONG;
//----- Senses & Ranges ----
senses = SENSE_HEAR | SENSE_SEE | SENSE_SMELL;
senses_range = PERC_DIST_MONSTER_ACTIVE_MAX;
aivar[AIV_MM_FollowTime] = FOLLOWTIME_MEDIUM;
aivar[AIV_MM_FollowInWater] = FALSE;
//----- Daily Routine ----
start_aistate = ZS_MM_AllScheduler;
aivar[AIV_MM_RestStart] = OnlyRoutine;
};
//*************
// Visuals
//*************
func void B_SetVisuals_Skeleton_Mage()
{
Mdl_SetVisual (self, "HumanS.mds");
Mdl_ApplyOverlayMds (self, "humans_skeleton_fly.mds");
// Body-Mesh Body-Tex Skin-Color Head-MMS Head-Tex Teeth-Tex ARMOR
Mdl_SetVisualBody (self, "Ske_Fly_Body", 1, DEFAULT, "", 1, DEFAULT, -1);
};
//*********************
// Skeleton Mage
//*********************
INSTANCE SkeletonMage (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
};
INSTANCE SkeletonMage_01 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_02 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_03 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_04 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_05 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_06 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_07 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_08 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_09 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
INSTANCE SkeletonMage_10 (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
B_SetSchwierigkeit(self);
};
//*********************
// SkeletonMage_Angar
//*********************
INSTANCE SkeletonMage_Angar (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
CreateInvItems (self, ItAm_Mana_Angar_MIS, 1);
CreateInvItems (self, ItPo_Perm_Mana, 1);
};
//************************
// SecretLibrarySkeleton
//***********************
INSTANCE SecretLibrarySkeleton (Mst_Default_Skeleton_Mage)
{
B_SetVisuals_Skeleton_Mage();
};
|
D
|
/*
* #43 Missing whitespace for skill point(s)
*
* The skill learn print function is called.
*
* Expected behavior: The whitespace will be correctly added to the string.
*/
func int G1CP_Test_043() {
// Check language first
if (G1CP_Lang != G1CP_Lang_EN) {
G1CP_TestsuiteErrorDetail("Test applicable for English localization only");
return TRUE; // True?
};
// Check if function exists
var int funcId; funcId = MEM_GetSymbolIndex("B_BuildLearnString");
if (funcId == -1) {
G1CP_TestsuiteErrorDetail("Function 'B_BuildLearnString' not found");
return FALSE;
};
// Call the function
MEM_PushStringParam("Test 43"); // text
MEM_PushIntParam(20); // lp
MEM_PushIntParam(10); // ore
MEM_CallByID(funcId);
var string output; output = MEM_PopStringResult();
// Test the output
if (Hlp_StrCmp(output, "Test 43 (10 ore, 20 skill points)")) {
return TRUE;
} else {
G1CP_TestsuiteErrorDetail(ConcatStrings("Output incorrect: ", output));
return FALSE;
};
};
|
D
|
/*
TEST_OUTPUT:
---
fail_compilation/fail58.d(26): Error: function `fail58.SomeFunc(dchar[] pText, out int pStopPosn)` is not callable using argument types `(string, int)`
fail_compilation/fail58.d(26): cannot pass argument `"123"` of type `string` to parameter `dchar[] pText`
fail_compilation/fail58.d(30): Error: function `fail58.SomeFunc(dchar[] pText, out int pStopPosn)` is not callable using argument types `(string, int)`
fail_compilation/fail58.d(30): cannot pass argument `""` of type `string` to parameter `dchar[] pText`
---
*/
debug(1) import std.stdio;
const int anything = -1000; // Line #2
dchar[] SomeFunc( dchar[] pText, out int pStopPosn)
{
if (pText.length == 0)
pStopPosn = 0;
else
pStopPosn = -1;
debug(1) writefln("DEBUG: using '%s' we get %d", pText, pStopPosn);
return pText.dup;
}
int main(char[][] pArgs)
{
int sp;
SomeFunc("123", sp);
debug(1) writefln("DEBUG: got %d", sp);
assert(sp == -1);
SomeFunc("", sp);
// if (sp != 0){} // Line #22
debug(1) writefln("DEBUG: got %d", sp);
assert(sp == -1);
return 0;
}
|
D
|
/*
* Copyright (c) 2004-2006 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.ext.draw_range_elements;
private
{
import derelict.opengl.gltypes;
import derelict.opengl.gl;
import derelict.opengl.extension.loader;
import derelict.util.wrapper;
}
private bool enabled = false;
struct EXTDrawRangeElements
{
static bool load(char[] extString)
{
if(extString.findStr("GL_EXT_draw_range_elements") == -1)
return false;
if(!glBindExtFunc(cast(void**)&glDrawRangeElementsEXT, "glDrawRangeElementsEXT"))
return false;
enabled = true;
return true;
}
static bool isEnabled()
{
return enabled;
}
}
version(DerelictGL_NoExtensionLoaders)
{
}
else
{
static this()
{
DerelictGL.registerExtensionLoader(&EXTDrawRangeElements.load);
}
}
enum : GLenum
{
GL_MAX_ELEMENTS_VERTICES_EXT = 0x80E8,
GL_MAX_ELEMENTS_INDICES_EXT = 0x80E9,
}
extern(System):
typedef void function(GLenum, GLuint, GLuint, GLsizei, GLenum, GLvoid*) pfglDrawRangeElementsEXT;
pfglDrawRangeElementsEXT glDrawRangeElementsEXT;
|
D
|
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/rand-2392680231abf0c0.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/uniform.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/bernoulli.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weighted.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_sphere.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_circle.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/gamma.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/normal.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/exponential.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/pareto.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/poisson.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/binomial.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/cauchy.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/dirichlet.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/triangular.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weibull.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/float.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/integer.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/other.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/utils.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/ziggurat_tables.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prelude.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prng/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/read.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/reseeding.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/entropy.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mock.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/small.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/std.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/thread.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/index.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/deprecated.rs
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/rand-2392680231abf0c0.d: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/uniform.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/bernoulli.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weighted.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_sphere.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_circle.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/gamma.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/normal.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/exponential.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/pareto.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/poisson.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/binomial.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/cauchy.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/dirichlet.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/triangular.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weibull.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/float.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/integer.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/other.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/utils.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/ziggurat_tables.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prelude.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prng/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/read.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/reseeding.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/entropy.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mock.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/small.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/std.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/thread.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/mod.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/index.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/deprecated.rs
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/lib.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/mod.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/uniform.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/bernoulli.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weighted.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_sphere.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/unit_circle.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/gamma.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/normal.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/exponential.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/pareto.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/poisson.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/binomial.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/cauchy.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/dirichlet.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/triangular.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/weibull.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/float.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/integer.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/other.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/utils.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/distributions/ziggurat_tables.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prelude.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/prng/mod.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mod.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/mod.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/read.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/adapter/reseeding.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/entropy.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/mock.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/small.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/std.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/rngs/thread.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/mod.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/seq/index.rs:
/home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.6.5/src/deprecated.rs:
|
D
|
# DO NOT DELETE
./get-tofpeak_C.so: /home/chane/Software/root/include/cintdictversion.h /home/chane/Software/root/include/RVersion.h
get-tofpeak_C__ROOTBUILDVERSION= 5.34/36
|
D
|
/Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Generate.o : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Cancelable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Errors.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Event.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObserverType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Linux.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Reactive.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/Variable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/a18968/Develop/RxSwiftSampler/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.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/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/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Generate~partial.swiftmodule : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Cancelable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Errors.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Event.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObserverType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Linux.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Reactive.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/Variable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/a18968/Develop/RxSwiftSampler/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.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/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/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Generate~partial.swiftdoc : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Amb.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/AnonymousInvocable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AnonymousObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Buffer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Cancelable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Catch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/CombineLatest.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Concat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ConnectableObservable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Debunce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Deferred.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Delay.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DelaySubscription.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/DistinctUntilChanged.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Do.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ElementAt.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Empty.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Error.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Errors.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Event.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Filter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Generate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/ImmediateScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Just.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Map.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Merge.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Multicast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Never.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Aggregate.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Binding.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Concurrency.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Creation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Debug.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Multiple.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Single.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+StandardSequenceOperators.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Observable+Time.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObservableType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ObserveOnSerialDispatchQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/ObserverType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/Platform.Linux.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Producer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Range.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Reactive.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Reduce.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RefCount.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Repeat.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/RetryWhen.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sample.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Scan.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sequence.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ShareReplay1WhileConnected.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SingleAsync.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Sink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Skip.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SkipWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/StartWith.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/SubscribeOn.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Switch.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedSubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Take.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeLast.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeUntil.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/TakeWhile.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Throttle.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timeout.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Timer.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/ToArray.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Using.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Subjects/Variable.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Window.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/WithLatestFrom.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+arity.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip+Collection.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/Zip.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/a18968/Develop/RxSwiftSampler/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.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/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
|
import std.stdio : writeln;
int* p;
void foo()
{
int a = 7;
p = &a;
}
void boo()
{
int b = 9;
p = &b;
}
void main()
{
foo();
int b;
const int* s = p;
//s = &b; --> error: cannot modify const exp s;
writeln(*s);
boo();
writeln(*s);
}
|
D
|
COMMENT /* USRDEF.D -- User interface definitions.
*
* Copyright (c) 1987,1988 Massachusetts Institute of Technology.
*
* Note that there is absolutely NO WARRANTY on this software.
* See the file COPYRIGHT.NOTICE for details and restrictions.
*
* See DSYMS.HLP for information about the format of this file.
*
* Two rules should be observed when making changes:
*
* 1) If you change -anything- in this file,
* increment USRVER.
*
* 2) The first word of the page header format
* must always be the version number. At present this
* consists of two halfwords containing the version
* numbers of the user protocol and the domain
* protocol (as defined by USRVER and RFCVER). No
* matter what changes are made to this protocol, it
* should be possible to determine whether or not the
* two participants agree on the protocol version by
* doing a fullword comparision against the first word
* of the message page.
*
* These two assumptions should suffice to allows the C code
* and the assembler code to be sure they are running the same
* version of the message protocol.
*/
COMMENT /* Constant definitions */
COMMENT /* Protocol version number */
CONST(USRVER, 3)
COMMENT /* Special "QCLASS" to signal CTL operation */
CONST(QC_CTL, 0177777)
COMMENT /* States: Query, Response, Error, Wait */
CONST(US_QRY, 066601)
CONST(US_RSP, 066602)
CONST(US_ERR, 066603)
CONST(US_WAI, 066604)
COMMENT /* Query flags:
* LDO = Local data only
* MBA = Must be authoritative
* EMO = Exact match only (don't use search rules)
* RBK = Resolve in background
*/
CONST(UF_LDO, 0000001)
CONST(UF_MBA, 0000002)
CONST(UF_EMO, 0000004)
CONST(UF_RBK, 0000010)
COMMENT /* Flag values returned:
* AKA = CNAMEs were found, QNAME is a nickname
*/
CONST(UF_AKA, 0400000)
COMMENT /* Response error codes:
* OK = No error.
* NAM = Name does not exist (authoritative answer)
* NRR = No RRs match name (authoritative answer)
* SYS = System error.
* NIY = Not Implemented Yet.
* TMO = Timeout while resolving query.
* RBK = Resolving in background.
* TMC = Too Many CNAMEs.
* ACK = ACKnowledgement (CTL messages only).
* ARG = Arguments invalid.
* DNA = Data Not Available.
* NOP = An error the resolver ignores (internal use only).
* ADM = Operation administratively forbidden.
*/
CONST(UE_OK, 0)
CONST(UE_NAM, 1)
CONST(UE_NRR, 2)
CONST(UE_SYS, 3)
CONST(UE_NIY, 4)
CONST(UE_TMO, 5)
CONST(UE_RBK, 6)
CONST(UE_TMC, 7)
CONST(UE_ACK, 8)
CONST(UE_ARG, 9)
CONST(UE_DNA, 10)
CONST(UE_NOP, 11)
CONST(UE_ADM, 12)
CONST(UE_MAX, 12)
COMMENT /* CTL operations (QTYPE field); not all implemented yet:
* AYT = Are you there? Just pings the server.
* ZON = New zone version. QNAME is zone name.
* BUT = Requests server to reboot itself.
* KIL = Requests server to suicide without reboot.
* INF = Requests server to write statistics file.
* CHK = Requests server to write checkpoint file.
*/
CONST(UC_AYT, 1)
CONST(UC_ZON, 2)
CONST(UC_BUT, 3)
CONST(UC_KIL, 4)
CONST(UC_INF, 5)
CONST(UC_CHK, 6)
CONST(UC_MAX, 6)
COMMENT /* Structure definitions */
COMMENT /* Page header format */
BSTRUCT(u_page_header)
DHALF ( verrfc )
DHALF ( verusr )
DWORD ( state )
DHALF ( pag_count )
DHALF ( pag_this )
DWORD ( stmp1 )
DWORD ( stmp2 )
ESTRUCT(u_page_header,U_PHSIZE)
COMMENT /* Message header format (page 0 only) */
BSTRUCT(u_data_header)
DHALF ( flags )
DHALF ( qname )
DHALF ( qtype )
DHALF ( qclass )
DHALF ( rcode )
DHALF ( rname )
DWORD ( count )
ESTRUCT(u_data_header,U_DHSIZE)
COMMENT /* Message RR header format */
BSTRUCT(u_rr_header)
DWORD ( length )
DHALF ( type )
DHALF ( class )
DWORD ( ttl )
ESTRUCT(u_rr_header,U_RHSIZE)
COMMENT /* End of USRDEF.D */
|
D
|
//T compiles:yes
//T lexer:yes
//T parser:yes
//T semantic:yes
//T retval:12
//T has-passed:yes
//T Tests the casting of booleans to ints.
int main()
{
bool a = false, b = true;
if (cast(int) a != 0) {
return 1;
}
if (cast(int) b != 1) {
return 2;
}
a = true;
return a + b + 10;
}
|
D
|
/Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/NetworkReachabilityManager.o : /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/MultipartFormData.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Timeline.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Response.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/TaskDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ParameterEncoding.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Validation.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ResponseSerialization.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/AFError.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Notifications.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Result.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Request.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/ryuya/Documents/QiitaApps/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
/Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/NetworkReachabilityManager~partial.swiftmodule : /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/MultipartFormData.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Timeline.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Response.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/TaskDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ParameterEncoding.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Validation.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ResponseSerialization.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/AFError.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Notifications.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Result.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Request.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/ryuya/Documents/QiitaApps/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
/Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/NetworkReachabilityManager~partial.swiftdoc : /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/MultipartFormData.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Timeline.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Alamofire.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Response.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/TaskDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionDelegate.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ParameterEncoding.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Validation.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ResponseSerialization.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/SessionManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/AFError.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Notifications.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Result.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/Request.swift /Users/ryuya/Documents/QiitaApps/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/ryuya/Documents/QiitaApps/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/ryuya/Documents/QiitaApps/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap
|
D
|
# FIXED
grlib/msp-exp432p401r_grlib_example/fonts/fontcmss40i.obj: ../grlib/msp-exp432p401r_grlib_example/fonts/fontcmss40i.c
../grlib/msp-exp432p401r_grlib_example/fonts/fontcmss40i.c:
|
D
|
/*******************************************************************************
D language bindings for libsodium's crypto_stream_salsa20.h
License: ISC (see LICENSE.txt)
*******************************************************************************/
module libsodium.crypto_stream_salsa20;
@nogc nothrow:
import libsodium;
extern (C):
/*
* WARNING: This is just a stream cipher. It is NOT authenticated encryption.
* While it provides some protection against eavesdropping, it does NOT
* provide any security against active attacks.
* Unless you know what you're doing, what you are looking for is probably
* the crypto_box functions.
*/
enum crypto_stream_salsa20_KEYBYTES = 32U;
size_t crypto_stream_salsa20_keybytes ();
enum crypto_stream_salsa20_NONCEBYTES = 8U;
size_t crypto_stream_salsa20_noncebytes ();
enum crypto_stream_salsa20_MESSAGEBYTES_MAX = SODIUM_SIZE_MAX;
size_t crypto_stream_salsa20_messagebytes_max ();
int crypto_stream_salsa20 (
ubyte* c,
ulong clen,
const(ubyte)* n,
const(ubyte)* k);
int crypto_stream_salsa20_xor (
ubyte* c,
const(ubyte)* m,
ulong mlen,
const(ubyte)* n,
const(ubyte)* k);
int crypto_stream_salsa20_xor_ic (
ubyte* c,
const(ubyte)* m,
ulong mlen,
const(ubyte)* n,
ulong ic,
const(ubyte)* k);
void crypto_stream_salsa20_keygen (ref ubyte[crypto_stream_salsa20_KEYBYTES] k);
|
D
|
module android.java.android.service.autofill.AutofillService;
public import android.java.android.service.autofill.AutofillService_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!AutofillService;
import import7 = android.java.android.service.autofill.FillEventHistory;
import import22 = android.java.java.io.FileInputStream;
import import0 = android.java.android.os.IBinder;
import import23 = android.java.java.io.FileOutputStream;
import import15 = android.java.android.content.ContentResolver;
import import16 = android.java.android.os.Looper;
import import8 = android.java.android.app.Application;
import import18 = android.java.android.content.res.Resources_Theme;
import import24 = android.java.java.io.File;
import import13 = android.java.android.content.res.Resources;
import import37 = android.java.android.content.ComponentName;
import import43 = android.java.java.lang.CharSequence;
import import12 = android.java.android.content.res.AssetManager;
import import21 = android.java.android.content.SharedPreferences;
import import44 = android.java.android.content.res.ColorStateList;
import import28 = android.java.android.graphics.drawable.Drawable;
import import19 = android.java.java.lang.ClassLoader;
import import25 = android.java.android.database.sqlite.SQLiteDatabase;
import import14 = android.java.android.content.pm.PackageManager;
import import17 = android.java.java.util.concurrent.Executor;
import import45 = android.java.android.content.res.TypedArray;
import import20 = android.java.android.content.pm.ApplicationInfo;
import import11 = android.java.android.content.Context;
|
D
|
module appbase.utils.log;
import core.sync.mutex;
import std.path : buildPath;
import std.conv : to;
import std.experimental.logger.core : LogLevel;
import std.experimental.logger.filelogger : FileLogger, CreateFolder;
import std.datetime;
import std.stdio : writeln;
import appbase.utils.utility;
/// file logger.
struct Logger
{
private __gshared Date today;
private __gshared FileLogger fl;
private __gshared Mutex _mutex;
private static this()
{
_mutex = new Mutex();
}
/// write log to file.
static void write(string file = __FILE__, size_t line = __LINE__,
string funcName = __FUNCTION__,
string prettyFuncName = __PRETTY_FUNCTION__,
string moduleName = __MODULE__,
Args...)(Args args)
{
if (args.length == 0)
{
return;
}
DateTime dt = now;
if ((dt.date != today) || (fl is null))
{
synchronized (_mutex)
{
if ((dt.date != today) || (fl is null))
{
if (fl !is null)
{
fl.file.flush();
fl.file.close();
}
today = dt.date;
const auto filename = buildPath(getExePath(), "log", dt.year.to!string, dt.date.toISOString() ~ ".log");
fl = new FileLogger(filename, LogLevel.all, CreateFolder.yes);
}
}
}
fl.log!(line, file, funcName, prettyFuncName, moduleName)(getExeName, ": ", args);
}
static void flush(const bool closeFile = false)
{
synchronized (_mutex)
{
fl.file.flush();
if (closeFile)
{
fl.file.close();
fl = null;
}
}
}
}
alias logger = Logger;
/// classification file logger.
struct LoggerEx
{
private __gshared Date today;
private __gshared FileLogger[size_t] fl;
private __gshared Mutex _mutex;
private static this()
{
_mutex = new Mutex();
}
/// write log to file.
static void write(string file = __FILE__, size_t line = __LINE__,
string funcName = __FUNCTION__,
string prettyFuncName = __PRETTY_FUNCTION__,
string moduleName = __MODULE__,
T = size_t,
Args...)(T classification, Args args)
{
if (args.length == 0)
{
return;
}
const size_t _class = cast(size_t) classification;
DateTime dt = now;
if ((dt.date != today) || (_class !in fl) || (fl[_class] is null))
{
synchronized (_mutex)
{
if ((dt.date != today) || (_class !in fl) || (fl[_class] is null))
{
if ((_class in fl) && (fl[_class] !is null))
{
fl[_class].file.flush();
fl[_class].file.close();
}
today = dt.date;
const auto filename = buildPath(getExePath(), "log", dt.year.to!string, dt.date.toISOString(), _class.to!string ~ ".log");
fl[_class] = new FileLogger(filename, LogLevel.all, CreateFolder.yes);
}
}
}
fl[_class].log!(line, file, funcName, prettyFuncName, moduleName)(getExeName, ": ", args);
}
static void flush(const bool closeFile = false)
{
synchronized (_mutex)
{
foreach (ref f; fl)
{
f.file.flush();
if (closeFile)
{
f.file.close();
f = null;
}
}
}
}
}
alias loggerEx = LoggerEx;
void writelnEx(string file = __FILE__, size_t line = __LINE__,
string funcName = __FUNCTION__,
string prettyFuncName = __PRETTY_FUNCTION__,
string moduleName = __MODULE__,
Args...)(Args args)
{
writeln(appbase.utils.now, " ", file, ":", line, ":", funcName, ": ", args);
}
|
D
|
instance PAL_271_Ritter (Npc_Default)
{
// ------ NSC ------
name = NAME_RITTER;
guild = GIL_PAL;
id = 271;
voice = 4;
flags = 0; //NPC_FLAG_IMMORTAL oder 0
npctype = NPCTYPE_OCAMBIENT;
// ------ Attribute ------
B_SetAttributesToChapter (self, 4); //setzt Attribute und LEVEL entsprechend dem angegebenen Kapitel (1-6)
// ------ Kampf-Taktik ------
fight_tactic = FAI_HUMAN_STRONG; // MASTER / STRONG / COWARD
// ------ Equippte Waffen ------ //Munition wird automatisch generiert, darf aber angegeben werden
EquipItem (self, ItMw_1h_Pal_Sword);
// ------ 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_NormalBart21, BodyTex_N, ITAR_PAL_M);
Mdl_SetModelFatness (self, 2);
Mdl_ApplyOverlayMds (self, "Humans_Militia.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, 65); //Grenzen für Talent-Level liegen bei 30 und 60
// ------ TA anmelden ------
daily_routine = Rtn_Start_271;
};
FUNC VOID Rtn_Start_271 ()
{
TA_Stand_Guarding (08,00,23,00,"OC_EBR_FLOOR_STAND");
TA_Stand_Guarding (23,00,08,00,"OC_EBR_FLOOR_STAND");
};
|
D
|
//This is in charge of the HPET timer device
module kernel.arch.x86_64.hpet;
import kernel.core.error;
import kernel.core.util;
import kernel.arch.x86_64.vmem;
import kernel.core.regions;
import kernel.dev.vga;
import kernel.arch.x86_64.cpu;
import kernel.arch.x86_64.ioapic;
import kernel.arch.x86_64.lapic;
import kernel.arch.x86_64.mp;
import kernel.arch.x86_64.idt;
import kernel.arch.x86_64.pic;
// Make mpInformation
template Tmaker(uint ID)
{
const char[] Tmaker = ", \"T" ~ ID.stringof[0..$-1] ~ "_INT_STS\", 1";
}
//Maps to the individual timers
align(1) struct timerInfo {
ulong configurationAndCap;
ulong comparatorValue;
ulong FSBInterrruptRoute;
ulong reserved;
mixin(Bitfield!(configurationAndCap, "Reserved1", 1, "INT_TYPE_CNF", 1, "INT_ENB_CNF", 1, "TYPE_CNF", 1, "PER_INT_CAP", 1, "SIZE_CAP", 1, "VAL_SET_CNF", 1, "Reserved2", 1, "MODE_CNF", 1, "INT_ROUTE_CNF", 5, "FSB_EN_CNF", 1, "FSB_INT_DEL_CAP", 1, "Reserved3", 16, "INT_ROUTE_CAP", 32));
}
//Maps to the memory that holds the configuration data for HPET
align(1) struct hpetConfig {
ulong capabilitiesAndID; // 0x00
ulong reserved1; // 0x08
ulong configuration; // 0x10
ulong reserved2; // 0x18
ulong interruptStatus; // 0x20
ulong reserved3; // 0x28
ulong reserved4; // 0x30
ulong reserved5; // 0x38
ulong reserved6; // 0x40
ulong reserved7; // 0x48
ulong reserved8; // 0x50
ulong reserved9; // 0x58
ulong reserved10; // 0x60
ulong reserved11; // 0x68
ulong reserved12; // 0x70
ulong reserved13; // 0x78
ulong reserved14; // 0x80
ulong reserved15; // 0x88
ulong reserved16; // 0x90
ulong reserved17; // 0x98
ulong reserved18; // 0xA0
ulong reserved19; // 0xA8
ulong reserved20; // 0xB0
ulong reserved21; // 0xB8
ulong reserved22; // 0xC0
ulong reserved23; // 0xC8
ulong reserved24; // 0xD0
ulong reserved25; // 0xD8
ulong reserved26; // 0xE0
ulong reserved27; // 0xE8
ulong mainCounterValue; // 0xF0
ulong reserved28;
timerInfo[32] timers;
mixin(Bitfield!(capabilitiesAndID, "REV_ID", 8, "NUM_TIM_CAP", 5, "COUNT_SIZE_CAP", 1, "ReservedCap", 1, "LEG_RT_CAP", 1, "VENDOR_ID", 16,
"COUNTER_CLOCK_PERIOD", 32));
mixin(Bitfield!(configuration, "ENABLE_CNF", 1, "LEG_RT_CNF", 1, "Reserved1", 6, "ReservedNonOS", 8, "Reserved2", 48));
mixin("mixin(Bitfield!(interruptStatus" ~ Reduce!(Cat, Map!(Tmaker, Range!(32))) ~ ", \"ReservedStatus\", 32));");
}
//Brings everything together for HPET
struct hpetDev {
hpetConfig* config;
ubyte* physHPETAddress = cast(ubyte*)0xFED00000;
ubyte* virtHPETAddress;
}
private hpetDev hpetDevice;
struct HPET
{
static:
bool inited = false;
//initialize out HPET timer
ErrorVal init()
{
// get the virtual address of the HPET within the BIOS device map region
ubyte* virtHPETAddy = global_mem_regions.device_maps.virtual_start + (hpetDevice.physHPETAddress - global_mem_regions.device_maps.physical_start);
if(virtHPETAddy > (global_mem_regions.device_maps.virtual_start + global_mem_regions.device_maps.length))
{
// map in the region then
if (vMem.mapRange(hpetDevice.physHPETAddress, hpetConfig.sizeof + (32 * timerInfo.sizeof), virtHPETAddy)
!= ErrorVal.Success)
{
return ErrorVal.Fail;
}
}
hpetDevice.virtHPETAddress = virtHPETAddy;
// resolve the address to the configuration table
hpetDevice.config = cast(hpetConfig*)virtHPETAddy;
//kprintfln!("NUM_TIM_CAP = {}")(hpetDevice.config.NUM_TIM_CAP);
hpetDevice.config.ENABLE_CNF = 0; // disable counter
hpetDevice.config.mainCounterValue = 0;
if (hpetDevice.config.mainCounterValue != 0)
{
// the timer does not exist
return ErrorVal.Fail;
}
// initialize the configuration to allow standard IOAPIC interrupts
//hpetDevice.config.LEG_RT_CNF = 1;
hpetDevice.config.ENABLE_CNF = 1; // enable counter?
hpetDevice.config.mainCounterValue = 0;
inited = true;
return ErrorVal.Success;
}
// test handler
void hpetHandler(InterruptStack* s)
{
kprintfln!("!",false)();
// acknowledge the interrupt
LocalAPIC.EOI();
// we could set another timer fire here
//resetTimer(0, 1000000000000);
}
// the function to start and equip a non-periodic timer
void initTimer(uint index, ulong picoSecondInterval, InterruptHandler intHandler)
{
if (inited == false) { return; }
ulong* hpetTimerReg = cast(ulong*)( hpetDevice.virtHPETAddress + 0x100 + (0x20 * index));
//IDT.setCustomHandler(36, &hpetHandler);
// disable!
hpetDevice.config.timers[index].INT_ENB_CNF = 0;
// ack any outstanding interrupt?
hpetDevice.config.interruptStatus |= (1 << index);
// update to femptoseconds
picoSecondInterval *= 1000;
ulong timerVal;
// write 0 to reserve
hpetDevice.config.timers[index].Reserved1 = 0;
hpetDevice.config.timers[index].Reserved2 = 0;
hpetDevice.config.timers[index].Reserved3 = 0;
// we want a 64-bit timer
uint ROUTE_CAP = (*hpetTimerReg) >> 32UL;
//kprintfln!("1")();
//kprintfln!("POSSIBLE: {x}")(hpetDevice.config.timers[index].INT_ROUTE_CAP);
//kprintfln!("PSSOIBLE: {x}")(ROUTE_CAP);
uint routingInterrupt = 0;
while (!((1 << routingInterrupt) & ROUTE_CAP) && routingInterrupt < 32)
{
routingInterrupt++;
}
if (routingInterrupt >= 32) { return; }
//kprintfln!("route int: {}")(routingInterrupt);
// tell IOAPIC of our plans
// So the idea here is that we're going to put 'er in
// to physical mode here and send the apic ID of the first
// local apic. Just to test... we should probably fix this later.
//kprintfln!("3")();
///IOAPIC.setRedirectionTableEntry(1,routingInterrupt, LocalAPIC.getLocalAPICId(),
// IOAPICInterruptType.Unmasked, IOAPICTriggerMode.EdgeTriggered,
// IOAPICInputPinPolarity.HighActive, IOAPICDestinationMode.Physical,
// IOAPICDeliveryMode.Fixed, 36 );
kprintfln!("(supposed) ID: {} PIN: {}")(1, routingInterrupt);
// ioapic pin = routingInterrupt, vector 36, edge triggered, highactive
IOAPIC.setPin(routingInterrupt, 36, false, true);
Interrupts.setCustomHandler(36, intHandler);
// unmask the ioapic
IOAPIC.unmaskPin(routingInterrupt);
if (hpetDevice.config.timers[index].SIZE_CAP == 0)
{
kprintfln!("Computer does not support 64 bit HPET.")();
}
hpetDevice.config.timers[index].MODE_CNF = 0;
hpetDevice.config.timers[index].FSB_EN_CNF = 0;
// we want a non-periodic timer (one-shot!)
hpetDevice.config.timers[index].TYPE_CNF = 0;
// we want edge-triggered interrupts
// do we? Brian says no, and set it to level
// Wilkie says it makes this crash. And he wants to know why!
//hpetDevice.config.timers[index].INT_TYPE_CNF = 1;
// we want to route to a good interrupt pin
hpetDevice.config.timers[index].INT_ROUTE_CNF = routingInterrupt;
// TODO: change this to a debug
// enable timer interrupts
//timerVal |= (1 << 2);
//enable!
//hpetDevice.config.timers[index].INT_ENB_CNF = 1;
//kprintfln!("4")();
// get the main counter
ulong curcounter = hpetDevice.config.mainCounterValue;
// update to the new value
// overflow of main counter will not matter
ulong factor = (picoSecondInterval / hpetDevice.config.COUNTER_CLOCK_PERIOD);
//kprintfln!("factor: {}")(factor);
curcounter += factor;
//kprintfln!("5")();
hpetDevice.config.timers[index].comparatorValue = curcounter;
// we now want to enable the timer
//hpetDevice.config.timers[index].INT_TYPE_CNF = 1;
hpetDevice.config.timers[index].INT_ENB_CNF = 1;
//hpetDevice.config.timers[index].INT_TYPE_CNF = 1;
}
// the function to reset a timer that has been initialized when it has already fired
void resetTimer(uint index, ulong nanoSecondInterval)
{
// update to femptoseconds
nanoSecondInterval *= 1000;
// halt timer
hpetDevice.config.timers[index].INT_ENB_CNF = 0;
// get the main counter
ulong curcounter = hpetDevice.config.mainCounterValue;
// update to the new value
// overflow of main counter will not matter
curcounter += (nanoSecondInterval / hpetDevice.config.COUNTER_CLOCK_PERIOD);
hpetDevice.config.timers[index].comparatorValue = curcounter;
// we now want to enable the timer interrupt
hpetDevice.config.timers[index].INT_ENB_CNF = 1;
}
}
|
D
|
/Users/mordi/Desktop/project_01/Build/Intermediates/MissMystique.build/Debug-iphonesimulator/MissMystique.build/Objects-normal/x86_64/AppDelegate.o : /Users/mordi/Desktop/project_01/MissMystique/statisticsViewController.swift /Users/mordi/Desktop/project_01/MissMystique/scanViewController.swift /Users/mordi/Desktop/project_01/MissMystique/ViewController.swift /Users/mordi/Desktop/project_01/MissMystique/addViewController.swift /Users/mordi/Desktop/project_01/MissMystique/readViewController.swift /Users/mordi/Desktop/project_01/MissMystique/AppDelegate.swift /Users/mordi/Desktop/project_01/MissMystique/stViewController.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/SwiftOnoneSupport.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 /Users/mordi/Desktop/xCode/CrossFit/Pods/Firebase/Core/Sources/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/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/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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule
/Users/mordi/Desktop/project_01/Build/Intermediates/MissMystique.build/Debug-iphonesimulator/MissMystique.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/mordi/Desktop/project_01/MissMystique/statisticsViewController.swift /Users/mordi/Desktop/project_01/MissMystique/scanViewController.swift /Users/mordi/Desktop/project_01/MissMystique/ViewController.swift /Users/mordi/Desktop/project_01/MissMystique/addViewController.swift /Users/mordi/Desktop/project_01/MissMystique/readViewController.swift /Users/mordi/Desktop/project_01/MissMystique/AppDelegate.swift /Users/mordi/Desktop/project_01/MissMystique/stViewController.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/SwiftOnoneSupport.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 /Users/mordi/Desktop/xCode/CrossFit/Pods/Firebase/Core/Sources/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/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/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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule
/Users/mordi/Desktop/project_01/Build/Intermediates/MissMystique.build/Debug-iphonesimulator/MissMystique.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/mordi/Desktop/project_01/MissMystique/statisticsViewController.swift /Users/mordi/Desktop/project_01/MissMystique/scanViewController.swift /Users/mordi/Desktop/project_01/MissMystique/ViewController.swift /Users/mordi/Desktop/project_01/MissMystique/addViewController.swift /Users/mordi/Desktop/project_01/MissMystique/readViewController.swift /Users/mordi/Desktop/project_01/MissMystique/AppDelegate.swift /Users/mordi/Desktop/project_01/MissMystique/stViewController.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/SwiftOnoneSupport.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 /Users/mordi/Desktop/xCode/CrossFit/Pods/Firebase/Core/Sources/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/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/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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule
|
D
|
/home/cypher/Desktop/solana_NFT/smart_contracts/nft-vault/target/rls/debug/build/blake3-ef22aa2394675b0f/build_script_build-ef22aa2394675b0f: /home/cypher/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-0.3.8/build.rs
/home/cypher/Desktop/solana_NFT/smart_contracts/nft-vault/target/rls/debug/build/blake3-ef22aa2394675b0f/build_script_build-ef22aa2394675b0f.d: /home/cypher/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-0.3.8/build.rs
/home/cypher/.cargo/registry/src/github.com-1ecc6299db9ec823/blake3-0.3.8/build.rs:
|
D
|
/Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/TemplateKit.build/Data/TemplateData.swift.o : /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateData.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Deprecated.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSource.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Uppercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Lowercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Capitalize.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateTag.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConditional.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateCustom.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateExpression.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Var.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/ViewRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/TemplateError.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIterator.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Contains.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/Exports.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/DateFormat.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConstant.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Comment.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Print.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Count.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Raw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateRaw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/View.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntax.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/Khanh/vapor/TILApp/.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 /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.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/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/TemplateKit.build/TemplateData~partial.swiftmodule : /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateData.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Deprecated.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSource.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Uppercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Lowercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Capitalize.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateTag.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConditional.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateCustom.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateExpression.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Var.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/ViewRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/TemplateError.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIterator.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Contains.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/Exports.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/DateFormat.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConstant.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Comment.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Print.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Count.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Raw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateRaw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/View.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntax.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/Khanh/vapor/TILApp/.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 /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.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/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/TemplateKit.build/TemplateData~partial.swiftdoc : /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateData.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Deprecated.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSource.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Uppercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Lowercase.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Capitalize.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateTag.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConditional.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateCustom.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateExpression.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Var.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/ViewRenderer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/TemplateError.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateIterator.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Contains.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Utilities/Exports.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/DateFormat.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateConstant.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Comment.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Print.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Count.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/TagContext.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/Tag/Raw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateRaw.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/View.swift /Users/Khanh/vapor/TILApp/.build/checkouts/template-kit.git--6129928586187134836/Sources/TemplateKit/AST/TemplateSyntax.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/Khanh/vapor/TILApp/.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 /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.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/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.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/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/Khanh/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.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
|
/Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response.o : /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/AFError.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/MultipartFormData.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Notifications.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ParameterEncoding.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Request.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Response.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ResponseSerialization.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Result.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/TaskDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Timeline.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.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/SwiftOnoneSupport.swiftmodule
/Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response~partial.swiftmodule : /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/AFError.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/MultipartFormData.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Notifications.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ParameterEncoding.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Request.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Response.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ResponseSerialization.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Result.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/TaskDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Timeline.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.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/SwiftOnoneSupport.swiftmodule
/Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response~partial.swiftdoc : /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/AFError.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/MultipartFormData.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Notifications.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ParameterEncoding.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Request.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Response.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ResponseSerialization.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Result.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/SessionManager.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/TaskDelegate.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Timeline.swift /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/lee_bennett/Desktop/Playground/iOS/MiniLovTap/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.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/SwiftOnoneSupport.swiftmodule
|
D
|
instance BAU_960_BENGAR(NPC_DEFAULT)
{
name[0] = "Бенгар";
guild = GIL_OUT;
id = 960;
voice = 10;
flags = NPC_FLAG_IMMORTAL;
npctype = NPCTYPE_MAIN;
b_setattributestochapter(self,2);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,itmw_1h_bau_axe);
EquipItem(self,itrw_sld_bow);
b_createambientinv(self);
b_setnpcvisual(self,MALE,"Hum_Head_Bald",FACE_N_NORMAL_OLLI_KAHN,BODYTEX_N,itar_bau_m);
Mdl_SetModelFatness(self,0);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
b_givenpctalents(self);
b_setfightskills(self,25);
daily_routine = rtn_start_960;
};
func void rtn_start_960()
{
ta_stand_guarding(8,0,22,0,"NW_FARM3_BENGAR");
ta_stand_guarding(22,0,8,0,"NW_FARM3_BENGAR");
};
func void rtn_milcoming_960()
{
ta_smalltalk(8,0,22,0,"NW_FARM3_BENGAR");
ta_smalltalk(22,0,8,0,"NW_FARM3_BENGAR");
};
|
D
|
module android.java.android.graphics.drawable.DrawableWrapper;
public import android.java.android.graphics.drawable.DrawableWrapper_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!DrawableWrapper;
import import13 = android.java.android.graphics.drawable.Drawable_ConstantState;
import import20 = android.java.java.lang.Class;
import import8 = android.java.android.graphics.Insets;
import import16 = android.java.android.graphics.Region;
|
D
|
INSTANCE Info_Mod_Suchender_Hi (C_INFO)
{
npc = Mod_7434_DMT_Suchender_MT;
nr = 1;
condition = Info_Mod_Suchender_Hi_Condition;
information = Info_Mod_Suchender_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Suchender_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Suchender_Hi_Info()
{
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_00"); //Ah, so schnell hätte ich dich hier nicht erwartet ...
AI_Output(hero, self, "Info_Mod_Suchender_Hi_15_01"); //Erwartet? Wer bist du?
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_02"); //Du bist in einem meiner Heime und weißt nicht einmal, wen du eigentlich besuchst? (lacht)
AI_Output(hero, self, "Info_Mod_Suchender_Hi_15_03"); //Was hast du mit den Überfallen auf die Jäger und Waldläufer zu tun?
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_04"); //(spöttisch) Ist das denn nicht klar, Ungestümer?
AI_Output(hero, self, "Info_Mod_Suchender_Hi_15_05"); //Du Mörder, ich werde dich zu deinen Opfern schicken!
AI_ReadyMeleeWeapon (hero);
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_06"); //(lacht) Bist du dir da sicher? Vielleicht bin ich gar nicht der Mörder, den du suchst.
AI_Output(hero, self, "Info_Mod_Suchender_Hi_15_07"); //Wenn du noch was zu sagen hast, sag schnell, oder dir bleibt keine Zeit mehr.
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_08"); //Ich habe alle Zeit, die ich brauche. Aber vielleicht hast du auch einfach noch nicht gut genug nachgeforscht.
AI_Output(self, hero, "Info_Mod_Suchender_Hi_10_09"); //Oder aber vielleicht doch und du entdeckst es nur nicht? Ich werde dich bald erwarten.
AI_StopProcessInfos (self);
AI_Teleport (self, "TOT");
B_StartOtherRoutine (self, "TOT");
};
INSTANCE Info_Mod_Suchender_Turm (C_INFO)
{
npc = Mod_7434_DMT_Suchender_MT;
nr = 1;
condition = Info_Mod_Suchender_Turm_Condition;
information = Info_Mod_Suchender_Turm_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Suchender_Turm_Condition()
{
if (Mod_SuchenderAtTurm == 2)
{
return 1;
};
};
FUNC VOID Info_Mod_Suchender_Turm_Info()
{
AI_Output(self, hero, "Info_Mod_Suchender_Turm_10_00"); //Ha, du schon wieder! Hast hierher gefunden. Erstaunlich, aber umsonst.
AI_Output(self, hero, "Info_Mod_Suchender_Turm_10_01"); //Mein Meister lebt schon lange nicht mehr hier.
AI_Output(hero, self, "Info_Mod_Suchender_Turm_15_02"); //Aber dich erwische ich diesmal!
AI_Output(self, hero, "Info_Mod_Suchender_Turm_10_03"); //Halt! Wenn du mich tötest, was dir schwerlich gelingen dürfte, wirst du nie erfahren, wo der ist, den du suchst. Deshalb ...
AI_PlayAni (hero, "T_STAND_2_VICTIM_SLE");
B_LogEntry (TOPIC_MOD_JG_TURM, "Schon wieder entwischt, dieser Suchende. Na wenigstens hab ich seinen Schlüssel. Der wird mir sicherlich noch nützlich sein. Vielleicht weiß Wulfgar etwas.");
AI_StopProcessInfos (self);
AI_Teleport (self, "TOT");
B_StartOtherRoutine (self, "TOT");
};
INSTANCE Info_Mod_Suchender_EXIT (C_INFO)
{
npc = Mod_7434_DMT_Suchender_MT;
nr = 1;
condition = Info_Mod_Suchender_EXIT_Condition;
information = Info_Mod_Suchender_EXIT_Info;
permanent = 1;
important = 0;
description = DIALOG_ENDE;
};
FUNC INT Info_Mod_Suchender_EXIT_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Suchender_EXIT_Info()
{
AI_StopProcessInfos (self);
};
|
D
|
#!/usr/bin/env rdmd -i -I..
import std.stdio;
import std.datetime.stopwatch;
import std.algorithm;
import std.range;
import std.typecons;
import std.functional;
import kreikey.bigint;
import kreikey.intmath;
alias powerDigitSum = memoize!powerDigitSum1;
void main() {
StopWatch timer;
writeln("Power digit sum");
timer.start();
auto maxPow = iota(2, 100)
.filter!(a => a % 10 != 0)
.map!classifyPerfectPower
.map!(a => iota(2, 100)
.map!(b => a[0], b => b * a[1])
.array())
.join
.map!(a => powerDigitSum(a.expand), a => a)
.fold!max();
auto maxDigSum = powerDigitSum(maxPow[1].expand);
timer.stop();
writefln("Power with max digit sum: %(%s^%s%)", maxPow[1]);
writefln("Max digit sum: %s", maxDigSum);
writefln("Finished in %s milliseconds.", timer.peek.total!"msecs"());
}
ulong powerDigitSum1(ulong a, ulong b) {
return (BigInt(a) ^^ b).toDigits.sum();
}
|
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 StubInitError.java
.class public dot.junit.opcodes.sput_short.d.StubInitError
.super java/lang/Object
.field public static value S
.method static <clinit>()V
.limit regs 2
const/4 v0, 0
const/4 v1, 5
div-int/2addr v1, v0
sput-short v1, dot.junit.opcodes.sput_short.d.StubInitError.value S
return-void
.end method
.source T_sput_short_13.java
.class public dot.junit.opcodes.sput_short.d.T_sput_short_13
.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 3
const v1, 1
sput-short v1, dot.junit.opcodes.sput_short.d.StubInitError.value S
return-void
.end method
|
D
|
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
module deimos.uv.version_;
/*
* Versions with the same major number are ABI stable. API is allowed to
* evolve between minor releases, but only in a backwards compatible way.
* Make sure you update the -soname directives in configure.ac
* and uv.gyp whenever you bump UV_VERSION_MAJOR or UV_VERSION_MINOR (but
* not UV_VERSION_PATCH.)
*/
enum UV_VERSION_MAJOR = 1;
enum UV_VERSION_MINOR = 9;
enum UV_VERSION_PATCH = 2;
enum UV_VERSION_IS_RELEASE = 0;
enum UV_VERSION_SUFFIX = "dev";
enum UV_VERSION_HEX = ((UV_VERSION_MAJOR << 16) |
(UV_VERSION_MINOR << 8) |
(UV_VERSION_PATCH));
|
D
|
module freertos;
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 wchar_t = int;
alias size_t = c_ulong;
alias ptrdiff_t = c_long;
struct max_align_t
{
long __clang_max_align_nonce1;
real __clang_max_align_nonce2;
}
alias __sig_atomic_t = int;
alias __socklen_t = uint;
alias __intptr_t = c_long;
alias __caddr_t = char*;
alias __loff_t = c_long;
alias __syscall_ulong_t = c_ulong;
alias __syscall_slong_t = c_long;
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 __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;
alias __u_long = c_ulong;
alias __u_int = uint;
alias __u_short = ushort;
alias __u_char = ubyte;
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;
alias uintmax_t = c_ulong;
alias intmax_t = c_long;
alias uintptr_t = c_ulong;
alias intptr_t = c_long;
alias uint_fast64_t = c_ulong;
alias uint_fast32_t = c_ulong;
alias uint_fast16_t = c_ulong;
alias uint_fast8_t = ubyte;
alias int_fast64_t = c_long;
alias int_fast32_t = c_long;
alias int_fast16_t = c_long;
alias int_fast8_t = byte;
alias uint_least64_t = c_ulong;
alias uint_least32_t = uint;
alias uint_least16_t = ushort;
alias uint_least8_t = ubyte;
alias int_least64_t = c_long;
alias int_least32_t = int;
alias int_least16_t = short;
alias int_least8_t = byte;
extern __gshared uint SystemCoreClock;
static void vPortSetBASEPRI(uint) @nogc nothrow;
static uint ulPortRaiseBASEPRI() @nogc nothrow;
static void vPortRaiseBASEPRI() @nogc nothrow;
static c_long xPortIsInsideInterrupt() @nogc nothrow;
void vPortValidateInterruptPriority() @nogc nothrow;
static ubyte ucPortCountLeadingZeros(uint) @nogc nothrow;
void vPortSuppressTicksAndSleep(uint) @nogc nothrow;
void vPortExitCritical() @nogc nothrow;
void vPortEnterCritical() @nogc nothrow;
alias TickType_t = uint;
alias UBaseType_t = c_ulong;
alias BaseType_t = c_long;
alias StackType_t = uint;
void vApplicationGetTimerTaskMemory(xSTATIC_TCB**, uint**, uint*) @nogc nothrow;
c_ulong uxTimerGetTimerNumber(tmrTimerControl*) @nogc nothrow;
void vTimerSetTimerNumber(tmrTimerControl*, c_ulong) @nogc nothrow;
c_long xTimerGenericCommand(tmrTimerControl*, const(c_long), const(uint), c_long*, const(uint)) @nogc nothrow;
c_long xTimerCreateTimerTask() @nogc nothrow;
uint xTimerGetExpiryTime(tmrTimerControl*) @nogc nothrow;
uint xTimerGetPeriod(tmrTimerControl*) @nogc nothrow;
c_ulong uxTimerGetReloadMode(tmrTimerControl*) @nogc nothrow;
void vTimerSetReloadMode(tmrTimerControl*, const(c_ulong)) @nogc nothrow;
const(char)* pcTimerGetName(tmrTimerControl*) @nogc nothrow;
c_long xTimerPendFunctionCall(void function(void*, uint), void*, uint, uint) @nogc nothrow;
c_long xTimerPendFunctionCallFromISR(void function(void*, uint), void*, uint, c_long*) @nogc nothrow;
tskTaskControlBlock* xTimerGetTimerDaemonTaskHandle() @nogc nothrow;
c_long xTimerIsTimerActive(tmrTimerControl*) @nogc nothrow;
void vTimerSetTimerID(tmrTimerControl*, void*) @nogc nothrow;
void* pvTimerGetTimerID(const(tmrTimerControl*)) @nogc nothrow;
tmrTimerControl* xTimerCreateStatic(const(const(char)*), const(uint), const(c_ulong), void*, void function(tmrTimerControl*), xSTATIC_TIMER*) @nogc nothrow;
tmrTimerControl* xTimerCreate(const(const(char)*), const(uint), const(c_ulong), void*, void function(tmrTimerControl*)) @nogc nothrow;
alias PendedFunction_t = void function(void*, uint);
alias TimerCallbackFunction_t = void function(tmrTimerControl*);
alias TimerHandle_t = tmrTimerControl*;
struct tmrTimerControl;
void vTaskInternalSetTimeOutState(xTIME_OUT*) @nogc nothrow;
tskTaskControlBlock* pvTaskIncrementMutexHeldCount() @nogc nothrow;
eSleepModeStatus eTaskConfirmSleepModeStatus() @nogc nothrow;
void vTaskStepTick(const(uint)) @nogc nothrow;
void vTaskSetTaskNumber(tskTaskControlBlock*, const(c_ulong)) @nogc nothrow;
c_ulong uxTaskGetTaskNumber(tskTaskControlBlock*) @nogc nothrow;
void vTaskPriorityDisinheritAfterTimeout(const(tskTaskControlBlock*), c_ulong) @nogc nothrow;
c_long xTaskPriorityDisinherit(const(tskTaskControlBlock*)) @nogc nothrow;
c_long xTaskPriorityInherit(const(tskTaskControlBlock*)) @nogc nothrow;
c_long xTaskGetSchedulerState() @nogc nothrow;
void vTaskMissedYield() @nogc nothrow;
tskTaskControlBlock* xTaskGetCurrentTaskHandle() @nogc nothrow;
uint uxTaskResetEventItemValue() @nogc nothrow;
void vTaskSwitchContext() @nogc nothrow;
void vTaskRemoveFromUnorderedEventList(xLIST_ITEM*, const(uint)) @nogc nothrow;
c_long xTaskRemoveFromEventList(const(const(xLIST)*)) @nogc nothrow;
void vTaskPlaceOnEventListRestricted(xLIST*, uint, const(c_long)) @nogc nothrow;
void vTaskPlaceOnUnorderedEventList(xLIST*, const(uint), const(uint)) @nogc nothrow;
void vTaskPlaceOnEventList(xLIST*, const(uint)) @nogc nothrow;
c_long xTaskIncrementTick() @nogc nothrow;
c_long xTaskCatchUpTicks(uint) @nogc nothrow;
c_long xTaskCheckForTimeOut(xTIME_OUT*, uint*) @nogc nothrow;
void vTaskSetTimeOutState(xTIME_OUT*) @nogc nothrow;
uint ulTaskGenericNotifyValueClear(tskTaskControlBlock*, c_ulong, uint) @nogc nothrow;
c_long xTaskGenericNotifyStateClear(tskTaskControlBlock*, c_ulong) @nogc nothrow;
uint ulTaskGenericNotifyTake(c_ulong, c_long, uint) @nogc nothrow;
void vTaskGenericNotifyGiveFromISR(tskTaskControlBlock*, c_ulong, c_long*) @nogc nothrow;
c_long xTaskGenericNotifyWait(c_ulong, uint, uint, uint*, uint) @nogc nothrow;
c_long xTaskGenericNotifyFromISR(tskTaskControlBlock*, c_ulong, uint, eNotifyAction, uint*, c_long*) @nogc nothrow;
c_long xTaskGenericNotify(tskTaskControlBlock*, c_ulong, uint, eNotifyAction, uint*) @nogc nothrow;
uint ulTaskGetIdleRunTimeCounter() @nogc nothrow;
void vTaskGetRunTimeStats(char*) @nogc nothrow;
void vTaskList(char*) @nogc nothrow;
c_ulong uxTaskGetSystemState(xTASK_STATUS*, const(c_ulong), uint*) @nogc nothrow;
tskTaskControlBlock* xTaskGetIdleTaskHandle() @nogc nothrow;
c_long xTaskCallApplicationTaskHook(tskTaskControlBlock*, void*) @nogc nothrow;
void vApplicationGetIdleTaskMemory(xSTATIC_TCB**, uint**, uint*) @nogc nothrow;
void vApplicationTickHook() @nogc nothrow;
void vApplicationStackOverflowHook(tskTaskControlBlock*, char*) @nogc nothrow;
void* pvTaskGetThreadLocalStoragePointer(tskTaskControlBlock*, c_long) @nogc nothrow;
void vTaskSetThreadLocalStoragePointer(tskTaskControlBlock*, c_long, void*) @nogc nothrow;
ushort uxTaskGetStackHighWaterMark2(tskTaskControlBlock*) @nogc nothrow;
c_ulong uxTaskGetStackHighWaterMark(tskTaskControlBlock*) @nogc nothrow;
tskTaskControlBlock* xTaskGetHandle(const(char)*) @nogc nothrow;
char* pcTaskGetName(tskTaskControlBlock*) @nogc nothrow;
c_ulong uxTaskGetNumberOfTasks() @nogc nothrow;
uint xTaskGetTickCountFromISR() @nogc nothrow;
uint xTaskGetTickCount() @nogc nothrow;
c_long xTaskResumeAll() @nogc nothrow;
void vTaskSuspendAll() @nogc nothrow;
void vTaskEndScheduler() @nogc nothrow;
void vTaskStartScheduler() @nogc nothrow;
c_long xTaskResumeFromISR(tskTaskControlBlock*) @nogc nothrow;
void vTaskResume(tskTaskControlBlock*) @nogc nothrow;
void vTaskSuspend(tskTaskControlBlock*) @nogc nothrow;
void vTaskPrioritySet(tskTaskControlBlock*, c_ulong) @nogc nothrow;
void vTaskGetInfo(tskTaskControlBlock*, xTASK_STATUS*, c_long, eTaskState) @nogc nothrow;
eTaskState eTaskGetState(tskTaskControlBlock*) @nogc nothrow;
c_ulong uxTaskPriorityGetFromISR(const(tskTaskControlBlock*)) @nogc nothrow;
c_ulong uxTaskPriorityGet(const(tskTaskControlBlock*)) @nogc nothrow;
c_long xTaskAbortDelay(tskTaskControlBlock*) @nogc nothrow;
void vTaskDelayUntil(uint*, const(uint)) @nogc nothrow;
void vTaskDelay(const(uint)) @nogc nothrow;
void vTaskDelete(tskTaskControlBlock*) @nogc nothrow;
struct xSTATIC_LIST_ITEM
{
uint xDummy2;
void*[4] pvDummy3;
}
alias StaticListItem_t = xSTATIC_LIST_ITEM;
struct xSTATIC_MINI_LIST_ITEM
{
uint xDummy2;
void*[2] pvDummy3;
}
alias StaticMiniListItem_t = xSTATIC_MINI_LIST_ITEM;
alias StaticList_t = xSTATIC_LIST;
struct xSTATIC_LIST
{
c_ulong uxDummy2;
void* pvDummy3;
xSTATIC_MINI_LIST_ITEM xDummy4;
}
alias StaticTask_t = xSTATIC_TCB;
struct xSTATIC_TCB
{
void* pxDummy1;
xSTATIC_LIST_ITEM[2] xDummy3;
c_ulong uxDummy5;
void* pxDummy6;
ubyte[16] ucDummy7;
c_ulong[2] uxDummy10;
c_ulong[2] uxDummy12;
void*[1] pvDummy15;
uint[1] ulDummy18;
ubyte[1] ucDummy19;
ubyte uxDummy20;
}
alias StaticQueue_t = xSTATIC_QUEUE;
struct xSTATIC_QUEUE
{
void*[3] pvDummy1;
static union _Anonymous_0
{
void* pvDummy2;
c_ulong uxDummy2;
}
_Anonymous_0 u;
xSTATIC_LIST[2] xDummy3;
c_ulong[3] uxDummy4;
ubyte[2] ucDummy5;
ubyte ucDummy6;
c_ulong uxDummy8;
ubyte ucDummy9;
}
alias StaticSemaphore_t = xSTATIC_QUEUE;
alias StaticEventGroup_t = xSTATIC_EVENT_GROUP;
struct xSTATIC_EVENT_GROUP
{
uint xDummy1;
xSTATIC_LIST xDummy2;
c_ulong uxDummy3;
ubyte ucDummy4;
}
alias StaticTimer_t = xSTATIC_TIMER;
struct xSTATIC_TIMER
{
void* pvDummy1;
xSTATIC_LIST_ITEM xDummy2;
uint xDummy3;
void* pvDummy5;
void function(void*) pvDummy6;
c_ulong uxDummy7;
ubyte ucDummy8;
}
alias StaticStreamBuffer_t = xSTATIC_STREAM_BUFFER;
struct xSTATIC_STREAM_BUFFER
{
c_ulong[4] uxDummy1;
void*[3] pvDummy2;
ubyte ucDummy3;
c_ulong uxDummy4;
}
alias StaticMessageBuffer_t = xSTATIC_STREAM_BUFFER;
void vTaskAllocateMPURegions(tskTaskControlBlock*, const(const(xMEMORY_REGION)*)) @nogc nothrow;
struct EventGroupDef_t;
alias EventGroupHandle_t = EventGroupDef_t*;
alias EventBits_t = uint;
EventGroupDef_t* xEventGroupCreate() @nogc nothrow;
EventGroupDef_t* xEventGroupCreateStatic(xSTATIC_EVENT_GROUP*) @nogc nothrow;
uint xEventGroupWaitBits(EventGroupDef_t*, const(uint), const(c_long), const(c_long), uint) @nogc nothrow;
uint xEventGroupClearBits(EventGroupDef_t*, const(uint)) @nogc nothrow;
c_long xEventGroupClearBitsFromISR(EventGroupDef_t*, const(uint)) @nogc nothrow;
uint xEventGroupSetBits(EventGroupDef_t*, const(uint)) @nogc nothrow;
c_long xEventGroupSetBitsFromISR(EventGroupDef_t*, const(uint), c_long*) @nogc nothrow;
uint xEventGroupSync(EventGroupDef_t*, const(uint), const(uint), uint) @nogc nothrow;
uint xEventGroupGetBitsFromISR(EventGroupDef_t*) @nogc nothrow;
void vEventGroupDelete(EventGroupDef_t*) @nogc nothrow;
void vEventGroupSetBitsCallback(void*, const(uint)) @nogc nothrow;
void vEventGroupClearBitsCallback(void*, const(uint)) @nogc nothrow;
c_ulong uxEventGroupGetNumber(void*) @nogc nothrow;
void vEventGroupSetNumber(void*, c_ulong) @nogc nothrow;
tskTaskControlBlock* xTaskCreateStatic(void function(void*), const(const(char)*), const(uint), void*, c_ulong, uint*, xSTATIC_TCB*) @nogc nothrow;
c_long xTaskCreate(void function(void*), const(const(char)*), const(ushort), void*, c_ulong, tskTaskControlBlock**) @nogc nothrow;
enum _Anonymous_1
{
eAbortSleep = 0,
eStandardSleep = 1,
eNoTasksWaitingTimeout = 2,
}
enum eAbortSleep = _Anonymous_1.eAbortSleep;
enum eStandardSleep = _Anonymous_1.eStandardSleep;
enum eNoTasksWaitingTimeout = _Anonymous_1.eNoTasksWaitingTimeout;
alias eSleepModeStatus = _Anonymous_1;
struct xTASK_STATUS
{
tskTaskControlBlock* xHandle;
const(char)* pcTaskName;
c_ulong xTaskNumber;
eTaskState eCurrentState;
c_ulong uxCurrentPriority;
c_ulong uxBasePriority;
uint ulRunTimeCounter;
uint* pxStackBase;
ushort usStackHighWaterMark;
}
struct xLIST
{
c_ulong uxNumberOfItems;
xLIST_ITEM* pxIndex;
xMINI_LIST_ITEM xListEnd;
}
struct xLIST_ITEM
{
uint xItemValue;
xLIST_ITEM* pxNext;
xLIST_ITEM* pxPrevious;
void* pvOwner;
xLIST* pvContainer;
}
alias ListItem_t = xLIST_ITEM;
struct xMINI_LIST_ITEM
{
uint xItemValue;
xLIST_ITEM* pxNext;
xLIST_ITEM* pxPrevious;
}
alias MiniListItem_t = xMINI_LIST_ITEM;
alias List_t = xLIST;
alias TaskStatus_t = xTASK_STATUS;
struct xTASK_PARAMETERS
{
void function(void*) pvTaskCode;
const(const(char)*) pcName;
ushort usStackDepth;
void* pvParameters;
c_ulong uxPriority;
uint* puxStackBuffer;
xMEMORY_REGION[1] xRegions;
}
alias TaskParameters_t = xTASK_PARAMETERS;
struct xMEMORY_REGION
{
void* pvBaseAddress;
uint ulLengthInBytes;
uint ulParameters;
}
alias MemoryRegion_t = xMEMORY_REGION;
struct xTIME_OUT
{
c_long xOverflowCount;
uint xTimeOnEntering;
}
alias TimeOut_t = xTIME_OUT;
enum _Anonymous_2
{
eNoAction = 0,
eSetBits = 1,
eIncrement = 2,
eSetValueWithOverwrite = 3,
eSetValueWithoutOverwrite = 4,
}
enum eNoAction = _Anonymous_2.eNoAction;
enum eSetBits = _Anonymous_2.eSetBits;
enum eIncrement = _Anonymous_2.eIncrement;
enum eSetValueWithOverwrite = _Anonymous_2.eSetValueWithOverwrite;
enum eSetValueWithoutOverwrite = _Anonymous_2.eSetValueWithoutOverwrite;
alias eNotifyAction = _Anonymous_2;
enum _Anonymous_3
{
eRunning = 0,
eReady = 1,
eBlocked = 2,
eSuspended = 3,
eDeleted = 4,
eInvalid = 5,
}
enum eRunning = _Anonymous_3.eRunning;
enum eReady = _Anonymous_3.eReady;
enum eBlocked = _Anonymous_3.eBlocked;
enum eSuspended = _Anonymous_3.eSuspended;
enum eDeleted = _Anonymous_3.eDeleted;
enum eInvalid = _Anonymous_3.eInvalid;
alias eTaskState = _Anonymous_3;
void vListInitialise(xLIST*) @nogc nothrow;
void vListInitialiseItem(xLIST_ITEM*) @nogc nothrow;
void vListInsert(xLIST*, xLIST_ITEM*) @nogc nothrow;
void vListInsertEnd(xLIST*, xLIST_ITEM*) @nogc nothrow;
c_ulong uxListRemove(xLIST_ITEM*) @nogc nothrow;
alias TaskHookFunction_t = c_long function(void*);
alias TaskHandle_t = tskTaskControlBlock*;
struct tskTaskControlBlock;
uint* pxPortInitialiseStack(uint*, void function(void*), void*) @nogc nothrow;
alias HeapRegion_t = HeapRegion;
struct HeapRegion
{
ubyte* pucStartAddress;
c_ulong xSizeInBytes;
}
alias HeapStats_t = xHeapStats;
struct xHeapStats
{
c_ulong xAvailableHeapSpaceInBytes;
c_ulong xSizeOfLargestFreeBlockInBytes;
c_ulong xSizeOfSmallestFreeBlockInBytes;
c_ulong xNumberOfFreeBlocks;
c_ulong xMinimumEverFreeBytesRemaining;
c_ulong xNumberOfSuccessfulAllocations;
c_ulong xNumberOfSuccessfulFrees;
}
void vPortDefineHeapRegions(const(const(HeapRegion)*)) @nogc nothrow;
void vPortGetHeapStats(xHeapStats*) @nogc nothrow;
void* pvPortMalloc(c_ulong) @nogc nothrow;
void vPortFree(void*) @nogc nothrow;
void vPortInitialiseBlocks() @nogc nothrow;
c_ulong xPortGetFreeHeapSize() @nogc nothrow;
c_ulong xPortGetMinimumEverFreeHeapSize() @nogc nothrow;
c_long xPortStartScheduler() @nogc nothrow;
void vPortEndScheduler() @nogc nothrow;
alias TaskFunction_t = void function(void*);
alias SemaphoreHandle_t = QueueDefinition*;
ubyte ucQueueGetQueueType(QueueDefinition*) @nogc nothrow;
c_ulong uxQueueGetQueueNumber(QueueDefinition*) @nogc nothrow;
void vQueueSetQueueNumber(QueueDefinition*, c_ulong) @nogc nothrow;
c_long xQueueGenericReset(QueueDefinition*, c_long) @nogc nothrow;
void vQueueWaitForMessageRestricted(QueueDefinition*, uint, const(c_long)) @nogc nothrow;
QueueDefinition* xQueueSelectFromSetFromISR(QueueDefinition*) @nogc nothrow;
QueueDefinition* xQueueSelectFromSet(QueueDefinition*, const(uint)) @nogc nothrow;
c_long xQueueRemoveFromSet(QueueDefinition*, QueueDefinition*) @nogc nothrow;
c_long xQueueAddToSet(QueueDefinition*, QueueDefinition*) @nogc nothrow;
QueueDefinition* xQueueCreateSet(const(c_ulong)) @nogc nothrow;
QueueDefinition* xQueueGenericCreateStatic(const(c_ulong), const(c_ulong), ubyte*, xSTATIC_QUEUE*, const(ubyte)) @nogc nothrow;
QueueDefinition* xQueueGenericCreate(const(c_ulong), const(c_ulong), const(ubyte)) @nogc nothrow;
const(char)* pcQueueGetName(QueueDefinition*) @nogc nothrow;
void vQueueUnregisterQueue(QueueDefinition*) @nogc nothrow;
void vQueueAddToRegistry(QueueDefinition*, const(char)*) @nogc nothrow;
c_long xQueueGiveMutexRecursive(QueueDefinition*) @nogc nothrow;
c_long xQueueTakeMutexRecursive(QueueDefinition*, uint) @nogc nothrow;
tskTaskControlBlock* xQueueGetMutexHolderFromISR(QueueDefinition*) @nogc nothrow;
tskTaskControlBlock* xQueueGetMutexHolder(QueueDefinition*) @nogc nothrow;
c_long xQueueSemaphoreTake(QueueDefinition*, uint) @nogc nothrow;
QueueDefinition* xQueueCreateCountingSemaphoreStatic(const(c_ulong), const(c_ulong), xSTATIC_QUEUE*) @nogc nothrow;
struct QueueDefinition;
alias QueueHandle_t = QueueDefinition*;
alias QueueSetHandle_t = QueueDefinition*;
alias QueueSetMemberHandle_t = QueueDefinition*;
QueueDefinition* xQueueCreateCountingSemaphore(const(c_ulong), const(c_ulong)) @nogc nothrow;
QueueDefinition* xQueueCreateMutexStatic(const(ubyte), xSTATIC_QUEUE*) @nogc nothrow;
QueueDefinition* xQueueCreateMutex(const(ubyte)) @nogc nothrow;
c_long xQueueCRReceive(QueueDefinition*, void*, uint) @nogc nothrow;
c_long xQueueCRSend(QueueDefinition*, const(void)*, uint) @nogc nothrow;
c_long xQueueCRReceiveFromISR(QueueDefinition*, void*, c_long*) @nogc nothrow;
c_long xQueueCRSendFromISR(QueueDefinition*, const(void)*, c_long) @nogc nothrow;
c_ulong uxQueueMessagesWaitingFromISR(const(QueueDefinition*)) @nogc nothrow;
c_long xQueueIsQueueFullFromISR(const(QueueDefinition*)) @nogc nothrow;
c_long xQueueGenericSend(QueueDefinition*, const(const(void)*), uint, const(c_long)) @nogc nothrow;
c_long xQueuePeek(QueueDefinition*, void*, uint) @nogc nothrow;
c_long xQueuePeekFromISR(QueueDefinition*, void*) @nogc nothrow;
c_long xQueueReceive(QueueDefinition*, void*, uint) @nogc nothrow;
c_ulong uxQueueMessagesWaiting(const(QueueDefinition*)) @nogc nothrow;
c_ulong uxQueueSpacesAvailable(const(QueueDefinition*)) @nogc nothrow;
void vQueueDelete(QueueDefinition*) @nogc nothrow;
c_long xQueueIsQueueEmptyFromISR(const(QueueDefinition*)) @nogc nothrow;
c_long xQueueReceiveFromISR(QueueDefinition*, void*, c_long*) @nogc nothrow;
c_long xQueueGenericSendFromISR(QueueDefinition*, const(const(void)*), c_long*, const(c_long)) @nogc nothrow;
c_long xQueueGiveFromISR(QueueDefinition*, c_long*) @nogc nothrow;
static if(!is(typeof(queueQUEUE_TYPE_RECURSIVE_MUTEX))) {
private enum enumMixinStr_queueQUEUE_TYPE_RECURSIVE_MUTEX = `enum queueQUEUE_TYPE_RECURSIVE_MUTEX = ( cast( uint8_t ) 4U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_RECURSIVE_MUTEX); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_RECURSIVE_MUTEX);
}
}
static if(!is(typeof(queueQUEUE_TYPE_BINARY_SEMAPHORE))) {
private enum enumMixinStr_queueQUEUE_TYPE_BINARY_SEMAPHORE = `enum queueQUEUE_TYPE_BINARY_SEMAPHORE = ( cast( uint8_t ) 3U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_BINARY_SEMAPHORE); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_BINARY_SEMAPHORE);
}
}
static if(!is(typeof(queueQUEUE_TYPE_COUNTING_SEMAPHORE))) {
private enum enumMixinStr_queueQUEUE_TYPE_COUNTING_SEMAPHORE = `enum queueQUEUE_TYPE_COUNTING_SEMAPHORE = ( cast( uint8_t ) 2U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_COUNTING_SEMAPHORE); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_COUNTING_SEMAPHORE);
}
}
static if(!is(typeof(queueQUEUE_TYPE_MUTEX))) {
private enum enumMixinStr_queueQUEUE_TYPE_MUTEX = `enum queueQUEUE_TYPE_MUTEX = ( cast( uint8_t ) 1U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_MUTEX); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_MUTEX);
}
}
static if(!is(typeof(queueQUEUE_TYPE_SET))) {
private enum enumMixinStr_queueQUEUE_TYPE_SET = `enum queueQUEUE_TYPE_SET = ( cast( uint8_t ) 0U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_SET); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_SET);
}
}
static if(!is(typeof(queueQUEUE_TYPE_BASE))) {
private enum enumMixinStr_queueQUEUE_TYPE_BASE = `enum queueQUEUE_TYPE_BASE = ( cast( uint8_t ) 0U );`;
static if(is(typeof({ mixin(enumMixinStr_queueQUEUE_TYPE_BASE); }))) {
mixin(enumMixinStr_queueQUEUE_TYPE_BASE);
}
}
static if(!is(typeof(queueOVERWRITE))) {
private enum enumMixinStr_queueOVERWRITE = `enum queueOVERWRITE = ( cast( BaseType_t ) 2 );`;
static if(is(typeof({ mixin(enumMixinStr_queueOVERWRITE); }))) {
mixin(enumMixinStr_queueOVERWRITE);
}
}
static if(!is(typeof(queueSEND_TO_FRONT))) {
private enum enumMixinStr_queueSEND_TO_FRONT = `enum queueSEND_TO_FRONT = ( cast( BaseType_t ) 1 );`;
static if(is(typeof({ mixin(enumMixinStr_queueSEND_TO_FRONT); }))) {
mixin(enumMixinStr_queueSEND_TO_FRONT);
}
}
static if(!is(typeof(queueSEND_TO_BACK))) {
private enum enumMixinStr_queueSEND_TO_BACK = `enum queueSEND_TO_BACK = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_queueSEND_TO_BACK); }))) {
mixin(enumMixinStr_queueSEND_TO_BACK);
}
}
static if(!is(typeof(pdBIG_ENDIAN))) {
private enum enumMixinStr_pdBIG_ENDIAN = `enum pdBIG_ENDIAN = pdFREERTOS_BIG_ENDIAN;`;
static if(is(typeof({ mixin(enumMixinStr_pdBIG_ENDIAN); }))) {
mixin(enumMixinStr_pdBIG_ENDIAN);
}
}
static if(!is(typeof(pdLITTLE_ENDIAN))) {
private enum enumMixinStr_pdLITTLE_ENDIAN = `enum pdLITTLE_ENDIAN = pdFREERTOS_LITTLE_ENDIAN;`;
static if(is(typeof({ mixin(enumMixinStr_pdLITTLE_ENDIAN); }))) {
mixin(enumMixinStr_pdLITTLE_ENDIAN);
}
}
static if(!is(typeof(pdFREERTOS_BIG_ENDIAN))) {
private enum enumMixinStr_pdFREERTOS_BIG_ENDIAN = `enum pdFREERTOS_BIG_ENDIAN = 1;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_BIG_ENDIAN); }))) {
mixin(enumMixinStr_pdFREERTOS_BIG_ENDIAN);
}
}
static if(!is(typeof(pdFREERTOS_LITTLE_ENDIAN))) {
private enum enumMixinStr_pdFREERTOS_LITTLE_ENDIAN = `enum pdFREERTOS_LITTLE_ENDIAN = 0;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_LITTLE_ENDIAN); }))) {
mixin(enumMixinStr_pdFREERTOS_LITTLE_ENDIAN);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ECANCELED))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ECANCELED = `enum pdFREERTOS_ERRNO_ECANCELED = 140;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ECANCELED); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ECANCELED);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EILSEQ))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EILSEQ = `enum pdFREERTOS_ERRNO_EILSEQ = 138;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EILSEQ); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EILSEQ);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOMEDIUM))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOMEDIUM = `enum pdFREERTOS_ERRNO_ENOMEDIUM = 135;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOMEDIUM); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOMEDIUM);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOTCONN))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOTCONN = `enum pdFREERTOS_ERRNO_ENOTCONN = 128;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTCONN); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTCONN);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EISCONN))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EISCONN = `enum pdFREERTOS_ERRNO_EISCONN = 127;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EISCONN); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EISCONN);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EADDRNOTAVAIL))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EADDRNOTAVAIL = `enum pdFREERTOS_ERRNO_EADDRNOTAVAIL = 125;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EADDRNOTAVAIL); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EADDRNOTAVAIL);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EALREADY))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EALREADY = `enum pdFREERTOS_ERRNO_EALREADY = 120;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EALREADY); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EALREADY);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EINPROGRESS))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EINPROGRESS = `enum pdFREERTOS_ERRNO_EINPROGRESS = 119;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EINPROGRESS); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EINPROGRESS);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ETIMEDOUT))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ETIMEDOUT = `enum pdFREERTOS_ERRNO_ETIMEDOUT = 116;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ETIMEDOUT); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ETIMEDOUT);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EADDRINUSE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EADDRINUSE = `enum pdFREERTOS_ERRNO_EADDRINUSE = 112;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EADDRINUSE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EADDRINUSE);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOPROTOOPT))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOPROTOOPT = `enum pdFREERTOS_ERRNO_ENOPROTOOPT = 109;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOPROTOOPT); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOPROTOOPT);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOBUFS))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOBUFS = `enum pdFREERTOS_ERRNO_ENOBUFS = 105;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOBUFS); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOBUFS);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EOPNOTSUPP))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EOPNOTSUPP = `enum pdFREERTOS_ERRNO_EOPNOTSUPP = 95;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EOPNOTSUPP); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EOPNOTSUPP);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENAMETOOLONG))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENAMETOOLONG = `enum pdFREERTOS_ERRNO_ENAMETOOLONG = 91;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENAMETOOLONG); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENAMETOOLONG);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOTEMPTY))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOTEMPTY = `enum pdFREERTOS_ERRNO_ENOTEMPTY = 90;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTEMPTY); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTEMPTY);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENMFILE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENMFILE = `enum pdFREERTOS_ERRNO_ENMFILE = 89;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENMFILE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENMFILE);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EFTYPE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EFTYPE = `enum pdFREERTOS_ERRNO_EFTYPE = 79;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EFTYPE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EFTYPE);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EBADE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EBADE = `enum pdFREERTOS_ERRNO_EBADE = 50;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EBADE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EBADE);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EUNATCH))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EUNATCH = `enum pdFREERTOS_ERRNO_EUNATCH = 42;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EUNATCH); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EUNATCH);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EROFS))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EROFS = `enum pdFREERTOS_ERRNO_EROFS = 30;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EROFS); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EROFS);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ESPIPE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ESPIPE = `enum pdFREERTOS_ERRNO_ESPIPE = 29;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ESPIPE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ESPIPE);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOSPC))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOSPC = `enum pdFREERTOS_ERRNO_ENOSPC = 28;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOSPC); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOSPC);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EINVAL))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EINVAL = `enum pdFREERTOS_ERRNO_EINVAL = 22;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EINVAL); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EINVAL);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EISDIR))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EISDIR = `enum pdFREERTOS_ERRNO_EISDIR = 21;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EISDIR); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EISDIR);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOTDIR))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOTDIR = `enum pdFREERTOS_ERRNO_ENOTDIR = 20;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTDIR); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOTDIR);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENODEV))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENODEV = `enum pdFREERTOS_ERRNO_ENODEV = 19;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENODEV); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENODEV);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EXDEV))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EXDEV = `enum pdFREERTOS_ERRNO_EXDEV = 18;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EXDEV); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EXDEV);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EEXIST))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EEXIST = `enum pdFREERTOS_ERRNO_EEXIST = 17;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EEXIST); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EEXIST);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EBUSY))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EBUSY = `enum pdFREERTOS_ERRNO_EBUSY = 16;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EBUSY); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EBUSY);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EFAULT))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EFAULT = `enum pdFREERTOS_ERRNO_EFAULT = 14;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EFAULT); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EFAULT);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EACCES))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EACCES = `enum pdFREERTOS_ERRNO_EACCES = 13;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EACCES); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EACCES);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOMEM))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOMEM = `enum pdFREERTOS_ERRNO_ENOMEM = 12;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOMEM); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOMEM);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EWOULDBLOCK))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EWOULDBLOCK = `enum pdFREERTOS_ERRNO_EWOULDBLOCK = 11;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EWOULDBLOCK); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EWOULDBLOCK);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EAGAIN))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EAGAIN = `enum pdFREERTOS_ERRNO_EAGAIN = 11;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EAGAIN); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EAGAIN);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EBADF))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EBADF = `enum pdFREERTOS_ERRNO_EBADF = 9;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EBADF); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EBADF);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENXIO))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENXIO = `enum pdFREERTOS_ERRNO_ENXIO = 6;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENXIO); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENXIO);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EIO))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EIO = `enum pdFREERTOS_ERRNO_EIO = 5;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EIO); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EIO);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_EINTR))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_EINTR = `enum pdFREERTOS_ERRNO_EINTR = 4;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_EINTR); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_EINTR);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_ENOENT))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_ENOENT = `enum pdFREERTOS_ERRNO_ENOENT = 2;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOENT); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_ENOENT);
}
}
static if(!is(typeof(pdFREERTOS_ERRNO_NONE))) {
private enum enumMixinStr_pdFREERTOS_ERRNO_NONE = `enum pdFREERTOS_ERRNO_NONE = 0;`;
static if(is(typeof({ mixin(enumMixinStr_pdFREERTOS_ERRNO_NONE); }))) {
mixin(enumMixinStr_pdFREERTOS_ERRNO_NONE);
}
}
static if(!is(typeof(pdINTEGRITY_CHECK_VALUE))) {
private enum enumMixinStr_pdINTEGRITY_CHECK_VALUE = `enum pdINTEGRITY_CHECK_VALUE = 0x5a5a5a5aUL;`;
static if(is(typeof({ mixin(enumMixinStr_pdINTEGRITY_CHECK_VALUE); }))) {
mixin(enumMixinStr_pdINTEGRITY_CHECK_VALUE);
}
}
static if(!is(typeof(configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES))) {
private enum enumMixinStr_configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES = `enum configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES); }))) {
mixin(enumMixinStr_configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES);
}
}
static if(!is(typeof(errQUEUE_YIELD))) {
private enum enumMixinStr_errQUEUE_YIELD = `enum errQUEUE_YIELD = ( - 5 );`;
static if(is(typeof({ mixin(enumMixinStr_errQUEUE_YIELD); }))) {
mixin(enumMixinStr_errQUEUE_YIELD);
}
}
static if(!is(typeof(errQUEUE_BLOCKED))) {
private enum enumMixinStr_errQUEUE_BLOCKED = `enum errQUEUE_BLOCKED = ( - 4 );`;
static if(is(typeof({ mixin(enumMixinStr_errQUEUE_BLOCKED); }))) {
mixin(enumMixinStr_errQUEUE_BLOCKED);
}
}
static if(!is(typeof(errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY))) {
private enum enumMixinStr_errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY = `enum errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY = ( - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY); }))) {
mixin(enumMixinStr_errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY);
}
}
static if(!is(typeof(semBINARY_SEMAPHORE_QUEUE_LENGTH))) {
private enum enumMixinStr_semBINARY_SEMAPHORE_QUEUE_LENGTH = `enum semBINARY_SEMAPHORE_QUEUE_LENGTH = ( cast( uint8_t ) 1U );`;
static if(is(typeof({ mixin(enumMixinStr_semBINARY_SEMAPHORE_QUEUE_LENGTH); }))) {
mixin(enumMixinStr_semBINARY_SEMAPHORE_QUEUE_LENGTH);
}
}
static if(!is(typeof(semSEMAPHORE_QUEUE_ITEM_LENGTH))) {
private enum enumMixinStr_semSEMAPHORE_QUEUE_ITEM_LENGTH = `enum semSEMAPHORE_QUEUE_ITEM_LENGTH = ( cast( uint8_t ) 0U );`;
static if(is(typeof({ mixin(enumMixinStr_semSEMAPHORE_QUEUE_ITEM_LENGTH); }))) {
mixin(enumMixinStr_semSEMAPHORE_QUEUE_ITEM_LENGTH);
}
}
static if(!is(typeof(semGIVE_BLOCK_TIME))) {
private enum enumMixinStr_semGIVE_BLOCK_TIME = `enum semGIVE_BLOCK_TIME = ( cast( TickType_t ) 0U );`;
static if(is(typeof({ mixin(enumMixinStr_semGIVE_BLOCK_TIME); }))) {
mixin(enumMixinStr_semGIVE_BLOCK_TIME);
}
}
static if(!is(typeof(errQUEUE_FULL))) {
private enum enumMixinStr_errQUEUE_FULL = `enum errQUEUE_FULL = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_errQUEUE_FULL); }))) {
mixin(enumMixinStr_errQUEUE_FULL);
}
}
static if(!is(typeof(errQUEUE_EMPTY))) {
private enum enumMixinStr_errQUEUE_EMPTY = `enum errQUEUE_EMPTY = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_errQUEUE_EMPTY); }))) {
mixin(enumMixinStr_errQUEUE_EMPTY);
}
}
static if(!is(typeof(pdFAIL))) {
private enum enumMixinStr_pdFAIL = `enum pdFAIL = ( pdFALSE );`;
static if(is(typeof({ mixin(enumMixinStr_pdFAIL); }))) {
mixin(enumMixinStr_pdFAIL);
}
}
static if(!is(typeof(pdPASS))) {
private enum enumMixinStr_pdPASS = `enum pdPASS = ( pdTRUE );`;
static if(is(typeof({ mixin(enumMixinStr_pdPASS); }))) {
mixin(enumMixinStr_pdPASS);
}
}
static if(!is(typeof(pdTRUE))) {
private enum enumMixinStr_pdTRUE = `enum pdTRUE = ( cast( BaseType_t ) 1 );`;
static if(is(typeof({ mixin(enumMixinStr_pdTRUE); }))) {
mixin(enumMixinStr_pdTRUE);
}
}
static if(!is(typeof(pdFALSE))) {
private enum enumMixinStr_pdFALSE = `enum pdFALSE = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_pdFALSE); }))) {
mixin(enumMixinStr_pdFALSE);
}
}
static if(!is(typeof(portARCH_NAME))) {
private enum enumMixinStr_portARCH_NAME = `enum portARCH_NAME = null;`;
static if(is(typeof({ mixin(enumMixinStr_portARCH_NAME); }))) {
mixin(enumMixinStr_portARCH_NAME);
}
}
static if(!is(typeof(portHAS_STACK_OVERFLOW_CHECKING))) {
private enum enumMixinStr_portHAS_STACK_OVERFLOW_CHECKING = `enum portHAS_STACK_OVERFLOW_CHECKING = 0;`;
static if(is(typeof({ mixin(enumMixinStr_portHAS_STACK_OVERFLOW_CHECKING); }))) {
mixin(enumMixinStr_portHAS_STACK_OVERFLOW_CHECKING);
}
}
static if(!is(typeof(portNUM_CONFIGURABLE_REGIONS))) {
private enum enumMixinStr_portNUM_CONFIGURABLE_REGIONS = `enum portNUM_CONFIGURABLE_REGIONS = 1;`;
static if(is(typeof({ mixin(enumMixinStr_portNUM_CONFIGURABLE_REGIONS); }))) {
mixin(enumMixinStr_portNUM_CONFIGURABLE_REGIONS);
}
}
static if(!is(typeof(portBYTE_ALIGNMENT_MASK))) {
private enum enumMixinStr_portBYTE_ALIGNMENT_MASK = `enum portBYTE_ALIGNMENT_MASK = ( 0x0007 );`;
static if(is(typeof({ mixin(enumMixinStr_portBYTE_ALIGNMENT_MASK); }))) {
mixin(enumMixinStr_portBYTE_ALIGNMENT_MASK);
}
}
static if(!is(typeof(portUSING_MPU_WRAPPERS))) {
private enum enumMixinStr_portUSING_MPU_WRAPPERS = `enum portUSING_MPU_WRAPPERS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_portUSING_MPU_WRAPPERS); }))) {
mixin(enumMixinStr_portUSING_MPU_WRAPPERS);
}
}
static if(!is(typeof(tskKERNEL_VERSION_NUMBER))) {
private enum enumMixinStr_tskKERNEL_VERSION_NUMBER = `enum tskKERNEL_VERSION_NUMBER = "V10.4.1";`;
static if(is(typeof({ mixin(enumMixinStr_tskKERNEL_VERSION_NUMBER); }))) {
mixin(enumMixinStr_tskKERNEL_VERSION_NUMBER);
}
}
static if(!is(typeof(tskKERNEL_VERSION_MAJOR))) {
private enum enumMixinStr_tskKERNEL_VERSION_MAJOR = `enum tskKERNEL_VERSION_MAJOR = 10;`;
static if(is(typeof({ mixin(enumMixinStr_tskKERNEL_VERSION_MAJOR); }))) {
mixin(enumMixinStr_tskKERNEL_VERSION_MAJOR);
}
}
static if(!is(typeof(tskKERNEL_VERSION_MINOR))) {
private enum enumMixinStr_tskKERNEL_VERSION_MINOR = `enum tskKERNEL_VERSION_MINOR = 4;`;
static if(is(typeof({ mixin(enumMixinStr_tskKERNEL_VERSION_MINOR); }))) {
mixin(enumMixinStr_tskKERNEL_VERSION_MINOR);
}
}
static if(!is(typeof(tskKERNEL_VERSION_BUILD))) {
private enum enumMixinStr_tskKERNEL_VERSION_BUILD = `enum tskKERNEL_VERSION_BUILD = 1;`;
static if(is(typeof({ mixin(enumMixinStr_tskKERNEL_VERSION_BUILD); }))) {
mixin(enumMixinStr_tskKERNEL_VERSION_BUILD);
}
}
static if(!is(typeof(tskMPU_REGION_READ_ONLY))) {
private enum enumMixinStr_tskMPU_REGION_READ_ONLY = `enum tskMPU_REGION_READ_ONLY = ( 1UL << 0UL );`;
static if(is(typeof({ mixin(enumMixinStr_tskMPU_REGION_READ_ONLY); }))) {
mixin(enumMixinStr_tskMPU_REGION_READ_ONLY);
}
}
static if(!is(typeof(tskMPU_REGION_READ_WRITE))) {
private enum enumMixinStr_tskMPU_REGION_READ_WRITE = `enum tskMPU_REGION_READ_WRITE = ( 1UL << 1UL );`;
static if(is(typeof({ mixin(enumMixinStr_tskMPU_REGION_READ_WRITE); }))) {
mixin(enumMixinStr_tskMPU_REGION_READ_WRITE);
}
}
static if(!is(typeof(tskMPU_REGION_EXECUTE_NEVER))) {
private enum enumMixinStr_tskMPU_REGION_EXECUTE_NEVER = `enum tskMPU_REGION_EXECUTE_NEVER = ( 1UL << 2UL );`;
static if(is(typeof({ mixin(enumMixinStr_tskMPU_REGION_EXECUTE_NEVER); }))) {
mixin(enumMixinStr_tskMPU_REGION_EXECUTE_NEVER);
}
}
static if(!is(typeof(tskMPU_REGION_NORMAL_MEMORY))) {
private enum enumMixinStr_tskMPU_REGION_NORMAL_MEMORY = `enum tskMPU_REGION_NORMAL_MEMORY = ( 1UL << 3UL );`;
static if(is(typeof({ mixin(enumMixinStr_tskMPU_REGION_NORMAL_MEMORY); }))) {
mixin(enumMixinStr_tskMPU_REGION_NORMAL_MEMORY);
}
}
static if(!is(typeof(tskMPU_REGION_DEVICE_MEMORY))) {
private enum enumMixinStr_tskMPU_REGION_DEVICE_MEMORY = `enum tskMPU_REGION_DEVICE_MEMORY = ( 1UL << 4UL );`;
static if(is(typeof({ mixin(enumMixinStr_tskMPU_REGION_DEVICE_MEMORY); }))) {
mixin(enumMixinStr_tskMPU_REGION_DEVICE_MEMORY);
}
}
static if(!is(typeof(tskDEFAULT_INDEX_TO_NOTIFY))) {
private enum enumMixinStr_tskDEFAULT_INDEX_TO_NOTIFY = `enum tskDEFAULT_INDEX_TO_NOTIFY = ( 0 );`;
static if(is(typeof({ mixin(enumMixinStr_tskDEFAULT_INDEX_TO_NOTIFY); }))) {
mixin(enumMixinStr_tskDEFAULT_INDEX_TO_NOTIFY);
}
}
static if(!is(typeof(tskIDLE_PRIORITY))) {
private enum enumMixinStr_tskIDLE_PRIORITY = `enum tskIDLE_PRIORITY = ( cast( UBaseType_t ) 0U );`;
static if(is(typeof({ mixin(enumMixinStr_tskIDLE_PRIORITY); }))) {
mixin(enumMixinStr_tskIDLE_PRIORITY);
}
}
static if(!is(typeof(taskSCHEDULER_SUSPENDED))) {
private enum enumMixinStr_taskSCHEDULER_SUSPENDED = `enum taskSCHEDULER_SUSPENDED = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_taskSCHEDULER_SUSPENDED); }))) {
mixin(enumMixinStr_taskSCHEDULER_SUSPENDED);
}
}
static if(!is(typeof(taskSCHEDULER_NOT_STARTED))) {
private enum enumMixinStr_taskSCHEDULER_NOT_STARTED = `enum taskSCHEDULER_NOT_STARTED = ( cast( BaseType_t ) 1 );`;
static if(is(typeof({ mixin(enumMixinStr_taskSCHEDULER_NOT_STARTED); }))) {
mixin(enumMixinStr_taskSCHEDULER_NOT_STARTED);
}
}
static if(!is(typeof(taskSCHEDULER_RUNNING))) {
private enum enumMixinStr_taskSCHEDULER_RUNNING = `enum taskSCHEDULER_RUNNING = ( cast( BaseType_t ) 2 );`;
static if(is(typeof({ mixin(enumMixinStr_taskSCHEDULER_RUNNING); }))) {
mixin(enumMixinStr_taskSCHEDULER_RUNNING);
}
}
static if(!is(typeof(tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE))) {
private enum enumMixinStr_tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE = `enum tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE = ( ( ( 0 == 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) ) || ( ( 0 == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) ) );`;
static if(is(typeof({ mixin(enumMixinStr_tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE); }))) {
mixin(enumMixinStr_tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE);
}
}
static if(!is(typeof(configRUN_FREERTOS_SECURE_ONLY))) {
private enum enumMixinStr_configRUN_FREERTOS_SECURE_ONLY = `enum configRUN_FREERTOS_SECURE_ONLY = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configRUN_FREERTOS_SECURE_ONLY); }))) {
mixin(enumMixinStr_configRUN_FREERTOS_SECURE_ONLY);
}
}
static if(!is(typeof(configENABLE_TRUSTZONE))) {
private enum enumMixinStr_configENABLE_TRUSTZONE = `enum configENABLE_TRUSTZONE = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configENABLE_TRUSTZONE); }))) {
mixin(enumMixinStr_configENABLE_TRUSTZONE);
}
}
static if(!is(typeof(configENABLE_FPU))) {
private enum enumMixinStr_configENABLE_FPU = `enum configENABLE_FPU = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configENABLE_FPU); }))) {
mixin(enumMixinStr_configENABLE_FPU);
}
}
static if(!is(typeof(configENABLE_MPU))) {
private enum enumMixinStr_configENABLE_MPU = `enum configENABLE_MPU = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configENABLE_MPU); }))) {
mixin(enumMixinStr_configENABLE_MPU);
}
}
static if(!is(typeof(configUSE_TASK_FPU_SUPPORT))) {
private enum enumMixinStr_configUSE_TASK_FPU_SUPPORT = `enum configUSE_TASK_FPU_SUPPORT = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TASK_FPU_SUPPORT); }))) {
mixin(enumMixinStr_configUSE_TASK_FPU_SUPPORT);
}
}
static if(!is(typeof(pxContainer))) {
private enum enumMixinStr_pxContainer = `enum pxContainer = pvContainer;`;
static if(is(typeof({ mixin(enumMixinStr_pxContainer); }))) {
mixin(enumMixinStr_pxContainer);
}
}
static if(!is(typeof(xList))) {
private enum enumMixinStr_xList = `enum xList = List_t;`;
static if(is(typeof({ mixin(enumMixinStr_xList); }))) {
mixin(enumMixinStr_xList);
}
}
static if(!is(typeof(xListItem))) {
private enum enumMixinStr_xListItem = `enum xListItem = ListItem_t;`;
static if(is(typeof({ mixin(enumMixinStr_xListItem); }))) {
mixin(enumMixinStr_xListItem);
}
}
static if(!is(typeof(pdTASK_CODE))) {
private enum enumMixinStr_pdTASK_CODE = `enum pdTASK_CODE = TaskFunction_t;`;
static if(is(typeof({ mixin(enumMixinStr_pdTASK_CODE); }))) {
mixin(enumMixinStr_pdTASK_CODE);
}
}
static if(!is(typeof(tmrTIMER_CALLBACK))) {
private enum enumMixinStr_tmrTIMER_CALLBACK = `enum tmrTIMER_CALLBACK = TimerCallbackFunction_t;`;
static if(is(typeof({ mixin(enumMixinStr_tmrTIMER_CALLBACK); }))) {
mixin(enumMixinStr_tmrTIMER_CALLBACK);
}
}
static if(!is(typeof(xTaskGetIdleRunTimeCounter))) {
private enum enumMixinStr_xTaskGetIdleRunTimeCounter = `enum xTaskGetIdleRunTimeCounter = ulTaskGetIdleRunTimeCounter;`;
static if(is(typeof({ mixin(enumMixinStr_xTaskGetIdleRunTimeCounter); }))) {
mixin(enumMixinStr_xTaskGetIdleRunTimeCounter);
}
}
static if(!is(typeof(vTaskGetTaskInfo))) {
private enum enumMixinStr_vTaskGetTaskInfo = `enum vTaskGetTaskInfo = vTaskGetInfo;`;
static if(is(typeof({ mixin(enumMixinStr_vTaskGetTaskInfo); }))) {
mixin(enumMixinStr_vTaskGetTaskInfo);
}
}
static if(!is(typeof(pcQueueGetQueueName))) {
private enum enumMixinStr_pcQueueGetQueueName = `enum pcQueueGetQueueName = pcQueueGetName;`;
static if(is(typeof({ mixin(enumMixinStr_pcQueueGetQueueName); }))) {
mixin(enumMixinStr_pcQueueGetQueueName);
}
}
static if(!is(typeof(pcTimerGetTimerName))) {
private enum enumMixinStr_pcTimerGetTimerName = `enum pcTimerGetTimerName = pcTimerGetName;`;
static if(is(typeof({ mixin(enumMixinStr_pcTimerGetTimerName); }))) {
mixin(enumMixinStr_pcTimerGetTimerName);
}
}
static if(!is(typeof(pcTaskGetTaskName))) {
private enum enumMixinStr_pcTaskGetTaskName = `enum pcTaskGetTaskName = pcTaskGetName;`;
static if(is(typeof({ mixin(enumMixinStr_pcTaskGetTaskName); }))) {
mixin(enumMixinStr_pcTaskGetTaskName);
}
}
static if(!is(typeof(portTICK_RATE_MS))) {
private enum enumMixinStr_portTICK_RATE_MS = `enum portTICK_RATE_MS = portTICK_PERIOD_MS;`;
static if(is(typeof({ mixin(enumMixinStr_portTICK_RATE_MS); }))) {
mixin(enumMixinStr_portTICK_RATE_MS);
}
}
static if(!is(typeof(pdTASK_HOOK_CODE))) {
private enum enumMixinStr_pdTASK_HOOK_CODE = `enum pdTASK_HOOK_CODE = TaskHookFunction_t;`;
static if(is(typeof({ mixin(enumMixinStr_pdTASK_HOOK_CODE); }))) {
mixin(enumMixinStr_pdTASK_HOOK_CODE);
}
}
static if(!is(typeof(xCoRoutineHandle))) {
private enum enumMixinStr_xCoRoutineHandle = `enum xCoRoutineHandle = CoRoutineHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xCoRoutineHandle); }))) {
mixin(enumMixinStr_xCoRoutineHandle);
}
}
static if(!is(typeof(xTimerHandle))) {
private enum enumMixinStr_xTimerHandle = `enum xTimerHandle = TimerHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xTimerHandle); }))) {
mixin(enumMixinStr_xTimerHandle);
}
}
static if(!is(typeof(xTaskStatusType))) {
private enum enumMixinStr_xTaskStatusType = `enum xTaskStatusType = TaskStatus_t;`;
static if(is(typeof({ mixin(enumMixinStr_xTaskStatusType); }))) {
mixin(enumMixinStr_xTaskStatusType);
}
}
static if(!is(typeof(xTaskParameters))) {
private enum enumMixinStr_xTaskParameters = `enum xTaskParameters = TaskParameters_t;`;
static if(is(typeof({ mixin(enumMixinStr_xTaskParameters); }))) {
mixin(enumMixinStr_xTaskParameters);
}
}
static if(!is(typeof(xMemoryRegion))) {
private enum enumMixinStr_xMemoryRegion = `enum xMemoryRegion = MemoryRegion_t;`;
static if(is(typeof({ mixin(enumMixinStr_xMemoryRegion); }))) {
mixin(enumMixinStr_xMemoryRegion);
}
}
static if(!is(typeof(xTimeOutType))) {
private enum enumMixinStr_xTimeOutType = `enum xTimeOutType = TimeOut_t;`;
static if(is(typeof({ mixin(enumMixinStr_xTimeOutType); }))) {
mixin(enumMixinStr_xTimeOutType);
}
}
static if(!is(typeof(xQueueSetMemberHandle))) {
private enum enumMixinStr_xQueueSetMemberHandle = `enum xQueueSetMemberHandle = QueueSetMemberHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xQueueSetMemberHandle); }))) {
mixin(enumMixinStr_xQueueSetMemberHandle);
}
}
static if(!is(typeof(xQueueSetHandle))) {
private enum enumMixinStr_xQueueSetHandle = `enum xQueueSetHandle = QueueSetHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xQueueSetHandle); }))) {
mixin(enumMixinStr_xQueueSetHandle);
}
}
static if(!is(typeof(xSemaphoreHandle))) {
private enum enumMixinStr_xSemaphoreHandle = `enum xSemaphoreHandle = SemaphoreHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xSemaphoreHandle); }))) {
mixin(enumMixinStr_xSemaphoreHandle);
}
}
static if(!is(typeof(xQueueHandle))) {
private enum enumMixinStr_xQueueHandle = `enum xQueueHandle = QueueHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xQueueHandle); }))) {
mixin(enumMixinStr_xQueueHandle);
}
}
static if(!is(typeof(xTaskHandle))) {
private enum enumMixinStr_xTaskHandle = `enum xTaskHandle = TaskHandle_t;`;
static if(is(typeof({ mixin(enumMixinStr_xTaskHandle); }))) {
mixin(enumMixinStr_xTaskHandle);
}
}
static if(!is(typeof(portTickType))) {
private enum enumMixinStr_portTickType = `enum portTickType = TickType_t;`;
static if(is(typeof({ mixin(enumMixinStr_portTickType); }))) {
mixin(enumMixinStr_portTickType);
}
}
static if(!is(typeof(eTaskStateGet))) {
private enum enumMixinStr_eTaskStateGet = `enum eTaskStateGet = eTaskGetState;`;
static if(is(typeof({ mixin(enumMixinStr_eTaskStateGet); }))) {
mixin(enumMixinStr_eTaskStateGet);
}
}
static if(!is(typeof(configENABLE_BACKWARD_COMPATIBILITY))) {
private enum enumMixinStr_configENABLE_BACKWARD_COMPATIBILITY = `enum configENABLE_BACKWARD_COMPATIBILITY = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configENABLE_BACKWARD_COMPATIBILITY); }))) {
mixin(enumMixinStr_configENABLE_BACKWARD_COMPATIBILITY);
}
}
static if(!is(typeof(configINITIAL_TICK_COUNT))) {
private enum enumMixinStr_configINITIAL_TICK_COUNT = `enum configINITIAL_TICK_COUNT = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configINITIAL_TICK_COUNT); }))) {
mixin(enumMixinStr_configINITIAL_TICK_COUNT);
}
}
static if(!is(typeof(configMESSAGE_BUFFER_LENGTH_TYPE))) {
private enum enumMixinStr_configMESSAGE_BUFFER_LENGTH_TYPE = `enum configMESSAGE_BUFFER_LENGTH_TYPE = size_t;`;
static if(is(typeof({ mixin(enumMixinStr_configMESSAGE_BUFFER_LENGTH_TYPE); }))) {
mixin(enumMixinStr_configMESSAGE_BUFFER_LENGTH_TYPE);
}
}
static if(!is(typeof(configSTACK_DEPTH_TYPE))) {
private enum enumMixinStr_configSTACK_DEPTH_TYPE = `enum configSTACK_DEPTH_TYPE = uint16_t;`;
static if(is(typeof({ mixin(enumMixinStr_configSTACK_DEPTH_TYPE); }))) {
mixin(enumMixinStr_configSTACK_DEPTH_TYPE);
}
}
static if(!is(typeof(configUSE_POSIX_ERRNO))) {
private enum enumMixinStr_configUSE_POSIX_ERRNO = `enum configUSE_POSIX_ERRNO = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_POSIX_ERRNO); }))) {
mixin(enumMixinStr_configUSE_POSIX_ERRNO);
}
}
static if(!is(typeof(configTASK_NOTIFICATION_ARRAY_ENTRIES))) {
private enum enumMixinStr_configTASK_NOTIFICATION_ARRAY_ENTRIES = `enum configTASK_NOTIFICATION_ARRAY_ENTRIES = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configTASK_NOTIFICATION_ARRAY_ENTRIES); }))) {
mixin(enumMixinStr_configTASK_NOTIFICATION_ARRAY_ENTRIES);
}
}
static if(!is(typeof(configUSE_TASK_NOTIFICATIONS))) {
private enum enumMixinStr_configUSE_TASK_NOTIFICATIONS = `enum configUSE_TASK_NOTIFICATIONS = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TASK_NOTIFICATIONS); }))) {
mixin(enumMixinStr_configUSE_TASK_NOTIFICATIONS);
}
}
static if(!is(typeof(configAPPLICATION_ALLOCATED_HEAP))) {
private enum enumMixinStr_configAPPLICATION_ALLOCATED_HEAP = `enum configAPPLICATION_ALLOCATED_HEAP = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configAPPLICATION_ALLOCATED_HEAP); }))) {
mixin(enumMixinStr_configAPPLICATION_ALLOCATED_HEAP);
}
}
static if(!is(typeof(configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS))) {
private enum enumMixinStr_configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS = `enum configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS); }))) {
mixin(enumMixinStr_configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS);
}
}
static if(!is(typeof(configUSE_TIME_SLICING))) {
private enum enumMixinStr_configUSE_TIME_SLICING = `enum configUSE_TIME_SLICING = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TIME_SLICING); }))) {
mixin(enumMixinStr_configUSE_TIME_SLICING);
}
}
static if(!is(typeof(configUSE_QUEUE_SETS))) {
private enum enumMixinStr_configUSE_QUEUE_SETS = `enum configUSE_QUEUE_SETS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_QUEUE_SETS); }))) {
mixin(enumMixinStr_configUSE_QUEUE_SETS);
}
}
static if(!is(typeof(configUSE_TICKLESS_IDLE))) {
private enum enumMixinStr_configUSE_TICKLESS_IDLE = `enum configUSE_TICKLESS_IDLE = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TICKLESS_IDLE); }))) {
mixin(enumMixinStr_configUSE_TICKLESS_IDLE);
}
}
static if(!is(typeof(configEXPECTED_IDLE_TIME_BEFORE_SLEEP))) {
private enum enumMixinStr_configEXPECTED_IDLE_TIME_BEFORE_SLEEP = `enum configEXPECTED_IDLE_TIME_BEFORE_SLEEP = 2;`;
static if(is(typeof({ mixin(enumMixinStr_configEXPECTED_IDLE_TIME_BEFORE_SLEEP); }))) {
mixin(enumMixinStr_configEXPECTED_IDLE_TIME_BEFORE_SLEEP);
}
}
static if(!is(typeof(portYIELD_WITHIN_API))) {
private enum enumMixinStr_portYIELD_WITHIN_API = `enum portYIELD_WITHIN_API = portYIELD;`;
static if(is(typeof({ mixin(enumMixinStr_portYIELD_WITHIN_API); }))) {
mixin(enumMixinStr_portYIELD_WITHIN_API);
}
}
static if(!is(typeof(portPRIVILEGE_BIT))) {
private enum enumMixinStr_portPRIVILEGE_BIT = `enum portPRIVILEGE_BIT = ( cast( UBaseType_t ) 0x00 );`;
static if(is(typeof({ mixin(enumMixinStr_portPRIVILEGE_BIT); }))) {
mixin(enumMixinStr_portPRIVILEGE_BIT);
}
}
static if(!is(typeof(configUSE_MALLOC_FAILED_HOOK))) {
private enum enumMixinStr_configUSE_MALLOC_FAILED_HOOK = `enum configUSE_MALLOC_FAILED_HOOK = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_MALLOC_FAILED_HOOK); }))) {
mixin(enumMixinStr_configUSE_MALLOC_FAILED_HOOK);
}
}
static if(!is(typeof(configGENERATE_RUN_TIME_STATS))) {
private enum enumMixinStr_configGENERATE_RUN_TIME_STATS = `enum configGENERATE_RUN_TIME_STATS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configGENERATE_RUN_TIME_STATS); }))) {
mixin(enumMixinStr_configGENERATE_RUN_TIME_STATS);
}
}
static if(!is(typeof(traceQUEUE_SET_SEND))) {
private enum enumMixinStr_traceQUEUE_SET_SEND = `enum traceQUEUE_SET_SEND = traceQUEUE_SEND;`;
static if(is(typeof({ mixin(enumMixinStr_traceQUEUE_SET_SEND); }))) {
mixin(enumMixinStr_traceQUEUE_SET_SEND);
}
}
static if(!is(typeof(tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR))) {
private enum enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR = `enum tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR = ( cast( BaseType_t ) - 2 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR); }))) {
mixin(enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR);
}
}
static if(!is(typeof(tmrCOMMAND_EXECUTE_CALLBACK))) {
private enum enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK = `enum tmrCOMMAND_EXECUTE_CALLBACK = ( cast( BaseType_t ) - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK); }))) {
mixin(enumMixinStr_tmrCOMMAND_EXECUTE_CALLBACK);
}
}
static if(!is(typeof(tmrCOMMAND_START_DONT_TRACE))) {
private enum enumMixinStr_tmrCOMMAND_START_DONT_TRACE = `enum tmrCOMMAND_START_DONT_TRACE = ( cast( BaseType_t ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_START_DONT_TRACE); }))) {
mixin(enumMixinStr_tmrCOMMAND_START_DONT_TRACE);
}
}
static if(!is(typeof(tmrCOMMAND_START))) {
private enum enumMixinStr_tmrCOMMAND_START = `enum tmrCOMMAND_START = ( cast( BaseType_t ) 1 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_START); }))) {
mixin(enumMixinStr_tmrCOMMAND_START);
}
}
static if(!is(typeof(tmrCOMMAND_RESET))) {
private enum enumMixinStr_tmrCOMMAND_RESET = `enum tmrCOMMAND_RESET = ( cast( BaseType_t ) 2 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_RESET); }))) {
mixin(enumMixinStr_tmrCOMMAND_RESET);
}
}
static if(!is(typeof(tmrCOMMAND_STOP))) {
private enum enumMixinStr_tmrCOMMAND_STOP = `enum tmrCOMMAND_STOP = ( cast( BaseType_t ) 3 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_STOP); }))) {
mixin(enumMixinStr_tmrCOMMAND_STOP);
}
}
static if(!is(typeof(tmrCOMMAND_CHANGE_PERIOD))) {
private enum enumMixinStr_tmrCOMMAND_CHANGE_PERIOD = `enum tmrCOMMAND_CHANGE_PERIOD = ( cast( BaseType_t ) 4 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_CHANGE_PERIOD); }))) {
mixin(enumMixinStr_tmrCOMMAND_CHANGE_PERIOD);
}
}
static if(!is(typeof(tmrCOMMAND_DELETE))) {
private enum enumMixinStr_tmrCOMMAND_DELETE = `enum tmrCOMMAND_DELETE = ( cast( BaseType_t ) 5 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_DELETE); }))) {
mixin(enumMixinStr_tmrCOMMAND_DELETE);
}
}
static if(!is(typeof(tmrFIRST_FROM_ISR_COMMAND))) {
private enum enumMixinStr_tmrFIRST_FROM_ISR_COMMAND = `enum tmrFIRST_FROM_ISR_COMMAND = ( cast( BaseType_t ) 6 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrFIRST_FROM_ISR_COMMAND); }))) {
mixin(enumMixinStr_tmrFIRST_FROM_ISR_COMMAND);
}
}
static if(!is(typeof(tmrCOMMAND_START_FROM_ISR))) {
private enum enumMixinStr_tmrCOMMAND_START_FROM_ISR = `enum tmrCOMMAND_START_FROM_ISR = ( cast( BaseType_t ) 6 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_START_FROM_ISR); }))) {
mixin(enumMixinStr_tmrCOMMAND_START_FROM_ISR);
}
}
static if(!is(typeof(tmrCOMMAND_RESET_FROM_ISR))) {
private enum enumMixinStr_tmrCOMMAND_RESET_FROM_ISR = `enum tmrCOMMAND_RESET_FROM_ISR = ( cast( BaseType_t ) 7 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_RESET_FROM_ISR); }))) {
mixin(enumMixinStr_tmrCOMMAND_RESET_FROM_ISR);
}
}
static if(!is(typeof(tmrCOMMAND_STOP_FROM_ISR))) {
private enum enumMixinStr_tmrCOMMAND_STOP_FROM_ISR = `enum tmrCOMMAND_STOP_FROM_ISR = ( cast( BaseType_t ) 8 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_STOP_FROM_ISR); }))) {
mixin(enumMixinStr_tmrCOMMAND_STOP_FROM_ISR);
}
}
static if(!is(typeof(tmrCOMMAND_CHANGE_PERIOD_FROM_ISR))) {
private enum enumMixinStr_tmrCOMMAND_CHANGE_PERIOD_FROM_ISR = `enum tmrCOMMAND_CHANGE_PERIOD_FROM_ISR = ( cast( BaseType_t ) 9 );`;
static if(is(typeof({ mixin(enumMixinStr_tmrCOMMAND_CHANGE_PERIOD_FROM_ISR); }))) {
mixin(enumMixinStr_tmrCOMMAND_CHANGE_PERIOD_FROM_ISR);
}
}
static if(!is(typeof(configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H))) {
private enum enumMixinStr_configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H = `enum configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H); }))) {
mixin(enumMixinStr_configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H);
}
}
static if(!is(typeof(configRECORD_STACK_HIGH_ADDRESS))) {
private enum enumMixinStr_configRECORD_STACK_HIGH_ADDRESS = `enum configRECORD_STACK_HIGH_ADDRESS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configRECORD_STACK_HIGH_ADDRESS); }))) {
mixin(enumMixinStr_configRECORD_STACK_HIGH_ADDRESS);
}
}
static if(!is(typeof(portPOINTER_SIZE_TYPE))) {
private enum enumMixinStr_portPOINTER_SIZE_TYPE = `enum portPOINTER_SIZE_TYPE = uint32_t;`;
static if(is(typeof({ mixin(enumMixinStr_portPOINTER_SIZE_TYPE); }))) {
mixin(enumMixinStr_portPOINTER_SIZE_TYPE);
}
}
static if(!is(typeof(configPRECONDITION_DEFINED))) {
private enum enumMixinStr_configPRECONDITION_DEFINED = `enum configPRECONDITION_DEFINED = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configPRECONDITION_DEFINED); }))) {
mixin(enumMixinStr_configPRECONDITION_DEFINED);
}
}
static if(!is(typeof(configASSERT_DEFINED))) {
private enum enumMixinStr_configASSERT_DEFINED = `enum configASSERT_DEFINED = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configASSERT_DEFINED); }))) {
mixin(enumMixinStr_configASSERT_DEFINED);
}
}
static if(!is(typeof(configIDLE_SHOULD_YIELD))) {
private enum enumMixinStr_configIDLE_SHOULD_YIELD = `enum configIDLE_SHOULD_YIELD = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configIDLE_SHOULD_YIELD); }))) {
mixin(enumMixinStr_configIDLE_SHOULD_YIELD);
}
}
static if(!is(typeof(portCRITICAL_NESTING_IN_TCB))) {
private enum enumMixinStr_portCRITICAL_NESTING_IN_TCB = `enum portCRITICAL_NESTING_IN_TCB = 0;`;
static if(is(typeof({ mixin(enumMixinStr_portCRITICAL_NESTING_IN_TCB); }))) {
mixin(enumMixinStr_portCRITICAL_NESTING_IN_TCB);
}
}
static if(!is(typeof(configUSE_ALTERNATIVE_API))) {
private enum enumMixinStr_configUSE_ALTERNATIVE_API = `enum configUSE_ALTERNATIVE_API = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_ALTERNATIVE_API); }))) {
mixin(enumMixinStr_configUSE_ALTERNATIVE_API);
}
}
static if(!is(typeof(configUSE_TIMERS))) {
private enum enumMixinStr_configUSE_TIMERS = `enum configUSE_TIMERS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TIMERS); }))) {
mixin(enumMixinStr_configUSE_TIMERS);
}
}
static if(!is(typeof(configUSE_APPLICATION_TASK_TAG))) {
private enum enumMixinStr_configUSE_APPLICATION_TASK_TAG = `enum configUSE_APPLICATION_TASK_TAG = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_APPLICATION_TASK_TAG); }))) {
mixin(enumMixinStr_configUSE_APPLICATION_TASK_TAG);
}
}
static if(!is(typeof(configUSE_DAEMON_TASK_STARTUP_HOOK))) {
private enum enumMixinStr_configUSE_DAEMON_TASK_STARTUP_HOOK = `enum configUSE_DAEMON_TASK_STARTUP_HOOK = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_DAEMON_TASK_STARTUP_HOOK); }))) {
mixin(enumMixinStr_configUSE_DAEMON_TASK_STARTUP_HOOK);
}
}
static if(!is(typeof(INCLUDE_xTaskGetCurrentTaskHandle))) {
private enum enumMixinStr_INCLUDE_xTaskGetCurrentTaskHandle = `enum INCLUDE_xTaskGetCurrentTaskHandle = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskGetCurrentTaskHandle); }))) {
mixin(enumMixinStr_INCLUDE_xTaskGetCurrentTaskHandle);
}
}
static if(!is(typeof(INCLUDE_xTimerPendFunctionCall))) {
private enum enumMixinStr_INCLUDE_xTimerPendFunctionCall = `enum INCLUDE_xTimerPendFunctionCall = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTimerPendFunctionCall); }))) {
mixin(enumMixinStr_INCLUDE_xTimerPendFunctionCall);
}
}
static if(!is(typeof(INCLUDE_xTaskResumeFromISR))) {
private enum enumMixinStr_INCLUDE_xTaskResumeFromISR = `enum INCLUDE_xTaskResumeFromISR = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskResumeFromISR); }))) {
mixin(enumMixinStr_INCLUDE_xTaskResumeFromISR);
}
}
static if(!is(typeof(INCLUDE_eTaskGetState))) {
private enum enumMixinStr_INCLUDE_eTaskGetState = `enum INCLUDE_eTaskGetState = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_eTaskGetState); }))) {
mixin(enumMixinStr_INCLUDE_eTaskGetState);
}
}
static if(!is(typeof(INCLUDE_uxTaskGetStackHighWaterMark2))) {
private enum enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark2 = `enum INCLUDE_uxTaskGetStackHighWaterMark2 = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark2); }))) {
mixin(enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark2);
}
}
static if(!is(typeof(INCLUDE_uxTaskGetStackHighWaterMark))) {
private enum enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark = `enum INCLUDE_uxTaskGetStackHighWaterMark = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark); }))) {
mixin(enumMixinStr_INCLUDE_uxTaskGetStackHighWaterMark);
}
}
static if(!is(typeof(INCLUDE_xTaskGetHandle))) {
private enum enumMixinStr_INCLUDE_xTaskGetHandle = `enum INCLUDE_xTaskGetHandle = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskGetHandle); }))) {
mixin(enumMixinStr_INCLUDE_xTaskGetHandle);
}
}
static if(!is(typeof(INCLUDE_xSemaphoreGetMutexHolder))) {
private enum enumMixinStr_INCLUDE_xSemaphoreGetMutexHolder = `enum INCLUDE_xSemaphoreGetMutexHolder = INCLUDE_xQueueGetMutexHolder;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xSemaphoreGetMutexHolder); }))) {
mixin(enumMixinStr_INCLUDE_xSemaphoreGetMutexHolder);
}
}
static if(!is(typeof(INCLUDE_xQueueGetMutexHolder))) {
private enum enumMixinStr_INCLUDE_xQueueGetMutexHolder = `enum INCLUDE_xQueueGetMutexHolder = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xQueueGetMutexHolder); }))) {
mixin(enumMixinStr_INCLUDE_xQueueGetMutexHolder);
}
}
static if(!is(typeof(INCLUDE_xTaskAbortDelay))) {
private enum enumMixinStr_INCLUDE_xTaskAbortDelay = `enum INCLUDE_xTaskAbortDelay = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskAbortDelay); }))) {
mixin(enumMixinStr_INCLUDE_xTaskAbortDelay);
}
}
static if(!is(typeof(portCHAR))) {
private enum enumMixinStr_portCHAR = `enum portCHAR = char;`;
static if(is(typeof({ mixin(enumMixinStr_portCHAR); }))) {
mixin(enumMixinStr_portCHAR);
}
}
static if(!is(typeof(portFLOAT))) {
private enum enumMixinStr_portFLOAT = `enum portFLOAT = float;`;
static if(is(typeof({ mixin(enumMixinStr_portFLOAT); }))) {
mixin(enumMixinStr_portFLOAT);
}
}
static if(!is(typeof(portDOUBLE))) {
private enum enumMixinStr_portDOUBLE = `enum portDOUBLE = double;`;
static if(is(typeof({ mixin(enumMixinStr_portDOUBLE); }))) {
mixin(enumMixinStr_portDOUBLE);
}
}
static if(!is(typeof(portLONG))) {
private enum enumMixinStr_portLONG = `enum portLONG = long;`;
static if(is(typeof({ mixin(enumMixinStr_portLONG); }))) {
mixin(enumMixinStr_portLONG);
}
}
static if(!is(typeof(portSHORT))) {
private enum enumMixinStr_portSHORT = `enum portSHORT = short;`;
static if(is(typeof({ mixin(enumMixinStr_portSHORT); }))) {
mixin(enumMixinStr_portSHORT);
}
}
static if(!is(typeof(portSTACK_TYPE))) {
private enum enumMixinStr_portSTACK_TYPE = `enum portSTACK_TYPE = uint32_t;`;
static if(is(typeof({ mixin(enumMixinStr_portSTACK_TYPE); }))) {
mixin(enumMixinStr_portSTACK_TYPE);
}
}
static if(!is(typeof(portBASE_TYPE))) {
private enum enumMixinStr_portBASE_TYPE = `enum portBASE_TYPE = long;`;
static if(is(typeof({ mixin(enumMixinStr_portBASE_TYPE); }))) {
mixin(enumMixinStr_portBASE_TYPE);
}
}
static if(!is(typeof(INCLUDE_xTaskGetIdleTaskHandle))) {
private enum enumMixinStr_INCLUDE_xTaskGetIdleTaskHandle = `enum INCLUDE_xTaskGetIdleTaskHandle = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskGetIdleTaskHandle); }))) {
mixin(enumMixinStr_INCLUDE_xTaskGetIdleTaskHandle);
}
}
static if(!is(typeof(configUSE_NEWLIB_REENTRANT))) {
private enum enumMixinStr_configUSE_NEWLIB_REENTRANT = `enum configUSE_NEWLIB_REENTRANT = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_NEWLIB_REENTRANT); }))) {
mixin(enumMixinStr_configUSE_NEWLIB_REENTRANT);
}
}
static if(!is(typeof(configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY))) {
private enum enumMixinStr_configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY = `enum configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY); }))) {
mixin(enumMixinStr_configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY);
}
}
static if(!is(typeof(configMAX_SYSCALL_INTERRUPT_PRIORITY))) {
private enum enumMixinStr_configMAX_SYSCALL_INTERRUPT_PRIORITY = `enum configMAX_SYSCALL_INTERRUPT_PRIORITY = ( configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << ( 8 - configPRIO_BITS ) );`;
static if(is(typeof({ mixin(enumMixinStr_configMAX_SYSCALL_INTERRUPT_PRIORITY); }))) {
mixin(enumMixinStr_configMAX_SYSCALL_INTERRUPT_PRIORITY);
}
}
static if(!is(typeof(portMAX_DELAY))) {
private enum enumMixinStr_portMAX_DELAY = `enum portMAX_DELAY = cast( TickType_t ) 0xffffffffUL;`;
static if(is(typeof({ mixin(enumMixinStr_portMAX_DELAY); }))) {
mixin(enumMixinStr_portMAX_DELAY);
}
}
static if(!is(typeof(portTICK_TYPE_IS_ATOMIC))) {
private enum enumMixinStr_portTICK_TYPE_IS_ATOMIC = `enum portTICK_TYPE_IS_ATOMIC = 1;`;
static if(is(typeof({ mixin(enumMixinStr_portTICK_TYPE_IS_ATOMIC); }))) {
mixin(enumMixinStr_portTICK_TYPE_IS_ATOMIC);
}
}
static if(!is(typeof(portSTACK_GROWTH))) {
private enum enumMixinStr_portSTACK_GROWTH = `enum portSTACK_GROWTH = ( - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_portSTACK_GROWTH); }))) {
mixin(enumMixinStr_portSTACK_GROWTH);
}
}
static if(!is(typeof(portTICK_PERIOD_MS))) {
private enum enumMixinStr_portTICK_PERIOD_MS = `enum portTICK_PERIOD_MS = ( cast( TickType_t ) 1000 / configTICK_RATE_HZ );`;
static if(is(typeof({ mixin(enumMixinStr_portTICK_PERIOD_MS); }))) {
mixin(enumMixinStr_portTICK_PERIOD_MS);
}
}
static if(!is(typeof(portBYTE_ALIGNMENT))) {
private enum enumMixinStr_portBYTE_ALIGNMENT = `enum portBYTE_ALIGNMENT = 8;`;
static if(is(typeof({ mixin(enumMixinStr_portBYTE_ALIGNMENT); }))) {
mixin(enumMixinStr_portBYTE_ALIGNMENT);
}
}
static if(!is(typeof(portDONT_DISCARD))) {
private enum enumMixinStr_portDONT_DISCARD = `enum portDONT_DISCARD = __attribute__ ( ( used ) );`;
static if(is(typeof({ mixin(enumMixinStr_portDONT_DISCARD); }))) {
mixin(enumMixinStr_portDONT_DISCARD);
}
}
static if(!is(typeof(portNVIC_INT_CTRL_REG))) {
private enum enumMixinStr_portNVIC_INT_CTRL_REG = `enum portNVIC_INT_CTRL_REG = ( * ( ( volatile uint32_t * ) 0xe000ed04 ) );`;
static if(is(typeof({ mixin(enumMixinStr_portNVIC_INT_CTRL_REG); }))) {
mixin(enumMixinStr_portNVIC_INT_CTRL_REG);
}
}
static if(!is(typeof(portNVIC_PENDSVSET_BIT))) {
private enum enumMixinStr_portNVIC_PENDSVSET_BIT = `enum portNVIC_PENDSVSET_BIT = ( 1UL << 28UL );`;
static if(is(typeof({ mixin(enumMixinStr_portNVIC_PENDSVSET_BIT); }))) {
mixin(enumMixinStr_portNVIC_PENDSVSET_BIT);
}
}
static if(!is(typeof(configKERNEL_INTERRUPT_PRIORITY))) {
private enum enumMixinStr_configKERNEL_INTERRUPT_PRIORITY = `enum configKERNEL_INTERRUPT_PRIORITY = ( configLIBRARY_LOWEST_INTERRUPT_PRIORITY << ( 8 - configPRIO_BITS ) );`;
static if(is(typeof({ mixin(enumMixinStr_configKERNEL_INTERRUPT_PRIORITY); }))) {
mixin(enumMixinStr_configKERNEL_INTERRUPT_PRIORITY);
}
}
static if(!is(typeof(configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY))) {
private enum enumMixinStr_configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY = `enum configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY = 5;`;
static if(is(typeof({ mixin(enumMixinStr_configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY); }))) {
mixin(enumMixinStr_configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY);
}
}
static if(!is(typeof(configLIBRARY_LOWEST_INTERRUPT_PRIORITY))) {
private enum enumMixinStr_configLIBRARY_LOWEST_INTERRUPT_PRIORITY = `enum configLIBRARY_LOWEST_INTERRUPT_PRIORITY = 15;`;
static if(is(typeof({ mixin(enumMixinStr_configLIBRARY_LOWEST_INTERRUPT_PRIORITY); }))) {
mixin(enumMixinStr_configLIBRARY_LOWEST_INTERRUPT_PRIORITY);
}
}
static if(!is(typeof(configPRIO_BITS))) {
private enum enumMixinStr_configPRIO_BITS = `enum configPRIO_BITS = 4;`;
static if(is(typeof({ mixin(enumMixinStr_configPRIO_BITS); }))) {
mixin(enumMixinStr_configPRIO_BITS);
}
}
static if(!is(typeof(INCLUDE_xTaskGetSchedulerState))) {
private enum enumMixinStr_INCLUDE_xTaskGetSchedulerState = `enum INCLUDE_xTaskGetSchedulerState = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_xTaskGetSchedulerState); }))) {
mixin(enumMixinStr_INCLUDE_xTaskGetSchedulerState);
}
}
static if(!is(typeof(INCLUDE_vTaskDelay))) {
private enum enumMixinStr_INCLUDE_vTaskDelay = `enum INCLUDE_vTaskDelay = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_vTaskDelay); }))) {
mixin(enumMixinStr_INCLUDE_vTaskDelay);
}
}
static if(!is(typeof(INCLUDE_vTaskDelayUntil))) {
private enum enumMixinStr_INCLUDE_vTaskDelayUntil = `enum INCLUDE_vTaskDelayUntil = 0;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_vTaskDelayUntil); }))) {
mixin(enumMixinStr_INCLUDE_vTaskDelayUntil);
}
}
static if(!is(typeof(INCLUDE_vTaskSuspend))) {
private enum enumMixinStr_INCLUDE_vTaskSuspend = `enum INCLUDE_vTaskSuspend = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_vTaskSuspend); }))) {
mixin(enumMixinStr_INCLUDE_vTaskSuspend);
}
}
static if(!is(typeof(INCLUDE_vTaskDelete))) {
private enum enumMixinStr_INCLUDE_vTaskDelete = `enum INCLUDE_vTaskDelete = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_vTaskDelete); }))) {
mixin(enumMixinStr_INCLUDE_vTaskDelete);
}
}
static if(!is(typeof(portINLINE))) {
private enum enumMixinStr_portINLINE = `enum portINLINE = __inline;`;
static if(is(typeof({ mixin(enumMixinStr_portINLINE); }))) {
mixin(enumMixinStr_portINLINE);
}
}
static if(!is(typeof(portFORCE_INLINE))) {
private enum enumMixinStr_portFORCE_INLINE = `enum portFORCE_INLINE = inline __attribute__ ( ( always_inline ) );`;
static if(is(typeof({ mixin(enumMixinStr_portFORCE_INLINE); }))) {
mixin(enumMixinStr_portFORCE_INLINE);
}
}
static if(!is(typeof(INCLUDE_uxTaskPriorityGet))) {
private enum enumMixinStr_INCLUDE_uxTaskPriorityGet = `enum INCLUDE_uxTaskPriorityGet = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_uxTaskPriorityGet); }))) {
mixin(enumMixinStr_INCLUDE_uxTaskPriorityGet);
}
}
static if(!is(typeof(INCLUDE_vTaskPrioritySet))) {
private enum enumMixinStr_INCLUDE_vTaskPrioritySet = `enum INCLUDE_vTaskPrioritySet = 1;`;
static if(is(typeof({ mixin(enumMixinStr_INCLUDE_vTaskPrioritySet); }))) {
mixin(enumMixinStr_INCLUDE_vTaskPrioritySet);
}
}
static if(!is(typeof(configMAX_CO_ROUTINE_PRIORITIES))) {
private enum enumMixinStr_configMAX_CO_ROUTINE_PRIORITIES = `enum configMAX_CO_ROUTINE_PRIORITIES = ( 2 );`;
static if(is(typeof({ mixin(enumMixinStr_configMAX_CO_ROUTINE_PRIORITIES); }))) {
mixin(enumMixinStr_configMAX_CO_ROUTINE_PRIORITIES);
}
}
static if(!is(typeof(configUSE_CO_ROUTINES))) {
private enum enumMixinStr_configUSE_CO_ROUTINES = `enum configUSE_CO_ROUTINES = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_CO_ROUTINES); }))) {
mixin(enumMixinStr_configUSE_CO_ROUTINES);
}
}
static if(!is(typeof(configUSE_STATS_FORMATTING_FUNCTIONS))) {
private enum enumMixinStr_configUSE_STATS_FORMATTING_FUNCTIONS = `enum configUSE_STATS_FORMATTING_FUNCTIONS = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_STATS_FORMATTING_FUNCTIONS); }))) {
mixin(enumMixinStr_configUSE_STATS_FORMATTING_FUNCTIONS);
}
}
static if(!is(typeof(configUSE_TRACE_FACILITY))) {
private enum enumMixinStr_configUSE_TRACE_FACILITY = `enum configUSE_TRACE_FACILITY = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TRACE_FACILITY); }))) {
mixin(enumMixinStr_configUSE_TRACE_FACILITY);
}
}
static if(!is(typeof(configTASK_RETURN_ADDRESS))) {
private enum enumMixinStr_configTASK_RETURN_ADDRESS = `enum configTASK_RETURN_ADDRESS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configTASK_RETURN_ADDRESS); }))) {
mixin(enumMixinStr_configTASK_RETURN_ADDRESS);
}
}
static if(!is(typeof(configCHECK_FOR_STACK_OVERFLOW))) {
private enum enumMixinStr_configCHECK_FOR_STACK_OVERFLOW = `enum configCHECK_FOR_STACK_OVERFLOW = 2;`;
static if(is(typeof({ mixin(enumMixinStr_configCHECK_FOR_STACK_OVERFLOW); }))) {
mixin(enumMixinStr_configCHECK_FOR_STACK_OVERFLOW);
}
}
static if(!is(typeof(configNUM_THREAD_LOCAL_STORAGE_POINTERS))) {
private enum enumMixinStr_configNUM_THREAD_LOCAL_STORAGE_POINTERS = `enum configNUM_THREAD_LOCAL_STORAGE_POINTERS = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configNUM_THREAD_LOCAL_STORAGE_POINTERS); }))) {
mixin(enumMixinStr_configNUM_THREAD_LOCAL_STORAGE_POINTERS);
}
}
static if(!is(typeof(configUSE_PORT_OPTIMISED_TASK_SELECTION))) {
private enum enumMixinStr_configUSE_PORT_OPTIMISED_TASK_SELECTION = `enum configUSE_PORT_OPTIMISED_TASK_SELECTION = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_PORT_OPTIMISED_TASK_SELECTION); }))) {
mixin(enumMixinStr_configUSE_PORT_OPTIMISED_TASK_SELECTION);
}
}
static if(!is(typeof(configQUEUE_REGISTRY_SIZE))) {
private enum enumMixinStr_configQUEUE_REGISTRY_SIZE = `enum configQUEUE_REGISTRY_SIZE = 8;`;
static if(is(typeof({ mixin(enumMixinStr_configQUEUE_REGISTRY_SIZE); }))) {
mixin(enumMixinStr_configQUEUE_REGISTRY_SIZE);
}
}
static if(!is(typeof(configUSE_COUNTING_SEMAPHORES))) {
private enum enumMixinStr_configUSE_COUNTING_SEMAPHORES = `enum configUSE_COUNTING_SEMAPHORES = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_COUNTING_SEMAPHORES); }))) {
mixin(enumMixinStr_configUSE_COUNTING_SEMAPHORES);
}
}
static if(!is(typeof(configUSE_RECURSIVE_MUTEXES))) {
private enum enumMixinStr_configUSE_RECURSIVE_MUTEXES = `enum configUSE_RECURSIVE_MUTEXES = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_RECURSIVE_MUTEXES); }))) {
mixin(enumMixinStr_configUSE_RECURSIVE_MUTEXES);
}
}
static if(!is(typeof(configUSE_MUTEXES))) {
private enum enumMixinStr_configUSE_MUTEXES = `enum configUSE_MUTEXES = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_MUTEXES); }))) {
mixin(enumMixinStr_configUSE_MUTEXES);
}
}
static if(!is(typeof(configUSE_16_BIT_TICKS))) {
private enum enumMixinStr_configUSE_16_BIT_TICKS = `enum configUSE_16_BIT_TICKS = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_16_BIT_TICKS); }))) {
mixin(enumMixinStr_configUSE_16_BIT_TICKS);
}
}
static if(!is(typeof(configMAX_TASK_NAME_LEN))) {
private enum enumMixinStr_configMAX_TASK_NAME_LEN = `enum configMAX_TASK_NAME_LEN = ( 16 );`;
static if(is(typeof({ mixin(enumMixinStr_configMAX_TASK_NAME_LEN); }))) {
mixin(enumMixinStr_configMAX_TASK_NAME_LEN);
}
}
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(configTOTAL_HEAP_SIZE))) {
private enum enumMixinStr_configTOTAL_HEAP_SIZE = `enum configTOTAL_HEAP_SIZE = ( cast( size_t ) 3072 );`;
static if(is(typeof({ mixin(enumMixinStr_configTOTAL_HEAP_SIZE); }))) {
mixin(enumMixinStr_configTOTAL_HEAP_SIZE);
}
}
static if(!is(typeof(configMINIMAL_STACK_SIZE))) {
private enum enumMixinStr_configMINIMAL_STACK_SIZE = `enum configMINIMAL_STACK_SIZE = ( cast( uint16_t ) 128 );`;
static if(is(typeof({ mixin(enumMixinStr_configMINIMAL_STACK_SIZE); }))) {
mixin(enumMixinStr_configMINIMAL_STACK_SIZE);
}
}
static if(!is(typeof(configMAX_PRIORITIES))) {
private enum enumMixinStr_configMAX_PRIORITIES = `enum configMAX_PRIORITIES = ( 7 );`;
static if(is(typeof({ mixin(enumMixinStr_configMAX_PRIORITIES); }))) {
mixin(enumMixinStr_configMAX_PRIORITIES);
}
}
static if(!is(typeof(configTICK_RATE_HZ))) {
private enum enumMixinStr_configTICK_RATE_HZ = `enum configTICK_RATE_HZ = ( cast( TickType_t ) 1000 );`;
static if(is(typeof({ mixin(enumMixinStr_configTICK_RATE_HZ); }))) {
mixin(enumMixinStr_configTICK_RATE_HZ);
}
}
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(configCPU_CLOCK_HZ))) {
private enum enumMixinStr_configCPU_CLOCK_HZ = `enum configCPU_CLOCK_HZ = ( 25000000 );`;
static if(is(typeof({ mixin(enumMixinStr_configCPU_CLOCK_HZ); }))) {
mixin(enumMixinStr_configCPU_CLOCK_HZ);
}
}
static if(!is(typeof(configUSE_TICK_HOOK))) {
private enum enumMixinStr_configUSE_TICK_HOOK = `enum configUSE_TICK_HOOK = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_TICK_HOOK); }))) {
mixin(enumMixinStr_configUSE_TICK_HOOK);
}
}
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(configUSE_IDLE_HOOK))) {
private enum enumMixinStr_configUSE_IDLE_HOOK = `enum configUSE_IDLE_HOOK = 0;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_IDLE_HOOK); }))) {
mixin(enumMixinStr_configUSE_IDLE_HOOK);
}
}
static if(!is(typeof(configSUPPORT_DYNAMIC_ALLOCATION))) {
private enum enumMixinStr_configSUPPORT_DYNAMIC_ALLOCATION = `enum configSUPPORT_DYNAMIC_ALLOCATION = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configSUPPORT_DYNAMIC_ALLOCATION); }))) {
mixin(enumMixinStr_configSUPPORT_DYNAMIC_ALLOCATION);
}
}
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(configSUPPORT_STATIC_ALLOCATION))) {
private enum enumMixinStr_configSUPPORT_STATIC_ALLOCATION = `enum configSUPPORT_STATIC_ALLOCATION = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configSUPPORT_STATIC_ALLOCATION); }))) {
mixin(enumMixinStr_configSUPPORT_STATIC_ALLOCATION);
}
}
static if(!is(typeof(configUSE_PREEMPTION))) {
private enum enumMixinStr_configUSE_PREEMPTION = `enum configUSE_PREEMPTION = 1;`;
static if(is(typeof({ mixin(enumMixinStr_configUSE_PREEMPTION); }))) {
mixin(enumMixinStr_configUSE_PREEMPTION);
}
}
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(__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(__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(__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(__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(__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(__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(__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(__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(__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(__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(__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(__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(__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__ = 31;`;
static if(is(typeof({ mixin(enumMixinStr___GLIBC_MINOR__); }))) {
mixin(enumMixinStr___GLIBC_MINOR__);
}
}
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(_STDINT_H))) {
private enum enumMixinStr__STDINT_H = `enum _STDINT_H = 1;`;
static if(is(typeof({ mixin(enumMixinStr__STDINT_H); }))) {
mixin(enumMixinStr__STDINT_H);
}
}
static if(!is(typeof(INT8_MIN))) {
private enum enumMixinStr_INT8_MIN = `enum INT8_MIN = ( - 128 );`;
static if(is(typeof({ mixin(enumMixinStr_INT8_MIN); }))) {
mixin(enumMixinStr_INT8_MIN);
}
}
static if(!is(typeof(INT16_MIN))) {
private enum enumMixinStr_INT16_MIN = `enum INT16_MIN = ( - 32767 - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT16_MIN); }))) {
mixin(enumMixinStr_INT16_MIN);
}
}
static if(!is(typeof(INT32_MIN))) {
private enum enumMixinStr_INT32_MIN = `enum INT32_MIN = ( - 2147483647 - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT32_MIN); }))) {
mixin(enumMixinStr_INT32_MIN);
}
}
static if(!is(typeof(INT64_MIN))) {
private enum enumMixinStr_INT64_MIN = `enum INT64_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT64_MIN); }))) {
mixin(enumMixinStr_INT64_MIN);
}
}
static if(!is(typeof(INT8_MAX))) {
private enum enumMixinStr_INT8_MAX = `enum INT8_MAX = ( 127 );`;
static if(is(typeof({ mixin(enumMixinStr_INT8_MAX); }))) {
mixin(enumMixinStr_INT8_MAX);
}
}
static if(!is(typeof(INT16_MAX))) {
private enum enumMixinStr_INT16_MAX = `enum INT16_MAX = ( 32767 );`;
static if(is(typeof({ mixin(enumMixinStr_INT16_MAX); }))) {
mixin(enumMixinStr_INT16_MAX);
}
}
static if(!is(typeof(INT32_MAX))) {
private enum enumMixinStr_INT32_MAX = `enum INT32_MAX = ( 2147483647 );`;
static if(is(typeof({ mixin(enumMixinStr_INT32_MAX); }))) {
mixin(enumMixinStr_INT32_MAX);
}
}
static if(!is(typeof(INT64_MAX))) {
private enum enumMixinStr_INT64_MAX = `enum INT64_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INT64_MAX); }))) {
mixin(enumMixinStr_INT64_MAX);
}
}
static if(!is(typeof(UINT8_MAX))) {
private enum enumMixinStr_UINT8_MAX = `enum UINT8_MAX = ( 255 );`;
static if(is(typeof({ mixin(enumMixinStr_UINT8_MAX); }))) {
mixin(enumMixinStr_UINT8_MAX);
}
}
static if(!is(typeof(UINT16_MAX))) {
private enum enumMixinStr_UINT16_MAX = `enum UINT16_MAX = ( 65535 );`;
static if(is(typeof({ mixin(enumMixinStr_UINT16_MAX); }))) {
mixin(enumMixinStr_UINT16_MAX);
}
}
static if(!is(typeof(UINT32_MAX))) {
private enum enumMixinStr_UINT32_MAX = `enum UINT32_MAX = ( 4294967295U );`;
static if(is(typeof({ mixin(enumMixinStr_UINT32_MAX); }))) {
mixin(enumMixinStr_UINT32_MAX);
}
}
static if(!is(typeof(UINT64_MAX))) {
private enum enumMixinStr_UINT64_MAX = `enum UINT64_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINT64_MAX); }))) {
mixin(enumMixinStr_UINT64_MAX);
}
}
static if(!is(typeof(INT_LEAST8_MIN))) {
private enum enumMixinStr_INT_LEAST8_MIN = `enum INT_LEAST8_MIN = ( - 128 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST8_MIN); }))) {
mixin(enumMixinStr_INT_LEAST8_MIN);
}
}
static if(!is(typeof(INT_LEAST16_MIN))) {
private enum enumMixinStr_INT_LEAST16_MIN = `enum INT_LEAST16_MIN = ( - 32767 - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST16_MIN); }))) {
mixin(enumMixinStr_INT_LEAST16_MIN);
}
}
static if(!is(typeof(INT_LEAST32_MIN))) {
private enum enumMixinStr_INT_LEAST32_MIN = `enum INT_LEAST32_MIN = ( - 2147483647 - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST32_MIN); }))) {
mixin(enumMixinStr_INT_LEAST32_MIN);
}
}
static if(!is(typeof(INT_LEAST64_MIN))) {
private enum enumMixinStr_INT_LEAST64_MIN = `enum INT_LEAST64_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST64_MIN); }))) {
mixin(enumMixinStr_INT_LEAST64_MIN);
}
}
static if(!is(typeof(INT_LEAST8_MAX))) {
private enum enumMixinStr_INT_LEAST8_MAX = `enum INT_LEAST8_MAX = ( 127 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST8_MAX); }))) {
mixin(enumMixinStr_INT_LEAST8_MAX);
}
}
static if(!is(typeof(INT_LEAST16_MAX))) {
private enum enumMixinStr_INT_LEAST16_MAX = `enum INT_LEAST16_MAX = ( 32767 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST16_MAX); }))) {
mixin(enumMixinStr_INT_LEAST16_MAX);
}
}
static if(!is(typeof(INT_LEAST32_MAX))) {
private enum enumMixinStr_INT_LEAST32_MAX = `enum INT_LEAST32_MAX = ( 2147483647 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST32_MAX); }))) {
mixin(enumMixinStr_INT_LEAST32_MAX);
}
}
static if(!is(typeof(INT_LEAST64_MAX))) {
private enum enumMixinStr_INT_LEAST64_MAX = `enum INT_LEAST64_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INT_LEAST64_MAX); }))) {
mixin(enumMixinStr_INT_LEAST64_MAX);
}
}
static if(!is(typeof(UINT_LEAST8_MAX))) {
private enum enumMixinStr_UINT_LEAST8_MAX = `enum UINT_LEAST8_MAX = ( 255 );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_LEAST8_MAX); }))) {
mixin(enumMixinStr_UINT_LEAST8_MAX);
}
}
static if(!is(typeof(UINT_LEAST16_MAX))) {
private enum enumMixinStr_UINT_LEAST16_MAX = `enum UINT_LEAST16_MAX = ( 65535 );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_LEAST16_MAX); }))) {
mixin(enumMixinStr_UINT_LEAST16_MAX);
}
}
static if(!is(typeof(UINT_LEAST32_MAX))) {
private enum enumMixinStr_UINT_LEAST32_MAX = `enum UINT_LEAST32_MAX = ( 4294967295U );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_LEAST32_MAX); }))) {
mixin(enumMixinStr_UINT_LEAST32_MAX);
}
}
static if(!is(typeof(UINT_LEAST64_MAX))) {
private enum enumMixinStr_UINT_LEAST64_MAX = `enum UINT_LEAST64_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_LEAST64_MAX); }))) {
mixin(enumMixinStr_UINT_LEAST64_MAX);
}
}
static if(!is(typeof(INT_FAST8_MIN))) {
private enum enumMixinStr_INT_FAST8_MIN = `enum INT_FAST8_MIN = ( - 128 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST8_MIN); }))) {
mixin(enumMixinStr_INT_FAST8_MIN);
}
}
static if(!is(typeof(INT_FAST16_MIN))) {
private enum enumMixinStr_INT_FAST16_MIN = `enum INT_FAST16_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST16_MIN); }))) {
mixin(enumMixinStr_INT_FAST16_MIN);
}
}
static if(!is(typeof(INT_FAST32_MIN))) {
private enum enumMixinStr_INT_FAST32_MIN = `enum INT_FAST32_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST32_MIN); }))) {
mixin(enumMixinStr_INT_FAST32_MIN);
}
}
static if(!is(typeof(INT_FAST64_MIN))) {
private enum enumMixinStr_INT_FAST64_MIN = `enum INT_FAST64_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST64_MIN); }))) {
mixin(enumMixinStr_INT_FAST64_MIN);
}
}
static if(!is(typeof(INT_FAST8_MAX))) {
private enum enumMixinStr_INT_FAST8_MAX = `enum INT_FAST8_MAX = ( 127 );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST8_MAX); }))) {
mixin(enumMixinStr_INT_FAST8_MAX);
}
}
static if(!is(typeof(INT_FAST16_MAX))) {
private enum enumMixinStr_INT_FAST16_MAX = `enum INT_FAST16_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST16_MAX); }))) {
mixin(enumMixinStr_INT_FAST16_MAX);
}
}
static if(!is(typeof(INT_FAST32_MAX))) {
private enum enumMixinStr_INT_FAST32_MAX = `enum INT_FAST32_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST32_MAX); }))) {
mixin(enumMixinStr_INT_FAST32_MAX);
}
}
static if(!is(typeof(INT_FAST64_MAX))) {
private enum enumMixinStr_INT_FAST64_MAX = `enum INT_FAST64_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INT_FAST64_MAX); }))) {
mixin(enumMixinStr_INT_FAST64_MAX);
}
}
static if(!is(typeof(UINT_FAST8_MAX))) {
private enum enumMixinStr_UINT_FAST8_MAX = `enum UINT_FAST8_MAX = ( 255 );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_FAST8_MAX); }))) {
mixin(enumMixinStr_UINT_FAST8_MAX);
}
}
static if(!is(typeof(UINT_FAST16_MAX))) {
private enum enumMixinStr_UINT_FAST16_MAX = `enum UINT_FAST16_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_FAST16_MAX); }))) {
mixin(enumMixinStr_UINT_FAST16_MAX);
}
}
static if(!is(typeof(UINT_FAST32_MAX))) {
private enum enumMixinStr_UINT_FAST32_MAX = `enum UINT_FAST32_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_FAST32_MAX); }))) {
mixin(enumMixinStr_UINT_FAST32_MAX);
}
}
static if(!is(typeof(UINT_FAST64_MAX))) {
private enum enumMixinStr_UINT_FAST64_MAX = `enum UINT_FAST64_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINT_FAST64_MAX); }))) {
mixin(enumMixinStr_UINT_FAST64_MAX);
}
}
static if(!is(typeof(INTPTR_MIN))) {
private enum enumMixinStr_INTPTR_MIN = `enum INTPTR_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INTPTR_MIN); }))) {
mixin(enumMixinStr_INTPTR_MIN);
}
}
static if(!is(typeof(INTPTR_MAX))) {
private enum enumMixinStr_INTPTR_MAX = `enum INTPTR_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INTPTR_MAX); }))) {
mixin(enumMixinStr_INTPTR_MAX);
}
}
static if(!is(typeof(UINTPTR_MAX))) {
private enum enumMixinStr_UINTPTR_MAX = `enum UINTPTR_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINTPTR_MAX); }))) {
mixin(enumMixinStr_UINTPTR_MAX);
}
}
static if(!is(typeof(INTMAX_MIN))) {
private enum enumMixinStr_INTMAX_MIN = `enum INTMAX_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_INTMAX_MIN); }))) {
mixin(enumMixinStr_INTMAX_MIN);
}
}
static if(!is(typeof(INTMAX_MAX))) {
private enum enumMixinStr_INTMAX_MAX = `enum INTMAX_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_INTMAX_MAX); }))) {
mixin(enumMixinStr_INTMAX_MAX);
}
}
static if(!is(typeof(UINTMAX_MAX))) {
private enum enumMixinStr_UINTMAX_MAX = `enum UINTMAX_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_UINTMAX_MAX); }))) {
mixin(enumMixinStr_UINTMAX_MAX);
}
}
static if(!is(typeof(PTRDIFF_MIN))) {
private enum enumMixinStr_PTRDIFF_MIN = `enum PTRDIFF_MIN = ( - 9223372036854775807L - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_PTRDIFF_MIN); }))) {
mixin(enumMixinStr_PTRDIFF_MIN);
}
}
static if(!is(typeof(PTRDIFF_MAX))) {
private enum enumMixinStr_PTRDIFF_MAX = `enum PTRDIFF_MAX = ( 9223372036854775807L );`;
static if(is(typeof({ mixin(enumMixinStr_PTRDIFF_MAX); }))) {
mixin(enumMixinStr_PTRDIFF_MAX);
}
}
static if(!is(typeof(SIG_ATOMIC_MIN))) {
private enum enumMixinStr_SIG_ATOMIC_MIN = `enum SIG_ATOMIC_MIN = ( - 2147483647 - 1 );`;
static if(is(typeof({ mixin(enumMixinStr_SIG_ATOMIC_MIN); }))) {
mixin(enumMixinStr_SIG_ATOMIC_MIN);
}
}
static if(!is(typeof(SIG_ATOMIC_MAX))) {
private enum enumMixinStr_SIG_ATOMIC_MAX = `enum SIG_ATOMIC_MAX = ( 2147483647 );`;
static if(is(typeof({ mixin(enumMixinStr_SIG_ATOMIC_MAX); }))) {
mixin(enumMixinStr_SIG_ATOMIC_MAX);
}
}
static if(!is(typeof(SIZE_MAX))) {
private enum enumMixinStr_SIZE_MAX = `enum SIZE_MAX = ( 18446744073709551615UL );`;
static if(is(typeof({ mixin(enumMixinStr_SIZE_MAX); }))) {
mixin(enumMixinStr_SIZE_MAX);
}
}
static if(!is(typeof(WCHAR_MIN))) {
private enum enumMixinStr_WCHAR_MIN = `enum WCHAR_MIN = __WCHAR_MIN;`;
static if(is(typeof({ mixin(enumMixinStr_WCHAR_MIN); }))) {
mixin(enumMixinStr_WCHAR_MIN);
}
}
static if(!is(typeof(WCHAR_MAX))) {
private enum enumMixinStr_WCHAR_MAX = `enum WCHAR_MAX = __WCHAR_MAX;`;
static if(is(typeof({ mixin(enumMixinStr_WCHAR_MAX); }))) {
mixin(enumMixinStr_WCHAR_MAX);
}
}
static if(!is(typeof(WINT_MIN))) {
private enum enumMixinStr_WINT_MIN = `enum WINT_MIN = ( 0u );`;
static if(is(typeof({ mixin(enumMixinStr_WINT_MIN); }))) {
mixin(enumMixinStr_WINT_MIN);
}
}
static if(!is(typeof(WINT_MAX))) {
private enum enumMixinStr_WINT_MAX = `enum WINT_MAX = ( 4294967295u );`;
static if(is(typeof({ mixin(enumMixinStr_WINT_MAX); }))) {
mixin(enumMixinStr_WINT_MAX);
}
}
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(__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(__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_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(__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_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(__LONG_DOUBLE_USES_FLOAT128))) {
private enum enumMixinStr___LONG_DOUBLE_USES_FLOAT128 = `enum __LONG_DOUBLE_USES_FLOAT128 = 0;`;
static if(is(typeof({ mixin(enumMixinStr___LONG_DOUBLE_USES_FLOAT128); }))) {
mixin(enumMixinStr___LONG_DOUBLE_USES_FLOAT128);
}
}
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(_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(_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(__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(__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(__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(__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(_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(__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(__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(__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(__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(__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(_BITS_WCHAR_H))) {
private enum enumMixinStr__BITS_WCHAR_H = `enum _BITS_WCHAR_H = 1;`;
static if(is(typeof({ mixin(enumMixinStr__BITS_WCHAR_H); }))) {
mixin(enumMixinStr__BITS_WCHAR_H);
}
}
static if(!is(typeof(__WCHAR_MAX))) {
private enum enumMixinStr___WCHAR_MAX = `enum __WCHAR_MAX = 0x7fffffff;`;
static if(is(typeof({ mixin(enumMixinStr___WCHAR_MAX); }))) {
mixin(enumMixinStr___WCHAR_MAX);
}
}
static if(!is(typeof(__WCHAR_MIN))) {
private enum enumMixinStr___WCHAR_MIN = `enum __WCHAR_MIN = ( - 0x7fffffff - 1 );`;
static if(is(typeof({ mixin(enumMixinStr___WCHAR_MIN); }))) {
mixin(enumMixinStr___WCHAR_MIN);
}
}
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(__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(_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(NULL))) {
private enum enumMixinStr_NULL = `enum NULL = ( cast( void * ) 0 );`;
static if(is(typeof({ mixin(enumMixinStr_NULL); }))) {
mixin(enumMixinStr_NULL);
}
}
}
import external.libc.config;
@nogc:
auto _xSemaphoreCreateMutex()
{
return xQueueCreateMutex(( cast( uint8_t ) 1U ));
}
auto _xSemaphoreCreateRecursiveMutex()
{
return xQueueCreateMutex(( cast( uint8_t ) 4U ));
}
auto _vSemaphoreDelete(SemaphoreHandle_t xSemaphore)
{
return vQueueDelete ( cast( QueueHandle_t ) ( xSemaphore ) );
}
alias xSemaphoreTake = xQueueSemaphoreTake;
auto _xSemaphoreGive(SemaphoreHandle_t xSemaphore)
{
return xQueueGenericSend ( cast( QueueHandle_t ) ( xSemaphore ) , null , ( cast( TickType_t ) 0U ) , ( cast( BaseType_t ) 0 ) );
}
alias xSemaphoreTakeMutexRecursive = xQueueTakeMutexRecursive;
alias xSemaphoreGiveMutexRecursive = xQueueGiveMutexRecursive;
alias xSemaphoreCreateCounting = xQueueCreateCountingSemaphore;
|
D
|
module generator;
import std.file;
import std.path;
import std.stdio;
import std.typecons;
import api.io;
import api.path;
import config;
import luaaddon;
import todofilereader;
import dtermutils;
import dpathutils.exists;
class Generator : LuaAddon
{
bool create(const string outputFormat)
{
paths_ = ApplicationPaths.getInstance();
immutable string fileName = buildNormalizedPath(paths_.getAddonDir(), outputFormat) ~ ".lua";
if(fileName.exists)
{
loadConfig();
setupAPIFunctions();
setupPackagePaths();
loadDefaultModules();
return loadFile(fileName);
}
return false;
}
void processTasks(const string fileName, TaskValues[] tasks, Flag!"isLastFile" isLastFile)
{
if(hasFunction("OnProcessTasks"))
{
callFunction("OnProcessTasks", state_.newTable(tasks), fileName, cast(bool)isLastFile);
}
}
void setupAPIFunctions()
{
createTable("FileUtils", "Path", "IO", "Config", "Input", "Date", "Time", "DateTime");
registerFunction("IO", "ReadText", &api.io.readText);
registerFunction("IO", "GetLines", &api.io.getLines);
registerFunction("IO", "CreateOutputFile", &paths_.createOutputFile);
registerFunction("IO", "CopyFileTo", &paths_.copyFileTo);
registerFunction("IO", "CopyFileToOutputDir", &paths_.copyFileToOutputDir);
registerFunction("IO", "RemoveFileFromAddonDir", &paths_.removeFileFromAddonDir);
registerFunction("IO", "RemoveFileFromOutputDir", &paths_.removeFileFromOutputDir);
registerFunction("IO", "RegisterFileForRemoval", &paths_.registerFileForRemoval);
registerFunction("Path", "GetInstallDir", &paths_.getInstallDir);
registerFunction("Path", "GetBaseAddonDir", &paths_.getBaseAddonDir);
registerFunction("Path", "GetAddonDir", &paths_.getAddonDir);
registerFunction("Path", "GetAddonDirFor", &paths_.getAddonDirFor);
registerFunction("Path", "GetAddonModuleDir", &paths_.getAddonModulesDir);
registerFunction("Path", "GetAddonTemplateDir", &paths_.getAddonTemplatesDir);
registerFunction("Path", "GetModuleDir", &paths_.getModuleDir);
registerFunction("Path", "GetOutputDir", &paths_.getOutputDir);
registerFunction("Path", "GetConfigDir", &paths_.getConfigDir);
registerFunction("Path", "GetConfigFilesDir", &paths_.getConfigFilesDir);
registerFunction("Path", "Normalize", &paths_.getNormalizedPath);
registerFunction("Path", "CreateDirInGeneratorDir", &paths_.createDirInGeneratorDir);
registerFunction("Path", "EnsurePathExists", &dpathutils.exists.ensurePathExists);
registerFunction("Path", "Exists", &paths_.dirExists);
registerFunction("Path", "AddonExists", &paths_.addonExists);
registerFunction("Config", "GetDefaultTodoFileName", &config_.getDefaultTodoFileName);
registerFunction("Config", "GetTableValue", &config_.getTableValue);
registerFunction("Config", "GetValue", &config_.getValue);
//FIXME: LuaD is returning a string instead of a LuaTable.
//registerFunction("Config", "GetTable", &config_.getTable);
registerFunction("InputCollector", "Prompt", &inputCollector_.prompt);
registerFunction("InputCollector", "HasValueFor", &inputCollector_.hasValueFor);
registerFunction("InputCollector", "GetValueFor", &inputCollector_.getValueFor);
registerFunction("InputCollector", "EnablePrompt", &inputCollector_.disablePrompt);
registerFunction("InputCollector", "DisablePrompt", &inputCollector_.enablePrompt);
registerFunction("InputCollector", "IsPromptEnabled", &inputCollector_.isPromptEnabled);
registerFunction("InputCollector", "GetAllPromptValues", &inputCollector_.getAllPromptValues);
registerFunction("Input", "ConfirmationPrompt", &confirmationPrompt);
}
void setupPackagePaths()
{
immutable string baseModulePath = buildNormalizedPath(paths_.getInstallDir(), "modules");
immutable string genModulePath = buildNormalizedPath(paths_.getAddonModulesDir());
registerPackagePaths(baseModulePath, genModulePath);
}
void loadDefaultModules()
{
loadFile(buildNormalizedPath(paths_.getModuleDir(), "ansicolors.lua"));
loadFile(buildNormalizedPath(paths_.getModuleDir(), "globals.lua"));
loadFile(buildNormalizedPath(paths_.getModuleDir(), "io.lua"));
loadFile(buildNormalizedPath(paths_.getModuleDir(), "resty", "template.lua"));
}
void loadConfig()
{
immutable string configPath = paths_.getConfigFilesDir();
immutable string configFile = buildNormalizedPath(configPath, "config.lua");
config_ = Config.getInstance();
config_.load(configFile);
}
override string getAuthor()
{
return string.init;
}
override string getName()
{
return string.init;
}
override size_t getVersion()
{
return 1_000;
}
override string getDescription()
{
return string.init;
}
private:
InputCollector inputCollector_;
Config config_;
ApplicationPaths paths_;
}
|
D
|
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/SQLite.build/Database/SQLiteDatabase.swift.o : /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteData.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteGeneric.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Deprecated.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBind.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStorage.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCreateTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDataTypeStaticRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQueryExpressionRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataType.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteDatabase.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/DatabaseIdentifier+SQLite.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBoolLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDefaultLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteColumn.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCollation.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteConnection.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteFunction.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTableBuilder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataEncoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/SQLiteError.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Exports.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStatement.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDropIndex.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLitePrimaryKey.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQuery.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/COperatingSystem.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/mu/Hello/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.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 /Users/mu/Hello/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mu/Hello/.build/checkouts/swift-nio-zlib-support/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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.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/mu/Hello/.build/x86_64-apple-macosx/debug/SQLite.build/Database/SQLiteDatabase~partial.swiftmodule : /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteData.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteGeneric.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Deprecated.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBind.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStorage.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCreateTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDataTypeStaticRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQueryExpressionRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataType.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteDatabase.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/DatabaseIdentifier+SQLite.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBoolLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDefaultLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteColumn.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCollation.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteConnection.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteFunction.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTableBuilder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataEncoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/SQLiteError.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Exports.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStatement.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDropIndex.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLitePrimaryKey.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQuery.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/COperatingSystem.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/mu/Hello/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.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 /Users/mu/Hello/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mu/Hello/.build/checkouts/swift-nio-zlib-support/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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.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/mu/Hello/.build/x86_64-apple-macosx/debug/SQLite.build/Database/SQLiteDatabase~partial.swiftdoc : /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteData.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteGeneric.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Deprecated.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBind.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStorage.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCreateTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDataTypeStaticRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQueryExpressionRepresentable.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteDataType.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteDatabase.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/DatabaseIdentifier+SQLite.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteBoolLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDefaultLiteral.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Row/SQLiteColumn.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteCollation.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteConnection.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteFunction.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteAlterTableBuilder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Codable/SQLiteDataEncoder.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/SQLiteError.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Utilities/Exports.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/Database/SQLiteStatement.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteDropIndex.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLitePrimaryKey.swift /Users/mu/Hello/.build/checkouts/sqlite/Sources/SQLite/SQL/SQLiteQuery.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/COperatingSystem.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/mu/Hello/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/mu/Hello/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.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 /Users/mu/Hello/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mu/Hello/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mu/Hello/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mu/Hello/.build/checkouts/swift-nio-zlib-support/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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.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
|
// Written in the D programming language.
module windows.windowsserverbackup;
public import windows.core;
public import windows.com : HRESULT, IUnknown;
public import windows.systemservices : PWSTR;
extern(Windows) @nogc nothrow:
// Enums
///The <b>WSB_OB_STATUS_ENTRY_PAIR_TYPE</b> enumeration indicates the type of the parameter value contained in the
///WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR structure.
alias WSB_OB_STATUS_ENTRY_PAIR_TYPE = int;
enum : int
{
///The value type is undefined.
WSB_OB_ET_UNDEFINED = 0x00000000,
///The value type is string.
WSB_OB_ET_STRING = 0x00000001,
///The value type is integer.
WSB_OB_ET_NUMBER = 0x00000002,
///The value type is datetime which represents an instant in time, typically expressed as a date and time of day.
///All time-related values are specified in Coordinated Universal Time (UTC) format.
WSB_OB_ET_DATETIME = 0x00000003,
///The value type is time. All time-related values are specified in UTC format.
WSB_OB_ET_TIME = 0x00000004,
///The value type is size.
WSB_OB_ET_SIZE = 0x00000005,
///The maximum enumeration value for this enumeration.
WSB_OB_ET_MAX = 0x00000006,
}
// Structs
///The <b>WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR</b> structure contains the value and value type for a parameter used to
///expand the value resource string in the WSB_OB_STATUS_ENTRY structure.
struct WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR
{
///Specifies the value for the parameter.
PWSTR m_wszObStatusEntryPairValue;
///Specifies the type of the value for the parameter.
WSB_OB_STATUS_ENTRY_PAIR_TYPE m_ObStatusEntryPairType;
}
///The <b>WSB_OB_STATUS_ENTRY</b> structure contains status information for one entry to be shown in the Windows Server
///Backup MMC snap-in.
struct WSB_OB_STATUS_ENTRY
{
///The resource identifier of the icon to be shown with the status entry. A value of zero indicates no icon is to be
///shown.
uint m_dwIcon;
///The resource identifier of the name of the status entry.
uint m_dwStatusEntryName;
///The resource identifier of the value of the status entry.
uint m_dwStatusEntryValue;
///The number of WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR structures pointed to by the <b>m_rgValueTypePair</b> member.
uint m_cValueTypePair;
///The list of parameters used to expand the value string contained in the <b>m_dwStatusEntryValue</b> member.
WSB_OB_STATUS_ENTRY_VALUE_TYPE_PAIR* m_rgValueTypePair;
}
///The <b>WSB_OB_STATUS_INFO</b> structure contains information to update the cloud backup provider status in the
///Windows Server Backup MMC snap-in.
struct WSB_OB_STATUS_INFO
{
///The snap-in identifier of the cloud backup provider registered with Windows Server Backup.
GUID m_guidSnapinId;
///The number of status entries contained in the <b>m_rgStatusEntry</b> member. The maximum number of entries
///allowed is five.
uint m_cStatusEntry;
///A pointer to one or more WSB_OB_STATUS_ENTRY structures, each containing cloud backup provider status information
///for one entry to be shown in the Windows Server Backup MMC snap-in.
WSB_OB_STATUS_ENTRY* m_rgStatusEntry;
}
///The <b>WSB_OB_REGISTRATION_INFO</b> structure contains information to register a cloud backup provider with Windows
///Server Backup.
struct WSB_OB_REGISTRATION_INFO
{
///The complete path to the resource DLL where the provider name and icon resources can be loaded from.
PWSTR m_wszResourceDLL;
///The snap-in identifier of the cloud backup provider to be registered with Windows Server Backup.
GUID m_guidSnapinId;
///The resource identifier of the cloud backup provider name. This name will be shown in the Windows Server Backup
///MMC snap-in.
uint m_dwProviderName;
///The resource identifier of the cloud backup provider icon. This icon will be shown in the Windows Server Backup
///MMC snap-in.
uint m_dwProviderIcon;
///A flag to indicate whether the cloud backup provider can communicate with a remote cloud backup provider engine.
ubyte m_bSupportsRemoting;
}
// Interfaces
///Defines a method for checking the consistency of the application's VSS writer's components.
@GUID("1EFF3510-4A27-46AD-B9E0-08332F0F4F6D")
interface IWsbApplicationBackupSupport : IUnknown
{
///Checks the consistency of the VSS writer's components in the shadow copy after shadow copies are created for the
///volumes to be backed up.
///Params:
/// wszWriterMetadata = A string that contains the VSS writer's metadata.
/// wszComponentName = The name of the component or component set to be checked. This should match the name in the metadata that the
/// <i>wszWriterMetadata</i> parameter points to.
/// wszComponentLogicalPath = The logical path of the component or component set to be checked. This should match the logical path in the
/// metadata that the <i>wszWriterMetadata</i> parameter points to.
/// cVolumes = The number of shadow copy volumes. The value of this parameter can range from 0 to <b>MAX_VOLUMES</b>.
/// rgwszSourceVolumePath = A pointer to an array of volume <b>GUID</b> paths, one for each of the source volumes. The format of a volume
/// <b>GUID</b> path is "\\?&
/// rgwszSnapshotVolumePath = A pointer to an array of volume <b>GUID</b> paths, one for each of the shadow copy volumes. The consistency
/// check is performed on these volumes.
/// ppAsync = A pointer to a variable that will receive an IWsbApplicationAsync interface pointer that can be used to
/// retrieve the status of the consistency-check operation. This pointer can be <b>NULL</b> if a consistency
/// check is not required. When the consistency-check operation is complete, the IUnknown::Release method must be
/// called to free all resources held by the <b>IWsbApplicationAsync</b> object.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise. Possible return values include the following.
///
HRESULT CheckConsistency(PWSTR wszWriterMetadata, PWSTR wszComponentName, PWSTR wszComponentLogicalPath,
uint cVolumes, PWSTR* rgwszSourceVolumePath, PWSTR* rgwszSnapshotVolumePath,
IWsbApplicationAsync* ppAsync);
}
///Defines methods for performing application-specific restore tasks.
@GUID("8D3BDB38-4EE8-4718-85F9-C7DBC4AB77AA")
interface IWsbApplicationRestoreSupport : IUnknown
{
///Performs application-specific PreRestore operations.
///Params:
/// wszWriterMetadata = A string that contains the VSS writer's metadata.
/// wszComponentName = The name of the component or component set. This should match the name in the metadata that the
/// <i>wszWriterMetadata</i> parameter points to.
/// wszComponentLogicalPath = The logical path of the component or component set. This should match the logical path in the metadata that
/// the <i>wszWriterMetadata</i> parameter points to.
/// bNoRollForward = Set to <b>TRUE</b> if a previous point-in-time recovery operation is in progress and no application
/// rollforward should be performed. The previous logs for the application will be deleted before the application
/// restore operation is performed.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise. Possible return values include the following.
///
HRESULT PreRestore(PWSTR wszWriterMetadata, PWSTR wszComponentName, PWSTR wszComponentLogicalPath,
ubyte bNoRollForward);
///Performs application-specific PostRestore operations.
///Params:
/// wszWriterMetadata = A string that contains the VSS writer's metadata.
/// wszComponentName = The name of the component or component set. This should match the name in the metadata that the
/// <i>wszWriterMetadata</i> parameter points to.
/// wszComponentLogicalPath = The logical path of the component or component set. This should match the logical path in the metadata that
/// the <i>wszWriterMetadata</i> parameter points to.
/// bNoRollForward = Set to <b>TRUE</b> if a previous point-in-time recovery operation is in progress and no application
/// rollforward should be performed. The previous logs for the application will be deleted before the application
/// restore operation is performed.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise. Possible return values include the following.
///
HRESULT PostRestore(PWSTR wszWriterMetadata, PWSTR wszComponentName, PWSTR wszComponentLogicalPath,
ubyte bNoRollForward);
///Specifies the order in which application components are to be restored.
///Params:
/// cComponents = The number of components to be restored. The value of this parameter can range from 0 to MAX_COMPONENTS.
/// rgComponentName = An array of <i>cComponents</i> names of components to be restored.
/// rgComponentLogicalPaths = An array of <i>cComponents</i> logical paths of components to be restored.
/// prgComponentName = An array of <i>cComponents</i> names of components to be restored, in the order in which they are to be
/// restored. This parameter receives <b>NULL</b> if no specific restore order is required.
/// prgComponentLogicalPath = An array of <i>cComponents</i> logical paths of components to be restored, in the order in which they are to
/// be restored. This parameter receives <b>NULL</b> if no specific restore order is required.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise. Possible return values include the following.
///
HRESULT OrderComponents(uint cComponents, PWSTR* rgComponentName, PWSTR* rgComponentLogicalPaths,
PWSTR** prgComponentName, PWSTR** prgComponentLogicalPath);
///Reports whether the application supports roll-forward restore.
///Params:
/// pbRollForwardSupported = Receives <b>TRUE</b> if roll-forward restore is supported, or <b>FALSE</b> otherwise.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise.
///
HRESULT IsRollForwardSupported(ubyte* pbRollForwardSupported);
}
///Defines methods to monitor and control the progress of an asynchronous operation.
@GUID("0843F6F7-895C-44A6-B0C2-05A5022AA3A1")
interface IWsbApplicationAsync : IUnknown
{
///Queries the status of an asynchronous operation.
///Params:
/// phrResult = The address of an <b>HRESULT</b> value that receives the status of the current asynchronous operation. If the
/// asynchronous operation fails, this parameter receives the failure status code. Possible values include the
/// following.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise.
///
HRESULT QueryStatus(HRESULT* phrResult);
///Cancels an incomplete asynchronous operation.
///Returns:
/// Returns <b>S_OK</b> if successful, or an error value otherwise.
///
HRESULT Abort();
}
// GUIDs
const GUID IID_IWsbApplicationAsync = GUIDOF!IWsbApplicationAsync;
const GUID IID_IWsbApplicationBackupSupport = GUIDOF!IWsbApplicationBackupSupport;
const GUID IID_IWsbApplicationRestoreSupport = GUIDOF!IWsbApplicationRestoreSupport;
|
D
|
/Users/Fares/Documents/Projects/TransitApp/build/TransitApp.build/Debug-iphonesimulator/TransitApp.build/Objects-normal/x86_64/SegmentsTableViewCell.o : /Users/Fares/Documents/Projects/TransitApp/TransitApp/Data.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Segment.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/IJProgressView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ResultTableViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Stop.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SplashViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/RouteTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SearchViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Extensions.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DialogDateTimePickerView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SegmentsTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Route.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/AppDelegate.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DataParser.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ProviderAttribute.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/TransitApp/TransitApp-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.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/UIKit.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/CoreLocation.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSDeprecationMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/PopupContainer.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/module.modulemap
/Users/Fares/Documents/Projects/TransitApp/build/TransitApp.build/Debug-iphonesimulator/TransitApp.build/Objects-normal/x86_64/SegmentsTableViewCell~partial.swiftmodule : /Users/Fares/Documents/Projects/TransitApp/TransitApp/Data.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Segment.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/IJProgressView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ResultTableViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Stop.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SplashViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/RouteTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SearchViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Extensions.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DialogDateTimePickerView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SegmentsTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Route.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/AppDelegate.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DataParser.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ProviderAttribute.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/TransitApp/TransitApp-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.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/UIKit.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/CoreLocation.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSDeprecationMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/PopupContainer.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/module.modulemap
/Users/Fares/Documents/Projects/TransitApp/build/TransitApp.build/Debug-iphonesimulator/TransitApp.build/Objects-normal/x86_64/SegmentsTableViewCell~partial.swiftdoc : /Users/Fares/Documents/Projects/TransitApp/TransitApp/Data.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Segment.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/IJProgressView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ResultTableViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Stop.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SplashViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/RouteTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SearchViewController.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Extensions.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DialogDateTimePickerView.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/SegmentsTableViewCell.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/Route.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/AppDelegate.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/DataParser.swift /Users/Fares/Documents/Projects/TransitApp/TransitApp/ProviderAttribute.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/Fares/Documents/Projects/TransitApp/TransitApp/TransitApp-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.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/UIKit.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/CoreLocation.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/Polyline.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Headers/Polyline-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/Polyline/Polyline.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSDeprecationMacros.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Users/Fares/Documents/Projects/TransitApp/Pods/GoogleMaps/Subspecs/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/PopupContainer.swiftmodule/x86_64.swiftmodule /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-Swift.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Headers/PopupContainer-umbrella.h /Users/Fares/Documents/Projects/TransitApp/build/Debug-iphonesimulator/PopupContainer/PopupContainer.framework/Modules/module.modulemap
|
D
|
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/FluentSQL.build/SchemaBuilder+Field.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/FluentSQL.build/SchemaBuilder+Field~partial.swiftmodule : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/FluentSQL.build/SchemaBuilder+Field~partial.swiftdoc : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.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
|
instance Mod_1173_STT_Fingers_MT (Npc_Default)
{
//-------- primary data --------
name = "Fingers";
npctype = npctype_main;
guild = GIL_out;
level = 7;
voice = 0;
id = 1173;
//-------- abilities --------
B_SetAttributesToChapter (self, 4);
//-------- visuals --------
// animations
Mdl_SetVisual (self,"HUMANS.MDS");
Mdl_ApplyOverlayMds (self,"Humans_Relaxed.mds");
// body mesh ,bdytex,skin,head mesh ,headtex,teethtex,ruestung
B_SetNpcVisual (self, MALE, "Hum_Head_FatBald", FACE_N_Fingers, BodyTex_N, STT_ARMOR_M);
Mdl_SetModelFatness(self,0);
fight_tactic = FAI_HUMAN_STRONG;
//-------- Talente --------
B_SetFightSkills (self, 50);
//-------- inventory --------
B_CreateAmbientInv (self);
//-------------Daily Routine-------------
daily_routine = Rtn_start_1173;
};
FUNC VOID Rtn_start_1173 ()
{
TA_Sleep (23,00,07,00,"OCR_HUT_20");
TA_Stand_ArmsCrossed (07,00,23,00,"OCR_OUTSIDE_HUT_20");
};
FUNC VOID Rtn_Sumpflager_1173 ()
{
TA_Stand_Drinking (23,00,07,00,"LOCATION_11_01");
TA_Stand_Drinking (07,00,23,00,"LOCATION_11_01");
};
|
D
|
func void ZS_MM_Rtn_DragonRest()
{
Npc_SetPercTime(self,1);
self.aivar[AIV_MM_PRIORITY] = PRIO_EAT;
Perception_Set_Monster_Rtn();
Npc_PercEnable(self,PERC_ASSESSPLAYER,B_MM_AssessPlayer);
Npc_PercEnable(self,PERC_ASSESSTALK,B_AssessTalk);
AI_SetWalkMode(self,NPC_WALK);
B_MM_DeSynchronize();
if(!Hlp_StrCmp(Npc_GetNearestWP(self),self.wp))
{
AI_GotoWP(self,self.wp);
};
if(Wld_IsFPAvailable(self,"FP_ROAM"))
{
AI_GotoFP(self,"FP_ROAM");
}
else
{
AI_AlignToWP(self);
};
self.aivar[AIV_TAPOSITION] = 0;
};
func int ZS_MM_Rtn_DragonRest_Loop()
{
var int randomMove;
if(!Wld_IsTime(self.aivar[AIV_MM_RestStart],0,self.aivar[AIV_MM_RestEnd],0) && (self.aivar[AIV_MM_RestStart] != OnlyRoutine))
{
AI_StartState(self,ZS_MM_AllScheduler,1,"");
return LOOP_END;
};
if(self.guild == GIL_DRAGON)
{
self.aivar[AIV_TAPOSITION] += 1;
if((self.attribute[ATR_HITPOINTS] < self.attribute[ATR_HITPOINTS_MAX]) && (self.aivar[AIV_TAPOSITION] >= 2))
{
self.attribute[ATR_HITPOINTS] += 1;
self.aivar[AIV_TAPOSITION] = 0;
};
};
if(Hlp_Random(1000) <= 5)
{
randomMove = Hlp_Random(3);
AI_Standup(self);
if(randomMove == 0)
{
AI_PlayAni(self,"R_ROAM1");
};
if(randomMove == 1)
{
AI_PlayAni(self,"R_ROAM2");
};
if(randomMove == 2)
{
AI_PlayAni(self,"R_ROAM3");
};
};
return LOOP_CONTINUE;
};
func void ZS_MM_Rtn_DragonRest_End()
{
AI_PlayAni(self,"T_REST_2_STAND");
};
|
D
|
module android.java.android.icu.text.Normalizer2_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import3 = android.java.java.lang.CharSequence_d_interface;
import import4 = android.java.java.lang.StringBuilder_d_interface;
import import7 = android.java.java.lang.Class_d_interface;
import import2 = android.java.android.icu.text.Normalizer2_Mode_d_interface;
import import1 = android.java.java.io.InputStream_d_interface;
import import0 = android.java.android.icu.text.Normalizer2_d_interface;
import import5 = android.java.java.lang.Appendable_d_interface;
import import6 = android.java.android.icu.text.Normalizer_QuickCheckResult_d_interface;
final class Normalizer2 : IJavaObject {
static immutable string[] _d_canCastTo = [
];
@Import static import0.Normalizer2 getNFCInstance();
@Import static import0.Normalizer2 getNFDInstance();
@Import static import0.Normalizer2 getNFKCInstance();
@Import static import0.Normalizer2 getNFKDInstance();
@Import static import0.Normalizer2 getNFKCCasefoldInstance();
@Import static import0.Normalizer2 getInstance(import1.InputStream, string, import2.Normalizer2_Mode);
@Import string normalize(import3.CharSequence);
@Import import4.StringBuilder normalize(import3.CharSequence, import4.StringBuilder);
@Import import5.Appendable normalize(import3.CharSequence, import5.Appendable);
@Import import4.StringBuilder normalizeSecondAndAppend(import4.StringBuilder, import3.CharSequence);
@Import import4.StringBuilder append(import4.StringBuilder, import3.CharSequence);
@Import string getDecomposition(int);
@Import string getRawDecomposition(int);
@Import int composePair(int, int);
@Import int getCombiningClass(int);
@Import bool isNormalized(import3.CharSequence);
@Import import6.Normalizer_QuickCheckResult quickCheck(import3.CharSequence);
@Import int spanQuickCheckYes(import3.CharSequence);
@Import bool hasBoundaryBefore(int);
@Import bool hasBoundaryAfter(int);
@Import bool isInert(int);
@Import import7.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 = "Landroid/icu/text/Normalizer2;";
}
|
D
|
a mark of a foot or shoe on a surface
a trace suggesting that something was once present or felt or otherwise important
the area taken up by some object
|
D
|
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications.o : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/MultipartFormData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Timeline.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Response.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/TaskDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ParameterEncoding.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Validation.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ResponseSerialization.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/AFError.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Notifications.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Result.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Request.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ServerTrustPolicy.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications~partial.swiftmodule : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/MultipartFormData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Timeline.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Response.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/TaskDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ParameterEncoding.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Validation.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ResponseSerialization.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/AFError.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Notifications.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Result.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Request.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ServerTrustPolicy.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Notifications~partial.swiftdoc : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/MultipartFormData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Timeline.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Alamofire.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Response.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/TaskDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionDelegate.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ParameterEncoding.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Validation.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ResponseSerialization.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/SessionManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/AFError.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Notifications.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Result.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/Request.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/ServerTrustPolicy.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/deps/proc_macro_crate-a94d24aa141c144d.rmeta: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.0.0/src/lib.rs
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/deps/libproc_macro_crate-a94d24aa141c144d.rlib: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.0.0/src/lib.rs
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/deps/proc_macro_crate-a94d24aa141c144d.d: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.0.0/src/lib.rs
/Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-crate-1.0.0/src/lib.rs:
|
D
|
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
298.399994 61.7000008 5.9000001 0 58 62 -19.6000004 116.099998 141 3.29999995 8 0.840254879 sediments, sandstones, siltstones
310.200012 40.5999985 4.69999981 120.900002 56 59 -33.2000008 151.100006 241 8.60000038 8.60000038 0.895431109 extrusives
306.399994 74.1999969 4.30000019 0 52 55 -31.8999996 151.300003 8785 5.9000001 5.9000001 0.911694787 extrusives, basalts
333.200012 64.6999969 6.5999999 0 52 55 -31.8999996 151.300003 8786 10.3000002 11.6999998 0.804286288 extrusives, basalts
219.300003 -4.19999981 9.39999962 22.3999996 56 65 -10 121 7800 4.9000001 9.60000038 0.642878221 extrusives, basalts, andesites
-65.400002 61.2999992 1.39999998 297 50 70 -31.6000004 145.600006 9339 2.20000005 2.20000005 0.990247864 sediments, saprolite
221.899994 42 8.80000019 0 63 75 -9.69999981 119.5 1211 5.30000019 9.69999981 0.678955279 intrusives, granodiorite, andesite dykes
346 61 9 41.2000008 35 100 -31.3999996 138.600006 1170 13 15 0.666976811 sediments
333 45 9 16.5 35 100 -30.3999996 139.399994 1161 17 18 0.666976811 sediments, tillite
317 57 5 200 35 100 -30.5 139.300003 1165 9 10 0.882496903 sediments, redbeds
329 58 25 4.0999999 35 100 -30.2000008 139 1166 41.5999985 45.5999985 0.0439369336 sediments, sandstone, tillite
223 26 13 14.8000002 35 100 -30.2999992 139.5 1157 26 26 0.429557358 extrusives
320 63 9 15.5 34 65 -38 145.5 1854 16 16 0.666976811 extrusives
314 70 6 132 48 50 -33.2999992 151.199997 1844 9 10 0.835270211 intrusives, basalt
302.700012 66.8000031 6.80000019 35 34 65 -38 145.5 1819 10.8000002 12.1000004 0.793580724 extrusives
305.600006 70.5 3.5999999 48.5 52 54 -32 151.399994 1892 5.30000019 5.30000019 0.937254899 extrusives
298 58.7999992 2.4000001 0 35 65 -27 141.5 1972 3.79999995 3.79999995 0.971610765 sediments, weathered
314 66 5.5999999 161 48 50 -33.2999992 151.199997 1969 8.5 9.80000019 0.854875022 intrusives, basalt
297.200012 59.2000008 6 0 50 70 -30.5 151.5 1964 9.10000038 9.89999962 0.835270211 sediments, weathered
310.899994 68.5 5.19999981 0 40 60 -35 150 1927 5.19999981 5.19999981 0.873541195 extrusives, basalts
271 63 2.9000001 352 50 80 -34 151 1595 3.5 4.5 0.958821836 intrusives
278 66 2.0999999 333 48 50 -33.2999992 151.199997 1596 2.5999999 3.29999995 0.978191326 intrusives, basalt
318 37 6.80000019 41 56 59 -33.2000008 151.100006 1597 13.1999998 13.3999996 0.793580724 intrusives
|
D
|
import std.stdio;
import std.file;
import std.string;
import std.conv;
import std.json;
int count(JSONValue j){
if (j.type == JSON_TYPE.INTEGER){
return to!int(j.integer);
}else if (j.type == JSON_TYPE.ARRAY) {
int value = 0;
foreach (item; j.array){
value += count(item);
}
return value;
}else if (j.type == JSON_TYPE.OBJECT) {
int value = 0;
foreach (item; j.object){
if (item.type == JSON_TYPE.STRING && item.str == "red"){
return 0;
}
value += count(item);
}
return value;
}
return 0;
}
int main(string[] args){
if (args.length != 2){
writefln("Needs an input file!");
return 1;
}
string filepath = args[1];
foreach (line; File(filepath, "r").byLine){
line = line.strip();
JSONValue j = parseJSON(line);
writefln("Count: %d", count(j));
}
return 0;
}
|
D
|
a separate part of a whole
an item that is an instance of some type
a portion of a natural object
a musical work that has been created
an instance of some kind
an artistic or literary composition
a portable gun
a serving that has been cut from a larger portion
a distance
a work of art of some artistic value
a period of indeterminate length (usually short) marked by some action or condition
a share of something
game equipment consisting of an object used in playing certain board games
to join or unite the pieces of
create by putting components or members together
join during spinning
eat intermittently
repair by adding pieces
|
D
|
something that resembles a tablet of medicine in shape or size
a dose of medicine in the form of a small pellet
a unpleasant or tiresome person
something unpleasant or offensive that must be tolerated or endured
a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception
|
D
|
module stemmer.stemmer;
import std.string;
import std.conv;
import std.algorithm;
import std.array;
/// The Stemmer interface
interface IStemmer {
string get(string) pure;
}
private immutable(string[]) removeLetters(const string[] letters, const string[] extra) pure {
return letters.filter!(a => !extra.canFind(a)).array.idup;
}
private string change(const string source, const string reference) pure {
char[] result;
result.length = source.length;
foreach(index, char c; source) {
if(c == '*') {
result[index] = reference[index];
} else {
result[index] = source[index];
}
}
return result.to!string;
}
/// Represents a language alphabet and allows to perform different stemming operations
struct Alphabet(string[] vowels, string[] extraLetters = []) {
static:
immutable {
///
string[] alphabet =
["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"] ~
extraLetters;
///
string[] nonVowels = removeLetters(alphabet, vowels);
}
/// Check if the provided letter is a Vowel
bool isVowel(dchar ch) {
return vowels.map!"a[0]".canFind(ch);
}
/// A word is called short if it ends in a short syllable, and if R1 is null.
bool isShortWord(string data) pure {
return endsWithShortSylable(data) && region1(data) == "";
}
/**
Check if the word ens in a short sylable
Define a short syllable in a word as either
(a) a vowel followed by a non-vowel other than w, x or Y and preceded by a non-vowel, or *
(b) a vowel at the beginning of the word followed by a non-vowel.
*/
bool endsWithShortSylable(string data) pure {
if(data.length < 2) {
return true;
}
auto result = data.map!(a => isVowel(a)).array;
if(result == [true, false]) {
return true;
}
if(result == [false, true] && data[1] == 'i') {
return true;
}
if(data.length == 2) {
return false;
}
auto lastChar = data[data.length - 1];
auto vowelsXWY = vowels.join ~ "wxY";
if(result.endsWith([false, true, false]) && vowelsXWY.indexOf(lastChar) == -1) {
return true;
}
return false;
}
/// Return a list of words derived from `value` where the chars marked as vowels(`V`) are replaced with actual
/// elements from the alphabet
string[] replaceVowels(const string value) pure {
if(!value.canFind!"a == 'V'") {
return [ value ];
}
string[] list = [];
foreach(vowel; vowels) {
list ~= value.replaceFirst("V", vowel);
}
if(list[0].canFind!"a == 'V'") {
list = list.map!(a => replaceVowels(a)).joiner.array;
}
return list;
}
/// Return a list of words derived from `value` where the chars marked as non-vowels(`N`) are replaced with actual
/// elements from the alphabet
string[] replaceNonVowels(const string value) pure {
if(!value.canFind!"a == 'N'") {
return [ value ];
}
string[] list = [];
foreach(vowel; nonVowels) {
list ~= value.replaceFirst("N", vowel);
}
if(list[0].canFind!"a == 'N'") {
list = list.map!(a => replaceNonVowels(a)).joiner.array;
}
return list;
}
/// Return a list of words derived from `value` where the chars marked as any(`*`) are replaced with actual
/// elements from the alphabet
string[] replaceAny(const string value) pure {
if(!value.canFind!"a == '*'") {
return [ value ];
}
string[] list = [];
foreach(ch; alphabet) {
list ~= value.replaceFirst("*", ch);
}
if(list[0].canFind!"a == '*'") {
list = list.map!(a => replaceAny(a)).joiner.array;
}
return list;
}
/// Resolve a word by repplacing the placeholder characters("N", "V", "*")
immutable(string[]) get(const string value) pure {
return replaceVowels(value)
.map!(a => replaceNonVowels(a))
.joiner
.map!(a => replaceAny(a))
.joiner
.filter!(a => !a.canFind("*")).array.idup;
}
/// ditto
immutable(string[2][]) get(string replace)(const string value) pure {
return get(value)
.map!(a => cast(string[2])[a, change(replace, a)])
.array;
}
/**
R1 is the region after the first non-vowel following a vowel, or the end of the word if there is no such non-vowel.
*/
alias region1 = region!true;
/// Get a word region
string region(bool useExceptions)(string word) pure {
if(word.length < 2) {
return "";
}
static if(useExceptions) {
static foreach(prefix; [ "gener", "commun", "arsen"]) {
if(word.startsWith(prefix)) {
return word[prefix.length .. $];
}
}
}
foreach(i; 0..word.length - 1) {
if(vowels.map!"a[0]".canFind(word[i]) && nonVowels.map!"a[0]".canFind(word[i+1])) {
return word[i+2..$];
}
}
return "";
}
/**
R2 is the region after the first non-vowel following a vowel in R1, or the end of the word if there is no such non-vowel.
*/
string region2(string word) pure {
return region!false(region1(word));
}
}
|
D
|
/home/pi/Veilige_soft_test/test_project/test_project/target/debug/build/num-iter-a621ce76a3f616a5/build_script_build-a621ce76a3f616a5: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.37/build.rs
/home/pi/Veilige_soft_test/test_project/test_project/target/debug/build/num-iter-a621ce76a3f616a5/build_script_build-a621ce76a3f616a5.d: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.37/build.rs
/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-iter-0.1.37/build.rs:
|
D
|
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartDataSet.o : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartDataSet~partial.swiftmodule : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineChartDataSet~partial.swiftdoc : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Legend.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerImage.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Range.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/AxisBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/ComponentBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Fill.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Platform.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/Description.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/IMarker.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/Transformer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Renderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Animation/Animator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Filters/DataApproximator.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/XAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/YAxis.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/ChartUtils.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Highlight/Highlight.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/MarkerView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/PieChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/LineChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/BarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/RadarChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Charts/Source/Charts/Components/LegendEntry.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/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Target\ Support\ Files/Charts/Charts-umbrella.h /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
|
D
|
module unecht.core.serialization.sceneSerialization;
import unecht.core.components.sceneNode;
import unecht.core.serialization.serializer;
import sdlang;
///
struct UESceneSerializer
{
private UESerializer baseSerializer;
///
alias baseSerializer this;
private Tag sceneNodesTag;
///
public void serialize(UESceneNode root)
{
if(!sceneNodesTag)
{
sceneNodesTag = new Tag();
sceneNodesTag.name = "nodes";
}
baseSerializer.blacklist ~= root.instanceId;
foreach(rootChild; root.children)
{
serializeNode(rootChild);
}
}
private void serializeNode(UESceneNode node)
{
import unecht.core.hideFlags;
if(!node.hideFlags.isSet(HideFlags.hideInHirarchie))
{
node.serialize(baseSerializer);
auto nodeTag = new Tag(sceneNodesTag);
nodeTag.add(Value(node.instanceId.toString()));
}
}
///
public string toString()
{
auto root = new Tag;
root.add(sceneNodesTag);
root.add(baseSerializer.content);
return root.toSDLDocument();
}
}
///
struct UESceneDeserializer
{
private UEDeserializer base;
///
alias base this;
private Tag sceneNodesTag;
///
this(string input)
{
base = UEDeserializer(input);
sceneNodesTag = root.all.tags["nodes"][0];
assert(sceneNodesTag !is null);
}
///
public void deserialize(UESceneNode root)
{
assert(root);
foreach(Tag node; sceneNodesTag.all.tags)
{
auto id = node.values[0].get!string;
auto scenenode = cast(UESceneNode)base.findLoadedRef(id);
if(scenenode is null)
{
scenenode = new UESceneNode;
base.storeLoadedRef(scenenode,id);
scenenode.deserialize(this,id);
assert(scenenode.parent is null);
scenenode.parent = root;
//import std.stdio;
//writefln("new node added: %s (%s,%s)",scenenode.entity.name,scenenode.parent.children.length,scenenode.children.length);
//writefln("->: %s parent: %s",scenenode.instanceId,scenenode.parent.instanceId);
}
else
{
assert(scenenode.parent is root || scenenode.parent is null);
if(scenenode.parent is null)
scenenode.parent = root;
}
}
foreach(i,lo; base.objectsLoaded)
{
import unecht.core.object;
import unecht.core.entity;
UEObject o = lo.o;
assert(o);
//import std.stdio;
//writefln("loaded [%s]: %s", i, o.instanceId);
if(cast(UESceneNode)o)
{
UESceneNode n = cast(UESceneNode)o;
assert(n.entity);
//writefln(" sceneNode -> %s ('%s')", n.children.length, n.entity.name);
//if(n.parent)
// writefln(" parent -> %s", n.parent.instanceId);
}
if(cast(UEEntity)o)
{
UEEntity e = cast(UEEntity)o;
assert(e.sceneNode);
//writefln(" entity '%s': %s", e.name, e.sceneNode.instanceId);
}
}
void val(UESceneNode n,UESceneNode root)
{
assert(n);
if(n !is root)
{
assert(n.parent, format("no parent: %s",n.instanceId));
assert(n.parent.hasChild(n));
}
foreach(sn; n.children)
{
assert(sn.parent is n, format("'%s'.%s !is '%s'.%s", sn.entity.name, sn.parent.instanceId, n.entity.name,n.instanceId));
val(sn,root);
}
}
// validity check
val(root,root);
}
}
|
D
|
/// Generate by tools
module com.sun.syndication.feed.mod.itunes.EntryInformation;
import java.lang.exceptions;
public class EntryInformation
{
public this()
{
implMissing();
}
}
|
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.glext;
public
{
// ARB
import derelict.opengl.extension.arb.color_buffer_float;
import derelict.opengl.extension.arb.depth_texture;
import derelict.opengl.extension.arb.draw_buffers;
import derelict.opengl.extension.arb.pixel_buffer_object;
import derelict.opengl.extension.arb.fragment_program;
import derelict.opengl.extension.arb.fragment_program_shadow;
import derelict.opengl.extension.arb.fragment_shader;
import derelict.opengl.extension.arb.half_float_pixel;
import derelict.opengl.extension.arb.matrix_palette;
import derelict.opengl.extension.arb.multisample;
import derelict.opengl.extension.arb.multitexture;
import derelict.opengl.extension.arb.occlusion_query;
import derelict.opengl.extension.arb.pixel_buffer_object;
import derelict.opengl.extension.arb.point_parameters;
import derelict.opengl.extension.arb.point_sprite;
import derelict.opengl.extension.arb.shader_objects;
import derelict.opengl.extension.arb.shading_language_100;
import derelict.opengl.extension.arb.shadow;
import derelict.opengl.extension.arb.shadow_ambient;
import derelict.opengl.extension.arb.texture_border_clamp;
import derelict.opengl.extension.arb.texture_compression;
import derelict.opengl.extension.arb.texture_cube_map;
import derelict.opengl.extension.arb.texture_env_add;
import derelict.opengl.extension.arb.texture_env_combine;
import derelict.opengl.extension.arb.texture_env_crossbar;
import derelict.opengl.extension.arb.texture_env_dot3;
import derelict.opengl.extension.arb.texture_float;
import derelict.opengl.extension.arb.texture_mirrored_repeat;
import derelict.opengl.extension.arb.texture_non_power_of_two;
import derelict.opengl.extension.arb.texture_rectangle;
import derelict.opengl.extension.arb.transpose_matrix;
import derelict.opengl.extension.arb.vertex_blend;
import derelict.opengl.extension.arb.vertex_buffer_object;
import derelict.opengl.extension.arb.vertex_program;
import derelict.opengl.extension.arb.vertex_shader;
import derelict.opengl.extension.arb.window_pos;
// EXT
import derelict.opengl.extension.ext.Cg_shader;
import derelict.opengl.extension.ext.abgr;
import derelict.opengl.extension.ext.bgra;
import derelict.opengl.extension.ext.blend_color;
import derelict.opengl.extension.ext.blend_equation_separate;
import derelict.opengl.extension.ext.blend_func_separate;
import derelict.opengl.extension.ext.blend_minmax;
import derelict.opengl.extension.ext.blend_subtract;
import derelict.opengl.extension.ext.clip_volume_hint;
import derelict.opengl.extension.ext.cmyka;
import derelict.opengl.extension.ext.color_subtable;
import derelict.opengl.extension.ext.compiled_vertex_array;
import derelict.opengl.extension.ext.convolution;
import derelict.opengl.extension.ext.coordinate_frame;
import derelict.opengl.extension.ext.cull_vertex;
import derelict.opengl.extension.ext.depth_bounds_test;
import derelict.opengl.extension.ext.draw_buffers2;
import derelict.opengl.extension.ext.draw_instanced;
import derelict.opengl.extension.ext.draw_range_elements;
import derelict.opengl.extension.ext.fog_coord;
import derelict.opengl.extension.ext.four22_pixels;
import derelict.opengl.extension.ext.fragment_lighting;
import derelict.opengl.extension.ext.framebuffer_blit;
import derelict.opengl.extension.ext.framebuffer_multisample;
import derelict.opengl.extension.ext.framebuffer_object;
import derelict.opengl.extension.ext.framebuffer_sRGB;
import derelict.opengl.extension.ext.geometry_shader4;
import derelict.opengl.extension.ext.gpu_program_parameters;
import derelict.opengl.extension.ext.gpu_shader4;
import derelict.opengl.extension.ext.histogram;
import derelict.opengl.extension.ext.light_texture;
import derelict.opengl.extension.ext.misc_attribute;
import derelict.opengl.extension.ext.multi_draw_arrays;
import derelict.opengl.extension.ext.multisample;
import derelict.opengl.extension.ext.packed_depth_stencil;
import derelict.opengl.extension.ext.packed_float;
import derelict.opengl.extension.ext.packed_pixels;
import derelict.opengl.extension.ext.paletted_texture;
import derelict.opengl.extension.ext.pixel_buffer_object;
import derelict.opengl.extension.ext.pixel_transform;
import derelict.opengl.extension.ext.pixel_transform_color_table;
import derelict.opengl.extension.ext.point_parameters;
import derelict.opengl.extension.ext.rescale_normal;
import derelict.opengl.extension.ext.scene_marker;
import derelict.opengl.extension.ext.secondary_color;
import derelict.opengl.extension.ext.separate_specular_color;
import derelict.opengl.extension.ext.shadow_funcs;
import derelict.opengl.extension.ext.shared_texture_palette;
import derelict.opengl.extension.ext.stencil_clear_tag;
import derelict.opengl.extension.ext.stencil_two_side;
import derelict.opengl.extension.ext.stencil_wrap;
import derelict.opengl.extension.ext.texture3D;
import derelict.opengl.extension.ext.texture_array;
import derelict.opengl.extension.ext.texture_buffer_object;
import derelict.opengl.extension.ext.texture_compression_dxt1;
import derelict.opengl.extension.ext.texture_compression_latc;
import derelict.opengl.extension.ext.texture_compression_rgtc;
import derelict.opengl.extension.ext.texture_compression_s3tc;
import derelict.opengl.extension.ext.texture_cube_map;
import derelict.opengl.extension.ext.texture_edge_clamp;
import derelict.opengl.extension.ext.texture_env_add;
import derelict.opengl.extension.ext.texture_env_combine;
import derelict.opengl.extension.ext.texture_env_dot3;
import derelict.opengl.extension.ext.texture_filter_anisotropic;
import derelict.opengl.extension.ext.texture_integer;
import derelict.opengl.extension.ext.texture_lod_bias;
import derelict.opengl.extension.ext.texture_mirror_clamp;
import derelict.opengl.extension.ext.texture_perturb_normal;
import derelict.opengl.extension.ext.texture_rectangle;
import derelict.opengl.extension.ext.texture_sRGB;
import derelict.opengl.extension.ext.timer_query;
import derelict.opengl.extension.ext.vertex_shader;
import derelict.opengl.extension.ext.vertex_weighting;
// ATI
import derelict.opengl.extension.ati.draw_buffers;
import derelict.opengl.extension.ati.element_array;
import derelict.opengl.extension.ati.envmap_bumpmap;
import derelict.opengl.extension.ati.fragment_shader;
import derelict.opengl.extension.ati.map_object_buffer;
import derelict.opengl.extension.ati.pn_triangles;
import derelict.opengl.extension.ati.separate_stencil;
import derelict.opengl.extension.ati.shader_texture_lod;
import derelict.opengl.extension.ati.text_fragment_shader;
import derelict.opengl.extension.ati.texture_compression_3dc;
import derelict.opengl.extension.ati.texture_env_combine3;
import derelict.opengl.extension.ati.texture_float;
import derelict.opengl.extension.ati.texture_mirror_once;
import derelict.opengl.extension.ati.vertex_array_object;
import derelict.opengl.extension.ati.vertex_attrib_array_object;
import derelict.opengl.extension.ati.vertex_streams;
// NV
import derelict.opengl.extension.nv.blend_square;
import derelict.opengl.extension.nv.copy_depth_to_color;
import derelict.opengl.extension.nv.depth_buffer_float;
import derelict.opengl.extension.nv.depth_clamp;
import derelict.opengl.extension.nv.evaluators;
import derelict.opengl.extension.nv.fence;
import derelict.opengl.extension.nv.float_buffer;
import derelict.opengl.extension.nv.fog_distance;
import derelict.opengl.extension.nv.fragment_program;
import derelict.opengl.extension.nv.fragment_program2;
import derelict.opengl.extension.nv.fragment_program4;
import derelict.opengl.extension.nv.fragment_program_option;
import derelict.opengl.extension.nv.framebuffer_multisample_coverage;
import derelict.opengl.extension.nv.geometry_program4;
import derelict.opengl.extension.nv.geometry_shader4;
import derelict.opengl.extension.nv.gpu_program4;
import derelict.opengl.extension.nv.half_float;
import derelict.opengl.extension.nv.light_max_exponent;
import derelict.opengl.extension.nv.multisample_filter_hint;
import derelict.opengl.extension.nv.occlusion_query;
import derelict.opengl.extension.nv.packed_depth_stencil;
import derelict.opengl.extension.nv.parameter_buffer_object;
import derelict.opengl.extension.nv.pixel_data_range;
import derelict.opengl.extension.nv.point_sprite;
import derelict.opengl.extension.nv.primitive_restart;
import derelict.opengl.extension.nv.register_combiners;
import derelict.opengl.extension.nv.register_combiners2;
import derelict.opengl.extension.nv.texgen_emboss;
import derelict.opengl.extension.nv.texgen_reflection;
import derelict.opengl.extension.nv.texture_compression_vtc;
import derelict.opengl.extension.nv.texture_env_combine4;
import derelict.opengl.extension.nv.texture_expand_normal;
import derelict.opengl.extension.nv.texture_rectangle;
import derelict.opengl.extension.nv.texture_shader;
import derelict.opengl.extension.nv.texture_shader2;
import derelict.opengl.extension.nv.texture_shader3;
import derelict.opengl.extension.nv.transform_feedback;
import derelict.opengl.extension.nv.vertex_array_range;
import derelict.opengl.extension.nv.vertex_array_range2;
import derelict.opengl.extension.nv.vertex_program;
import derelict.opengl.extension.nv.vertex_program1_1;
import derelict.opengl.extension.nv.vertex_program2;
import derelict.opengl.extension.nv.vertex_program2_option;
import derelict.opengl.extension.nv.vertex_program3;
import derelict.opengl.extension.nv.vertex_program4;
// HP
import derelict.opengl.extension.hp.convolution_border_modes;
// SGI
import derelict.opengl.extension.sgi.color_matrix;
// SGIS
import derelict.opengl.extension.sgis.generate_mipmap;
} // public
|
D
|
module android.java.java.security.AlgorithmParametersSpi_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
final class AlgorithmParametersSpi : IJavaObject {
static immutable string[] _d_canCastTo = [
];
@Import this(arsd.jni.Default);
@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/AlgorithmParametersSpi;";
}
|
D
|
/**
Copyright: Copyright (c) 2015-2016 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module voxelman.remotecontrol.plugin;
import std.stdio;
import std.experimental.logger;
import std.traits : Select;
import pluginlib;
import voxelman.core.events;
import voxelman.eventdispatcher.plugin;
import voxelman.command.plugin;
shared static this()
{
pluginRegistry.regClientPlugin(new RemoteControl!true);
pluginRegistry.regServerPlugin(new RemoteControl!false);
}
final class RemoteControl(bool clientSide) : IPlugin
{
alias CommandPlugin = Select!(clientSide, CommandPluginClient, CommandPluginServer);
// IPlugin stuff
mixin IdAndSemverFrom!(voxelman.remotecontrol.plugininfo);
private EventDispatcherPlugin evDispatcher;
private CommandPlugin commandPlugin;
private char[] buf;
override void preInit() {
buf = new char[](2048);
}
override void init(IPluginManager pluginman)
{
evDispatcher = pluginman.getPlugin!EventDispatcherPlugin;
evDispatcher.subscribeToEvent(&onPreUpdateEvent);
commandPlugin = pluginman.getPlugin!CommandPlugin;
}
void onPreUpdateEvent(ref PreUpdateEvent event)
{
try readStdin();
catch (Exception e) { warningf("Exception while reading stdin: %s", e); }
}
void readStdin()
{
if (!stdin.isOpen || stdin.eof || stdin.error) return;
auto size = stdin.size;
if (size > 0 && size != ulong.max)
{
import std.regex : ctRegex, splitter;
import std.algorithm : min;
import std.array : array;
size_t charsToRead = min(size, buf.length);
char[] data = stdin.rawRead(buf[0..charsToRead]);
auto splittedLines = splitter(data, ctRegex!"(\r\n|\r|\n|\v|\f)").array;
while (splittedLines.length > 1)
{
char[] command = splittedLines[0];
splittedLines = splittedLines[1..$];
ExecResult res = commandPlugin.execute(command, ClientId(0));
if (res.status == ExecStatus.notRegistered)
{
warningf("Unknown command '%s'", command);
}
else if (res.status == ExecStatus.error)
warningf("Error executing command '%s': %s", command, res.error);
}
if (splittedLines.length == 1)
stdin.seek(-cast(long)splittedLines[0].length);
}
}
}
|
D
|
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Vapor.build/Content/ContentCoders.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.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/NIOHTTP1.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOTLS.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/Routing.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Crypto.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/WebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl-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/Vapor.build/Content/ContentCoders~partial.swiftmodule : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.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/NIOHTTP1.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOTLS.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/Routing.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Crypto.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/WebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl-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/Vapor.build/Content/ContentCoders~partial.swiftdoc : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionData.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Thread.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/URLEncoded.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/ServeCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/RoutesCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/BootCommand.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Method.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionCache.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ResponseCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/RequestCodable.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/Middleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/FileMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/DateMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Response.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/AnyResponse.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServerConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/SessionsConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentConfig.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/HTTPMethod+String.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Path.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Request+Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Session.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Application.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/RouteCollection.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Function.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/VaporProvider.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Responder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/BasicResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/ApplicationResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/PlaintextEncoder.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/ParametersContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/QueryContainer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/EngineRouter.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/Server.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/NIOServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Server/RunningServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Error.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Logging/Logger+LogError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/AbortError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/Sessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Sessions/MemorySessions.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/ContentCoders.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/HTTPStatus.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Response/Redirect.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/SingleValueGet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Config+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Services/Services+Default.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/Client.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Client/FoundationClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Routing/Router+Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Content/Content.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Error/Abort.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/Request/Request.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/vapor/Sources/Vapor/View/Vapor+View.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/NIOHTTP1.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOTLS.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/Routing.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Crypto.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/WebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-ssl-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
|
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Routing.build/Method+Wildcard.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Method+Wildcard.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameterizable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder+Grouping.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Request+Routing.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteGroup.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router+Responder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameters.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Random.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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/Transport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /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/Routing.build/Method+Wildcard~partial.swiftmodule : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Method+Wildcard.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameterizable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder+Grouping.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Request+Routing.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteGroup.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router+Responder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameters.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Random.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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/Transport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /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/Routing.build/Method+Wildcard~partial.swiftdoc : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Method+Wildcard.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameterizable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder+Grouping.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Request+Routing.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteGroup.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/RouteBuilder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router+Responder.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Router.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/routing.git-5366657101075133678/Sources/Routing/Parameters.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/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Random.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 /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.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/Transport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /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
|
// ***************
// SPL_SummonDemon
// ***************
const int SPL_Cost_SummonDemon = 120;
var int SumDemonUsed;
INSTANCE Spell_SummonDemon (C_Spell_Proto) //ehem. Spell_Demon
{
time_per_mana = 0;
targetCollectAlgo = TARGET_COLLECT_NONE;
};
func int Spell_Logic_SummonDemon(var int manaInvested)
{
if (Npc_GetActiveSpellIsScroll(self) && (self.attribute[ATR_MANA] >= SPL_Cost_Scroll))
{
return SPL_SENDCAST;
}
else if (self.attribute[ATR_MANA] >= SPL_Cost_SummonDemon)
{
return SPL_SENDCAST;
}
else //nicht genug Mana
{
return SPL_SENDSTOP;
};
};
func void Spell_Cast_SummonDemon()
{
if (Npc_IsPlayer(self) && !SumDemonUsed) {
SumDemonUsed = TRUE;
WillUzyteZaklecia += 1;
};
if (Npc_GetActiveSpellIsScroll(self))
{
self.attribute[ATR_MANA] = self.attribute[ATR_MANA] - SPL_Cost_Scroll;
}
else
{
self.attribute[ATR_MANA] = self.attribute[ATR_MANA] - SPL_Cost_SummonDemon;
};
if (Npc_IsPlayer(self))
{
Wld_SpawnNpcRange (self, Summoned_Demon, 1, 1000);
}
else
{
Wld_SpawnNpcRange (self, Demon, 1, 1000);
};
self.aivar[AIV_SelectSpell] += 1;
};
|
D
|
module regal.ast.column;
private {
import regal.ast;
import regal.visitor;
import std.string;
}
/// Interface common to all node types
interface Column : Node {}
/// Has no ordering, but one can be applied to it
final class UnorderedColumn : Column, WhereCondition {
const string table_name;
const string name;
mixin(generate_op_str("lt", "Lt"));
mixin(generate_op_str("lte", "Lte"));
mixin(generate_op_str("gt", "Gt"));
mixin(generate_op_str("gte", "Gte"));
mixin(generate_op_str("eq", "Eq"));
mixin(generate_op_str("ne", "Ne"));
mixin(generate_op_str("_in", "In"));
mixin(generate_op_str("not_in", "NotIn"));
mixin(generate_op_str("like", "Like"));
mixin(generate_op_str("not_like", "NotLike"));
//#line 32 "regal/ast/column.d"
this(const string table_name, const string name) @safe pure nothrow {
this.table_name = table_name;
this.name = name;
}
AsColumn as(string as_name) @safe pure nothrow const
{
return new AsColumn(this, as_name);
}
OrderedColumn asc()
@safe pure nothrow const
{
return new OrderedColumn(this, OrderedColumn.Dir.Asc);
}
OrderedColumn desc()
@safe pure nothrow const
{
return new OrderedColumn(this, OrderedColumn.Dir.Desc);
}
OrderedColumn order(string dir)
@safe pure nothrow const
{
return new OrderedColumn(this, OrderedColumn.Dir.Other, dir);
}
mixin AndOrableImpl;
private:
// binary operation a primitive
BinaryCompare bin_with(T)(BinaryCompare.Op kind, T other)
@trusted pure nothrow const
if(!isClass!T)
{
return new BinaryCompare(kind,
cast(const(WhereCondition)) this,
cast(WhereCondition) new LitNode!T(other));
}
// binary operation with another column node
BinaryCompare bin_with(
const BinaryCompare.Op kind,
const UnorderedColumn other)
@trusted pure nothrow const
{
return new BinaryCompare(kind,
cast(const(WhereCondition)) this,
cast(const(WhereCondition)) other);
}
public:
mixin AcceptVisitor2;
}
/// Aliased column
final class AsColumn : Column, WhereCondition {
const UnorderedColumn root;
const string as_name;
this(const UnorderedColumn root, string new_name) @safe pure nothrow
{
this.root = root;
this.as_name = new_name;
}
mixin AcceptVisitor2;
}
// Column with an ordering; used in Order(OrderedColumn[] ...) nodes
final class OrderedColumn : Column, WhereCondition {
enum Dir {
Asc,
Desc,
Other
}
const UnorderedColumn root;
const Dir dir;
const string order_str;
this(const UnorderedColumn root, Dir dir, const string order_str = "")
@safe pure nothrow
{
this.root = root;
this.dir = dir;
if(dir == Dir.Other) {
this.order_str = order_str;
}
else {
this.order_str = "";
}
}
mixin AcceptVisitor2;
}
// Generate operator methods, given the op's name, and the BinaryCompare Op
// on BinaryCompare.Op
private
string generate_op_str(string op_name, string binop_kind) {
return "
BinaryCompare %s(V)(V other) @safe pure nothrow const
{
return bin_with(BinaryCompare.Op.%s, other);
}
".format(op_name, binop_kind);
}
|
D
|
bool addArticle()
{
scope(failure) return false; // #2
return true; // #1
}
|
D
|
instance PIR_1353_Addon_Morgan(Npc_Default)
{
name[0] = "Morgan";
guild = GIL_PIR;
id = 1353;
voice = 7;
flags = FALSE;
npcType = npctype_main;
B_SetAttributesToChapter(self,3);
fight_tactic = FAI_HUMAN_STRONG;
EquipItem(self,ItMw_Doppelaxt);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_FatBald",Face_L_Tough_Santino,BodyTex_L,ITAR_PIR_M_Addon);
Mdl_SetModelFatness(self,1);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,50);
daily_routine = Rtn_START_1353;
};
func void Rtn_START_1353()
{
TA_Sleep(5,0,20,0,"ADW_PIRATECAMP_CAVE_BED");
TA_Sleep(20,0,5,0,"ADW_PIRATECAMP_CAVE_BED");
};
func void Rtn_GregIsBack_1353()
{
TA_Saw(23,0,9,0,"ADW_PIRATECAMP_SAW_01");
TA_Saw(9,0,23,0,"ADW_PIRATECAMP_SAW_01");
};
|
D
|
/*
* This file is part of serpent.
*
* Copyright © 2019-2020 Lispy Snake, Ltd.
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and 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 in the product documentation 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 source distribution.
*/
module serpent.core.entity;
import serpent.core.entitymanager : EntityManager;
import std.stdint;
/**
* An EntityID at this point is nothing more than a uint32_t. This does
* currently limit the maximum number of entities in the world, but we
* may change eventually to a uint64_t with versioning.
*/
alias EntityID = uint32_t;
import std.exception : enforce;
|
D
|
// URL: https://atcoder.jp/contests/abc076/tasks/abc076_c
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;
auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r,v);}
void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);}
void readA(T)(size_t n,ref T[]t){t=new T[](n);auto r=rdsp;foreach(ref v;t)pick(r,v);}
void readM(T)(size_t r,size_t c,ref T[][]t){t=new T[][](r);foreach(ref v;t)readA(c,v);}
void readC(T...)(size_t n,ref T t){foreach(ref v;t)v=new typeof(v)(n);foreach(i;0..n){auto r=rdsp;foreach(ref v;t)pick(r,v[i]);}}
void readS(T)(size_t n,ref T t){t=new T(n);foreach(ref v;t){auto r=rdsp;foreach(ref j;v.tupleof)pick(r,j);}}
void writeA(T)(size_t n,T t){foreach(i,v;t.enumerate){write(v);if(i<n-1)write(" ");}writeln;}
version(unittest) {} else
void main()
{
string s; readV(s);
string t; readV(t);
auto ns = s.length.to!int, nt = t.length.to!int;
loop: foreach_reverse (i; 0..ns-nt+1) {
auto u = s.dup;
foreach (j; 0..nt) {
if (u[i+j] == '?') {
u[i+j] = t[j];
} else {
if (u[i+j] != t[j]) continue loop;
}
}
foreach (ref ui; u)
if (ui == '?') ui = 'a';
writeln(u);
return;
}
writeln("UNRESTORABLE");
}
|
D
|
module imports.test9692b;
int k;
|
D
|
module UnrealScript.UnrealEd.ApexDestructibleAssetThumbnailRenderer;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.UnrealEd.DefaultSizedThumbnailRenderer;
extern(C++) interface ApexDestructibleAssetThumbnailRenderer : DefaultSizedThumbnailRenderer
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class UnrealEd.ApexDestructibleAssetThumbnailRenderer")); }
private static __gshared ApexDestructibleAssetThumbnailRenderer mDefaultProperties;
@property final static ApexDestructibleAssetThumbnailRenderer DefaultProperties() { mixin(MGDPC("ApexDestructibleAssetThumbnailRenderer", "ApexDestructibleAssetThumbnailRenderer UnrealEd.Default__ApexDestructibleAssetThumbnailRenderer")); }
}
|
D
|
/Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Intermediates.noindex/ChousainPlus.build/Debug-iphonesimulator/ChousainPlus.build/Objects-normal/x86_64/PhotoNew.o : /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/RecordData.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/Grid.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/PlaneNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/TextNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/BoxNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/ResearchStage.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteboardRuleLine.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/CameraLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/AppDelegate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Building.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Research.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/BuildingTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ReserchTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Photo.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/RoomMap.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/HttpManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/LoginController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ResearchListController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/SyncViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/UploadViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteBoardViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/EditPhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WorldMapViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraCloseupViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Owner.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardMaster.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoNew.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Dictionary.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardDictionary.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/LNZTreeView.swiftmodule/x86_64.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/ModelIO.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/simd.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/AVFoundation.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/CoreAudio.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/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ARKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSubscription.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/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/ModelIO.framework/Headers/ModelIO.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/CoreMedia.framework/Headers/CoreMedia.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/AVFoundation.framework/Headers/AVFoundation.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/GLKit.framework/Headers/GLKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SceneKit.framework/Headers/SceneKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SpriteKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Intermediates.noindex/ChousainPlus.build/Debug-iphonesimulator/ChousainPlus.build/Objects-normal/x86_64/PhotoNew~partial.swiftmodule : /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/RecordData.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/Grid.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/PlaneNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/TextNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/BoxNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/ResearchStage.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteboardRuleLine.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/CameraLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/AppDelegate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Building.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Research.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/BuildingTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ReserchTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Photo.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/RoomMap.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/HttpManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/LoginController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ResearchListController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/SyncViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/UploadViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteBoardViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/EditPhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WorldMapViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraCloseupViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Owner.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardMaster.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoNew.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Dictionary.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardDictionary.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/LNZTreeView.swiftmodule/x86_64.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/ModelIO.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/simd.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/AVFoundation.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/CoreAudio.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/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ARKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSubscription.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/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/ModelIO.framework/Headers/ModelIO.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/CoreMedia.framework/Headers/CoreMedia.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/AVFoundation.framework/Headers/AVFoundation.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/GLKit.framework/Headers/GLKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SceneKit.framework/Headers/SceneKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SpriteKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Intermediates.noindex/ChousainPlus.build/Debug-iphonesimulator/ChousainPlus.build/Objects-normal/x86_64/PhotoNew~partial.swiftdoc : /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/RecordData.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/Grid.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/PlaneNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/TextNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/node/BoxNode.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/ResearchStage.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteboardRuleLine.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/CameraLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoLocate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/AppDelegate.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Building.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Research.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/BuildingTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ReserchTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoTableCell.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Photo.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/RoomMap.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/HttpManager.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/LoginController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/ResearchListController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/SyncViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/UploadViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WhiteBoardViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/PhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/EditPhotoViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/WorldMapViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/CameraCloseupViewController.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Owner.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardMaster.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/PhotoNew.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/Dictionary.swift /Users/yamaguchiMacPro/Documents/work/ChousainPlus/ChousainPlus/model/WhiteBoardDictionary.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/LNZTreeView.swiftmodule/x86_64.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/ModelIO.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/simd.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/AVFoundation.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/CoreAudio.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/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ARKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-umbrella.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSubscription.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Headers/Alamofire-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Headers/LNZTreeView-Swift.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Carthage/Build/iOS/Alamofire.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap /Users/yamaguchiMacPro/Documents/work/ChousainPlus/Build/Products/Debug-iphonesimulator/LNZTreeView/LNZTreeView.framework/Modules/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/ModelIO.framework/Headers/ModelIO.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/CoreMedia.framework/Headers/CoreMedia.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/AVFoundation.framework/Headers/AVFoundation.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/GLKit.framework/Headers/GLKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SceneKit.framework/Headers/SceneKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/SpriteKit.framework/Headers/SpriteKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
D
|
/home/ubuntu/substrate-node-template/target/release/build/libp2p-core-78bfa1d6b7d36fa3/build_script_build-78bfa1d6b7d36fa3: /home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-core-0.22.1/build.rs
/home/ubuntu/substrate-node-template/target/release/build/libp2p-core-78bfa1d6b7d36fa3/build_script_build-78bfa1d6b7d36fa3.d: /home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-core-0.22.1/build.rs
/home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/libp2p-core-0.22.1/build.rs:
|
D
|
/+++++++++++++++++++++++++++++
+ This module defines algorithm 'merge'
+/
module rx.algorithm.merge;
import rx.disposable;
import rx.observable;
import rx.observer;
import rx.util;
//####################
// Merge
//####################
struct MergeObservable(TObservable1, TObservable2)
{
import std.traits : CommonType;
alias ElementType = CommonType!(TObservable1.ElementType, TObservable2.ElementType);
public:
this(TObservable1 o1, TObservable2 o2)
{
_observable1 = o1;
_observable2 = o2;
}
public:
auto subscribe(T)(T observer)
{
auto d1 = _observable1.doSubscribe(observer);
auto d2 = _observable2.doSubscribe(observer);
return new CompositeDisposable(disposableObject(d1), disposableObject(d2));
}
private:
TObservable1 _observable1;
TObservable2 _observable2;
}
///
MergeObservable!(T1, T2) merge(T1, T2)(auto ref T1 observable1, auto ref T2 observable2)
{
return typeof(return)(observable1, observable2);
}
///
unittest
{
import rx.subject : SubjectObject;
auto s1 = new SubjectObject!int;
auto s2 = new SubjectObject!short;
auto merged = s1.merge(s2);
int count = 0;
auto d = merged.doSubscribe((int n) { count++; });
assert(count == 0);
s1.put(1);
assert(count == 1);
s2.put(2);
assert(count == 2);
d.dispose();
s1.put(10);
assert(count == 2);
s2.put(100);
assert(count == 2);
}
///
auto merge(TObservable)(auto ref TObservable observable)
if (isObservable!TObservable && isObservable!(TObservable.ElementType))
{
import rx.subject : SubjectObject;
static struct MergeObservable_Flat
{
alias ElementType = TObservable.ElementType.ElementType;
this(TObservable observable)
{
_observable = observable;
}
auto subscribe(TObserver)(TObserver observer)
{
auto subject = new SubjectObject!ElementType;
auto groupSubscription = new CompositeDisposable;
auto innerSubscription = subject.doSubscribe(observer);
auto outerSubscription = _observable.doSubscribe((TObservable.ElementType obj) {
auto subscription = obj.doSubscribe(subject);
groupSubscription.insert(disposableObject(subscription));
}, { subject.completed(); }, (Exception e) { subject.failure(e); });
return new CompositeDisposable(groupSubscription, innerSubscription, outerSubscription);
}
TObservable _observable;
}
return MergeObservable_Flat(observable);
}
///
unittest
{
import rx.algorithm.groupby : groupBy;
import rx.algorithm.map : map;
import rx.algorithm.fold : fold;
import rx.subject : SubjectObject, CounterObserver;
auto subject = new SubjectObject!int;
auto counted = subject.groupBy!(n => n % 10).map!(o => o.fold!((a, b) => a + 1)(0)).merge();
auto counter = new CounterObserver!int;
auto disposable = counted.subscribe(counter);
subject.put(0);
subject.put(0);
assert(counter.putCount == 0);
subject.completed();
assert(counter.putCount == 1);
assert(counter.lastValue == 2);
}
|
D
|
import std.stdio;
void main(){
string func = __FUNCTION__;
}
|
D
|
module allegro5.color;
import allegro5.internal.da5;
extern (C)
{
struct ALLEGRO_COLOR
{
float r, g, b, a;
}
enum ALLEGRO_PIXEL_FORMAT
{
ALLEGRO_PIXEL_FORMAT_ANY = 0,
ALLEGRO_PIXEL_FORMAT_ANY_NO_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_WITH_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_15_NO_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_16_NO_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_16_WITH_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_24_NO_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_32_NO_ALPHA,
ALLEGRO_PIXEL_FORMAT_ANY_32_WITH_ALPHA,
ALLEGRO_PIXEL_FORMAT_ARGB_8888,
ALLEGRO_PIXEL_FORMAT_RGBA_8888,
ALLEGRO_PIXEL_FORMAT_ARGB_4444,
ALLEGRO_PIXEL_FORMAT_RGB_888, /* 24 bit format */
ALLEGRO_PIXEL_FORMAT_RGB_565,
ALLEGRO_PIXEL_FORMAT_RGB_555,
ALLEGRO_PIXEL_FORMAT_RGBA_5551,
ALLEGRO_PIXEL_FORMAT_ARGB_1555,
ALLEGRO_PIXEL_FORMAT_ABGR_8888,
ALLEGRO_PIXEL_FORMAT_XBGR_8888,
ALLEGRO_PIXEL_FORMAT_BGR_888, /* 24 bit format */
ALLEGRO_PIXEL_FORMAT_BGR_565,
ALLEGRO_PIXEL_FORMAT_BGR_555,
ALLEGRO_PIXEL_FORMAT_RGBX_8888,
ALLEGRO_PIXEL_FORMAT_XRGB_8888,
ALLEGRO_PIXEL_FORMAT_ABGR_F32,
ALLEGRO_PIXEL_FORMAT_ABGR_8888_LE,
ALLEGRO_PIXEL_FORMAT_RGBA_4444,
ALLEGRO_NUM_PIXEL_FORMATS
}
/* Pixel unmapping */
void al_unmap_rgb(ALLEGRO_COLOR color, ubyte* r, ubyte* g, ubyte* b);
void al_unmap_rgba(ALLEGRO_COLOR color, ubyte* r, ubyte* g, ubyte* b, ubyte* a);
void al_unmap_rgb_f(ALLEGRO_COLOR color, float* r, float* g, float* b);
void al_unmap_rgba_f(ALLEGRO_COLOR color, float* r, float* g, float* b, float* a);
/* Pixel formats */
int al_get_pixel_size(int format);
int al_get_pixel_format_bits(int format);
}
/*
* MinGW 4.5 and below has a bizzare calling convention when returning
* structs. These wrappers take care of the differences in calling convention.
*
* This issue does not exist in MSVC and maybe MinGW 4.6.
*/
static import allegro5.color_ret;
version(Windows)
{
version(ALLEGRO_MSVC) {}
else
{
version = ALLEGRO_SUB;
}
}
mixin(ColorWrapper("allegro5.color_ret.", "al_map_rgb", "ubyte r, ubyte g, ubyte b", "r, g, b"));
mixin(ColorWrapper("allegro5.color_ret.", "al_map_rgba", "ubyte r, ubyte g, ubyte b, ubyte a", "r, g, b, a"));
mixin(ColorWrapper("allegro5.color_ret.", "al_map_rgb_f", "float r, float g, float b", "r, g, b"));
mixin(ColorWrapper("allegro5.color_ret.", "al_map_rgba_f", "float r, float g, float b, float a", "r, g, b, a"));
|
D
|
/Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Box.o : /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/String+MD5.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Resource.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Image.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageCache.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageTransition.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Placeholder.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/RequestModifier.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Filter.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Indicator.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Accelerate.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/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/Accelerate.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/sjwu/video/HouseHold/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.h /Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
/Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Box~partial.swiftmodule : /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/String+MD5.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Resource.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Image.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageCache.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageTransition.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Placeholder.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/RequestModifier.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Filter.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Indicator.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Accelerate.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/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/Accelerate.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/sjwu/video/HouseHold/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.h /Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
/Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Box~partial.swiftdoc : /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/String+MD5.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Resource.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Image.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageCache.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageTransition.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherOptionsInfo.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageDownloader.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Placeholder.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/KingfisherManager.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImagePrefetcher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/UIButton+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageView+Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/RequestModifier.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ThreadHelper.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Filter.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/CacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/FormatIndicatedCacheSerializer.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/ImageProcessor.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Indicator.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/AnimatedImageView.swift /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Box.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Accelerate.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/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/Accelerate.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/sjwu/video/HouseHold/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/sjwu/video/HouseHold/Pods/Kingfisher/Sources/Kingfisher.h /Users/sjwu/video/HouseHold/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/unextended-module.modulemap
|
D
|
/Users/JasonVranek/Desktop/LearningProgramming/rust/websocket-threaded/target/debug/build/byteorder-1a58a0162a26ad3a/build_script_build-1a58a0162a26ad3a: /Users/JasonVranek/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.1/build.rs
/Users/JasonVranek/Desktop/LearningProgramming/rust/websocket-threaded/target/debug/build/byteorder-1a58a0162a26ad3a/build_script_build-1a58a0162a26ad3a.d: /Users/JasonVranek/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.1/build.rs
/Users/JasonVranek/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.1/build.rs:
|
D
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.