code
stringlengths
3
10M
language
stringclasses
31 values
module org.apache.lucene.analysis; public import org.apache.lucene.analysis.Analyzer; public import org.apache.lucene.analysis.Tokenizer; public import org.apache.lucene.analysis.TokenStream;
D
// ****************************************************************** // C_NpcIsIcemonster // ------------- // überprüft anhand der gilden ob slf Icemonster ist // ****************************************************************** func int C_NpcIsIcemonster(var C_NPC slf) { if (slf.guild == GIL_IceGOLEM) || (slf.aivar[AIV_MM_REAL_ID] == ID_DRAGON_ICE) || (slf.aivar[AIV_MM_REAL_ID] == ID_SUMMONED_ICEGOLEM) || (slf.aivar[AIV_MM_REAL_ID] == ID_SUMMONED_ICEDRAGON) || (slf.aivar[AIV_MM_REAL_ID] == ID_ICEWOLF) || (Hlp_GetInstanceID(slf) == Hlp_GetInstanceID(Summoned_Eiswolf)) || (Hlp_GetInstanceID(slf) == Hlp_GetInstanceID(Eiswaran)) || (Hlp_GetInstanceID(slf) == Hlp_GetInstanceID(Scavenger_Ice)) || (Hlp_GetInstanceID(slf) == Hlp_GetInstanceID(Gobbo_Eis)) { return TRUE; }; return FALSE; };
D
/Users/dali/Documents/GitHub/rustlings/target/release/deps/lazy_static-fbef61072ce9e5b5.rmeta: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/lib.rs /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/inline_lazy.rs /Users/dali/Documents/GitHub/rustlings/target/release/deps/liblazy_static-fbef61072ce9e5b5.rlib: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/lib.rs /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/inline_lazy.rs /Users/dali/Documents/GitHub/rustlings/target/release/deps/lazy_static-fbef61072ce9e5b5.d: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/lib.rs /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/inline_lazy.rs /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/lib.rs: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-1.4.0/src/inline_lazy.rs:
D
module hip.extensions.file; import hip.filesystem.hipfs; import hip.filesystem.extension; import hip.assets.image; mixin HipFSExtend!(Image, "", void delegate(IImage img), void delegate()) mxImg; alias loadFromFile = mxImg.loadFromFile; import hip.assets.texture; bool loadFromFile(HipTexture texture, string path) { Image img = new Image(path); if(!img.loadFromFile(path, (IImage _img){texture.load(_img);}, () { import hip.console.log; loglnError("Could not load image from path ", path); })) { destroy(img); return false; } return true; } import hip.font.ttf; mixin HipFSExtend!(Hip_TTF_Font, "path") mxTtf; alias loadFromFile = mxTtf.loadFromFile; alias load = mxTtf.load;
D
/Users/hdcui/NIZKs-for-AsiaCCS19-and-HSM-CL/bld_sig/target/rls/debug/deps/curv-11efd640c1b0da14.rmeta: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/lib.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/secp256_k1.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/big_gmp.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/hash_commitment.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/pedersen_commitment.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/blake2b512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha256.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hmac_sha512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_enc.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_encryption_of_dlog.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_dlog.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_ec_ddh.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen_blind.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/feldman_vss.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/coin_flip_optimal_rounds.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange_variant_with_pok_comm.rs /Users/hdcui/NIZKs-for-AsiaCCS19-and-HSM-CL/bld_sig/target/rls/debug/deps/curv-11efd640c1b0da14.d: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/lib.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/secp256_k1.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/big_gmp.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/hash_commitment.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/pedersen_commitment.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/blake2b512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha256.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hmac_sha512.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/traits.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_enc.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_encryption_of_dlog.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_dlog.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_ec_ddh.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen_blind.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/feldman_vss.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/coin_flip_optimal_rounds.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange_variant_with_pok_comm.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/lib.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/secp256_k1.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/elliptic/curves/traits.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/big_gmp.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/arithmetic/traits.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/hash_commitment.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/pedersen_commitment.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/commitments/traits.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/blake2b512.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha256.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hash_sha512.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/hmac_sha512.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/hashing/traits.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_enc.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_correct_homomorphic_elgamal_encryption_of_dlog.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_dlog.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_ec_ddh.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/proofs/sigma_valid_pedersen_blind.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/secret_sharing/feldman_vss.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/mod.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/coin_flip_optimal_rounds.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange.rs: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/d6c575b/src/cryptographic_primitives/twoparty/dh_key_exchange_variant_with_pok_comm.rs:
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 // // License for redistribution is given by the Artistic License 2.0 // see file LICENSE for further details module visuald.viewfilter; import visuald.windows; import visuald.comutil; import visuald.logutil; import visuald.hierutil; import visuald.fileutil; import visuald.stringutil; import visuald.pkgutil; import visuald.dpackage; import visuald.dproject; import visuald.hierarchy; import visuald.chiernode; import visuald.dimagelist; import visuald.completion; import visuald.simpleparser; import visuald.intellisense; import visuald.searchsymbol; import visuald.expansionprovider; import visuald.dlangsvc; import visuald.winctrl; import visuald.tokenreplace; import visuald.cppwizard; import visuald.config; import visuald.build; import visuald.help; import vdc.lexer; import sdk.port.vsi; import sdk.vsi.textmgr; import sdk.vsi.textmgr2; import sdk.vsi.stdidcmd; import sdk.vsi.vsshell; import sdk.vsi.vsdbgcmd; import sdk.vsi.vsdebugguids; import sdk.vsi.msdbg; import stdext.array; import stdext.path; import stdext.string; import std.string; import std.ascii; import std.utf; import std.conv; import std.algorithm; import std.array; /////////////////////////////////////////////////////////////////////////////// interface IVsCustomDataTip : IUnknown { static const GUID iid = uuid("80DD0557-F6FE-48e3-9651-398C5E7D8D78"); HRESULT DisplayDataTip(); } // version = tip; class ViewFilter : DisposingComObject, IVsTextViewFilter, IOleCommandTarget, IVsTextViewEvents, IVsExpansionEvents { CodeWindowManager mCodeWinMgr; IVsTextView mView; uint mCookieTextViewEvents; IOleCommandTarget mNextTarget; int mLastHighlightBracesLine; ViewCol mLastHighlightBracesCol; version(tip) TextTipData mTextTipData; this(CodeWindowManager mgr, IVsTextView view) { mCodeWinMgr = mgr; mView = addref(view); mCookieTextViewEvents = Advise!(IVsTextViewEvents)(mView, this); mView.AddCommandFilter(this, &mNextTarget); version(tip) mTextTipData = addref(newCom!TextTipData); } ~this() { } override void Dispose() { if(mView) { mView.RemoveCommandFilter(this); if(mCookieTextViewEvents) Unadvise!(IVsTextViewEvents)(mView, mCookieTextViewEvents); mView = release(mView); } version(tip) if(mTextTipData) { // we need to break the circular reference TextTipData<->IVsMethodTipWindow mTextTipData.Dispose(); mTextTipData = release(mTextTipData); } mCodeWinMgr = null; } override HRESULT QueryInterface(in IID* riid, void** pvObject) { if(queryInterface!(IVsTextViewFilter) (this, riid, pvObject)) return S_OK; if(queryInterface!(IVsTextViewEvents) (this, riid, pvObject)) return S_OK; if(queryInterface!(IOleCommandTarget) (this, riid, pvObject)) return S_OK; if(queryInterface!(IVsExpansionEvents) (this, riid, pvObject)) return S_OK; return super.QueryInterface(riid, pvObject); } // IOleCommandTarget ////////////////////////////////////// override int QueryStatus( /* [unique][in] */ in GUID *pguidCmdGroup, /* [in] */ in uint cCmds, /* [out][in][size_is] */ OLECMD *prgCmds, /* [unique][out][in] */ OLECMDTEXT *pCmdText) { // mixin(LogCallMix); for (uint i = 0; i < cCmds; i++) { int rc = QueryCommandStatus(pguidCmdGroup, prgCmds[i].cmdID); if(rc == E_FAIL) { if(mNextTarget) return mNextTarget.QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText); return rc; } prgCmds[i].cmdf = cast(uint)rc; } return S_OK; } override int Exec( /* [unique][in] */ in GUID *pguidCmdGroup, /* [in] */ in uint nCmdID, /* [in] */ in uint nCmdexecopt, /* [unique][in] */ in VARIANT *pvaIn, /* [unique][out][in] */ VARIANT *pvaOut) { if(*pguidCmdGroup == CMDSETID_StandardCommandSet2K && nCmdID == 1627 /*OutputPaneCombo*/) return OLECMDERR_E_NOTSUPPORTED; // do not litter output debug { bool logit = true; if(*pguidCmdGroup == CMDSETID_StandardCommandSet2K) { switch(nCmdID) { case ECMD_HANDLEIMEMESSAGE: logit = false; break; default: break; } } else if(*pguidCmdGroup == guidVSDebugCommand) { switch(nCmdID) { case cmdidOutputPaneCombo: case cmdidProcessList: case cmdidThreadList: case cmdidStackFrameList: logit = false; break; default: break; } } if(logit) logCall("%s.Exec(this=%s, pguidCmdGroup=%s, nCmdId=%d: %s)", this, cast(void*) this, _toLog(pguidCmdGroup), nCmdID, cmd2string(*pguidCmdGroup, nCmdID)); } Package.GetLanguageService().OnExec(); ushort lo = (nCmdexecopt & 0xffff); ushort hi = (nCmdexecopt >> 16); bool wasCompletorActive = mCodeWinMgr.mSource.IsCompletorActive(); bool gotEnterKey = false; ExpansionProvider ep = GetExpansionProvider(); if(ep) //if (ep.InTemplateEditingMode) if (ep.HandlePreExec(pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut)) return S_OK; if(*pguidCmdGroup == CMDSETID_StandardCommandSet97) { switch (nCmdID) { case cmdidPasteNextTBXCBItem: if(PasteFromRing() == S_OK) return S_OK; break; case cmdidGotoDefn: return HandleGotoDef(); case cmdidF1Help: return HandleHelp(); default: break; } } if(*pguidCmdGroup == CMDSETID_StandardCommandSet2K) { switch (nCmdID) { case ECMD_RETURN: gotEnterKey = true; break; case ECMD_INVOKESNIPPETFROMSHORTCUT: return HandleSnippet(); case ECMD_PARAMINFO: return HandleMethodTip(); case ECMD_FORMATSELECTION: return ReindentLines(); case ECMD_COMMENTBLOCK: case ECMD_COMMENT_BLOCK: return CommentLines(Source.ForceComment); case ECMD_UNCOMMENTBLOCK: case ECMD_UNCOMMENT_BLOCK: return CommentLines(Source.ForceUncomment); case ECMD_COMPLETEWORD: case ECMD_AUTOCOMPLETE: if(mCodeWinMgr.mSource.IsCompletorActive()) moreCompletions(); else initCompletion(true); return S_OK; case ECMD_SURROUNDWITH: if (mView && ep) //ep.DisplayExpansionBrowser(mView, "Insert Snippet", ["type1", "type2"], true, ["kind1", "kind2"], true); ep.DisplayExpansionBrowser(mView, "Surround with", [], true, [], true); break; case ECMD_INSERTSNIPPET: if (mView && ep) //ep.DisplayExpansionBrowser(mView, "Insert Snippet", ["type1", "type2"], true, ["kind1", "kind2"], true); ep.DisplayExpansionBrowser(mView, "Insert Snippet", [], false, [], false); break; case ECMD_COMPILE: return CompileDoc(); case ECMD_GOTOBRACE: return GotoMatchingPair(false); case ECMD_GOTOBRACE_EXT: return GotoMatchingPair(true); case ECMD_OUTLN_STOP_HIDING_ALL: return mCodeWinMgr.mSource.StopOutlining(); case ECMD_OUTLN_TOGGLE_ALL: return mCodeWinMgr.mSource.ToggleOutlining(); default: break; } } if(g_commandSetCLSID == *pguidCmdGroup) { switch (nCmdID) { case CmdShowScope: return showCurrentScope(); case CmdShowMethodTip: return HandleMethodTip(); case CmdToggleComment: return CommentLines(Source.AutoComment); case CmdConvSelection: return ConvertSelection(); default: break; } } /+ switch (lo) { case OLECMDEXECOPT.OLECMDEXECOPT_SHOWHELP: if((nCmdexecopt >> 16) == VsMenus.VSCmdOptQueryParameterList) { return QueryParameterList(ref guidCmdGroup, nCmdId, nCmdexecopt, pvaIn, pvaOut); } break; default: // On every command, update the tip window if it's active. if(this.textTipData != null && this.textTipData.IsActive()) textTipData.CheckCaretPosition(this.textView); int rc = 0; try { rc = ExecCommand(ref guidCmdGroup, nCmdId, nCmdexecopt, pvaIn, pvaOut); } catch (COMException e) { int hr = e.ErrorCode; // We silently fail on the following errors because the user has // most likely already been prompted with things like source control checkout // dialogs and so forth. if(hr != (int)TextBufferErrors.BUFFER_E_LOCKED && hr != (int)TextBufferErrors.BUFFER_E_READONLY && hr != (int)TextBufferErrors.BUFFER_E_READONLY_REGION && hr != (int)TextBufferErrors.BUFFER_E_SCC_READONLY) { throw; } } return rc; } return OLECMDERR_E_NOTSUPPORTED; +/ int rc = mNextTarget.Exec(pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut); if (ep) if (ep.HandlePostExec(pguidCmdGroup, nCmdID, nCmdexecopt, gotEnterKey, pvaIn, pvaOut)) return rc; if(*pguidCmdGroup == CMDSETID_StandardCommandSet97) { switch (nCmdID) { case cmdidPasteNextTBXCBItem: case cmdidPaste: ReindentPastedLines(); break; default: break; } } if(*pguidCmdGroup == CMDSETID_StandardCommandSet2K) { switch (nCmdID) { case ECMD_RETURN: if(!wasCompletorActive) HandleSmartIndent('\n'); break; case ECMD_LEFT: case ECMD_RIGHT: stopCompletions(); goto case ECMD_UP; case ECMD_BACKSPACE: if(mCodeWinMgr.mSource.IsCompletorActive()) initCompletion(false); goto case; case ECMD_UP: case ECMD_DOWN: if(mCodeWinMgr.mSource.IsMethodTipActive()) HandleMethodTip(); break; case ECMD_TYPECHAR: dchar ch = pvaIn.uiVal; if(ch == '.' && Package.GetGlobalOptions().expandTrigger >= 1 && Package.GetGlobalOptions().projectSemantics) initCompletion(false); else if(mCodeWinMgr.mSource.IsCompletorActive() || Package.GetGlobalOptions().expandTrigger >= 2) { if(isAlphaNum(ch) || ch == '_') initCompletion(false); else stopCompletions(); } if(ch == '{' || ch == '}' || ch == '[' || ch == ']' || ch == 'n' || ch == 't' || ch == 'y') // last characters of "in", "out" and "body" HandleSmartIndent(ch); if(mCodeWinMgr.mSource.IsMethodTipActive()) { if(ch == ',' || ch == ')') HandleMethodTip(); } else if(ch == '(') { LANGPREFERENCES langPrefs; if(GetUserPreferences(&langPrefs) == S_OK && langPrefs.fAutoListParams) _HandleMethodTip(false); } break; default: if(nCmdID < ECMD_FINAL && nCmdID != ECMD_HANDLEIMEMESSAGE) stopCompletions(); break; } } // delayed into idle: HighlightMatchingPairs(); return rc; } ////////////////////////////// HRESULT CompileDoc() { IVsUIShellOpenDocument pIVsUIShellOpenDocument = queryService!(IVsUIShellOpenDocument); if(!pIVsUIShellOpenDocument) return returnError(E_FAIL); scope(exit) release(pIVsUIShellOpenDocument); string fname = mCodeWinMgr.mSource.GetFileName(); wchar* wfname = _toUTF16z(fname); IVsUIHierarchy pUIH; uint itemid; IServiceProvider pSP; VSDOCINPROJECT docInProj; if(pIVsUIShellOpenDocument.IsDocumentInAProject(wfname, &pUIH, &itemid, &pSP, &docInProj) != S_OK) return S_OK; scope(exit) release(pSP); scope(exit) release(pUIH); if(!pUIH) return returnError(E_FAIL); Project proj = qi_cast!Project(pUIH); if(!proj) return S_OK; CHierNode pNode = proj.VSITEMID2Node(itemid); if(!pNode) return returnError(E_INVALIDARG); CFileNode pFile = cast(CFileNode) pNode; if(!pFile) string S_OK; if(pFile.SaveDoc(SLNSAVEOPT_SaveIfDirty) != S_OK) return returnError(E_FAIL); auto solutionBuildManager = queryService!(IVsSolutionBuildManager)(); scope(exit) release(solutionBuildManager); IVsProjectCfg activeCfg; scope(exit) release(activeCfg); if(solutionBuildManager) if(solutionBuildManager.FindActiveProjectCfg(null, null, proj, &activeCfg) == S_OK) { if(Config cfg = qi_cast!Config(activeCfg)) { scope(exit) release(cfg); string tool = pFile.GetTool(); string stool = cfg.GetStaticCompileTool(pFile); if(stool == "DMD") pFile.SetTool("DMDsingle"); scope(exit) pFile.SetTool(tool); string cmd = cfg.GetCompileCommand(pFile, true); if(cmd.length) { string workdir = cfg.GetProjectDir(); string outfile = cfg.GetOutputFile(pFile); string cmdfile = makeFilenameAbsolute(outfile ~ ".syntax", workdir); removeCachedFileTime(makeFilenameAbsolute(outfile, workdir)); auto pane = getBuildOutputPane(); clearBuildOutputPane(); if(pane) pane.Activate(); HRESULT hr = RunCustomBuildBatchFile(outfile, cmdfile, cmd, pane, cfg.getBuilder()); } } } return S_OK; } ////////////////////////////// void initCompletion(bool autoInsert) { CompletionSet cs = mCodeWinMgr.mSource.GetCompletionSet(); Declarations decl = new Declarations; decl.StartExpansions(mView, mCodeWinMgr.mSource, autoInsert); } void moreCompletions() { CompletionSet cs = mCodeWinMgr.mSource.GetCompletionSet(); Declarations decl = cs.mDecls; decl.MoreExpansions(mView, mCodeWinMgr.mSource); } void stopCompletions() { if(CompletionSet cs = mCodeWinMgr.mSource.GetCompletionSet()) if(Declarations decl = cs.mDecls) decl.StopExpansions(); mCodeWinMgr.mSource.DismissCompletor(); } int QueryCommandStatus(in GUID *guidCmdGroup, uint cmdID) { if(*guidCmdGroup == CMDSETID_StandardCommandSet97) { switch (cmdID) { case cmdidPasteNextTBXCBItem: return OLECMDF_SUPPORTED | OLECMDF_ENABLED; case cmdidGotoDefn: //case VsCommands.GotoDecl: //case VsCommands.GotoRef: return OLECMDF_SUPPORTED | OLECMDF_ENABLED; default: break; } } if(*guidCmdGroup == CMDSETID_StandardCommandSet2K) { switch (cmdID) { case ECMD_PARAMINFO: case ECMD_FORMATSELECTION: case ECMD_COMMENTBLOCK: case ECMD_COMMENT_BLOCK: case ECMD_UNCOMMENTBLOCK: case ECMD_UNCOMMENT_BLOCK: case ECMD_COMPLETEWORD: case ECMD_INSERTSNIPPET: case ECMD_INVOKESNIPPETFROMSHORTCUT: case ECMD_SURROUNDWITH: case ECMD_AUTOCOMPLETE: case ECMD_GOTOBRACE: case ECMD_GOTOBRACE_EXT: case ECMD_OUTLN_STOP_HIDING_ALL: case ECMD_OUTLN_TOGGLE_ALL: case ECMD_COMPILE: return OLECMDF_SUPPORTED | OLECMDF_ENABLED; default: break; } } if(g_commandSetCLSID == *guidCmdGroup) { switch (cmdID) { case CmdShowScope: case CmdShowMethodTip: case CmdToggleComment: case CmdConvSelection: return OLECMDF_SUPPORTED | OLECMDF_ENABLED; default: break; } } return E_FAIL; } int HighlightComment(wstring txt, int line, ref ViewCol idx, out int otherLine, out int otherIndex) { int iState, tokidx; uint pos; size_t idxpos = idx; if(Lexer.isStartingComment(txt, idxpos)) { idx = cast(ViewCol) idxpos; tokidx = mCodeWinMgr.mSource.FindLineToken(line, idx, iState, pos); if(pos == idx) { int startState = iState; if(dLex.scan(iState, txt, pos) == TokenCat.Comment) { //if(iState == Lexer.toState(Lexer.State.kNestedComment, 1, 0) || if(iState == Lexer.State.kWhite) { // terminated on same line otherLine = line; otherIndex = pos - 2; //assume 2 character comment extro return S_OK; } if(Lexer.isCommentState(Lexer.scanState(iState))) { if(mCodeWinMgr.mSource.FindEndOfComment(startState, iState, line, pos)) { otherLine = line; otherIndex = pos - 2; //assume 2 character comment extro return S_OK; } } } } } if(Lexer.isEndingComment(txt, idxpos)) { idx = cast(ViewCol) idxpos; tokidx = mCodeWinMgr.mSource.FindLineToken(line, idx, iState, pos); if(tokidx >= 0) { int startState = iState; uint startpos = pos; if(dLex.scan(iState, txt, pos) == TokenCat.Comment) { if(startState == iState || mCodeWinMgr.mSource.FindStartOfComment(startState, line, startpos)) { otherLine = line; otherIndex = startpos; return S_OK; } } /+ int prevpos = pos; int prevline = line; Lexer.scan(iState, txt, pos); if(pos == idx + 2 && iState == Lexer.State.kWhite) { while(line > 0) { TokenInfo[] lineInfo = mCodeWinMgr.mSource.GetLineInfo(line); if(tokidx < 0) tokidx = lineInfo.length - 1; while(tokidx >= 0) { if(lineInfo[tokidx].type != TokenCat.Comment) { otherLine = prevline; otherIndex = prevpos; return S_OK; } prevpos = lineInfo[tokidx].StartIndex; prevline = line; tokidx--; } line--; } } +/ } } return S_FALSE; } int HighlightString(wstring txt, int line, ref ViewCol idx, out int otherLine, out int otherIndex) { int iState; uint pos; auto src = mCodeWinMgr.mSource; int tokidx = src.FindLineToken(line, idx, iState, pos); if(tokidx < 0) return S_FALSE; uint startPos = pos; int startState = iState; int type = dLex.scan(iState, txt, pos); if(type == TokenCat.String) { Lexer.State sstate; sstate = Lexer.scanState(startState); if(idx == startPos && !Lexer.isStringState(sstate)) { if(src.FindEndOfString(startState, iState, line, pos)) { otherLine = line; otherIndex = pos - 1; return S_OK; } return S_FALSE; } sstate = Lexer.scanState(iState); if(idx == pos - 1 && !Lexer.isStringState(sstate)) { if(src.FindStartOfString(startState, line, startPos)) { otherLine = line; otherIndex = startPos; return S_OK; } } } return S_FALSE; } int HighlightMatchingPairs() { int line, otherLine; ViewCol idx, otherIndex; int highlightLen; bool checkMismatch; if(int rc = mView.GetCaretPos(&line, &idx)) return rc; if(FindMatchingPairs(line, idx, otherLine, otherIndex, highlightLen, checkMismatch) != S_OK) return S_OK; TextSpan[2] spans; spans[0].iStartLine = line; spans[0].iStartIndex = idx; spans[0].iEndLine = line; spans[0].iEndIndex = idx + highlightLen; spans[1].iStartLine = otherLine; spans[1].iStartIndex = otherIndex; spans[1].iEndLine = otherLine; spans[1].iEndIndex = otherIndex + highlightLen; // HIGHLIGHTMATCHINGBRACEFLAGS.USERECTANGLEBRACES HRESULT hr = mView.HighlightMatchingBrace(0, 2, spans.ptr); if(highlightLen == 1 && checkMismatch) { wstring txt = mCodeWinMgr.mSource.GetText(line, idx, line, idx + 1); wstring otxt = mCodeWinMgr.mSource.GetText(otherLine, otherIndex, otherLine, otherIndex + 1); if(!otxt.length || !Lexer.isBracketPair(txt[0], otxt[0])) showStatusBarText("mismatched bracket " ~ otxt); } return hr; } int FindMatchingPairs(int line, ref ViewCol idx, out int otherLine, out ViewCol otherIndex, out int highlightLen, out bool checkMismatch) { wstring txt = mCodeWinMgr.mSource.GetText(line, 0, line, -1); if(txt.length <= idx) return S_FALSE; highlightLen = 1; checkMismatch = true; if(HighlightComment(txt, line, idx, otherLine, otherIndex) == S_OK) highlightLen = 2; else if(HighlightString(txt, line, idx, otherLine, otherIndex) == S_OK) checkMismatch = false; else if(!Lexer.isOpeningBracket(txt[idx]) && !Lexer.isClosingBracket(txt[idx])) return S_FALSE; else if(!FindMatchingBrace(line, idx, otherLine, otherIndex)) { // showStatusBarText("no matching bracket found"w); return S_FALSE; } return S_OK; } bool FindMatchingBrace(int line, int idx, out int otherLine, out int otherIndex) { int iState; uint pos; int tok = mCodeWinMgr.mSource.FindLineToken(line, idx, iState, pos); if(tok < 0) return false; wstring text = mCodeWinMgr.mSource.GetText(line, 0, line, -1); uint ppos = pos; int toktype = dLex.scan(iState, text, pos); if(toktype != TokenCat.Operator) return false; if(Lexer.isOpeningBracket(text[ppos])) return mCodeWinMgr.mSource.FindClosingBracketForward(line, iState, pos, otherLine, otherIndex); else if(Lexer.isClosingBracket(text[ppos])) return mCodeWinMgr.mSource.FindOpeningBracketBackward(line, tok, otherLine, otherIndex); return false; } int FindClosingMatchingPairs(out int line, out ViewCol idx, out int otherLine, out ViewCol otherIndex, out int highlightLen, out bool checkMismatch) { if(int rc = mView.GetCaretPos(&line, &idx)) return rc; int caretLine = line; int caretIndex = idx; while(line >= 0) { wstring text = mCodeWinMgr.mSource.GetText(line, 0, line, -1); if(idx < 0) idx = text.length; while(--idx >= 0) { if(Lexer.isOpeningBracket(text[idx]) || text[idx] == '\"' || text[idx] == '`' || text[idx] == '/') { if(FindMatchingPairs(line, idx, otherLine, otherIndex, highlightLen, checkMismatch) == S_OK) if(otherLine > caretLine || (otherLine == caretLine && otherIndex > caretIndex)) return S_OK; } } line--; } return S_FALSE; } int GotoMatchingPair(bool select) { int line, otherLine; ViewCol idx, otherIndex; int highlightLen; bool checkMismatch; if(mView.GetCaretPos(&line, &idx) != S_OK) return S_FALSE; if(FindMatchingPairs(line, idx, otherLine, otherIndex, highlightLen, checkMismatch) != S_OK) if(FindClosingMatchingPairs(line, idx, otherLine, otherIndex, highlightLen, checkMismatch) != S_OK) return S_OK; mView.SetCaretPos(otherLine, otherIndex); TextSpan span; span.iStartLine = otherLine; span.iStartIndex = otherIndex; span.iEndLine = otherLine; span.iEndIndex = otherIndex + highlightLen; mView.EnsureSpanVisible(span); if(select) mView.SetSelection (line, idx, otherLine, otherIndex + highlightLen); return S_OK; } ////////////////////////////// wstring GetWordAtCaret() { int line, idx; if(mView.GetCaretPos(&line, &idx) != S_OK) return ""; int startIdx, endIdx; if(!mCodeWinMgr.mSource.GetWordExtent(line, idx, WORDEXT_CURRENT, startIdx, endIdx)) return ""; return mCodeWinMgr.mSource.GetText(line, startIdx, line, endIdx); } ExpansionProvider GetExpansionProvider() { return mCodeWinMgr.mSource.GetExpansionProvider(); } int HandleSnippet() { int line, idx; if(mView.GetCaretPos(&line, &idx) != S_OK) return S_FALSE; int startIdx, endIdx; if(!mCodeWinMgr.mSource.GetWordExtent(line, idx, WORDEXT_CURRENT, startIdx, endIdx)) return S_FALSE; wstring shortcut = mCodeWinMgr.mSource.GetText(line, startIdx, line, endIdx); TextSpan ts = TextSpan(startIdx, line, endIdx, line); string title, path; ExpansionProvider ep = GetExpansionProvider(); return ep.InvokeExpansionByShortcut(mView, shortcut, ts, true, title, path); } ////////////////////////////////////////////////////////////// int showCurrentScope() { TextSpan span; if(mView.GetCaretPos(&span.iStartLine, &span.iStartIndex) != S_OK) return S_FALSE; int line = span.iStartLine; int idx = span.iStartIndex; int iState; uint pos; int tok = mCodeWinMgr.mSource.FindLineToken(line, idx, iState, pos); wstring curScope; int otherLine, otherIndex; Source src = mCodeWinMgr.mSource; while(src.FindOpeningBracketBackward(line, tok, otherLine, otherIndex)) { tok = mCodeWinMgr.mSource.FindLineToken(line, otherIndex, iState, pos); wstring bracket = src.GetText(otherLine, otherIndex, otherLine, otherIndex + 1); if(bracket == "{"w) { wstring fn; src.findStatementStart(otherLine, otherIndex, fn); wstring name = src.getScopeIdentifer(otherLine, otherIndex, fn); if(name.length && name != "{") { if(curScope.length) curScope = "." ~ curScope; curScope = name ~ curScope; } } line = otherLine; } if(curScope.length) showStatusBarText("Scope: " ~ curScope); else showStatusBarText("Scope: at module scope"w); return S_OK; } ////////////////////////////////////////////////////////////// int ConvertSelection() { if(convertSelection(mView)) return S_OK; return S_FALSE; } ////////////////////////////////////////////////////////////// int HandleSmartIndent(dchar ch) { LANGPREFERENCES langPrefs; if(int rc = GetUserPreferences(&langPrefs)) return rc; if(langPrefs.IndentStyle != vsIndentStyleSmart) return S_FALSE; int line, idx, len; if(int rc = mView.GetCaretPos(&line, &idx)) return rc; if(ch != '\n') idx--; else if(mCodeWinMgr.mSource.mBuffer.GetLengthOfLine(line, &len) == S_OK && len > 0) return ReindentLines(); wstring linetxt = mCodeWinMgr.mSource.GetText(line, 0, line, -1); int p, orgn = countVisualSpaces(linetxt, langPrefs.uTabSize, &p); wstring trimmed; if(std.ascii.isAlpha(ch) && ((trimmed = strip(linetxt)) == "in" || trimmed == "out" || trimmed == "body")) return ReindentLines(); if(idx > p || (ch != '\n' && linetxt[p] != ch)) return S_FALSE; // do nothing if not at beginning of line Source.CacheLineIndentInfo cacheInfo; int n = mCodeWinMgr.mSource.CalcLineIndent(line, ch, &langPrefs, cacheInfo); if(n < 0 || n == orgn) return S_OK; if(ch == '\n') return mView.SetCaretPos(line, n); else return mCodeWinMgr.mSource.doReplaceLineIndent(line, p, n, &langPrefs); } int ReindentLines() { int iStartLine, iStartIndex, iEndLine, iEndIndex; int hr = GetSelectionForward(mView, &iStartLine, &iStartIndex, &iEndLine, &iEndIndex); if(FAILED(hr)) // S_FALSE if no selection, but caret-coordinates returned return hr; return ReindentLines(iStartLine, iEndLine); } int ReindentLines(int iStartLine, int iEndLine) { if(iEndLine < iStartLine) std.algorithm.swap(iStartLine, iEndLine); IVsCompoundAction compAct = qi_cast!IVsCompoundAction(mView); if(compAct) compAct.OpenCompoundAction("ReindentLines"w.ptr); int hr = mCodeWinMgr.mSource.ReindentLines(iStartLine, iEndLine); if(compAct) { compAct.CloseCompoundAction(); compAct.Release(); } return hr; } int ReindentPastedLines() { if(Package.GetGlobalOptions().pasteIndent) with(mCodeWinMgr.mSource.mLastTextLineChange) if(iStartLine != iNewEndLine) return ReindentLines(iStartLine, iNewEndLine); return S_OK; } ////////////////////////////////////////////////////////////// int CommentLines(int commentMode) { int iStartLine, iStartIndex, iEndLine, iEndIndex; int hr = GetSelectionForward(mView, &iStartLine, &iStartIndex, &iEndLine, &iEndIndex); if(FAILED(hr)) // S_FALSE if no selection, but caret-coordinates returned return hr; if(iEndIndex == 0 && iEndLine > iStartLine) iEndLine--; IVsCompoundAction compAct = qi_cast!IVsCompoundAction(mView); if(compAct) compAct.OpenCompoundAction("CommentLines"w.ptr); hr = mCodeWinMgr.mSource.CommentLines(iStartLine, iEndLine, commentMode); if(compAct) { compAct.CloseCompoundAction(); compAct.Release(); } return hr; } ////////////////////////////////////////////////////////////// int PasteFromRing() { if(auto svc = queryService!(IVsToolbox, IVsToolboxClipboardCycler)) { scope(exit) release(svc); wstring[] entries; int[] entryIndex; int cntEntries = 0; svc.BeginCycle(); IVsToolboxUser tbuser = qi_cast!IVsToolboxUser(mView); scope(exit) release(tbuser); BOOL itemsAvailable; if(svc.AreDataObjectsAvailable(tbuser, &itemsAvailable) == S_OK && itemsAvailable) { IDataObject firstDataObject; IDataObject pDataObject; while(entries.length < 30 && svc.GetAndSelectNextDataObject(tbuser, &pDataObject) == S_OK) { scope(exit) release(pDataObject); if(pDataObject is firstDataObject) break; if(!firstDataObject) firstDataObject = addref(pDataObject); FORMATETC fmt; fmt.cfFormat = CF_UNICODETEXT; fmt.ptd = null; fmt.dwAspect = DVASPECT_CONTENT; fmt.lindex = -1; fmt.tymed = TYMED_HGLOBAL; STGMEDIUM medium; if(pDataObject.GetData(&fmt, &medium) == S_OK) { if(medium.tymed == TYMED_HGLOBAL) { wstring s = UtilGetStringFromHGLOBAL(medium.hGlobal); .GlobalFree(medium.hGlobal); s = createPasteString(s); if(!contains(entries, s)) { entries ~= s; entryIndex ~= cntEntries; } } } cntEntries++; } release(firstDataObject); if(entries.length > 0) { TextSpan span; if(mView.GetCaretPos (&span.iStartLine, &span.iStartIndex) == S_OK) { span.iEndLine = span.iStartLine; span.iEndIndex = span.iStartIndex; mView.EnsureSpanVisible(span); POINT pt; if(mView.GetPointOfLineColumn (span.iStartLine, span.iStartIndex, &pt) == S_OK) { int height; mView.GetLineHeight (&height); pt.y += height; HWND hwnd = cast(HWND) mView.GetWindowHandle(); ClientToScreen(hwnd, &pt); for(int k = 0; k < 10 && k < entries.length; k++) entries[k] = entries[k] ~ "\t(&" ~ cast(wchar)('0' + ((k + 1) % 10)) ~ ")"; int sel = PopupContextMenu(hwnd, pt, entries); if(sel >= 0 && sel < entryIndex.length) { int cnt = entryIndex[sel]; svc.BeginCycle(); for(int i = 0; i <= cnt; i++) { if(svc.GetAndSelectNextDataObject(tbuser, &pDataObject) == S_OK) release(pDataObject); } return E_NOTIMPL; // forward to VS for insert } } } } return S_OK; // do not pass to VS, insert cancelled } } return E_NOTIMPL; // forward to VS for insert } ////////////////////////////////////////////////////////////// int RemoveUnittests() { int endLine, endCol; mCodeWinMgr.mSource.GetLastLineIndex(endLine, endCol); wstring wtxt = mCodeWinMgr.mSource.GetText(0, 0, endLine, endCol); ReplaceOptions opt; version(none) { string txt = to!string(wtxt); string rtxt = replaceTokenSequence(txt, "unittest { $any }", "", opt, null); if(txt == rtxt) return S_OK; wstring wrtxt = to!wstring(rtxt); } else wstring wrtxt = replaceTokenSequence(wtxt, 1, 0, "unittest { $any }", "", opt, null); TextSpan changedSpan; return mCodeWinMgr.mSource.mBuffer.ReplaceLines(0, 0, endLine, endCol, wrtxt.ptr, wrtxt.length, &changedSpan); } ////////////////////////////////////////////////////////////// int HandleGotoDef() { int line, idx; if(mView.GetCaretPos(&line, &idx) != S_OK) return S_FALSE; string file = mCodeWinMgr.mSource.GetFileName(); wstring impw = mCodeWinMgr.mSource.GetImportModule(line, idx, false); if(impw.length) { string imp = to!string(impw); imp = replace(imp, ".", "\\") ~ ".d"; HRESULT hr = OpenFileInSolution(imp, -1, file, false); if(hr != S_OK) { imp ~= "i"; hr = OpenFileInSolution(imp, -1, file, false); } return hr; } string word = toUTF8(GetWordAtCaret()); if(word.length <= 0) return S_FALSE; Definition[] defs = Package.GetLibInfos().findDefinition(word); if(defs.length == 0) { showStatusBarText("No definition found for '" ~ word ~ "'"); return S_FALSE; } if(defs.length > 1) { showStatusBarText("Multiple definitions found for '" ~ word ~ "'"); showSearchWindow(false, word); return S_FALSE; } HRESULT hr = OpenFileInSolution(defs[0].filename, defs[0].line, file, true); if(hr != S_OK) showStatusBarText(format("Cannot open %s(%d) for definition of '%s'", defs[0].filename, defs[0].line, word)); return hr; } int HandleHelp() { string word = toUTF8(GetWordAtCaret()); if(word.length <= 0) return S_FALSE; if(!openHelp(word)) showStatusBarText(text("No documentation found for '", word, "'.")); return S_OK; } ////////////////////////////////////////////////////////////// int HandleMethodTip() { int rc = _HandleMethodTip(); if(rc != S_OK) mCodeWinMgr.mSource.DismissMethodTip(); return rc; } int _HandleMethodTip(bool tryUpper = true) { TextSpan span; if(mView.GetCaretPos(&span.iStartLine, &span.iStartIndex) != S_OK) return S_FALSE; int line = span.iStartLine; int idx = span.iStartIndex; int iState; uint pos; int tok = mCodeWinMgr.mSource.FindLineToken(line, idx, iState, pos); stepUp: int otherLine, otherIndex, cntComma; Source src = mCodeWinMgr.mSource; if(!src.FindOpeningBracketBackward(line, tok, otherLine, otherIndex, &cntComma)) return S_FALSE; wstring bracket = src.GetText(otherLine, otherIndex, otherLine, otherIndex + 1); if(bracket != "("w) return S_FALSE; tok = mCodeWinMgr.mSource.FindLineToken(otherLine, otherIndex, iState, pos); string word = toUTF8(src.FindIdentifierBackward(otherLine, tok)); if(word.length <= 0) { line = otherLine; idx = otherIndex; if(!tryUpper) return S_FALSE; goto stepUp; } Definition[] defs = Package.GetLibInfos().findDefinition(word); if(defs.length == 0) return S_FALSE; MethodData md = src.GetMethodData(); span.iEndLine = span.iStartLine; span.iEndIndex = span.iStartIndex + 1; md.Refresh(mView, defs, cntComma, span); return S_OK; } // IVsTextViewFilter ////////////////////////////////////// override int GetWordExtent(in int iLine, in CharIndex iIndex, in uint dwFlags, /* [out] */ TextSpan *pSpan) { mixin(LogCallMix); int startIdx, endIdx; if(!mCodeWinMgr.mSource.GetWordExtent(iLine, iIndex, dwFlags, startIdx, endIdx)) return S_FALSE; pSpan.iStartLine = iLine; pSpan.iStartIndex = startIdx; pSpan.iEndLine = iLine; pSpan.iEndIndex = endIdx; return S_OK; } override int GetDataTipText( /* [out][in] */ TextSpan *pSpan, /* [out] */ BSTR *pbstrText) { mixin(LogCallMix); HRESULT resFwd = TIP_S_ONLYIFNOMARKER; // enable and prefer TextMarker tooltips TextSpan span = *pSpan; if(pSpan.iStartLine == pSpan.iEndLine && pSpan.iStartIndex == pSpan.iEndIndex) { if(HRESULT hr = GetWordExtent(pSpan.iStartLine, pSpan.iStartIndex, WORDEXT_CURRENT, pSpan)) return resFwd; wstring txt = mCodeWinMgr.mSource.GetText(pSpan.iStartLine, 0, pSpan.iStartLine, -1); L_again: int idx = pSpan.iStartIndex - 1; while(idx >= 0 && isWhite(txt[idx])) idx--; if(idx >= 0 && txt[idx] == '.') { while(idx > 0 && isWhite(txt[idx - 1])) idx--; while(idx > 0 && dLex.isIdentifierCharOrDigit(txt[idx - 1])) idx--; pSpan.iStartIndex = idx; goto L_again; } } // when implementing IVsTextViewFilter, VS2010 will no longer ask the debugger // for tooltips, so we have to do it ourselves if(IVsDebugger srpVsDebugger = queryService!(IVsDebugger)) { scope(exit) release(srpVsDebugger); HRESULT hr = srpVsDebugger.GetDataTipValue(mCodeWinMgr.mSource.mBuffer, pSpan, null, pbstrText); if(hr == 0x45001) // always returned when debugger active, so no other tooltips then { if(IVsCustomDataTip tip = qi_cast!IVsCustomDataTip(srpVsDebugger)) { scope(exit) release(tip); if(SUCCEEDED (tip.DisplayDataTip())) return S_OK; } else return hr; } // return hr; // this triggers HandoffNoDefaultTipToDebugger } version(none) // quick info tooltips not good enough yet { string word = toUTF8(mCodeWinMgr.mSource.GetText(pSpan.iStartLine, pSpan.iStartIndex, pSpan.iEndLine, pSpan.iEndIndex)); if(word.length <= 0) return resFwd; Definition[] defs = Package.GetLibInfos().findDefinition(word); if(defs.length == 0) return resFwd; string msg = word; foreach(def; defs) { string m = "\n" ~ def.kind ~ "\t" ~ def.filename; if(def.line > 0) m ~= ":" ~ to!(string)(def.line); msg ~= m; } *pbstrText = allocBSTR(msg); } if(Package.GetGlobalOptions().showTypeInTooltip) { if(mPendingSpan == span && mTipRequest == mPendingRequest) { *pbstrText = allocBSTR(mTipText); *pSpan = mTipSpan; } else { if(mPendingSpan != span) { mPendingSpan = span; mPendingRequest = Package.GetLanguageService().GetTip(mCodeWinMgr.mSource, &span, &OnGetTipText); } return E_PENDING; } } return resFwd; } override int GetPairExtents(in int iLine, in CharIndex iIndex, /* [out] */ TextSpan *pSpan) { mixin(LogCallMix); return E_NOTIMPL; } // IVsTextViewEvents ////////////////////////////////////// override int OnSetFocus(IVsTextView pView) { mixin(LogCallMix); mCodeWinMgr.mLangSvc.mLastActiveView = this; return S_OK; } override int OnKillFocus(IVsTextView pView) { mixin(LogCallMix); if(mCodeWinMgr.mLangSvc.mLastActiveView is this) mCodeWinMgr.mLangSvc.mLastActiveView = null; return S_OK; } override int OnSetBuffer(IVsTextView pView, IVsTextLines pBuffer) { mixin(LogCallMix); return S_OK; } override int OnChangeScrollInfo(IVsTextView pView, in int iBar, in int iMinUnit, in int iMaxUnits, in int iVisibleUnits, in int iFirstVisibleUnit) { // mixin(LogCallMix); return S_OK; } override int OnChangeCaretLine(IVsTextView pView, in int iNewLine, in int iOldLine) { // mixin(LogCallMix); return S_OK; } // IVsExpansionEvents ////////////////////////////////////// override int OnAfterSnippetsUpdate() { mixin(LogCallMix); return S_OK; } override int OnAfterSnippetsKeyBindingChange(in uint dwCmdGuid, in uint dwCmdId, in BOOL fBound) { mixin(LogCallMix); return S_OK; } ////////////////////////////// TextSpan mPendingSpan; uint mPendingRequest; TextSpan mTipSpan; string mTipText; uint mTipRequest; extern(D) void OnGetTipText(uint request, string filename, string text, TextSpan span) { mTipText = text; mTipSpan = span; mTipRequest = request; } bool OnIdle() { int line; ViewCol idx; if(int rc = mView.GetCaretPos(&line, &idx)) return false; if(mLastHighlightBracesLine == line && mLastHighlightBracesCol == idx) return false; mLastHighlightBracesLine = line; mLastHighlightBracesCol = idx; HighlightMatchingPairs(); version(tip) { string msg = mCodeWinMgr.mSource.getParseError(line, idx); if(msg.length) { mTextTipData.Init(mView, msg); mTextTipData.UpdateView(); } else mTextTipData.Dismiss(); } return true; } } class TextTipData : DisposingComObject, IVsTextTipData { IVsTextTipWindow mTipWindow; IVsTextView mTextView; string mTipText; bool mDisplayed; this() { mTipText = "Tipp"; auto uuid = uuid_coclass_VsTextTipWindow; mTipWindow = VsLocalCreateInstance!IVsTextTipWindow (&uuid, sdk.win32.wtypes.CLSCTX_INPROC_SERVER); if (mTipWindow) mTipWindow.SetTextTipData(this); } override HRESULT QueryInterface(in IID* riid, void** pvObject) { if(queryInterface!(IVsTextTipData) (this, riid, pvObject)) return S_OK; return super.QueryInterface(riid, pvObject); } void Init(IVsTextView textView, string tip) { Close(); mTextView = textView; mTipText = tip; mDisplayed = false; } void Close() { Dismiss(); } void Dismiss() { if (mDisplayed && mTextView) mTextView.UpdateTipWindow(mTipWindow, UTW_DISMISS); OnDismiss(); } override void Dispose() { Close(); if (mTipWindow) mTipWindow.SetTextTipData(null); mTipWindow = release(mTipWindow); } HRESULT GetTipText (/+[out, custom(uuid_IVsTextTipData, "optional")]+/ BSTR *pbstrText, /+[out]+/ BOOL *pfGetFontInfo) { if(pbstrText) *pbstrText = allocBSTR(mTipText); if(pfGetFontInfo) *pfGetFontInfo = FALSE; return S_OK; } // NOTE: *pdwFontAttr will already have been memset-ed to zeroes, so you can set only the indices that are not normal HRESULT GetTipFontInfo (in int cChars, /+[out, size_is(cChars)]+/ ULONG *pdwFontAttr) { return E_NOTIMPL; } HRESULT GetContextStream(/+[out]+/ int *piPos, /+[out]+/ int *piLength) { int line, idx, vspace, endpos; if(HRESULT rc = mTextView.GetCaretPos(&line, &idx)) return rc; if(HRESULT rc = mTextView.GetNearestPosition(line, idx, piPos, &vspace)) return rc; *piLength = 1; return S_OK; } HRESULT OnDismiss () { mTextView = null; mDisplayed = false; return S_OK; } HRESULT UpdateView () { if (mTextView && mTipWindow) { mTextView.UpdateTipWindow(mTipWindow, UTW_CONTENTCHANGED); mDisplayed = true; } return S_OK; } }
D
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Rabbit.o : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Rabbit~partial.swiftmodule : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Rabbit~partial.swiftdoc : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Rabbit~partial.swiftsourceinfo : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/atomics.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift /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/Swift.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/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/Swift.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/atomics~partial.swiftmodule : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift /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/Swift.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/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/Swift.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/atomics~partial.swiftdoc : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/lock.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/NIOConcurrencyHelpers/atomics.swift /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/Swift.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/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/Swift.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes
D
tc (1) --- text counter (characters, words, lines, pages) 02/22/82 _U_s_a_g_e tc [-{c | l | p | w | v}] [<pathname>] _D_e_s_c_r_i_p_t_i_o_n 'Tc' is a filter used to count various parameters of text, specifically characters, words, lines, and pages. If a pathname is specified, the text to be counted is read from that file; otherwise, text is read from standard input 1. All output from 'tc' is written to its first standard output. If no options are specified, or the "v" option is specified, the counts are labeled; otherwise only the counts themselves appear. The options control the items counted: "c" for characters, "w" for words, "l" for lines, "p" for pages. The "v" option causes unconditional printing of labels on the output. _E_x_a_m_p_l_e_s report> tc eval [tc -w part1] + [tc -w part 2] lf -c | tc -l _M_e_s_s_a_g_e_s "Usage: tc ..." for argument specified without "-" flag "illegal option" for unrecognized option letter _B_u_g_s The page length is fixed at 66 lines, which is incorrect for output generated by 'print'. In addition, the definition of word used for word counting ("a sequence of non-blank, non- tab, non-newline characters") may be too simplistic. tc (1) - 1 - tc (1)
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.build/AddressedEnvelope.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IOData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Codec.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Thread.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Embedded.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileHandle.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelPipeline.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/AddressedEnvelope.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoopFuture.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PriorityQueue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Channel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/DeadChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MulticastChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BlockingIOThreadPool.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/System.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileRegion.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ContiguousCollection.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelOption.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Heap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Bootstrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoop.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketOptionProvider.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelInvoker.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/TypeAssistedChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Resolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/GetaddrinfoResolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CompositeError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/RecvByteBufferAllocator.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selector.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileDescriptor.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Interfaces.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IntegerTypes.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketAddresses.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/HappyEyeballs.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandlers.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-views.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/LinuxCPUSet.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Socket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ServerSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-int.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-aux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Linux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NIOAny.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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 /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.build/AddressedEnvelope~partial.swiftmodule : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IOData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Codec.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Thread.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Embedded.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileHandle.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelPipeline.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/AddressedEnvelope.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoopFuture.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PriorityQueue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Channel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/DeadChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MulticastChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BlockingIOThreadPool.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/System.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileRegion.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ContiguousCollection.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelOption.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Heap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Bootstrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoop.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketOptionProvider.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelInvoker.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/TypeAssistedChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Resolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/GetaddrinfoResolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CompositeError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/RecvByteBufferAllocator.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selector.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileDescriptor.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Interfaces.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IntegerTypes.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketAddresses.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/HappyEyeballs.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandlers.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-views.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/LinuxCPUSet.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Socket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ServerSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-int.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-aux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Linux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NIOAny.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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 /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.build/AddressedEnvelope~partial.swiftdoc : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IOData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Codec.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Thread.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Embedded.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selectable.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileHandle.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelPipeline.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/AddressedEnvelope.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-core.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoopFuture.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PriorityQueue.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Channel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/DeadChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocketChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MulticastChannel.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BlockingIOThreadPool.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/System.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileRegion.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ContiguousCollection.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelOption.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Heap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Bootstrap.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/EventLoop.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketOptionProvider.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/MarkedCircularBuffer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/PendingDatagramWritesManager.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelInvoker.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/TypeAssistedChannelHandler.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Resolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/GetaddrinfoResolver.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/CompositeError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/RecvByteBufferAllocator.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Selector.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/FileDescriptor.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Interfaces.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Utilities.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/IntegerTypes.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/SocketAddresses.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/HappyEyeballs.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ChannelHandlers.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-views.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/LinuxCPUSet.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Socket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/BaseSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ServerSocket.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-int.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/ByteBuffer-aux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/Linux.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/NIO/NIOAny.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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
D
[cc]mc | .hd dln$m "calculate double precision logarithm to the base e" 04/27/83 longreal function dln$m (x) longreal x .sp Library: vswtmath (Subsystem mathematical library) .fs This function implements the natural logarithm (base [bf e]) function. Arguments must be greater than zero. The condition SWT_MATH_ERROR$ is signalled if there is an argument error. An on-unit can be established to deal with this error; the SWT Math Library contains a default handler named 'err$m' which the user may utilize. If invalid arguments are supplied to the function the default return is the log of the absolute value of the argument, or zero in the case of a zero argument. .im The algorithm involved uses a minimax rational approximation on a reduction of the argument. All positive inputs will return a valid result. It is adapted from the algorithm given in the book .ul Software Manual for the Elementary Functions by William Waite and William Cody, Jr. (Prentice-Hall, 1980). .ca Primos signl$ .sa err$m (2), ln$m (2), .br .ul SWT Math Library User's Guide [cc]mc
D
instance SLD_763_SOELDNER(NPC_DEFAULT) { name[0] = NAME_SOELDNER; npctype = NPCTYPE_MINE_GUARD; guild = GIL_SLD; level = 16; voice = 8; id = 763; attribute[ATR_STRENGTH] = 75; attribute[ATR_DEXTERITY] = 55; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 232; attribute[ATR_HITPOINTS] = 232; Mdl_SetVisual(self,"HUMANS.MDS"); Mdl_ApplyOverlayMds(self,"Humans_Militia.mds"); Mdl_SetVisualBody(self,"hum_body_Naked0",0,3,"Hum_Head_FatBald",8,0,sld_armor_m); b_scale(self); Mdl_SetModelFatness(self,0); fight_tactic = FAI_HUMAN_STRONG; Npc_SetTalentSkill(self,NPC_TALENT_1H,1); Npc_SetTalentSkill(self,NPC_TALENT_2H,1); EquipItem(self,itmw_1h_mace_war_03); EquipItem(self,itrw_bow_long_01); CreateInvItems(self,itamarrow,20); daily_routine = rtn_fmcstart_763; }; func void rtn_fmcstart_763() { ta_guard(1,0,13,0,"FMC_PATH05"); ta_guard(13,0,1,0,"FMC_PATH05"); };
D
module vcf_parser.main; import std.getopt; import std.stdio; import std.random; import std.conv; import std.string; import std.process; import std.exception; static class QualNotNumeric : Expcetion { mixin basicExceptionCtors; } void main(string[] args){ string file_name; size_t BATCH_SIZE = 1000; getopt(args, "file" , &file_name, "batch" , &BATCH_SIZE ); writeln("Processing file => ", file_name); File file; if(file_name[$-2..$] == "gz"){ auto pipe = pipeShell("gunzip -c " ~ file_name); file = pipe.stdout; } else{ file = File(file_name); } size_t index; int size = 0; size_t write_index = 0; string out_file_name = "out." ~ to!string(write_index) ~ ".bimbam"; File outfile = File(out_file_name, "w"); size_t batch_index; foreach(line; file.byLine){ auto tokens = line.split("\t"); if(tokens.length == 0 || tokens.length < 6){continue;} if(tokens[0] == "#CHROM"){continue;} auto chrom = to!string(tokens[0]); auto pos = to!int(tokens[1]); auto ids = tokens[2].split(";"); auto id = ids[0]; auto reference = to!string(tokens[3]); auto alternate = to!string(tokens[4]); double qual; try { qual = to!double(tokens[5]); } catch (ConvException e) { throw new QualNotNumeric("QUAL column must only contain numeric data. No symbols or strings."); } auto filter = to!string(tokens[6]); auto info = tokens[7].split(";"); outfile.write("chrom => ", chrom); outfile.write("pos=> " , pos); //outfile.write("ids => ", ids); outfile.write("id => ", id); outfile.write("reference => ", reference); outfile.write("alternate => ", alternate); outfile.write("qual => ", qual); outfile.write("filter => ", filter); outfile.write("\n"); double[string] map_info_to_val; foreach(item; info){ auto dict = item.split("="); double value; if(dict.length == 2){ if(dict[1].isNumeric ) value = to!double(dict[1]); else // TODO: check for set and missing value; value = 0; }else{ value = 0; } map_info_to_val[to!string(dict[0])] = value; } outfile.write("info =>", map_info_to_val); auto format = tokens[8].split(":"); outfile.write("format => ", format); outfile.write("samples => "); foreach(sample; tokens[9..$]){ string[string] sample_store; auto sample_vals = sample.split(":"); size_t index2 = 0; foreach(key; format){ sample_store[to!string(key)] = to!string(sample_vals[index]); index2++; } outfile.write(sample_store); } outfile.write("================================="); batch_index++; if(batch_index % BATCH_SIZE == 0){ batch_index = 0; write_index++; out_file_name = "out." ~ to!string(write_index) ~ ".bimbam"; outfile = File(out_file_name, "w"); } } }
D
/* Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module derelict.allegro5.primitives; private { import core.stdc.stdint; import derelict.util.loader, derelict.util.system; import derelict.allegro5.internal, derelict.allegro5.types; enum libNames = genLibNames("Primitives"); } alias int ALLEGRO_PRIM_TYPE; enum { ALLEGRO_PRIM_LINE_LIST, ALLEGRO_PRIM_LINE_STRIP, ALLEGRO_PRIM_LINE_LOOP, ALLEGRO_PRIM_TRIANGLE_LIST, ALLEGRO_PRIM_TRIANGLE_STRIP, ALLEGRO_PRIM_TRIANGLE_FAN, ALLEGRO_PRIM_POINT_LIST, ALLEGRO_PRIM_NUM_TYPES, } enum ALLEGRO_PRIM_MAX_USER_ATTR = _ALLEGRO_PRIM_MAX_USER_ATTR; alias int ALLEGRO_PRIM_ATTR; enum { ALLEGRO_PRIM_POSITION = 1, ALLEGRO_PRIM_COLOR_ATTR, ALLEGRO_PRIM_TEX_COORD, ALLEGRO_PRIM_TEX_COORD_PIXEL, ALLEGRO_PRIM_USER_ATTR, ALLEGRO_PRIM_ATTR_NUM = ALLEGRO_PRIM_USER_ATTR + ALLEGRO_PRIM_MAX_USER_ATTR, } alias int ALLEGRO_PRIM_STORAGE; enum { ALLEGRO_PRIM_FLOAT_2, ALLEGRO_PRIM_FLOAT_3, ALLEGRO_PRIM_SHORT_2, ALLEGRO_PRIM_FLOAT_1, ALLEGRO_PRIM_FLOAT_4, ALLEGRO_PRIM_UBYTE_4, ALLEGRO_PRIM_SHORT_4, ALLEGRO_PRIM_NORMALIZED_UBYTE_4, ALLEGRO_PRIM_NORMALIZED_SHORT_2, ALLEGRO_PRIM_NORMALIZED_SHORT_4, ALLEGRO_PRIM_NORMALIZED_USHORT_2, ALLEGRO_PRIM_NORMALIZED_USHORT_4, ALLEGRO_PRIM_HALF_FLOAT_2, ALLEGRO_PRIM_HALF_FLOAT_4 } alias ALLEGRO_LINE_JOIN = int; enum { ALLEGRO_LINE_JOIN_NONE, ALLEGRO_LINE_JOIN_BEVEL, ALLEGRO_LINE_JOIN_ROUND, ALLEGRO_LINE_JOIN_MITER, ALLEGRO_LINE_JOIN_MITRE = ALLEGRO_LINE_JOIN_MITER } alias ALLEGRO_LINE_CAP = int; enum { ALLEGRO_LINE_CAP_NONE, ALLEGRO_LINE_CAP_SQUARE, ALLEGRO_LINE_CAP_ROUND, ALLEGRO_LINE_CAP_TRIANGLE, ALLEGRO_LINE_CAP_CLOSED } alias ALLEGRO_PRIM_BUFFER_FLAGS = int; enum { ALLEGRO_PRIM_BUFFER_STREAM = 0x01, ALLEGRO_PRIM_BUFFER_STATIC = 0x02, ALLEGRO_PRIM_BUFFER_DYNAMIC = 0x04, ALLEGRO_PRIM_BUFFER_READWRITE = 0x08 } enum ALLEGRO_VERTEX_CACHE_SIZE = 256; enum ALLEGRO_PRIM_QUALITY = 10; struct ALLEGRO_VERTEX_ELEMENT { int attribute; int storage; int offset; } struct ALLEGRO_VERTEX_DECL; struct ALLEGRO_VERTEX { float x, y, z; float u, v; ALLEGRO_COLOR color; } struct ALLEGRO_VERTEX_BUFFER; struct ALLEGRO_INDEX_BUFFER; // Callbacks used as arguments in some of the functions below extern(C) nothrow { alias SoftTriInit = void function(uintptr_t,ALLEGRO_VERTEX*,ALLEGRO_VERTEX*,ALLEGRO_VERTEX*); alias SoftTriFirst = void function(uintptr_t,int,int,int,int); alias SoftTriStep = void function(uintptr_t,int); alias SoftTriDraw = void function(uintptr_t,int,int,int); alias SoftLineFirst = void function(uintptr_t,int,int,ALLEGRO_VERTEX*,ALLEGRO_VERTEX*); alias SoftLineStep = void function(uintptr_t,int); alias SoftLineDraw = void function(uintptr_t,int,int); alias EmitTriangle = void function(int,int,int,void*); } extern(C) @nogc nothrow { alias da_al_get_allegro_primitives_version = uint function(); alias da_al_init_primitives_addon = bool function(); alias da_al_shutdown_primitives_addon = void function(); alias da_al_draw_prim = int function(const(void)*,const(ALLEGRO_VERTEX_DECL)*,ALLEGRO_BITMAP*,int,int,int); alias da_al_draw_indexed_prim = int function(const(void)*,const(ALLEGRO_VERTEX_DECL)*,ALLEGRO_BITMAP*,const(int)*,int,int); alias da_al_draw_vertex_buffer = int function(ALLEGRO_VERTEX_BUFFER*,ALLEGRO_BITMAP*,int,int,int); alias da_al_draw_indexed_buffer = int function(ALLEGRO_VERTEX_BUFFER*,ALLEGRO_BITMAP*,int,int,int); alias da_al_create_vertex_decl = ALLEGRO_VERTEX_DECL* function(const(ALLEGRO_VERTEX_ELEMENT)*,int); alias da_al_destroy_vertex_decl = void function(ALLEGRO_VERTEX_DECL*); alias da_al_create_vertex_buffer = ALLEGRO_VERTEX_BUFFER* function(ALLEGRO_VERTEX_DECL*,const(void*),int,int); alias da_al_destroy_vertex_buffer = void function(ALLEGRO_VERTEX_BUFFER*); alias da_al_lock_vertex_buffer = void* function(ALLEGRO_VERTEX_BUFFER*,int,int,int); alias da_al_unlock_vertex_buffer = void function(ALLEGRO_VERTEX_BUFFER*); alias da_al_get_vertex_buffer_size = int function(ALLEGRO_VERTEX_BUFFER*); alias da_al_create_index_buffer = ALLEGRO_INDEX_BUFFER* function(int,const(void)*,int,int); alias da_al_destroy_index_buffer = void function(ALLEGRO_INDEX_BUFFER*); alias da_al_lock_index_buffer = void* function(ALLEGRO_INDEX_BUFFER*,int,int,int); alias da_al_unlock_index_buffer = void function(ALLEGRO_INDEX_BUFFER*); alias da_al_get_index_buffer_size = int function(ALLEGRO_INDEX_BUFFER*); alias da_al_triangulate_polygon = bool function(const(float)*,size_t,const(int)*,EmitTriangle,void*); alias da_al_draw_soft_triangle = void function(ALLEGRO_VERTEX*,ALLEGRO_VERTEX*,ALLEGRO_VERTEX*,uintptr_t, SoftTriInit,SoftTriFirst,SoftTriStep,SoftTriDraw); alias da_al_draw_soft_line = void function(ALLEGRO_VERTEX*,ALLEGRO_VERTEX*,uintptr_t, SoftLineFirst,SoftLineStep,SoftLineDraw); alias da_al_draw_line = void function(float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_triangle = void function(float,float,float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_rectangle = void function(float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_rounded_rectangle = void function(float,float,float,float,float,float,ALLEGRO_COLOR,float); alias da_al_calculate_arc = void function(float*,int,float,float,float,float,float,float,float,int); alias da_al_draw_circle = void function(float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_ellipse = void function(float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_arc = void function(float,float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_elliptical_arc = void function(float,float,float,float,float,float,ALLEGRO_COLOR,float); alias da_al_draw_pieslice = void function(float,float,float,float,float,ALLEGRO_COLOR,float); alias da_al_calculate_spline = void function(float*,int,float*,float,int); alias da_al_draw_spline = void function(float*,ALLEGRO_COLOR,float); alias da_al_calculate_ribbon = void function(float*,int,const(float*),int,float,int); alias da_al_draw_ribbon = void function(const(float)*,int,ALLEGRO_COLOR,float,int); alias da_al_draw_filled_triangle = void function(float,float,float,float,float,float,ALLEGRO_COLOR); alias da_al_draw_filled_rectangle = void function(float,float,float,float,ALLEGRO_COLOR); alias da_al_draw_filled_ellipse = void function(float,float,float,float,ALLEGRO_COLOR); alias da_al_draw_filled_circle = void function(float,float,float,ALLEGRO_COLOR); alias da_al_draw_filled_pieslice = void function(float,float,float,float,float,ALLEGRO_COLOR); alias da_al_draw_filled_rounded_rectangle = void function(float,float,float,float,float,float,ALLEGRO_COLOR); alias da_al_draw_polyline = void function(const(float)*,int,int,int,int,ALLEGRO_COLOR,float,float); alias da_al_draw_polygon = void function(const(float)*,int,int,ALLEGRO_COLOR,float,float); alias da_al_draw_filled_polygon = void function(const(float)*,int,ALLEGRO_COLOR); alias da_al_draw_filled_polygon_with_holes = void function(const(float)*,const(int)*,ALLEGRO_COLOR); } __gshared { da_al_get_allegro_primitives_version al_get_allegro_primitives_version; da_al_init_primitives_addon al_init_primitives_addon; da_al_shutdown_primitives_addon al_shutdown_primitives_addon; da_al_draw_prim al_draw_prim; da_al_draw_indexed_prim al_draw_indexed_prim; da_al_draw_vertex_buffer al_draw_vertex_buffer; da_al_draw_indexed_buffer al_draw_indexed_buffer; da_al_create_vertex_decl al_create_vertex_decl; da_al_destroy_vertex_decl al_destroy_vertex_decl; da_al_create_vertex_buffer al_create_vertex_buffer; da_al_destroy_vertex_buffer al_destroy_vertex_buffer; da_al_lock_vertex_buffer al_lock_vertex_buffer; da_al_unlock_vertex_buffer al_unlock_vertex_buffer; da_al_get_vertex_buffer_size al_get_vertex_buffer_size; da_al_create_index_buffer al_create_index_buffer; da_al_destroy_index_buffer al_destroy_index_buffer; da_al_lock_index_buffer al_lock_index_buffer; da_al_unlock_index_buffer al_unlock_index_buffer; da_al_get_index_buffer_size al_get_index_buffer_size; da_al_triangulate_polygon al_triangulate_polygon; da_al_draw_soft_triangle al_draw_soft_triangle; da_al_draw_soft_line al_draw_soft_line; da_al_draw_line al_draw_line; da_al_draw_triangle al_draw_triangle; da_al_draw_rectangle al_draw_rectangle; da_al_draw_rounded_rectangle al_draw_rounded_rectangle; da_al_calculate_arc al_calculate_arc; da_al_draw_circle al_draw_circle; da_al_draw_ellipse al_draw_ellipse; da_al_draw_arc al_draw_arc; da_al_draw_elliptical_arc al_draw_elliptical_arc; da_al_draw_pieslice al_draw_pieslice; da_al_calculate_spline al_calculate_spline; da_al_draw_spline al_draw_spline; da_al_calculate_ribbon al_calculate_ribbon; da_al_draw_ribbon al_draw_ribbon; da_al_draw_filled_triangle al_draw_filled_triangle; da_al_draw_filled_rectangle al_draw_filled_rectangle; da_al_draw_filled_ellipse al_draw_filled_ellipse; da_al_draw_filled_circle al_draw_filled_circle; da_al_draw_filled_pieslice al_draw_filled_pieslice; da_al_draw_filled_rounded_rectangle al_draw_filled_rounded_rectangle; da_al_draw_polyline al_draw_polyline; da_al_draw_polygon al_draw_polygon; da_al_draw_filled_polygon al_draw_filled_polygon; da_al_draw_filled_polygon_with_holes al_draw_filled_polygon_with_holes; } class DerelictAllegro5PrimitivesLoader : SharedLibLoader { public this() { super(libNames); } protected override void loadSymbols() { bindFunc(cast(void**)&al_get_allegro_primitives_version, "al_get_allegro_primitives_version"); bindFunc(cast(void**)&al_init_primitives_addon, "al_init_primitives_addon"); bindFunc(cast(void**)&al_shutdown_primitives_addon, "al_shutdown_primitives_addon"); bindFunc(cast(void**)&al_draw_prim, "al_draw_prim"); bindFunc(cast(void**)&al_draw_indexed_prim, "al_draw_indexed_prim"); bindFunc(cast(void**)&al_draw_vertex_buffer, "al_draw_vertex_buffer"); bindFunc(cast(void**)&al_draw_indexed_buffer, "al_draw_indexed_buffer"); bindFunc(cast(void**)&al_create_vertex_decl, "al_create_vertex_decl"); bindFunc(cast(void**)&al_destroy_vertex_decl, "al_destroy_vertex_decl"); bindFunc(cast(void**)&al_create_vertex_buffer, "al_create_vertex_buffer"); bindFunc(cast(void**)&al_destroy_vertex_buffer, "al_destroy_vertex_buffer"); bindFunc(cast(void**)&al_lock_vertex_buffer, "al_lock_vertex_buffer"); bindFunc(cast(void**)&al_unlock_vertex_buffer, "al_unlock_vertex_buffer"); bindFunc(cast(void**)&al_get_vertex_buffer_size, "al_get_vertex_buffer_size"); bindFunc(cast(void**)&al_create_index_buffer, "al_create_index_buffer"); bindFunc(cast(void**)&al_lock_index_buffer, "al_lock_index_buffer"); bindFunc(cast(void**)&al_destroy_index_buffer, "al_destroy_index_buffer"); bindFunc(cast(void**)&al_unlock_index_buffer, "al_unlock_index_buffer"); bindFunc(cast(void**)&al_get_index_buffer_size, "al_get_index_buffer_size"); bindFunc(cast(void**)&al_destroy_index_buffer, "al_destroy_index_buffer"); bindFunc(cast(void**)&al_triangulate_polygon, "al_triangulate_polygon"); bindFunc(cast(void**)&al_draw_soft_triangle, "al_draw_soft_triangle"); bindFunc(cast(void**)&al_draw_soft_line, "al_draw_soft_line"); bindFunc(cast(void**)&al_draw_line, "al_draw_line"); bindFunc(cast(void**)&al_draw_triangle, "al_draw_triangle"); bindFunc(cast(void**)&al_draw_rectangle, "al_draw_rectangle"); bindFunc(cast(void**)&al_draw_rounded_rectangle, "al_draw_rounded_rectangle"); bindFunc(cast(void**)&al_draw_circle, "al_draw_circle"); bindFunc(cast(void**)&al_draw_ellipse, "al_draw_ellipse"); bindFunc(cast(void**)&al_draw_arc, "al_draw_arc"); bindFunc(cast(void**)&al_draw_elliptical_arc, "al_draw_elliptical_arc"); bindFunc(cast(void**)&al_draw_pieslice, "al_draw_pieslice"); bindFunc(cast(void**)&al_calculate_spline, "al_calculate_spline"); bindFunc(cast(void**)&al_draw_spline, "al_draw_spline"); bindFunc(cast(void**)&al_calculate_ribbon, "al_calculate_ribbon"); bindFunc(cast(void**)&al_draw_ribbon, "al_draw_ribbon"); bindFunc(cast(void**)&al_draw_filled_triangle, "al_draw_filled_triangle"); bindFunc(cast(void**)&al_draw_filled_rectangle, "al_draw_filled_rectangle"); bindFunc(cast(void**)&al_draw_filled_ellipse, "al_draw_filled_ellipse"); bindFunc(cast(void**)&al_draw_filled_circle, "al_draw_filled_circle"); bindFunc(cast(void**)&al_draw_filled_pieslice, "al_draw_filled_pieslice"); bindFunc(cast(void**)&al_draw_filled_rounded_rectangle, "al_draw_filled_rounded_rectangle"); bindFunc(cast(void**)&al_draw_polyline, "al_draw_polyline"); bindFunc(cast(void**)&al_draw_polygon, "al_draw_polygon"); bindFunc(cast(void**)&al_draw_filled_polygon, "al_draw_filled_polygon"); bindFunc(cast(void**)&al_draw_filled_polygon_with_holes, "al_draw_filled_polygon_with_holes"); } } __gshared DerelictAllegro5PrimitivesLoader DerelictAllegro5Primitives; shared static this() { DerelictAllegro5Primitives = new DerelictAllegro5PrimitivesLoader; }
D
/* Copyright (c) 2015-2019 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module dlib; public { import dlib.audio; import dlib.coding; import dlib.concurrency; import dlib.container; import dlib.core; import dlib.filesystem; import dlib.functional; import dlib.geometry; import dlib.image; import dlib.math; import dlib.memory; import dlib.network; import dlib.serialization; import dlib.text; }
D
enum DataType { INTEGER, CHARACTER, VARCHAR }
D
/** * Support for exception handling for EH_DM and EH_WIN32. * Generate exception handling tables. * * Copyright: Copyright (C) 1994-1998 by Symantec * Copyright (C) 2000-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/eh.d, _eh.d) * Documentation: https://dlang.org/phobos/dmd_eh.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/eh.d */ module dmd.eh; import core.stdc.stdio; import core.stdc.stdlib; import core.stdc.string; import dmd.globals; import dmd.errors; import dmd.root.rmem; import dmd.backend.barray; import dmd.backend.cc; import dmd.backend.cdef; import dmd.backend.code; import dmd.backend.code_x86; import dmd.backend.dt; import dmd.backend.el; import dmd.backend.global; import dmd.backend.obj; import dmd.backend.ty; import dmd.backend.type; extern (C++): package(dmd) @property @nogc nothrow auto NPTRSIZE() { return _tysize[TYnptr]; } /**************************** * Generate and output scope table. */ Symbol *except_gentables() { //printf("except_gentables()\n"); if (config.ehmethod == EHmethod.EH_DM && !(funcsym_p.Sfunc.Fflags3 & Feh_none)) { // BUG: alloca() changes the stack size, which is not reflected // in the fixed eh tables. if (Alloca.size) error(null, 0, 0, "cannot mix `core.std.stdlib.alloca()` and exception handling in `%s()`", &funcsym_p.Sident[0]); char[13+5+1] name = void; __gshared int tmpnum; sprintf(name.ptr,"_HandlerTable%d",tmpnum++); Symbol *s = symbol_name(name.ptr,SCstatic,tstypes[TYint]); symbol_keep(s); //symbol_debug(s); except_fillInEHTable(s); outdata(s); // output the scope table objmod.ehtables(funcsym_p,cast(uint)funcsym_p.Ssize,s); } return null; } /********************************************** * Initializes the Symbol s with the contents of the exception handler table. */ /* This is what the type should be on the target machine, not the host compiler * * struct Guard * { * if (EHmethod.EH_DM) * { * uint offset; // offset of start of guarded section (Linux) * uint endoffset; // ending offset of guarded section (Linux) * } * int last_index; // previous index (enclosing guarded section) * uint catchoffset; // offset to catch block from Symbol * void *finally; // finally code to execute * } */ void except_fillInEHTable(Symbol *s) { uint fsize = NPTRSIZE; // target size of function pointer auto dtb = DtBuilder(0); /* void* pointer to start of function (Windows) uint offset of ESP from EBP uint offset from start of function to return code uint nguards; // dimension of guard[] (Linux) Guard guard[]; // sorted such that the enclosing guarded sections come first catchoffset: uint ncatches; // number of catch blocks { void *type; // Symbol representing type uint bpoffset; // EBP offset of catch variable void *handler; // catch handler code } catch[]; */ /* Be careful of this, as we need the sizeof Guard on the target, not * in the compiler. */ uint GUARD_SIZE; if (config.ehmethod == EHmethod.EH_DM) GUARD_SIZE = (global.params.is64bit ? 3*8 : 5*4); else if (config.ehmethod == EHmethod.EH_WIN32) GUARD_SIZE = 3*4; else assert(0); int sz = 0; // Address of start of function if (config.ehmethod == EHmethod.EH_WIN32) { //symbol_debug(funcsym_p); dtb.xoff(funcsym_p,0,TYnptr); sz += fsize; } //printf("ehtables: func = %s, offset = x%x, startblock.Boffset = x%x\n", funcsym_p.Sident, funcsym_p.Soffset, startblock.Boffset); // Get offset of ESP from EBP long spoff = cod3_spoff(); dtb.dword(cast(int)spoff); sz += 4; // Offset from start of function to return code dtb.dword(cast(int)retoffset); sz += 4; // First, calculate starting catch offset int guarddim = 0; // max dimension of guard[] int ndctors = 0; // number of ESCdctor's foreach (b; BlockRange(startblock)) { if (b.BC == BC_try && b.Bscope_index >= guarddim) guarddim = b.Bscope_index + 1; // printf("b.BC = %2d, Bscope_index = %2d, last_index = %2d, offset = x%x\n", // b.BC, b.Bscope_index, b.Blast_index, b.Boffset); if (usednteh & EHcleanup) for (code *c = b.Bcode; c; c = code_next(c)) { if (c.Iop == (ESCAPE | ESCddtor)) ndctors++; } } //printf("guarddim = %d, ndctors = %d\n", guarddim, ndctors); if (config.ehmethod == EHmethod.EH_DM) { dtb.size(guarddim + ndctors); sz += NPTRSIZE; } uint catchoffset = sz + (guarddim + ndctors) * GUARD_SIZE; // Generate guard[] int i = 0; foreach (b; BlockRange(startblock)) { //printf("b = %p, b.Btry = %p, b.offset = %x\n", b, b.Btry, b.Boffset); if (b.BC == BC_try) { assert(b.Bscope_index >= i); if (i < b.Bscope_index) { int fillsize = (b.Bscope_index - i) * GUARD_SIZE; dtb.nzeros( fillsize); sz += fillsize; } i = b.Bscope_index + 1; int nsucc = b.numSucc(); if (config.ehmethod == EHmethod.EH_DM) { //printf("DHandlerInfo: offset = %x", (int)(b.Boffset - startblock.Boffset)); dtb.dword(cast(int)(b.Boffset - startblock.Boffset)); // offset to start of block // Compute ending offset uint endoffset; for (block *bn = b.Bnext; 1; bn = bn.Bnext) { //printf("\tbn = %p, bn.Btry = %p, bn.offset = %x\n", bn, bn.Btry, bn.Boffset); assert(bn); if (bn.Btry == b.Btry) { endoffset = cast(uint)(bn.Boffset - startblock.Boffset); break; } } //printf(" endoffset = %x, prev_index = %d\n", endoffset, b.Blast_index); dtb.dword(endoffset); // offset past end of guarded block } dtb.dword(b.Blast_index); // parent index if (b.jcatchvar) // if try-catch { assert(catchoffset); dtb.dword(catchoffset); dtb.size(0); // no finally handler catchoffset += NPTRSIZE + (nsucc - 1) * (3 * NPTRSIZE); } else // else try-finally { assert(nsucc == 2); dtb.dword(0); // no catch offset block *bhandler = b.nthSucc(1); assert(bhandler.BC == BC_finally); // To successor of BC_finally block bhandler = bhandler.nthSucc(0); // finally handler address if (config.ehmethod == EHmethod.EH_DM) { assert(bhandler.Boffset > startblock.Boffset); dtb.size(bhandler.Boffset - startblock.Boffset); // finally handler offset } else dtb.coff(cast(uint)bhandler.Boffset); } sz += GUARD_SIZE; } } /* Append to guard[] the guard blocks for temporaries that are created and destroyed * within a single expression. These are marked by the special instruction pairs * (ESCAPE | ESCdctor) and (ESCAPE | ESCddtor). */ if (usednteh & EHcleanup) { Barray!int stack; int scopeindex = guarddim; foreach (b; BlockRange(startblock)) { /* Set up stack of scope indices */ stack.push(b.Btry ? b.Btry.Bscope_index : -1); uint boffset = cast(uint)b.Boffset; for (code *c = b.Bcode; c; c = code_next(c)) { if (c.Iop == (ESCAPE | ESCdctor)) { code *c2 = code_next(c); if (config.ehmethod == EHmethod.EH_WIN32) nteh_patchindex(c2, scopeindex); if (config.ehmethod == EHmethod.EH_DM) dtb.dword(cast(int)(boffset - startblock.Boffset)); // guard offset // Find corresponding ddtor instruction int n = 0; uint eoffset = boffset; uint foffset; for (; 1; c2 = code_next(c2)) { // https://issues.dlang.org/show_bug.cgi?id=13720 // optimizer might elide the corresponding ddtor if (!c2) goto Lnodtor; if (c2.Iop == (ESCAPE | ESCddtor)) { if (n) n--; else { foffset = eoffset; code *cf = code_next(c2); if (config.ehmethod == EHmethod.EH_WIN32) { nteh_patchindex(cf, stack[stack.length - 1]); foffset += calccodsize(cf); cf = code_next(cf); } foffset += calccodsize(cf); while (!cf.isJumpOP()) { cf = code_next(cf); foffset += calccodsize(cf); } // issue 9438 //cf = code_next(cf); //foffset += calccodsize(cf); if (config.ehmethod == EHmethod.EH_DM) dtb.dword(cast(int)(eoffset - startblock.Boffset)); // guard offset break; } } else if (c2.Iop == (ESCAPE | ESCdctor)) { n++; } else eoffset += calccodsize(c2); } //printf("boffset = %x, eoffset = %x, foffset = %x\n", boffset, eoffset, foffset); dtb.dword(stack[stack.length - 1]); // parent index dtb.dword(0); // no catch offset if (config.ehmethod == EHmethod.EH_DM) { assert(foffset > startblock.Boffset); dtb.size(foffset - startblock.Boffset); // finally handler offset } else dtb.coff(foffset); // finally handler address stack.push(scopeindex); ++scopeindex; sz += GUARD_SIZE; } else if (c.Iop == (ESCAPE | ESCddtor)) { stack.setLength(stack.length - 1); assert(stack.length != 0); } Lnodtor: boffset += calccodsize(c); } } stack.dtor(); } // Generate catch[] foreach (b; BlockRange(startblock)) { if (b.BC == BC_try && b.jcatchvar) // if try-catch { int nsucc = b.numSucc(); dtb.size(nsucc - 1); // # of catch blocks sz += NPTRSIZE; for (int j = 1; j < nsucc; ++j) { block *bcatch = b.nthSucc(j); dtb.xoff(bcatch.Bcatchtype,0,TYnptr); dtb.size(cod3_bpoffset(b.jcatchvar)); // EBP offset // catch handler address if (config.ehmethod == EHmethod.EH_DM) { assert(bcatch.Boffset > startblock.Boffset); dtb.size(bcatch.Boffset - startblock.Boffset); // catch handler offset } else dtb.coff(cast(uint)bcatch.Boffset); sz += 3 * NPTRSIZE; } } } assert(sz != 0); s.Sdt = dtb.finish(); }
D
module android.java.android.icu.text.NumberingSystem; public import android.java.android.icu.text.NumberingSystem_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!NumberingSystem; import import3 = android.java.java.lang.Class; import import0 = android.java.android.icu.text.NumberingSystem;
D
/Users/srikanthadavalli/pokeman/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/MultipartFormData.o : /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Alamofire.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Download.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Error.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Manager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/MultipartFormData.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Notifications.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ParameterEncoding.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Request.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Response.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ResponseSerialization.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Result.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Stream.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Timeline.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Upload.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/srikanthadavalli/pokeman/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/srikanthadavalli/pokeman/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 /Users/srikanthadavalli/pokeman/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/MultipartFormData~partial.swiftmodule : /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Alamofire.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Download.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Error.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Manager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/MultipartFormData.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Notifications.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ParameterEncoding.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Request.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Response.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ResponseSerialization.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Result.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Stream.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Timeline.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Upload.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/srikanthadavalli/pokeman/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/srikanthadavalli/pokeman/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 /Users/srikanthadavalli/pokeman/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/MultipartFormData~partial.swiftdoc : /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Alamofire.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Download.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Error.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Manager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/MultipartFormData.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Notifications.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ParameterEncoding.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Request.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Response.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ResponseSerialization.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Result.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Stream.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Timeline.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Upload.swift /Users/srikanthadavalli/pokeman/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/srikanthadavalli/pokeman/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/srikanthadavalli/pokeman/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
D
/home/a186r/dev/rust/rust/arcade/arcade-rs/target/debug/deps/liblazy_static-9d0c7228ba50e0b1.rlib: /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lib.rs /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lazy.rs /home/a186r/dev/rust/rust/arcade/arcade-rs/target/debug/deps/lazy_static-9d0c7228ba50e0b1.d: /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lib.rs /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lazy.rs /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lib.rs: /home/a186r/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/lazy_static-0.2.11/src/lazy.rs:
D
/** * D header file for OSX. * * Copyright: Copyright Sean Kelly 2008 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Sean Kelly */ /* Copyright Sean Kelly 2008 - 2009. * 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 core.sys.osx.pthread; version (OSX): public import core.sys.posix.pthread; public import core.sys.osx.mach.port; extern (C): int pthread_is_threaded_np(); int pthread_threadid_np(pthread_t, ulong*); // ^ __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2) int pthread_rwlock_longrdlock_np(pthread_rwlock_t*); int pthread_rwlock_yieldwrlock_np(pthread_rwlock_t*); // ^ __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_NA); int pthread_rwlock_downgrade_np(pthread_rwlock_t*); int pthread_rwlock_upgrade_np(pthread_rwlock_t*); int pthread_rwlock_tryupgrade_np(pthread_rwlock_t*); int pthread_rwlock_held_np(pthread_rwlock_t*); int pthread_rwlock_rdheld_np(pthread_rwlock_t*); int pthread_rwlock_wrheld_np(pthread_rwlock_t*); int pthread_getname_np(pthread_t, char*, size_t); int pthread_setname_np(in char*); // ^ __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2) int pthread_main_np(); mach_port_t pthread_mach_thread_np(pthread_t); size_t pthread_get_stacksize_np(pthread_t); void* pthread_get_stackaddr_np(pthread_t); int pthread_cond_signal_thread_np(pthread_cond_t*, pthread_t); int pthread_cond_timedwait_relative_np(pthread_cond_t*, pthread_mutex_t*, in timespec*); int pthread_create_suspended_np(pthread_t*, in pthread_attr_t*, void* function(void*), void*); int pthread_kill(pthread_t, int); pthread_t pthread_from_mach_thread_np(mach_port_t); // ^ __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0) int pthread_sigmask(int, in sigset_t*, sigset_t*); // ^ __DARWIN_ALIAS(pthread_sigmask) void pthread_yield_np();
D
/home/andy/source/rust/rust_course/lost_property/learn_stack/target/rls/debug/deps/learn_stack-d742b953b933aa29.rmeta: src/main.rs /home/andy/source/rust/rust_course/lost_property/learn_stack/target/rls/debug/deps/learn_stack-d742b953b933aa29.d: src/main.rs src/main.rs:
D
/** This library provides Win32 Registry facilities. Copyright: Copyright 2003-2004 by Matthew Wilson and Synesis Software Written by Matthew Wilson License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Author: Matthew Wilson, Kenji Hara History: Created 15th March 2003, Updated 25th April 2004, Source: $(PHOBOSSRC std/windows/_registry.d) */ /* ///////////////////////////////////////////////////////////////////////////// * * 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, in both source and binary form, subject to the following * restrictions: * * - 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. * - Altered source versions must be plainly marked as such, and must not * be misrepresented as being the original software. * - This notice may not be removed or altered from any source * distribution. * * ////////////////////////////////////////////////////////////////////////// */ module std.windows.registry; version (Windows): import std.array; import std.system : Endian, endian; import std.exception; import core.sys.windows.windows; import std.windows.syserror; import std.conv; import std.utf : toUTF8, toUTF16; private import std.internal.windows.advapi32; import std.internal.cstring; //debug = winreg; debug(winreg) import std.stdio; private { import core.sys.windows.winbase : lstrlenW; void enforceSucc(LONG res, lazy string message, string fn = __FILE__, size_t ln = __LINE__) { if (res != ERROR_SUCCESS) throw new RegistryException(message, res, fn, ln); } } /* ************* Exceptions *************** */ // Do not use. Left for compatibility. class Win32Exception : WindowsException { @safe this(string message, string fn = __FILE__, size_t ln = __LINE__, Throwable next = null) { super(0, message, fn, ln); } @safe this(string message, int errnum, string fn = __FILE__, size_t ln = __LINE__, Throwable next = null) { super(errnum, message, fn, ln); } @property int error() { return super.code; } } version(unittest) import std.string : startsWith, endsWith; unittest { // Test that we can throw and catch one by its own type string message = "Test W1"; auto e = collectException!Win32Exception( enforce(false, new Win32Exception(message))); assert(e.msg.startsWith(message)); } unittest { // ditto string message = "Test W2"; int code = 5; auto e = collectException!Win32Exception( enforce(false, new Win32Exception(message, code))); assert(e.error == code); assert(e.msg.startsWith(message)); } /** Exception class thrown by the std.windows.registry classes. */ class RegistryException : Win32Exception { public: /** Creates an instance of the exception. Params: message = The message associated with the exception. */ @safe this(string message, string fn = __FILE__, size_t ln = __LINE__, Throwable next = null) { super(message, fn, ln, next); } /** Creates an instance of the exception, with the given. Params: message = The message associated with the exception. error = The Win32 error number associated with the exception. */ @safe this(string message, int error, string fn = __FILE__, size_t ln = __LINE__, Throwable next = null) { super(message, error, fn, ln, next); } } unittest { // (i) Test that we can throw and catch one by its own type string message = "Test 1"; int code = 3; auto e = collectException!RegistryException( enforce(false, new RegistryException(message, code))); assert(e.error == code); assert(e.msg.startsWith(message)); } unittest { // ditto string message = "Test 2"; auto e = collectException!RegistryException( enforce(false, new RegistryException(message))); assert(e.msg.startsWith(message)); } /* ************* public enumerations *************** */ /** Enumeration of the recognised registry access modes. */ enum REGSAM { KEY_QUERY_VALUE = 0x0001, /// Permission to query subkey data KEY_SET_VALUE = 0x0002, /// Permission to set subkey data KEY_CREATE_SUB_KEY = 0x0004, /// Permission to create subkeys KEY_ENUMERATE_SUB_KEYS = 0x0008, /// Permission to enumerate subkeys KEY_NOTIFY = 0x0010, /// Permission for change notification KEY_CREATE_LINK = 0x0020, /// Permission to create a symbolic link KEY_WOW64_32KEY = 0x0200, /// Enables a 64- or 32-bit application to open a 32-bit key KEY_WOW64_64KEY = 0x0100, /// Enables a 64- or 32-bit application to open a 64-bit key KEY_WOW64_RES = 0x0300, /// KEY_READ = (STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY) & ~(SYNCHRONIZE), /// Combines the STANDARD_RIGHTS_READ, KEY_QUERY_VALUE, /// KEY_ENUMERATE_SUB_KEYS, and KEY_NOTIFY access rights KEY_WRITE = (STANDARD_RIGHTS_WRITE | KEY_SET_VALUE | KEY_CREATE_SUB_KEY) & ~(SYNCHRONIZE), /// Combines the STANDARD_RIGHTS_WRITE, KEY_SET_VALUE, /// and KEY_CREATE_SUB_KEY access rights KEY_EXECUTE = KEY_READ & ~(SYNCHRONIZE), /// Permission for read access KEY_ALL_ACCESS = (STANDARD_RIGHTS_ALL | KEY_QUERY_VALUE | KEY_SET_VALUE | KEY_CREATE_SUB_KEY | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY | KEY_CREATE_LINK) & ~(SYNCHRONIZE), /// Combines the KEY_QUERY_VALUE, KEY_ENUMERATE_SUB_KEYS, /// KEY_NOTIFY, KEY_CREATE_SUB_KEY, KEY_CREATE_LINK, and /// KEY_SET_VALUE access rights, plus all the standard /// access rights except SYNCHRONIZE } /** Enumeration of the recognised registry value types. */ enum REG_VALUE_TYPE : DWORD { REG_UNKNOWN = -1, /// REG_NONE = 0, /// The null value type. (In practise this is treated as a zero-length binary array by the Win32 registry) REG_SZ = 1, /// A zero-terminated string REG_EXPAND_SZ = 2, /// A zero-terminated string containing expandable environment variable references REG_BINARY = 3, /// A binary blob REG_DWORD = 4, /// A 32-bit unsigned integer REG_DWORD_LITTLE_ENDIAN = 4, /// A 32-bit unsigned integer, stored in little-endian byte order REG_DWORD_BIG_ENDIAN = 5, /// A 32-bit unsigned integer, stored in big-endian byte order REG_LINK = 6, /// A registry link REG_MULTI_SZ = 7, /// A set of zero-terminated strings REG_RESOURCE_LIST = 8, /// A hardware resource list REG_FULL_RESOURCE_DESCRIPTOR = 9, /// A hardware resource descriptor REG_RESOURCE_REQUIREMENTS_LIST = 10, /// A hardware resource requirements list REG_QWORD = 11, /// A 64-bit unsigned integer REG_QWORD_LITTLE_ENDIAN = 11, /// A 64-bit unsigned integer, stored in little-endian byte order } /* ************* private *************** */ private import core.sys.windows.winnt : DELETE , READ_CONTROL , WRITE_DAC , WRITE_OWNER , SYNCHRONIZE , STANDARD_RIGHTS_REQUIRED, STANDARD_RIGHTS_READ , STANDARD_RIGHTS_WRITE , STANDARD_RIGHTS_EXECUTE , STANDARD_RIGHTS_ALL , SPECIFIC_RIGHTS_ALL ; private import core.sys.windows.winreg : REG_CREATED_NEW_KEY , REG_OPENED_EXISTING_KEY ; // Returns samDesired but without WoW64 flags if not in WoW64 mode // for compatibility with Windows 2000 private REGSAM compatibleRegsam(in REGSAM samDesired) { return isWow64 ? samDesired : cast(REGSAM)(samDesired & ~REGSAM.KEY_WOW64_RES); } ///Returns true, if we are in WoW64 mode and have WoW64 flags private bool haveWoW64Job(in REGSAM samDesired) { return isWow64 && (samDesired & REGSAM.KEY_WOW64_RES); } private REG_VALUE_TYPE _RVT_from_Endian(Endian endian) { final switch (endian) { case Endian.bigEndian: return REG_VALUE_TYPE.REG_DWORD_BIG_ENDIAN; case Endian.littleEndian: return REG_VALUE_TYPE.REG_DWORD_LITTLE_ENDIAN; } } private LONG regCloseKey(in HKEY hkey) in { assert(hkey !is null); } body { /* No need to attempt to close any of the standard hive keys. * Although it's documented that calling RegCloseKey() on any of * these hive keys is ignored, we'd rather not trust the Win32 * API. */ if (cast(uint)hkey & 0x80000000) { switch (cast(uint)hkey) { case HKEY_CLASSES_ROOT: case HKEY_CURRENT_USER: case HKEY_LOCAL_MACHINE: case HKEY_USERS: case HKEY_PERFORMANCE_DATA: case HKEY_PERFORMANCE_TEXT: case HKEY_PERFORMANCE_NLSTEXT: case HKEY_CURRENT_CONFIG: case HKEY_DYN_DATA: return ERROR_SUCCESS; default: /* Do nothing */ break; } } return RegCloseKey(hkey); } private void regFlushKey(in HKEY hkey) in { assert(hkey !is null); } body { immutable res = RegFlushKey(hkey); enforceSucc(res, "Key cannot be flushed"); } private HKEY regCreateKey(in HKEY hkey, in string subKey, in DWORD dwOptions, in REGSAM samDesired, in LPSECURITY_ATTRIBUTES lpsa, out DWORD disposition) in { assert(hkey !is null); assert(subKey !is null); } body { HKEY hkeyResult; enforceSucc(RegCreateKeyExW( hkey, subKey.tempCStringW(), 0, null, dwOptions, compatibleRegsam(samDesired), cast(LPSECURITY_ATTRIBUTES) lpsa, &hkeyResult, &disposition), "Failed to create requested key: \"" ~ subKey ~ "\""); return hkeyResult; } private void regDeleteKey(in HKEY hkey, in string subKey, in REGSAM samDesired) in { assert(hkey !is null); assert(subKey !is null); } body { LONG res; if (haveWoW64Job(samDesired)) { loadAdvapi32(); res = pRegDeleteKeyExW(hkey, subKey.tempCStringW(), samDesired, 0); } else { res = RegDeleteKeyW(hkey, subKey.tempCStringW()); } enforceSucc(res, "Key cannot be deleted: \"" ~ subKey ~ "\""); } private void regDeleteValue(in HKEY hkey, in string valueName) in { assert(hkey !is null); assert(valueName !is null); } body { enforceSucc(RegDeleteValueW(hkey, valueName.tempCStringW()), "Value cannot be deleted: \"" ~ valueName ~ "\""); } private HKEY regDup(HKEY hkey) in { assert(hkey !is null); } body { /* Can't duplicate standard keys, but don't need to, so can just return */ if (cast(uint)hkey & 0x80000000) { switch (cast(uint)hkey) { case HKEY_CLASSES_ROOT: case HKEY_CURRENT_USER: case HKEY_LOCAL_MACHINE: case HKEY_USERS: case HKEY_PERFORMANCE_DATA: case HKEY_PERFORMANCE_TEXT: case HKEY_PERFORMANCE_NLSTEXT: case HKEY_CURRENT_CONFIG: case HKEY_DYN_DATA: return hkey; default: /* Do nothing */ break; } } HKEY hkeyDup; immutable res = RegOpenKeyW(hkey, null, &hkeyDup); debug(winreg) { if (res != ERROR_SUCCESS) { writefln("regDup() failed: 0x%08x 0x%08x %d", hkey, hkeyDup, res); } assert(res == ERROR_SUCCESS); } return (res == ERROR_SUCCESS) ? hkeyDup : null; } private LONG regEnumKeyName(in HKEY hkey, in DWORD index, ref wchar[] name, out DWORD cchName) in { assert(hkey !is null); assert(name !is null); assert(name.length > 0); } out(res) { assert(res != ERROR_MORE_DATA); } body { // The Registry API lies about the lengths of a very few sub-key lengths // so we have to test to see if it whinges about more data, and provide // more if it does. for (;;) { cchName = to!DWORD(name.length); immutable res = RegEnumKeyExW(hkey, index, name.ptr, &cchName, null, null, null, null); if (res != ERROR_MORE_DATA) return res; // Now need to increase the size of the buffer and try again name.length *= 2; } assert(0); } private LONG regEnumValueName(in HKEY hkey, in DWORD dwIndex, ref wchar[] name, out DWORD cchName) in { assert(hkey !is null); } body { for (;;) { cchName = to!DWORD(name.length); immutable res = RegEnumValueW(hkey, dwIndex, name.ptr, &cchName, null, null, null, null); if (res != ERROR_MORE_DATA) return res; name.length *= 2; } assert(0); } private LONG regGetNumSubKeys(in HKEY hkey, out DWORD cSubKeys, out DWORD cchSubKeyMaxLen) in { assert(hkey !is null); } body { return RegQueryInfoKeyW(hkey, null, null, null, &cSubKeys, &cchSubKeyMaxLen, null, null, null, null, null, null); } private LONG regGetNumValues(in HKEY hkey, out DWORD cValues, out DWORD cchValueMaxLen) in { assert(hkey !is null); } body { return RegQueryInfoKeyW(hkey, null, null, null, null, null, null, &cValues, &cchValueMaxLen, null, null, null); } private REG_VALUE_TYPE regGetValueType(in HKEY hkey, in string name) in { assert(hkey !is null); } body { REG_VALUE_TYPE type; enforceSucc(RegQueryValueExW(hkey, name.tempCStringW(), null, cast(LPDWORD) &type, null, null), "Value cannot be opened: \"" ~ name ~ "\""); return type; } private HKEY regOpenKey(in HKEY hkey, in string subKey, in REGSAM samDesired) in { assert(hkey !is null); assert(subKey !is null); } body { HKEY hkeyResult; enforceSucc(RegOpenKeyExW(hkey, subKey.tempCStringW(), 0, compatibleRegsam(samDesired), &hkeyResult), "Failed to open requested key: \"" ~ subKey ~ "\""); return hkeyResult; } private void regQueryValue(in HKEY hkey, string name, out string value, REG_VALUE_TYPE reqType) in { assert(hkey !is null); } body { import core.bitop : bswap; REG_VALUE_TYPE type; // See bugzilla 961 on this union U { uint dw; ulong qw; } U u; void* data = &u.qw; DWORD cbData = u.qw.sizeof; auto keynameTmp = name.tempCStringW(); LONG res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data, &cbData); if (res == ERROR_MORE_DATA) { data = (new ubyte[cbData]).ptr; res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data, &cbData); } enforceSucc(res, "Cannot read the requested value"); enforce(type == reqType, new RegistryException("Value type has been changed since the value was acquired")); switch (type) { case REG_VALUE_TYPE.REG_SZ: case REG_VALUE_TYPE.REG_EXPAND_SZ: auto wstr = (cast(immutable(wchar)*)data)[0 .. cbData / wchar.sizeof]; assert(wstr.length > 0 && wstr[$-1] == '\0'); if (wstr.length && wstr[$-1] == '\0') wstr.length = wstr.length - 1; assert(wstr.length == 0 || wstr[$-1] != '\0'); value = toUTF8(wstr); break; case REG_VALUE_TYPE.REG_DWORD_LITTLE_ENDIAN: version(LittleEndian) value = to!string(u.dw); else value = to!string(core.bitop.bswap(u.dw)); break; case REG_VALUE_TYPE.REG_DWORD_BIG_ENDIAN: version(LittleEndian) value = to!string(core.bitop.bswap(u.dw)); else value = to!string(u.dw); break; case REG_VALUE_TYPE.REG_QWORD_LITTLE_ENDIAN: value = to!string(u.qw); break; case REG_VALUE_TYPE.REG_BINARY: case REG_VALUE_TYPE.REG_MULTI_SZ: default: throw new RegistryException("Cannot read the given value as a string"); } } private void regQueryValue(in HKEY hkey, in string name, out string[] value, REG_VALUE_TYPE reqType) in { assert(hkey !is null); } body { REG_VALUE_TYPE type; auto keynameTmp = name.tempCStringW(); wchar[] data = new wchar[256]; DWORD cbData = to!DWORD(data.length * wchar.sizeof); LONG res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data.ptr, &cbData); if (res == ERROR_MORE_DATA) { data.length = cbData / wchar.sizeof; res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data.ptr, &cbData); } else if (res == ERROR_SUCCESS) { data.length = cbData / wchar.sizeof; } enforceSucc(res, "Cannot read the requested value"); enforce(type == REG_VALUE_TYPE.REG_MULTI_SZ, new RegistryException("Cannot read the given value as a string")); enforce(type == reqType, new RegistryException("Value type has been changed since the value was acquired")); // Remove last two (or one) null terminator assert(data.length > 0 && data[$-1] == '\0'); data.length = data.length - 1; if (data.length > 0 && data[$-1] == '\0') data.length = data.length - 1; auto list = std.array.split(data[], "\0"); value.length = list.length; foreach (i, ref v; value) { v = toUTF8(list[i]); } } private void regQueryValue(in HKEY hkey, in string name, out uint value, REG_VALUE_TYPE reqType) in { assert(hkey !is null); } body { import core.bitop : bswap; REG_VALUE_TYPE type; DWORD cbData = value.sizeof; enforceSucc(RegQueryValueExW(hkey, name.tempCStringW(), null, cast(LPDWORD) &type, &value, &cbData), "Cannot read the requested value"); enforce(type == reqType, new RegistryException("Value type has been changed since the value was acquired")); switch (type) { case REG_VALUE_TYPE.REG_DWORD_LITTLE_ENDIAN: version(LittleEndian) static assert(REG_VALUE_TYPE.REG_DWORD == REG_VALUE_TYPE.REG_DWORD_LITTLE_ENDIAN); else value = core.bitop.bswap(value); break; case REG_VALUE_TYPE.REG_DWORD_BIG_ENDIAN: version(LittleEndian) value = core.bitop.bswap(value); else static assert(REG_VALUE_TYPE.REG_DWORD == REG_VALUE_TYPE.REG_DWORD_BIG_ENDIAN); break; default: throw new RegistryException("Cannot read the given value as a 32-bit integer"); } } private void regQueryValue(in HKEY hkey, in string name, out ulong value, REG_VALUE_TYPE reqType) in { assert(hkey !is null); } body { REG_VALUE_TYPE type; DWORD cbData = value.sizeof; enforceSucc(RegQueryValueExW(hkey, name.tempCStringW(), null, cast(LPDWORD) &type, &value, &cbData), "Cannot read the requested value"); enforce(type == reqType, new RegistryException("Value type has been changed since the value was acquired")); switch (type) { case REG_VALUE_TYPE.REG_QWORD_LITTLE_ENDIAN: break; default: throw new RegistryException("Cannot read the given value as a 64-bit integer"); } } private void regQueryValue(in HKEY hkey, in string name, out byte[] value, REG_VALUE_TYPE reqType) in { assert(hkey !is null); } body { REG_VALUE_TYPE type; byte[] data = new byte[100]; DWORD cbData = to!DWORD(data.length); LONG res; auto keynameTmp = name.tempCStringW(); res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data.ptr, &cbData); if (res == ERROR_MORE_DATA) { data.length = cbData; res = RegQueryValueExW(hkey, keynameTmp, null, cast(LPDWORD) &type, data.ptr, &cbData); } enforceSucc(res, "Cannot read the requested value"); enforce(type == reqType, new RegistryException("Value type has been changed since the value was acquired")); switch (type) { case REG_VALUE_TYPE.REG_BINARY: data.length = cbData; value = data; break; default: throw new RegistryException("Cannot read the given value as a string"); } } private void regSetValue(in HKEY hkey, in string subKey, in REG_VALUE_TYPE type, in LPCVOID lpData, in DWORD cbData) in { assert(hkey !is null); } body { enforceSucc(RegSetValueExW(hkey, subKey.tempCStringW(), 0, type, cast(BYTE*) lpData, cbData), "Value cannot be set: \"" ~ subKey ~ "\""); } private void regProcessNthKey(HKEY hkey, scope void delegate(scope LONG delegate(DWORD, out string)) dg) { DWORD cSubKeys; DWORD cchSubKeyMaxLen; immutable res = regGetNumSubKeys(hkey, cSubKeys, cchSubKeyMaxLen); assert(res == ERROR_SUCCESS); wchar[] sName = new wchar[cchSubKeyMaxLen + 1]; dg((DWORD index, out string name) { DWORD cchName; immutable res = regEnumKeyName(hkey, index, sName, cchName); if (res == ERROR_SUCCESS) { name = toUTF8(sName[0 .. cchName]); } return res; }); } private void regProcessNthValue(HKEY hkey, scope void delegate(scope LONG delegate(DWORD, out string)) dg) { DWORD cValues; DWORD cchValueMaxLen; immutable res = regGetNumValues(hkey, cValues, cchValueMaxLen); assert(res == ERROR_SUCCESS); wchar[] sName = new wchar[cchValueMaxLen + 1]; dg((DWORD index, out string name) { DWORD cchName; immutable res = regEnumValueName(hkey, index, sName, cchName); if (res == ERROR_SUCCESS) { name = toUTF8(sName[0 .. cchName]); } return res; }); } /* ************* public classes *************** */ /** This class represents a registry key. */ class Key { @safe pure nothrow invariant() { assert(m_hkey !is null); } private: @safe pure nothrow this(HKEY hkey, string name, bool created) in { assert(hkey !is null); } body { m_hkey = hkey; m_name = name; } ~this() { regCloseKey(m_hkey); // Even though this is horried waste-of-cycles programming // we're doing it here so that the m_hkey = null; } public: /// The name of the key @property string name() @safe pure nothrow const { return m_name; } /** The number of sub keys. */ @property size_t keyCount() const { uint cSubKeys; uint cchSubKeyMaxLen; enforceSucc(regGetNumSubKeys(m_hkey, cSubKeys, cchSubKeyMaxLen), "Number of sub-keys cannot be determined"); return cSubKeys; } /** An enumerable sequence of all the sub-keys of this key. */ @property KeySequence keys() @safe pure { return new KeySequence(this); } /** An enumerable sequence of the names of all the sub-keys of this key. */ @property KeyNameSequence keyNames() @safe pure { return new KeyNameSequence(this); } /** The number of values. */ @property size_t valueCount() const { uint cValues; uint cchValueMaxLen; enforceSucc(regGetNumValues(m_hkey, cValues, cchValueMaxLen), "Number of values cannot be determined"); return cValues; } /** An enumerable sequence of all the values of this key. */ @property ValueSequence values() @safe pure { return new ValueSequence(this); } /** An enumerable sequence of the names of all the values of this key. */ @property ValueNameSequence valueNames() @safe pure { return new ValueNameSequence(this); } public: /** Returns the named sub-key of this key. Params: name = The name of the subkey to create. May not be $(D null). Returns: The created key. Throws: $(D RegistryException) is thrown if the key cannot be created. */ Key createKey(string name, REGSAM access = REGSAM.KEY_ALL_ACCESS) { enforce(!name.empty, new RegistryException("Key name is invalid")); DWORD disposition; HKEY hkey = regCreateKey(m_hkey, name, 0, access, null, disposition); assert(hkey !is null); // Potential resource leak here!! // // If the allocation of the memory for Key fails, the HKEY could be // lost. Hence, we catch such a failure by the finally, and release // the HKEY there. If the creation of try { Key key = new Key(hkey, name, disposition == REG_CREATED_NEW_KEY); hkey = null; return key; } finally { if (hkey !is null) { regCloseKey(hkey); } } } /** Returns the named sub-key of this key. Params: name = The name of the subkey to aquire. If name is the empty string, then the called key is duplicated. access = The desired access; one of the $(D REGSAM) enumeration. Returns: The aquired key. Throws: This function never returns $(D null). If a key corresponding to the requested name is not found, $(D RegistryException) is thrown. */ Key getKey(string name, REGSAM access = REGSAM.KEY_READ) { if (name.empty) return new Key(regDup(m_hkey), m_name, false); HKEY hkey = regOpenKey(m_hkey, name, access); assert(hkey !is null); // Potential resource leak here!! // // If the allocation of the memory for Key fails, the HKEY could be // lost. Hence, we catch such a failure by the finally, and release // the HKEY there. If the creation of try { Key key = new Key(hkey, name, false); hkey = null; return key; } finally { if (hkey != null) { regCloseKey(hkey); } } } /** Deletes the named key. Params: name = The name of the key to delete. May not be $(D null). */ void deleteKey(string name, REGSAM access = cast(REGSAM)0) { enforce(!name.empty, new RegistryException("Key name is invalid")); regDeleteKey(m_hkey, name, access); } /** Returns the named value. If $(D name) is the empty string, then the default value is returned. Returns: This function never returns $(D null). If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ Value getValue(string name) { return new Value(this, name, regGetValueType(m_hkey, name)); } /** Sets the named value with the given 32-bit unsigned integer value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The 32-bit unsigned value to set. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, uint value) { setValue(name, value, endian); } /** Sets the named value with the given 32-bit unsigned integer value, according to the desired byte-ordering. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The 32-bit unsigned value to set. endian = Can be $(D Endian.BigEndian) or $(D Endian.LittleEndian). Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, uint value, Endian endian) { REG_VALUE_TYPE type = _RVT_from_Endian(endian); assert(type == REG_VALUE_TYPE.REG_DWORD_BIG_ENDIAN || type == REG_VALUE_TYPE.REG_DWORD_LITTLE_ENDIAN); regSetValue(m_hkey, name, type, &value, value.sizeof); } /** Sets the named value with the given 64-bit unsigned integer value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The 64-bit unsigned value to set. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, ulong value) { regSetValue(m_hkey, name, REG_VALUE_TYPE.REG_QWORD, &value, value.sizeof); } /** Sets the named value with the given string value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The string value to set. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, string value) { setValue(name, value, false); } /** Sets the named value with the given string value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The string value to set. asEXPAND_SZ = If $(D true), the value will be stored as an expandable environment string, otherwise as a normal string. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, string value, bool asEXPAND_SZ) { auto pszTmp = value.tempCStringW(); const(void)* data = pszTmp; DWORD len = to!DWORD(lstrlenW(pszTmp) * wchar.sizeof); regSetValue(m_hkey, name, asEXPAND_SZ ? REG_VALUE_TYPE.REG_EXPAND_SZ : REG_VALUE_TYPE.REG_SZ, data, len); } /** Sets the named value with the given multiple-strings value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The multiple-strings value to set. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, string[] value) { wstring[] data = new wstring[value.length+1]; foreach (i, ref s; data[0..$-1]) { s = toUTF16(value[i]); } data[$-1] = "\0"; auto ws = std.array.join(data, "\0"w); regSetValue(m_hkey, name, REG_VALUE_TYPE.REG_MULTI_SZ, ws.ptr, to!uint(ws.length * wchar.sizeof)); } /** Sets the named value with the given binary value. Params: name = The name of the value to set. If it is the empty string, sets the default value. value = The binary value to set. Throws: If a value corresponding to the requested name is not found, $(D RegistryException) is thrown. */ void setValue(string name, byte[] value) { regSetValue(m_hkey, name, REG_VALUE_TYPE.REG_BINARY, value.ptr, to!DWORD(value.length)); } /** Deletes the named value. Params: name = The name of the value to delete. May not be $(D null). Throws: If a value of the requested name is not found, $(D RegistryException) is thrown. */ void deleteValue(string name) { regDeleteValue(m_hkey, name); } /** Flushes any changes to the key to disk. */ void flush() { regFlushKey(m_hkey); } private: HKEY m_hkey; string m_name; } /** This class represents a value of a registry key. */ class Value { @safe pure nothrow invariant() { assert(m_key !is null); } private: @safe pure nothrow this(Key key, string name, REG_VALUE_TYPE type) in { assert(null !is key); } body { m_key = key; m_type = type; m_name = name; } public: /** The name of the value. If the value represents a default value of a key, which has no name, the returned string will be of zero length. */ @property string name() @safe pure nothrow const { return m_name; } /** The type of value. */ @property REG_VALUE_TYPE type() @safe pure nothrow const { return m_type; } /** Obtains the current value of the value as a string. If the value's type is REG_EXPAND_SZ the returned value is <b>not</b> expanded; $(D value_EXPAND_SZ) should be called Returns: The contents of the value. Throws: $(D RegistryException) if the type of the value is not REG_SZ, REG_EXPAND_SZ, REG_DWORD, or REG_QWORD. */ @property string value_SZ() const { string value; regQueryValue(m_key.m_hkey, m_name, value, m_type); return value; } /** Obtains the current value as a string, within which any environment variables have undergone expansion. This function works with the same value-types as $(D value_SZ). Returns: The contents of the value. */ @property string value_EXPAND_SZ() const { string value = value_SZ; // ExpandEnvironemntStrings(): // http://msdn2.microsoft.com/en-us/library/ms724265.aspx const srcTmp = value.tempCStringW(); DWORD cchRequired = ExpandEnvironmentStringsW(srcTmp, null, 0); wchar[] newValue = new wchar[cchRequired]; immutable DWORD count = enforce!Win32Exception( ExpandEnvironmentStringsW(srcTmp, newValue.ptr, to!DWORD(newValue.length)), "Failed to expand environment variables"); return toUTF8(newValue[0 .. count-1]); // remove trailing 0 } /** Obtains the current value as an array of strings. Returns: The contents of the value. Throws: $(D RegistryException) if the type of the value is not REG_MULTI_SZ. */ @property string[] value_MULTI_SZ() const { string[] value; regQueryValue(m_key.m_hkey, m_name, value, m_type); return value; } /** Obtains the current value as a 32-bit unsigned integer, ordered correctly according to the current architecture. Returns: The contents of the value. Throws: $(D RegistryException) is thrown for all types other than REG_DWORD, REG_DWORD_LITTLE_ENDIAN and REG_DWORD_BIG_ENDIAN. */ @property uint value_DWORD() const { uint value; regQueryValue(m_key.m_hkey, m_name, value, m_type); return value; } /** Obtains the value as a 64-bit unsigned integer, ordered correctly according to the current architecture. Returns: The contents of the value. Throws: $(D RegistryException) if the type of the value is not REG_QWORD. */ @property ulong value_QWORD() const { ulong value; regQueryValue(m_key.m_hkey, m_name, value, m_type); return value; } deprecated("Please use value_QWORD instead.") ulong value_QWORD_LITTLEENDIAN() { return value_QWORD; } /** Obtains the value as a binary blob. Returns: The contents of the value. Throws: $(D RegistryException) if the type of the value is not REG_BINARY. */ @property byte[] value_BINARY() const { byte[] value; regQueryValue(m_key.m_hkey, m_name, value, m_type); return value; } private: Key m_key; REG_VALUE_TYPE m_type; string m_name; } /** Represents the local system registry. */ final class Registry { private: @disable this() { } public: /// Returns the root key for the HKEY_CLASSES_ROOT hive static @property Key classesRoot() { return new Key(HKEY_CLASSES_ROOT, "HKEY_CLASSES_ROOT", false); } /// Returns the root key for the HKEY_CURRENT_USER hive static @property Key currentUser() { return new Key(HKEY_CURRENT_USER, "HKEY_CURRENT_USER", false); } /// Returns the root key for the HKEY_LOCAL_MACHINE hive static @property Key localMachine() { return new Key(HKEY_LOCAL_MACHINE, "HKEY_LOCAL_MACHINE", false); } /// Returns the root key for the HKEY_USERS hive static @property Key users() { return new Key(HKEY_USERS, "HKEY_USERS", false); } /// Returns the root key for the HKEY_PERFORMANCE_DATA hive static @property Key performanceData() { return new Key(HKEY_PERFORMANCE_DATA, "HKEY_PERFORMANCE_DATA", false); } /// Returns the root key for the HKEY_CURRENT_CONFIG hive static @property Key currentConfig() { return new Key(HKEY_CURRENT_CONFIG, "HKEY_CURRENT_CONFIG", false); } /// Returns the root key for the HKEY_DYN_DATA hive static @property Key dynData() { return new Key(HKEY_DYN_DATA, "HKEY_DYN_DATA", false); } } /** An enumerable sequence representing the names of the sub-keys of a registry Key. Example: ---- Key key = ... foreach (string subkeyName; key.keyNames) { // using subkeyName } ---- */ class KeyNameSequence { @safe pure nothrow invariant() { assert(m_key !is null); } private: @safe pure nothrow this(Key key) { m_key = key; } public: /** The number of keys. */ @property size_t count() const { return m_key.keyCount; } /** The name of the key at the given index. Params: index = The 0-based index of the key to retrieve. Returns: The name of the key corresponding to the given index. Throws: RegistryException if no corresponding key is retrieved. */ string getKeyName(size_t index) { string name; regProcessNthKey(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { enforceSucc(getName(to!DWORD(index), name), "Invalid key"); }); return name; } /** The name of the key at the given index. Params: index = The 0-based index of the key to retrieve. Returns: The name of the key corresponding to the given index. Throws: $(D RegistryException) if no corresponding key is retrieved. */ string opIndex(size_t index) { return getKeyName(index); } public: /// int opApply(scope int delegate(ref string name) dg) { int result; regProcessNthKey(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { for (DWORD index = 0; !result; ++index) { string name; immutable res = getName(index, name); if (res == ERROR_NO_MORE_ITEMS) // Enumeration complete break; enforceSucc(res, "Key name enumeration incomplete"); result = dg(name); } }); return result; } private: Key m_key; } /** An enumerable sequence representing the sub-keys of a registry Key. Example: ---- Key key = ... foreach (Key subkey; key.keys) { // using subkey } ---- */ class KeySequence { @safe pure nothrow invariant() { assert(m_key !is null); } private: @safe pure nothrow this(Key key) { m_key = key; } public: /** The number of keys. */ @property size_t count() const { return m_key.keyCount; } /** The key at the given index. Params: index = The 0-based index of the key to retrieve. Returns: The key corresponding to the given index. Throws: $(D RegistryException) if no corresponding key is retrieved. */ Key getKey(size_t index) { string name; regProcessNthKey(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { enforceSucc(getName(to!DWORD(index), name), "Invalid key"); }); return m_key.getKey(name); } /** The key at the given index. Params: index = The 0-based index of the key to retrieve. Returns: The key corresponding to the given index. Throws: $(D RegistryException) if no corresponding key is retrieved. */ Key opIndex(size_t index) { return getKey(index); } public: /// int opApply(scope int delegate(ref Key key) dg) { int result = 0; regProcessNthKey(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { for (DWORD index = 0; !result; ++index) { string name; immutable res = getName(index, name); if (res == ERROR_NO_MORE_ITEMS) // Enumeration complete break; enforceSucc(res, "Key enumeration incomplete"); try { Key key = m_key.getKey(name); result = dg(key); } catch (RegistryException e) { // Skip inaccessible keys; they are // accessible via the KeyNameSequence if (e.error == ERROR_ACCESS_DENIED) continue; throw e; } } }); return result; } private: Key m_key; } /** An enumerable sequence representing the names of the values of a registry Key. Example: ---- Key key = ... foreach (string valueName; key.valueNames) { // using valueName } ---- */ class ValueNameSequence { @safe pure nothrow invariant() { assert(m_key !is null); } private: @safe pure nothrow this(Key key) { m_key = key; } public: /** The number of values. */ @property size_t count() const { return m_key.valueCount; } /** The name of the value at the given index. Params: index = The 0-based index of the value to retrieve. Returns: The name of the value corresponding to the given index. Throws: $(D RegistryException) if no corresponding value is retrieved. */ string getValueName(size_t index) { string name; regProcessNthValue(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { enforceSucc(getName(to!DWORD(index), name), "Invalid value"); }); return name; } /** The name of the value at the given index. Params: index = The 0-based index of the value to retrieve. Returns: The name of the value corresponding to the given index. Throws: $(D RegistryException) if no corresponding value is retrieved. */ string opIndex(size_t index) { return getValueName(index); } public: /// int opApply(scope int delegate(ref string name) dg) { int result = 0; regProcessNthValue(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { for (DWORD index = 0; !result; ++index) { string name; immutable res = getName(index, name); if (res == ERROR_NO_MORE_ITEMS) // Enumeration complete break; enforceSucc(res, "Value name enumeration incomplete"); result = dg(name); } }); return result; } private: Key m_key; } /** An enumerable sequence representing the values of a registry Key. Example: ---- Key key = ... foreach (Value value; key.values) { // using value } ---- */ class ValueSequence { @safe pure nothrow invariant() { assert(m_key !is null); } private: @safe pure nothrow this(Key key) { m_key = key; } public: /// The number of values @property size_t count() const { return m_key.valueCount; } /** The value at the given $(D index). Params: index = The 0-based index of the value to retrieve Returns: The value corresponding to the given index. Throws: $(D RegistryException) if no corresponding value is retrieved */ Value getValue(size_t index) { string name; regProcessNthValue(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { enforceSucc(getName(to!DWORD(index), name), "Invalid value"); }); return m_key.getValue(name); } /** The value at the given $(D index). Params: index = The 0-based index of the value to retrieve. Returns: The value corresponding to the given index. Throws: $(D RegistryException) if no corresponding value is retrieved. */ Value opIndex(size_t index) { return getValue(index); } public: /// int opApply(scope int delegate(ref Value value) dg) { int result = 0; regProcessNthValue(m_key.m_hkey, (scope LONG delegate(DWORD, out string) getName) { for (DWORD index = 0; !result; ++index) { string name; immutable res = getName(index, name); if (res == ERROR_NO_MORE_ITEMS) // Enumeration complete break; enforceSucc(res, "Value enumeration incomplete"); Value value = m_key.getValue(name); result = dg(value); } }); return result; } private: Key m_key; } unittest { debug(winreg) scope(success) writeln("unittest @", __FILE__, ":", __LINE__, " succeeded."); debug(winreg) writefln("std.windows.registry.unittest read"); /+ // Mask for test speed up Key HKCR = Registry.classesRoot; Key CLSID = HKCR.getKey("CLSID"); foreach (Key key; CLSID.keys) { foreach (Value val; key.values) { } } +/ Key HKCU = Registry.currentUser; assert(HKCU); // Enumerate all subkeys of key Software Key softwareKey = HKCU.getKey("Software"); assert(softwareKey); foreach (Key key; softwareKey.keys) { //writefln("Key %s", key.name); foreach (Value val; key.values) { } } } unittest { debug(winreg) scope(success) writeln("unittest @", __FILE__, ":", __LINE__, " succeeded."); debug(winreg) writefln("std.windows.registry.unittest write"); // Warning: This unit test writes to the registry. // The test can fail if you don't have sufficient rights Key HKCU = Registry.currentUser; assert(HKCU); // Create a new key string unittestKeyName = "Temporary key for a D UnitTest which can be deleted afterwards"; Key unittestKey = HKCU.createKey(unittestKeyName); assert(unittestKey); Key cityKey = unittestKey.createKey("CityCollection using foreign names with umlauts and accents: \u00f6\u00e4\u00fc\u00d6\u00c4\u00dc\u00e0\u00e1\u00e2\u00df"); cityKey.setValue("K\u00f6ln", "Germany"); // Cologne cityKey.setValue("\u041c\u0438\u043d\u0441\u043a", "Belarus"); // Minsk cityKey.setValue("\u5317\u4eac", "China"); // Bejing bool foundCologne, foundMinsk, foundBeijing; foreach (Value v; cityKey.values) { auto vname = v.name; auto vvalue_SZ = v.value_SZ; if (v.name == "K\u00f6ln") { foundCologne = true; assert(v.value_SZ == "Germany"); } if (v.name == "\u041c\u0438\u043d\u0441\u043a") { foundMinsk = true; assert(v.value_SZ == "Belarus"); } if (v.name == "\u5317\u4eac") { foundBeijing = true; assert(v.value_SZ == "China"); } } assert(foundCologne); assert(foundMinsk); assert(foundBeijing); Key stateKey = unittestKey.createKey("StateCollection"); stateKey.setValue("Germany", ["D\u00fcsseldorf", "K\u00f6ln", "Hamburg"]); Value v = stateKey.getValue("Germany"); string[] actual = v.value_MULTI_SZ; assert(actual.length == 3); assert(actual[0] == "D\u00fcsseldorf"); assert(actual[1] == "K\u00f6ln"); assert(actual[2] == "Hamburg"); Key numberKey = unittestKey.createKey("Number"); numberKey.setValue("One", 1); Value one = numberKey.getValue("One"); assert(one.value_SZ == "1"); assert(one.value_DWORD == 1); unittestKey.deleteKey(numberKey.name); unittestKey.deleteKey(stateKey.name); unittestKey.deleteKey(cityKey.name); HKCU.deleteKey(unittestKeyName); auto e = collectException!RegistryException(HKCU.getKey("cDhmxsX9K23a8Uf869uB")); assert(e.msg.endsWith(" (error 2)")); }
D
/* -------------------- CZ CHANGELOG -------------------- */ /* v1.00: func void DIA_Addon_Saturas_BeliarWeapGeben_Info - upraveny výpisy */ instance DIA_Addon_Saturas_ADW_EXIT(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 999; condition = DIA_Addon_Saturas_ADW_EXIT_Condition; information = DIA_Addon_Saturas_ADW_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Saturas_ADW_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Saturas_ADW_EXIT_Info() { AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXIT_14_00"); //Nechť tě Adanos ochraňuje. AI_StopProcessInfos(self); }; instance DIA_Addon_Saturas_ADWStart(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = DIA_Addon_Saturas_ADWStart_Condition; information = DIA_Addon_Saturas_ADWStart_Info; important = TRUE; }; func int DIA_Addon_Saturas_ADWStart_Condition() { return TRUE; }; func void DIA_Addon_Saturas_ADWStart_Info() { AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_14_00"); //Díky Adanovi. Konečně jsi tady. Mysleli jsme, že už se neukážeš. AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_15_01"); //(zmateně) Cože? Jakto, že už jste tady? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_14_02"); //Když jsi prošel skrz portál, tak jsme tě následovali. Krátce poté jsme se objevili zde. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_14_03"); //Ale ty jsi tady nebyl. Už jsme tady několik dní. AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_15_04"); //(překvapeně) NĚKOLIK DNÍ? Jak se to mohlo stát? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_14_05"); //Nebyl jsi k nalezení, Nefarius se snažil zjistit, co se mohlo pokazit. Nevěděl si s tím rady. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_14_06"); //Ale dobrá. Teď jsi tady a můžeme začít s naší prací. Wld_InsertNpc(Giant_Rat,"ADW_PORTALTEMPEL_11"); Wld_InsertNpc(Giant_Rat,"ADW_PORTALTEMPEL_11"); if(SBMODE == TRUE) { Wld_InsertNpc(OrcBiter,"ADW_CANYON_PATH_TO_LIBRARY_31A"); Wld_InsertNpc(OrcBiter,"ADW_CANYON_PATH_TO_LIBRARY_16A"); Wld_InsertNpc(Wolf,"ADW_CANYON_PATH_TO_LIBRARY_12A"); Wld_InsertNpc(Bloodhound,"ADW_CANYON_PATH_TO_MINE2_09"); Wld_InsertNpc(Giant_DesertRat,"ADW_CANYON_PATH_TO_BANDITS_26"); Wld_InsertNpc(Giant_DesertRat,"ADW_CANYON_PATH_TO_BANDITS_66"); Wld_InsertNpc(Minecrawler,"ADW_CANYON_PATH_TO_BANDITS_22"); Wld_InsertNpc(Minecrawler,"ADW_CANYON_PATH_TO_BANDITS_14"); Wld_InsertNpc(Gobbo_Black,"ADW_ENTRANCE_2_PIRATECAMP_19"); Wld_InsertNpc(Gobbo_Black,"ADW_ENTRANCE_2_PIRATECAMP_19"); Wld_InsertNpc(orcwarrior3,"ADW_CANYON_ORCS_08"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_ORCS_11"); Wld_InsertNpc(orcwarrior4,"ADW_CANYON_ORCS_01"); Wld_InsertNpc(orcwarrior3s,"ADW_VALLEY_PATH_035"); }; Wld_InsertNpc(CanyonRazor03,"ADW_CANYON_PATH_TO_LIBRARY_07A"); Wld_InsertNpc(CanyonRazor04,"ADW_CANYON_PATH_TO_LIBRARY_36"); Wld_InsertNpc(Valley_Troll,"ADW_VALLEY_BIGCAVE_15"); Wld_InsertItem(itpl_super_herb,"FP_ITEM_VALLEY_05"); Wld_InsertNpc(MinecrawlerWarrior,"ADW_CANYON_MINE2_09"); Wld_InsertNpc(MinecrawlerWarrior,"ADW_CANYON_MINE2_09"); Info_ClearChoices(DIA_Addon_Saturas_ADWStart); Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Co se mezitím stalo?",DIA_Addon_Saturas_ADWStart_was); }; func void DIA_Addon_Saturas_ADWStart_was() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_was_15_00"); //Co se mezitím stalo? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_was_14_01"); //Zjistili jsme toho docela dost. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_was_14_02"); //Zemětřesení stále sílí. Nejsme daleko od epicentra. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_was_14_03"); //Stavitelé těchto starých staveb tu nejdřív postavili tohle město, jenž jsme již objevili. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_was_14_04"); //Bez zjevných důvodů jejich kultura zanikla. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_was_14_05"); //Teď můžeme jen spekulovat proč. Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Našli jste něco nového ohledně těch ztracených lidí?",DIA_Addon_Saturas_ADWStart_missingPeople); Info_AddChoice(DIA_Addon_Saturas_ADWStart,"A co Raven?",DIA_Addon_Saturas_ADWStart_Raven); }; func void DIA_Addon_Saturas_ADWStart_Raven() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_Raven_15_00"); //A co Raven? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_Raven_14_01"); //V Ravenově dopise se hovoří o nějaké svatyni, do které se pokouší dostat. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_Raven_14_02"); //Shodli jsme se na tom, že by to mohl být Adanův chrám a Raven se ho pokusí znesvětit. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_Raven_14_03"); //Zemětřesení jsou zřejmě důsledkem poskvrňujícího zaklínadla, které neustále naráží na mocná protikouzla. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_Raven_14_04"); //Brány tohoto chrámu jsou magicky uzavřené a při pokusech o sejmutí kouzla oživují kamenné strážce. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_Raven_14_05"); //Chrám zatím odolává. Musíme zastavit Ravena dříve, než se dostane dovnitř. Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Co teď uděláme?",DIA_Addon_Saturas_ADWStart_wastun); Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Raven je jen rudobaron, ne mág. Jak by mohl sesílat taková zaklínadla?",DIA_Addon_Saturas_ADWStart_RavenOnlyBaron); Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Proč se chce Raven do chrámu dostat?",DIA_Addon_Saturas_ADWStart_RavenAim); }; func void DIA_Addon_Saturas_ADWStart_RavenAim() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_RavenAim_15_00"); //Proč se chce Raven do chrámu dostat? AI_Output(self,other,"DIA_Addon_Bodo_14_01"); //Víme jen to, že mu jde o mocný artefakt, který nějak souvisí s Adanem a Beliarem. AI_Output(self,other,"DIA_Addon_Bodo_14_02"); //(rozzuřeně) Měli jsme vědět, že má něco za lubem... }; func void DIA_Addon_Saturas_ADWStart_RavenOnlyBaron() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_RavenOnlyBaron_15_00"); //Raven je jen rudobaron, ne mág. Jak by mohl sesílat taková zaklínadla? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_RavenOnlyBaron_14_01"); //Možná to nedělá on. Možná je to jiný mág, který poslouchá jeho rozkazy. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_RavenOnlyBaron_14_02"); //Každopádně MUSÍME odvrátit tohle zlo. }; func void DIA_Addon_Saturas_ADWStart_missingPeople() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_missingPeople_15_00"); //Našli jste něco nového, ohledně těch ztracených lidí? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_missingPeople_14_01"); //Zrovna včera jsme našli mrtvolu rybáře. Leží v ruinách na východ. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_missingPeople_14_02"); //Vypadá jako rybář z Khorinisu. Měl by ses tam jít podívat. Saturas_AboutWilliam = TRUE; B_LogEntry(TOPIC_Addon_MissingPeople,LogText_Addon_WilliamLeiche); }; func void DIA_Addon_Saturas_ADWStart_wastun() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_wastun_15_00"); //Co teď uděláme? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun_14_01"); //MY tady zůstaneme a budeme nadále studovat tuhle kulturu. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun_14_02"); //Staré svitky Stavitelů zachovávají mnoho tajemství, které musíme vyřešit - pokud chceme zjistit, co se tu v minulosti stalo. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun_14_03"); //TY musíš pro nás ještě udělat pár věcí... Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Co bych měl udělat?",DIA_Addon_Saturas_ADWStart_wastun2); }; func void DIA_Addon_Saturas_ADWStart_wastun2() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_wastun2_15_00"); //Co bych měl udělat? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_01"); //Najdi Ravena a nedovol mu znesvětit chrám. AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_wastun2_15_02"); //Říkaš, že ho mám ZABÍT? AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_03"); //Pokud to bude jediná možná cesta jak ho zastavit, tak ve jménu Adana... ANO! AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_04"); //Posbírej všechny pozůstatky po Stavitelích, které najdeš, a přines nám je. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_05"); //Musíme se dozvědět něco víc o tomto národě a jeho osudu. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_06"); //Jestli chceme Ravena zastavit, musíme vědět, co plánuje. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_07"); //Navíc musíš nějakým způsobem osvobodit otroky. AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_wastun2_15_08"); //(cynicky) To je všechno? To udělám i se zavázanýma očima! AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_wastun2_14_09"); //(mrzutě) Vím, že to bude tvrdý oříšek, ale podívej - máš šanci získat si mou důvěru. MIS_ADDON_Saturas_GoToRaven = LOG_Running; Log_CreateTopic(TOPIC_Addon_RavenKDW,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_RavenKDW,LOG_Running); B_LogEntry(TOPIC_Addon_RavenKDW,"Raven znesvěcuje Adanův chrám. Musím ho zastavit. I kdybych ho měl zabít."); Log_CreateTopic(TOPIC_Addon_Sklaven,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Sklaven,LOG_Running); Log_AddEntry(TOPIC_Addon_Sklaven,"Saturas chce, abych osvobodil otroky."); Log_CreateTopic(TOPIC_Addon_Relicts,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Relicts,LOG_Running); Log_AddEntry(TOPIC_Addon_Relicts,"Saturas chce, abych mu donesl všechno, co by mohlo souviset s prastarými Staviteli, architekty těchto budov."); Info_AddChoice(DIA_Addon_Saturas_ADWStart,"Ja tedy už půjdu.",DIA_Addon_Saturas_ADWStart_back); }; func void DIA_Addon_Saturas_ADWStart_back() { AI_Output(other,self,"DIA_Addon_Saturas_ADWStart_back_15_00"); //Ja tedy už půjdu. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_01"); //Ještě něco... pro Ravena pracuje mnoho banditů. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_02"); //Po dobu tvé nepřítomnosti jsme přijali dalšího člena 'Kruhu Vody'. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_03"); //Poslali jsme ho do bažin. Ještě se nevrátil. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_04"); //Předpokládáme, že banditi útočí na všechno, co nevypadá jako oni. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_05"); //Obstarej si tedy zbroj banditů. AI_Output(self,other,"DIA_Addon_Saturas_ADWStart_back_14_06"); //Budeš mít šanci dostat se blíž bez toho, aby na tebe zaútočili. Log_CreateTopic(TOPIC_Addon_BDTRuestung,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_BDTRuestung,LOG_Running); B_LogEntry(TOPIC_Addon_BDTRuestung,"Banditi útočí na všechno, co nevypadá jako oni. Musím si najít zbroj banditů, abych se mohl dostat blíž."); AI_StopProcessInfos(self); Npc_ExchangeRoutine(self,"Start"); }; instance DIA_Addon_Saturas_PoorRanger(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_PoorRanger_Condition; information = DIA_Addon_Saturas_PoorRanger_Info; description = "Co za blázna jsi poslal do močálu?"; }; func int DIA_Addon_Saturas_PoorRanger_Condition() { return TRUE; }; func void DIA_Addon_Saturas_PoorRanger_Info() { AI_Output(other,self,"DIA_Addon_Saturas_PoorRanger_15_00"); //Co za blázna jsi poslal do močálu? AI_Output(self,other,"DIA_Addon_Saturas_PoorRanger_14_01"); //Jmenuje se Lance. AI_Output(self,other,"DIA_Addon_Saturas_PoorRanger_14_02"); //Myslím, že se nedostal moc daleko. Log_CreateTopic(TOPIC_Addon_Lance,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Lance,LOG_Running); Log_AddEntry(TOPIC_Addon_Lance,"Saturas poslal do močálu někoho jménem Lance. Obává se, že se nedostal moc daleko."); }; instance DIA_Addon_Saturas_WhatThink(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_WhatThink_Condition; information = DIA_Addon_Saturas_WhatThink_Info; description = "Co si myslíš o Ravenovi?"; }; func int DIA_Addon_Saturas_WhatThink_Condition() { return TRUE; }; func void DIA_Addon_Saturas_WhatThink_Info() { AI_Output(other,self,"DIA_Addon_Saturas_WhatThink_01_00"); //Co si myslíš o Ravenovi? AI_Output(self,other,"DIA_Addon_Saturas_WhatThink_01_01"); //Ve Starém táboře, byl pravá ruka Gomeze a jedním z nejvlivnějších lidí v kolonii. AI_Output(self,other,"DIA_Addon_Saturas_WhatThink_01_02"); //Nevím, jak se dostal na cestu zla, ale jeho činy jsou velmi závažné a musíme ho zastavit! AI_Output(self,other,"DIA_Addon_Saturas_WhatThink_01_03"); //Ve skutečnosti mám podezření, že Raven je pouze vykonavatelem vůle někoho jiného. A skutečné zlo nám ještě neodhalilo svou pravou tvář. }; instance DIA_Addon_Saturas_Piraten(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_Piraten_Condition; information = DIA_Addon_Saturas_Piraten_Info; description = "Kde získam tu potřebnou zbroj banditů?"; }; func int DIA_Addon_Saturas_Piraten_Condition() { if((AlligatorJack.aivar[AIV_TalkedToPlayer] == FALSE) && (Greg.aivar[AIV_TalkedToPlayer] == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_Piraten_Info() { AI_Output(other,self,"DIA_Addon_Saturas_Piraten_15_00"); //Kde získam tu potřebnou zbroj banditů? AI_Output(self,other,"DIA_Addon_Saturas_Piraten_14_01"); //Na zapadě je tábor pirátů. AI_Output(self,other,"DIA_Addon_Saturas_Piraten_14_02"); //Pokud víme, mají s bandity nějaké kontakty. AI_Output(self,other,"DIA_Addon_Saturas_Piraten_14_03"); //Nemyslím si, že na tebe zaútoči, když tě spozorují. AI_Output(self,other,"DIA_Addon_Saturas_Piraten_14_04"); //Možná ti tam pomohou... B_LogEntry(TOPIC_Addon_BDTRuestung,"Saturas věří, že piráti mi pomohou získat banditskou zbroj."); }; instance DIA_Addon_Saturas_LanceLeiche(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_LanceLeiche_Condition; information = DIA_Addon_Saturas_LanceLeiche_Info; description = "Našel jsem Lanceho mrtvolu."; }; func int DIA_Addon_Saturas_LanceLeiche_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Saturas_PoorRanger) && (Npc_HasItems(NONE_Addon_114_Lance_ADW,ItRi_LanceRing) == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_LanceLeiche_Info() { AI_Output(other,self,"DIA_Addon_Saturas_LanceLeiche_15_00"); //Našel jsem Lanceho mrtvolu. AI_Output(self,other,"DIA_Addon_Saturas_LanceLeiche_14_01"); //Nechť jeho duše vstoupí do Adanovy říše. AI_Output(self,other,"DIA_Addon_Saturas_LanceLeiche_14_02"); //Buď opatrný, synu. Nechci přijít o dalšího člena. TOPIC_End_Lance = TRUE; B_GivePlayerXP(XP_Addon_LanceLeiche); }; instance DIA_Addon_Saturas_LanceChange(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_LanceChange_Condition; information = DIA_Addon_Saturas_LanceChange_Info; permanent = FALSE; description = "Kdo nahradí Lanceho?"; }; func int DIA_Addon_Saturas_LanceChange_Condition() { if(TOPIC_End_Lance == TRUE) { return TRUE; }; }; func void DIA_Addon_Saturas_LanceChange_Info() { AI_Output(other,self,"DIA_Addon_Saturas_LanceChange_01_00"); //Kdo nahradí Lanceho? AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_01_01"); //Já nevím... Všichni ostatní bratři 'Kruhu Vody' jsou nyní zaneprázdněni jinými důležitými úkoly. AI_Output(other,self,"DIA_Addon_Saturas_LanceChange_01_02"); //Podle mého názoru prostě nemáte dost lidí. AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_01_03"); //To je pravda, můj synu... (sklíčeně) Ale je nepravděpodobné, že zde najdeme někoho spolehlivého na Lanceho místo. AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_01_04"); //Vždyť zde na ostrově, jsou pouze banditi nebo piráti. MIS_LanceChange = LOG_Running; Log_CreateTopic(TOPIC_LanceChange,LOG_MISSION); Log_SetTopicStatus(TOPIC_LanceChange,LOG_Running); B_LogEntry(TOPIC_LanceChange,"Saturas je přesvědčen, že v této části ostrova jen stěží najdu osobu, která může nahradit Lanceho. Ale kdo ví, možná se mi podaří někoho najít."); }; instance DIA_Addon_Saturas_LanceChange_Eremit(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_LanceChange_Eremit_Condition; information = DIA_Addon_Saturas_LanceChange_Eremit_Info; permanent = FALSE; description = "Našel jsem vám nového pomocníka."; }; func int DIA_Addon_Saturas_LanceChange_Eremit_Condition() { if((MIS_LanceChange == LOG_Running) && (EremitAgreed == TRUE)) { return TRUE; }; }; func void DIA_Addon_Saturas_LanceChange_Eremit_Info() { B_GivePlayerXP(250); AI_Output(other,self,"DIA_Addon_Saturas_LanceChange_Eremit_01_00"); //Našel jsem vám nového pomocníka. AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_Eremit_01_01"); //A kdo to je? AI_Output(other,self,"DIA_Addon_Saturas_LanceChange_Eremit_01_02"); //Jmenuje se Eremit. Je to poustevník a žíje hluboko v údolí. AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_Eremit_01_03"); //Myslíš si, že pro nás může být užitečný? AI_Output(other,self,"DIA_Addon_Saturas_LanceChange_Eremit_01_04"); //Ovšem! Kromě toho, ví něco o kultuře Stavitelů, také umí číst starodávné tabulky. AI_Output(self,other,"DIA_Addon_Saturas_LanceChange_Eremit_01_05"); //Opravdu? Hmmm... (zamyšleně): No, můj synu. V tom případě souhlasím aby se k nám přidal. MIS_LanceChange = LOG_Success; Log_SetTopicStatus(TOPIC_LanceChange,LOG_Success); B_LogEntry(TOPIC_LanceChange,"Saturas souhlasil s přijetím Eremita jako asistenta mágů. Je nutné ho o tom informovat."); }; instance DIA_Addon_Saturas_LanceRing(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_LanceRing_Condition; information = DIA_Addon_Saturas_LanceRing_Info; description = "Mám Lanceho akvamarínový prsten."; }; func int DIA_Addon_Saturas_LanceRing_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Saturas_LanceLeiche) && Npc_HasItems(other,ItRi_LanceRing)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_LanceRing_Info() { AI_Output(other,self,"DIA_Addon_Saturas_LanceRing_15_00"); //Mám Lanceho akvamarínový prsten. AI_Output(self,other,"DIA_Addon_Saturas_LanceRing_14_01"); //Bude nejlepší, když mi ho dáš dřív, než se dostane do nesprávných rukou. B_GiveInvItems(other,self,ItRi_LanceRing,1); B_GivePlayerXP(XP_Addon_LanceRing); }; instance DIA_Addon_Saturas_Tokens(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 10; condition = DIA_Addon_Saturas_Tokens_Condition; information = DIA_Addon_Saturas_Tokens_Info; permanent = TRUE; description = "K relikviím..."; }; func int DIA_Addon_Saturas_Tokens_Condition() { if(Saturas_SCBroughtAllToken == FALSE) { return TRUE; }; return FALSE; }; var int DIA_Addon_Saturas_Tokens_OneTime; var int Saturas_SCBroughtAllToken; var int Saturas_BroughtTokenAmount; var int ScBroughtToken; var int Saturas_SCFound_ItMi_Addon_Stone_01; var int Saturas_SCFound_ItMi_Addon_Stone_02; var int Saturas_SCFound_ItMi_Addon_Stone_03; var int Saturas_SCFound_ItMi_Addon_Stone_04; var int Saturas_SCFound_ItMi_Addon_Stone_05; func void DIA_Addon_Saturas_Tokens_Info() { var int BroughtToken; var int XP_BroughtTokens; var int Kohle; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_00"); //K relikviím... if((DIA_Addon_Saturas_Tokens_OneTime == FALSE) && (C_ScHasMagicStonePlate() || Npc_HasItems(other,ItWr_StonePlateCommon_Addon))) { AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_01"); //Myslím, že pro tebe něco mám. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_02"); //O těchto kamenných tabulkách už víme. Ty nám již nepomůžou. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_03"); //Musí tam toho být víc než jen tohle. DIA_Addon_Saturas_Tokens_OneTime = TRUE; }; BroughtToken = 0; XP_BroughtTokens = 0; if((Npc_HasItems(other,ItMi_Addon_Stone_01) && (Saturas_SCFound_ItMi_Addon_Stone_01 == FALSE)) || (Npc_HasItems(other,ItMi_Addon_Stone_02) && (Saturas_SCFound_ItMi_Addon_Stone_02 == FALSE)) || (Npc_HasItems(other,ItMi_Addon_Stone_03) && (Saturas_SCFound_ItMi_Addon_Stone_03 == FALSE)) || (Npc_HasItems(other,ItMi_Addon_Stone_04) && (Saturas_SCFound_ItMi_Addon_Stone_04 == FALSE)) || (Npc_HasItems(other,ItMi_Addon_Stone_05) && (Saturas_SCFound_ItMi_Addon_Stone_05 == FALSE))) { AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_04"); //Co říkáš na tohle? AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_05"); //Vypadá to dobře. Kde jsi to našel? B_LogEntry(TOPIC_Addon_Relicts,"Dal jsem Saturasovi tyto relikvie:"); if(Npc_HasItems(other,ItMi_Addon_Stone_01) && (Saturas_SCFound_ItMi_Addon_Stone_01 == FALSE)) { B_GiveInvItems(other,self,ItMi_Addon_Stone_01,1); Saturas_SCFound_ItMi_Addon_Stone_01 = TRUE; BroughtToken = BroughtToken + 1; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_06"); //Banditi tyto kamenné tabulky používali jako nějaký druh peněz. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_07"); //Tyto tabulky nesou symbol Quarhodrona, velkého válečníka. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_08"); //Byl to vojevůdce a jeho syn Rhademes zničil celé město. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_09"); //(opovrženě) Pche. Vsadím se, že banditi ani netuší, s čím to obchodují. Log_AddEntry(TOPIC_Addon_Relicts,"Červenou kamennou tabulku, kterou banditi používají jako peníze. Je na ní zobrazen velký válečník Quarhodron."); }; if(Npc_HasItems(other,ItMi_Addon_Stone_02) && (Saturas_SCFound_ItMi_Addon_Stone_02 == FALSE)) { B_GiveInvItems(other,self,ItMi_Addon_Stone_02,1); Saturas_SCFound_ItMi_Addon_Stone_02 = TRUE; BroughtToken = BroughtToken + 1; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_10"); //Tuhle tabulku jsem našel v jedné budově na jihu. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_11"); //Ach! Tabulka Strážců smrti. Pomocí ní vyvolávali duchy mrtvých. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_12"); //Souvislost mezi Staviteli a jejich původem je velmi blízká. Log_AddEntry(TOPIC_Addon_Relicts,"Fialovou kamennou tabulku ze sídla Strážců smrti na jihu."); }; if(Npc_HasItems(other,ItMi_Addon_Stone_03) && (Saturas_SCFound_ItMi_Addon_Stone_03 == FALSE)) { B_GiveInvItems(other,self,ItMi_Addon_Stone_03,1); Saturas_SCFound_ItMi_Addon_Stone_03 = TRUE; BroughtToken = BroughtToken + 1; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_13"); //Našel jsem tuhle tabulku v budově na jihozápadě. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_14"); //Soudě podle toho, co říká tato tabulka, to byl dům kněží ve městě. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_15"); //Velekněz se jmenoval Khardimon. Zatím toho o něm moc nevíme. Log_AddEntry(TOPIC_Addon_Relicts,"Modrou kamennou tabulku z obydlí kněží na jihozápadě."); }; if(Npc_HasItems(other,ItMi_Addon_Stone_04) && (Saturas_SCFound_ItMi_Addon_Stone_04 == FALSE)) { B_GiveInvItems(other,self,ItMi_Addon_Stone_04,1); Saturas_SCFound_ItMi_Addon_Stone_04 = TRUE; BroughtToken = BroughtToken + 1; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_15"); //Tohle leželo v budově blízko močálu. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_16"); //To by mohl být dům léčitelů. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_17"); //Zatím o nich moc nevíme. Zdá se, že byli první, co odsud zmizeli. Log_AddEntry(TOPIC_Addon_Relicts,"Zelenou kamennou tabulku z domu léčitelů v jižní části bažiny."); }; if(Npc_HasItems(other,ItMi_Addon_Stone_05) && (Saturas_SCFound_ItMi_Addon_Stone_05 == FALSE)) { B_GiveInvItems(other,self,ItMi_Addon_Stone_05,1); Saturas_SCFound_ItMi_Addon_Stone_05 = TRUE; BroughtToken = BroughtToken + 1; AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_18"); //Tahle věc ležela ve velké budově v kaňonu. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_19"); //Tohle je z knihovny starého národa. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_20"); //Podle všeho je to tabulka učenců. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_80"); //Většina rukopisů, které jsme našli, se vztahovala na vůdce kasty učenců. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_81"); //Zvláštní, že na těch zápiscích nenechal své jméno... Log_AddEntry(TOPIC_Addon_Relicts,"Žlutou kamennou tabulku z knihovny učenců na severu."); }; if(SC_Knows_WeaponInAdanosTempel == TRUE) { }; XP_BroughtTokens = XP_Addon_ForOneToken * BroughtToken; B_GivePlayerXP(XP_BroughtTokens); Saturas_BroughtTokenAmount = Saturas_BroughtTokenAmount + BroughtToken; if(Saturas_BroughtTokenAmount < 5) { if(Ghost_SCKnowsHow2GetInAdanosTempel == FALSE) { AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_21"); //Velmi dobře. Obrázek města se pořád vyjasňuje, ale stále toho nevíme dost. }; AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_22"); //V téhle oblasti musí být ukryto pět kamenných tabulek. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_23"); //Najdi je a přines je sem. }; AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_24"); //Přijmi tohle zlato za svou ochotu. Kohle = 200 * BroughtToken; CreateInvItems(self,ItMi_Gold,Kohle); B_GiveInvItems(self,other,ItMi_Gold,Kohle); ScBroughtToken = TRUE; }; if(Saturas_BroughtTokenAmount == 5) { AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_25"); //Teď jsme už máme všechny tabulky, které potřebujeme. if(Ghost_SCKnowsHow2GetInAdanosTempel == FALSE) { AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_26"); //Udělal jsi pro nás velkou službu, patří ti díky. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_27"); //Pro naše studia je to veliký pokrok. }; MIS_Saturas_LookingForHousesOfRulers = LOG_SUCCESS; Saturas_SCBroughtAllToken = TRUE; } else { AI_Output(other,self,"DIA_Addon_Saturas_Tokens_15_28"); //Uvidím, jestli se mi něco podaří najít. AI_Output(self,other,"DIA_Addon_Saturas_Tokens_14_29"); //Dobře. Pospěš si. Čas běží. }; }; instance DIA_Addon_Saturas_StonePlateHint(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_StonePlateHint_Condition; information = DIA_Addon_Saturas_StonePlateHint_Info; important = TRUE; }; func int DIA_Addon_Saturas_StonePlateHint_Condition() { if(((Merdarion_GotFocusCount >= 2) || (RavenIsInTempel == TRUE)) && (Saturas_SCBroughtAllToken == FALSE) && (Ghost_SCKnowsHow2GetInAdanosTempel == FALSE) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_StonePlateHint_Info() { AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_14_00"); //Dobře, že ses vrátil. Musím ti říct něco nového. AI_Output(other,self,"DIA_Addon_Saturas_StonePlateHint_15_01"); //Poslouchám. AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_14_02"); //Ztracené město se jmenovalo Jharkendar. Bylo tady pět vládců, kteří řídili svůj lid. AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_14_03"); //Každý z těchto vládců měl své sídlo, ve kterém žil a měl svůj majetek. AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_14_04"); //Myslím si, že bys měl hledat ona učení po staré kultuře zrovna v těchto místech. MIS_Saturas_LookingForHousesOfRulers = LOG_Running; Info_ClearChoices(DIA_Addon_Saturas_StonePlateHint); Info_AddChoice(DIA_Addon_Saturas_StonePlateHint,"Co když už ta sídla neexistují?",DIA_Addon_Saturas_StonePlateHint_unter); Info_AddChoice(DIA_Addon_Saturas_StonePlateHint,"Kde přesně bych měl ta sídla hledat?",DIA_Addon_Saturas_StonePlateHint_wo); }; func void DIA_Addon_Saturas_StonePlateHint_wo() { AI_Output(other,self,"DIA_Addon_Saturas_StonePlateHint_wo_15_00"); //Kde přesně bych měl ta sídla hledat? AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_wo_14_01"); //Riordian tě obeznámí s uspořádáním staveb v Jharkendaru. AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_wo_14_02"); //Poví ti, kde je máš hledat. Log_CreateTopic(TOPIC_Addon_HousesOfRulers,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_HousesOfRulers,LOG_Running); B_LogEntry(TOPIC_Addon_HousesOfRulers,"Saturas chce, abych se poohlédl po nějakych užitečných záznamech Stavitelů. Riordian mi poví, kde je mám hledat."); }; func void DIA_Addon_Saturas_StonePlateHint_unter() { AI_Output(other,self,"DIA_Addon_Saturas_StonePlateHint_unter_15_00"); //Co když už ta sídla neexistují? AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_unter_14_01"); //Jestli je nenajdeš, pak byly zrejmě zničeny spolu s městem. AI_Output(self,other,"DIA_Addon_Saturas_StonePlateHint_unter_14_02"); //Ale pokud ještě stále existují, budou neocenitelnou pomocí pro naše studia. }; instance DIA_Addon_Saturas_SCBroughtAllToken(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_SCBroughtAllToken_Condition; information = DIA_Addon_Saturas_SCBroughtAllToken_Info; description = "Na co potřebuješ těch pět kamenných tabulek?"; }; func int DIA_Addon_Saturas_SCBroughtAllToken_Condition() { if((ScBroughtToken == TRUE) && (Ghost_SCKnowsHow2GetInAdanosTempel == FALSE) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_SCBroughtAllToken_Info() { AI_Output(other,self,"DIA_Addon_Saturas_SCBroughtAllToken_15_00"); //Na co potřebuješ těch pět kamenných tabulek? AI_Output(self,other,"DIA_Addon_Saturas_SCBroughtAllToken_14_01"); //Záznamy, které jsme našli v ruinách nejsou kompletní. AI_Output(self,other,"DIA_Addon_Saturas_SCBroughtAllToken_14_02"); //Ale v zápisech Stavitelů se říká o pěti vládcích, kteří řídili město. AI_Output(self,other,"DIA_Addon_Saturas_SCBroughtAllToken_14_03"); //Každý z těchto vládců měl jednu z tabulek, které symbolizovali jeho autoritu. AI_Output(self,other,"DIA_Addon_Saturas_SCBroughtAllToken_14_04"); //Myslím, že tyto tabulky jsou klíčem na mé otázky. }; instance DIA_Addon_Saturas_Flut(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_Flut_Condition; information = DIA_Addon_Saturas_Flut_Info; description = "Nefarius mi řekl o potopě..."; }; func int DIA_Addon_Saturas_Flut_Condition() { if((NefariusADW_Talk2Saturas == TRUE) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_Flut_Info() { AI_Output(other,self,"DIA_Addon_Saturas_Flut_15_00"); //Nefarius mi řekl o potopě... AI_Output(self,other,"DIA_Addon_Saturas_Flut_14_02"); //Ukázalo se, že Adanos sestoupil z nebes, aby potrestal nevěřící a vyhnal je do světa mrtvých. AI_Output(self,other,"DIA_Addon_Saturas_Flut_14_03"); //Ve svém svatém hněvu nechal mořem pohltit město a smetl ho pryč. AI_Output(self,other,"DIA_Addon_Saturas_Flut_14_04"); //Bažina na východě je ještě stále svědectvím těchto událostí. TOPIC_END_Flut = TRUE; B_GivePlayerXP(XP_Ambient); }; instance DIA_Addon_Saturas_AdanosZorn(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_AdanosZorn_Condition; information = DIA_Addon_Saturas_AdanosZorn_Info; description = "Co se Adanovi stalo, že se tak rozhněval?"; }; func int DIA_Addon_Saturas_AdanosZorn_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Saturas_Flut) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_AdanosZorn_Info() { AI_Output(other,self,"DIA_Addon_Saturas_AdanosZorn_15_00"); //Co se Adanovi stalo, že se tak rozhněval? AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_01"); //Chrámem tohoto města byla kdysi velká zářivá budova. AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_02"); //Všichni ji obdivovali a modlili se k našemu bohu Adanovi. AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_03"); //Rhademes, syn vojevůdce Quarhodrona, znesvětil chrám. AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_04"); //Jeden po druhém podlehli zlu. AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_05"); //Předpokládam, že Adanos jim nemohl odpustit a jeho pomsta postihla celý kraj. AI_Output(self,other,"DIA_Addon_Saturas_AdanosZorn_14_06"); //Proto je tak důležité, abychom Ravena zastavili... }; instance DIA_Addon_Saturas_RavenInfos(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 9; condition = DIA_Addon_Saturas_RavenInfos_Condition; information = DIA_Addon_Saturas_RavenInfos_Info; permanent = TRUE; description = "Ohledně Ravena..."; }; var int DIA_Addon_Saturas_RavenInfos_OneTime1; var int DIA_Addon_Saturas_RavenInfos_OneTime2; var int DIA_Addon_Saturas_RavenInfos_OneTime3; var int DIA_Addon_Saturas_RavenInfos_OneTime4; var int DIA_Addon_Saturas_RavenInfos_OneTime5; var int Addon_Saturas_Fortuno; func int DIA_Addon_Saturas_RavenInfos_Condition() { if((MIS_ADDON_Saturas_GoToRaven == LOG_Running) && (RavenAway == FALSE)) { return TRUE; }; }; func void DIA_Addon_Saturas_RavenInfos_Info() { var int RavenNeuigkeit; var int XP_RavenNeuigkeit; AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_00"); //Ohledně Ravena... RavenNeuigkeit = 0; if((Thorus.aivar[AIV_TalkedToPlayer] == TRUE) && (DIA_Addon_Saturas_RavenInfos_OneTime1 == FALSE) && (RavenIsInTempel == FALSE)) { AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_01"); //Byl jsem v táboře banditú. Raven je jejich vůdce. AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_02"); //Ale na to, abych se dostal blíž k Ravenovi, se budu muset zbavit několika banditů. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_03"); //Dobře. Hodně štěstí. Ale nezapomeň, že to musíš udělat rychle. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_04"); //Raven nesmí za žádnych okolností dosáhnout svého cíle. DIA_Addon_Saturas_RavenInfos_OneTime1 = TRUE; RavenNeuigkeit = RavenNeuigkeit + 1; }; if((SC_KnowsRavensGoldmine == TRUE) && (DIA_Addon_Saturas_RavenInfos_OneTime2 == FALSE)) { AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_05"); //Má svůj zlatý důl a nutí otroky hledat zlato. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_06"); //To se mu podobá. Musíš otroky osvobodit. AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_07"); //(povzdech) Jasně. Pracuji na tom. DIA_Addon_Saturas_RavenInfos_OneTime2 = TRUE; RavenNeuigkeit = RavenNeuigkeit + 1; }; if((SC_KnowsFortunoInfos == TRUE) && (DIA_Addon_Saturas_RavenInfos_OneTime3 == FALSE)) { AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_08"); //Mezi bandity je jeden chlap, který tvrdí, že zná Ravenův plán. AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_09"); //Jmenuje se Fortuno. Myslí si, že se Raven chce dostat do chrámu, aby získal mocný artefakt. AI_Output(self,other,"DIA_Addon_Bodo_14_03"); //A? Ví něco víc o tom artefaktu? AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_11"); //Řekl mi jen to, že Raven otevřel Adanovu hrobku. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_12"); //Možná ten hrob obsahuje klíč k chrámu. Měl by ses tam porozhlédnout. AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_13"); //Raven přinutil zajatce, aby hrob vykopali. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_14"); //To je zlé. Musíš si pospíšit a zastavit Ravena. Addon_Saturas_Fortuno = TRUE; DIA_Addon_Saturas_RavenInfos_OneTime3 = TRUE; RavenNeuigkeit = RavenNeuigkeit + 1; }; if((RavenIsInTempel == TRUE) && (DIA_Addon_Saturas_RavenInfos_OneTime4 == FALSE)) { AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_15"); //Vtrhl jsem do Ravenova doupěte. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_16"); //A? Co se stalo? AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_17"); //Přišel jsem pozdě. Ztratil se v Adanově chrámu přímo před mýma očima. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_18"); //(rozzuřeně) Cože? To je KATASTROFA! Proč jsi ho nenásledoval?! DIA_Addon_Saturas_RavenInfos_OneTime4 = TRUE; MIS_ADDON_Saturas_GoToRaven = LOG_SUCCESS; RavenNeuigkeit = RavenNeuigkeit + 1; }; if(RavenNeuigkeit != 0) { XP_RavenNeuigkeit = RavenNeuigkeit * XP_Ambient; B_GivePlayerXP(XP_RavenNeuigkeit); } else { AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_19"); //Přišel jsi oznámit nějaké nové zprávy? AI_Output(other,self,"DIA_Addon_Saturas_RavenInfos_15_20"); //Zatím ne. AI_Output(self,other,"DIA_Addon_Saturas_RavenInfos_14_21"); //Dám ti radu. Nepodceňuj Ravena, rozumíš? }; }; instance DIA_Addon_Saturas_TuerZu(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_TuerZu_Condition; information = DIA_Addon_Saturas_TuerZu_Info; description = "Nemohl jsem Ravena následovat. Uzavřel bránu zevnitř!"; }; func int DIA_Addon_Saturas_TuerZu_Condition() { if((MIS_ADDON_Saturas_GoToRaven == LOG_SUCCESS) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_TuerZu_Info() { AI_Output(other,self,"DIA_Addon_Saturas_TuerZu_15_00"); //Nemohl jsem Ravena následovat. Uzavřel bránu zevnitř! AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_02"); //(rozrušeně) Musím přemýšlet... AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_03"); //Otázkou je, jak se Raven dostal dovnitř... AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_04"); //Co udělal předtím, než prošel branou? AI_Output(other,self,"DIA_Addon_Saturas_TuerZu_15_05"); //Vyslovil na bránu zaklínadlo. AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_06"); //A před tím? AI_Output(other,self,"DIA_Addon_Saturas_TuerZu_15_07"); //Otevřel hrob. if(Addon_Saturas_Fortuno == TRUE) { AI_Output(other,self,"DIA_Addon_Saturas_TuerZu_15_09"); //Už jsem ti to jednou říkal... AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_10"); //Správně! } else { AI_Output(other,self,"DIA_Addon_Saturas_TuerZu_15_08"); //Vím jen, že tam musel vykonat nějaký rituál... }; AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_11"); //(přemýšlí) Rituál... AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_12"); //(přišel na to) Ano! To je ono! AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_13"); //Obávám se, že Raven získal sílu Strážců smrti. AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_14"); //A teď získá vědomosti ze svatyně! AI_Output(self,other,"DIA_Addon_Saturas_TuerZu_14_15"); //Musíš hned jít za Myxirem a všechno mu říct! Log_CreateTopic(TOPIC_Addon_Quarhodron,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Quarhodron,LOG_Running); B_LogEntry(TOPIC_Addon_Quarhodron,"Raven ovládl Strážce smrti. Taky získal od ducha informace o Adanově chrámu. Měl bych to oznámit Myxirovi."); Saturas_RiesenPlan = TRUE; }; instance DIA_Addon_Saturas_GhostQuestions(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_GhostQuestions_Condition; information = DIA_Addon_Saturas_GhostQuestions_Info; description = "Mluvil jsem s Quarhodronem."; }; func int DIA_Addon_Saturas_GhostQuestions_Condition() { if((Npc_IsDead(Quarhodron) == FALSE) && (SC_TalkedToGhost == TRUE) && (Ghost_SCKnowsHow2GetInAdanosTempel == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_GhostQuestions_Info() { AI_Output(other,self,"DIA_Addon_Saturas_GhostQuestions_15_00"); //Mluvil jsem s Quarhodronem. AI_Output(self,other,"DIA_Addon_Saturas_GhostQuestions_14_01"); //A co říkal? AI_Output(other,self,"DIA_Addon_Saturas_GhostQuestions_15_02"); //Pomůže mi, jen když mu odpovím na jeho otázky. AI_Output(self,other,"DIA_Addon_Saturas_GhostQuestions_14_03"); //V čem je problém? AI_Output(other,self,"DIA_Addon_Saturas_GhostQuestions_15_04"); //Nevím správné odpovědi. AI_Output(self,other,"DIA_Addon_Saturas_GhostQuestions_14_05"); //Hmm... víme, že učenci z tohoto města postavili na severu knihovnu. AI_Output(self,other,"DIA_Addon_Saturas_GhostQuestions_14_06"); //Byli velice usilovní a snažili se zapisovat všechny své dějiny. AI_Output(self,other,"DIA_Addon_Saturas_GhostQuestions_14_07"); //Možná nalezneš odpovědi na Quarhodronovy otázky pravě tam. B_LogEntry(TOPIC_Addon_Quarhodron,"Saturas předpokládá, že bych mohl najít odpovědi na Quarhodronovy otázky v knihovně učenců. Ta je daleko na severu."); }; instance DIA_Addon_Saturas_TalkedToGhost(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_TalkedToGhost_Condition; information = DIA_Addon_Saturas_TalkedToGhost_Info; description = "Problém se vstupem do chrámu jsem vyřešil."; }; func int DIA_Addon_Saturas_TalkedToGhost_Condition() { if((Ghost_SCKnowsHow2GetInAdanosTempel == TRUE) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_TalkedToGhost_Info() { AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_15_00"); //Problém se vstupem do chrámu jsem vyřešil. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_01"); //Duch promluvil? AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_15_02"); //Ano, promluvil. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_03"); //Pak víš jak se dostat do chrámu. AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_15_04"); //Ano. A navíc mi prozradil, co se skrývá uvnitř. AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_15_05"); //Říkal něco o mocném meči a o Adanových komnatách. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_06"); //(zoufale) Ó, Adane. Jsme ale hlupáci. Jakto že jsme nic netušili? AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_07"); //(šokovaně) Podle tvých slov... AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_08"); //Ten meč může být jedině 'Beliarův dráp'. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_14_09"); //Musíme překonat komnaty tak rychle, jak to jen jde a získat tu zbraň. Info_ClearChoices(DIA_Addon_Saturas_TalkedToGhost); Info_AddChoice(DIA_Addon_Saturas_TalkedToGhost,"Co je to 'Beliarův dráp'?",DIA_Addon_Saturas_TalkedToGhost_wasistdas); Info_AddChoice(DIA_Addon_Saturas_TalkedToGhost,"Co jsou Adanovy komnaty?",DIA_Addon_Saturas_TalkedToGhost_kammern); }; func void DIA_Addon_Saturas_TalkedToGhost_wasistdas() { AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_15_00"); //Co je to 'Beliarův dráp'? AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_01"); //Je to převtělené zlo. Sestrojil ho sám Beliar. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_02"); //Každý, kdo ho používá, má hroznou zbraň ničení. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_03"); //Čím silnejší je nositel, tím mocnější je i 'Dráp'. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_04"); //Jen ten, kdo má silného ducha a pevnou vůli, může odolat kletbě. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_05"); //Teď je mi už jasné, proč Stavitelé zablokovali tohle údolí. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_06"); //Přinesli tuto ďábelskou zbraň do svého města a oddali se jejímu kouzlu. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_07"); //Ti arogantní blázni zabili jeden druhého kvůli nenasytnosti. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_08"); //Krutost neskončila, Adanův hněv se stáhnul okolo této krajiny a vše se potopilo do hlubin moře. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_09"); //Vskutku. Stavitelé portálu velmi dobře ukryli tyto věci před zbytkem světa. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_10"); //Jak tragický konec pro tak úžasnou kulturu. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_11"); //Pochopil jsi naléhavost naší mise? AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_12"); //Raven je silný bojovník a je zaslepen touhou po moci. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_13"); //V jeho rukou se 'Dráp' stává nástrojem zkázy. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_wasistdas_14_14"); //Nesmí získat tu zbraň, jinak jsme všichni odsouzeni k záhubě. Log_CreateTopic(TOPIC_Addon_Klaue,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Klaue,LOG_Running); B_LogEntry(TOPIC_Addon_Klaue,"V Adanově chrámu je silná zbraň. Jmenuje se 'Beliarův dráp'. Raven se ji nesmí zmocnit."); }; func void DIA_Addon_Saturas_TalkedToGhost_kammern() { AI_Output(other,self,"DIA_Addon_Saturas_TalkedToGhost_kammern_15_00"); //Co jsou Adanovy komnaty? AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_kammern_14_01"); //Zjistili jsme, že brána není jediná překážka na cestě do svatyně. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_kammern_14_02"); //V chrámu jsou tři komnaty, jenž mají zastavit vetřelce. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_kammern_14_03"); //Barevné kamenné tabulky Stavitelů jsou klíčem. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_kammern_14_04"); //Jen když máš všechny desky a vyřešíš jejich hádanku, smíš vstoupit dovnitř. AI_Output(self,other,"DIA_Addon_Saturas_TalkedToGhost_kammern_14_05"); //Nevím, jestli Raven rozluštil tajemství chrámu, ale pokud ano, tak máme velký problém. Log_CreateTopic(TOPIC_Addon_Kammern,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Kammern,LOG_Running); B_LogEntry(TOPIC_Addon_Kammern,LogText_Addon_Relicts); Log_CreateTopic(TOPIC_Addon_Relicts,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Relicts,LOG_Running); B_LogEntry_Quiet(TOPIC_Addon_Relicts,LogText_Addon_Relicts); Saturas_KnowsHow2GetInTempel = TRUE; }; instance DIA_Addon_Saturas_RelictsBack(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_RelictsBack_Condition; information = DIA_Addon_Saturas_RelictsBack_Info; description = "Co přesně mám v chrámu s deskami udělat?"; }; func int DIA_Addon_Saturas_RelictsBack_Condition() { if((Saturas_SCBroughtAllToken == TRUE) && (Saturas_KnowsHow2GetInTempel == TRUE) && (RavenAway == FALSE)) { return TRUE; }; return FALSE; }; func void DIA_Addon_Saturas_RelictsBack_Info() { AI_Output(other,self,"DIA_Addon_Saturas_RelictsBack_15_00"); //Co přesně mám v chrámu s deskami udělat? AI_Output(self,other,"DIA_Addon_Saturas_RelictsBack_14_03"); //To zatím nevíme. Ale doufám, že to zjistíš, hned jak vstoupíš dovnitř. AI_Output(self,other,"DIA_Addon_Saturas_RelictsBack_14_05"); //Je mi líto, že ti nemohu říct víc. Teď už je všechno jenom na tobě. AI_Output(self,other,"DIA_Addon_Saturas_RelictsBack_14_06"); //Vem si ty tabulky a okamžitě běž do chrámu. CreateInvItems(hero,ItMi_Addon_Stone_01,1); CreateInvItems(hero,ItMi_Addon_Stone_02,1); CreateInvItems(hero,ItMi_Addon_Stone_03,1); CreateInvItems(hero,ItMi_Addon_Stone_04,1); CreateInvItems(hero,ItMi_Addon_Stone_05,1); B_GiveInvItemsManyThings(self,other); B_LogEntry(TOPIC_Addon_Kammern,"Saturas mě posíla do Adanova chrámu s pěti relikviemi po Stavitelích. Musím se dostat dovnitř a zastavit Ravena."); AI_Output(self,other,"DIA_Addon_Saturas_RelictsBack_14_07"); //Adane, slituj se nad ním a ochraň nás všechny. AI_Output(self,other,"DIA_Addon_Saturas_RelictsBack_14_08"); //Možná ještě není pozdě. }; instance DIA_Addon_Saturas_RavensDead(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_RavensDead_Condition; information = DIA_Addon_Saturas_RavensDead_Info; important = TRUE; }; func int DIA_Addon_Saturas_RavensDead_Condition() { if(RavenIsDead == TRUE) { return TRUE; }; }; func void DIA_Addon_Saturas_RavensDead_Info() { B_GivePlayerXP(2000); AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_00"); //Zemětřesení se zastavilo a ty jsi ještě stále naživu. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_01"); //Splnil jsi tedy svůj úkol? AI_Output(other,self,"DIA_Addon_Saturas_RavensDead_15_02"); //Ano. Raven je mrtev. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_03"); //Potom je už po všem. Díky Adanovi. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_04"); //Vedl sis dobře synu. Jsme tvými dlužníky. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_05"); //Zachránil jsi tuto mocnou zbraň před Zlem a přinesl rovnováhu zpět do téhle části světa. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_06"); //Po dobu zemětřesení jsme se radili, co budeme dělat dál a dohodli jsme se následovně... AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_07"); //Vem si 'Beliarův dráp'. Je ti předurčen! AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_08"); //V tvých rukách, by mohl být mocným spojencem pro nás všechny. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_09"); //Používej ho moudře, můj synu. Adanos ti bude pomáhat. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_11"); //Zůstaneme zde, a ujistíme se, že chrám bude znovu zářit tak, jako kdysi. MIS_AdanosCrone = LOG_Success; Log_SetTopicStatus(TOPIC_AdanosCrone,LOG_Success); B_LogEntry(TOPIC_AdanosCrone,"Řekl jsem Saturasovi že je Raven mrtev!"); }; instance DIA_Addon_Saturas_MixyrBack(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_MixyrBack_Condition; information = DIA_Addon_Saturas_MixyrBack_Info; description = "Vatras potřebuje pomoc ve městě."; }; func int DIA_Addon_Saturas_MixyrBack_Condition() { if(MIS_VatrasAbloesung == LOG_Running) { return TRUE; }; }; func void DIA_Addon_Saturas_MixyrBack_Info() { B_GivePlayerXP(200); AI_Output(other,self,"DIA_Addon_Saturas_MixyrBack_01_01"); //Vatras potřebuje pomoc ve městě. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_12"); //Obrať se na Myxira. Ten Vatrasovi pomůže. AI_Output(self,other,"DIA_Addon_Saturas_RavensDead_14_13"); //Již příliš dlouho zůstal Vatras ve městě sám. MyxirIsBack = TRUE; B_LogEntry(TOPIC_Addon_VatrasAbloesung,"Saturas posílá na pomoc Myxira."); AI_Teleport(KDW_14030_Addon_Myxir_ADW,"TOT"); Npc_ExchangeRoutine(KDW_14030_Addon_Myxir_ADW,"TOT"); }; instance DIA_Addon_Saturas_FreedMissingPeople(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = DIA_Addon_Saturas_FreedMissingPeople_Condition; information = DIA_Addon_Saturas_FreedMissingPeople_Info; description = "Osvobodil jsem vězně."; }; func int DIA_Addon_Saturas_FreedMissingPeople_Condition() { if(MissingPeopleReturnedHome == TRUE) { return TRUE; }; }; func void DIA_Addon_Saturas_FreedMissingPeople_Info() { AI_Output(other,self,"DIA_Addon_Saturas_FreedMissingPeople_15_00"); //Osvobodil jsem vězně. AI_Output(self,other,"DIA_Addon_Saturas_FreedMissingPeople_14_01"); //Velmi dobře. Teď se mohou vrátit zpět domů. B_GivePlayerXP(XP_Addon_Saturas_FreedMissingPeople); }; instance DIA_Addon_Saturas_BeliarsWeapon(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_BeliarsWeapon_Condition; information = DIA_Addon_Saturas_BeliarsWeapon_Info; description = "Našel jsem 'Beliarův dráp'."; }; func int DIA_Addon_Saturas_BeliarsWeapon_Condition() { if((RavenIsDead == TRUE) && C_ScHasBeliarsWeapon()) { return TRUE; }; }; func void DIA_Addon_Saturas_BeliarsWeapon_Info() { AI_UnequipWeapons(hero); AI_Output(other,self,"DIA_Addon_Saturas_BeliarsWeapon_15_00"); //Našel jsem 'Beliarův dráp'. if(Npc_HasItems(hero,ItMw_BeliarWeapon_Raven) && (SC_FailedToEquipBeliarsWeapon == TRUE)) { AI_Output(other,self,"DIA_Addon_Saturas_BeliarsWeapon_15_01"); //Ale nemohu ho použít. }; AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_02"); //Beliarův dráp je VELICE zvláštní zbraň. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_03"); //Má vlastní vůli i ducha. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_04"); //Ty, majitel této mocné zbraně, jsi její pán. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_05"); //Ta zbraň je částí tebe a přizpůsobuje se tvým schopnostem. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_06"); //Ale nemůžeš ji donutit, aby dělala, co si zamaneš. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_14_07"); //Jenom sám Beliar ji může donutit, aby tě poslouchala. AI_Output(other,self,"DIA_Addon_Saturas_BeliarsWeapon_besser_15_00"); //Proč by mi měl Beliar pomoci? AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_01"); //Dosáhneš toho jenom modlitbou k němu. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_02"); //Buď opatrný. Beliar je nejhorší. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_03"); //Pokud ho rozzuříš, brzo to pocítíš. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_04"); //A ještě něco bys měl vědět... (vážně) AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_05"); //Nemůžeš doufat, že ti Beliar dá moc Drápu jenom tak! AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_06"); //Pokud s ním nebudeš v přízni, nebude tě ani poslouchat. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_besser_14_07"); //Čili zbraň můžeš použít jenom, když máš jeho přízeň! Log_CreateTopic(TOPIC_Addon_Klaue,LOG_MISSION); Log_SetTopicStatus(TOPIC_Addon_Klaue,LOG_Running); Log_AddEntry(TOPIC_Addon_Klaue,"Abych mohl ovládat 'Beliarův dráp', musím se pomodlit k Beliarovi a získat si jeho přízeň."); Info_ClearChoices(DIA_Addon_Saturas_BeliarsWeapon); Info_AddChoice(DIA_Addon_Saturas_BeliarsWeapon,"Co můžu dělat s touhle zbraní?",DIA_Addon_Saturas_BeliarsWeapon_wastun); }; func void DIA_Addon_Saturas_BeliarsWeapon_wastun() { AI_Output(other,self,"DIA_Addon_Saturas_BeliarsWeapon_wastun_15_00"); //Co můžu dělat s touhle zbraní? AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_wastun_14_01"); //To záleží na tobě. Ovládl jsi tu zbraň a teď jsi její pán. if(TASKFINDCLAW == FALSE) { AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_wastun_14_02"); //Mohu ti dát jenom radu, co s ní můžeš udělat. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_wastun_14_03"); //Buď mi ji odevzdáš, a já zaručím, že už nikdy nezpůsobí žádnou škodu... AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_wastun_14_04"); //... nebo využiješ její moc a použiješ ji k boji. Info_ClearChoices(DIA_Addon_Saturas_BeliarsWeapon); Info_AddChoice(DIA_Addon_Saturas_BeliarsWeapon,"Nemůžeš si tu zbraň nechat?",DIA_Addon_Saturas_BeliarsWeapon_geben); }; }; func void DIA_Addon_Saturas_BeliarsWeapon_geben() { AI_Output(other,self,"DIA_Addon_Saturas_BeliarsWeapon_geben_15_00"); //Nemůžeš si tu zbraň nechat? AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_geben_14_03"); //Pokud mi ji dáš, zničím ji, takže už ji nikdo nebude moci zneužít. AI_Output(self,other,"DIA_Addon_Saturas_BeliarsWeapon_geben_14_04"); //Takže si promysli, co chceš. SaturasTakeClaw = TRUE; B_LogEntry(TOPIC_Addon_Klaue,"Můžu 'Beliarův dráp' odevzdat Saturasovi nebo si ho nechat."); }; instance DIA_Addon_Saturas_PermENDE_ADDON(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_PermENDE_ADDON_Condition; information = DIA_Addon_Saturas_PermENDE_ADDON_Info; permanent = TRUE; description = "Co teď budete dělat?"; }; func int DIA_Addon_Saturas_PermENDE_ADDON_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Saturas_RavensDead) && (AWORCINVASIONSTART == FALSE)) { return TRUE; }; }; var int DIA_Addon_Saturas_PermENDE_ADDON_OneTime; func void DIA_Addon_Saturas_PermENDE_ADDON_Info() { AI_Output(other,self,"DIA_Addon_Saturas_PermENDE_ADDON_15_00"); //Co teď budete dělat? AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_01"); //Zůstaneme tady a zajistíme, aby chrám opět odhalil svou krásu a velikost. AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_02"); //Tyto zdi chátrají již příliš dlouho. if(DIA_Addon_Saturas_PermENDE_ADDON_OneTime == FALSE) { AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_03"); //Díky ti, synu... AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_04"); //Velmi jsem se v tobě mýlil. Jsi ochránce rovnováhy. O tom není pochyb. AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_05"); //Bez tvé pomoci a statečnosti by ostrov Khorinis zanikl. Děkujeme ti a budeme oslavovat tvou čest. AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_06"); //Soustřeď se na své další úlohy, které leží před tebou a udržuj tento svět v rovnováze a míru. AI_Output(self,other,"DIA_Addon_Saturas_PermENDE_ADDON_14_07"); //Jdi a přijmi svůj osud ochránce. Budeme se za tebe modlit. DIA_Addon_Saturas_PermENDE_ADDON_OneTime = TRUE; }; }; instance DIA_Addon_Saturas_BeliarWeapGeben(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = DIA_Addon_Saturas_BeliarWeapGeben_Condition; information = DIA_Addon_Saturas_BeliarWeapGeben_Info; description = "Vem si 'Beliarův dráp' a znič ho."; }; func int DIA_Addon_Saturas_BeliarWeapGeben_Condition() { if(C_ScHasBeliarsWeapon() && (RavenIsDead == TRUE) && (SaturasTakeClaw == TRUE) && (TASKFINDCLAW == FALSE)) { return TRUE; }; }; func void DIA_Addon_Saturas_BeliarWeapGeben_Info() { AI_Output(other,self,"DIA_Addon_Saturas_BeliarWeapGeben_15_00"); //Vem si 'Beliarův dráp' a znič ho. AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGeben_14_01"); //Jak si přeješ, synu. Dej mi ho. B_ClearBeliarsWeapon(); // AI_Print(b_formgivestring(other,1)); AI_Print("Předáno 1x Beliarův dráp"); AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGeben_14_02"); //Už nikdy nikomu neublíží. Zahodím ho do hlubin moře. AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGeben_14_03"); //Adanos na to dohlédne. TOPIC_END_Klaue = TRUE; B_GivePlayerXP(XP_Addon_BeliarsWeaponAbgegeben); Saturas_KlaueInsMeer = TRUE; }; instance DIA_ADDON_SATURAS_BELIARWEAPGEBENBACK(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 5; condition = dia_addon_saturas_beliarweapgebenback_condition; information = dia_addon_saturas_beliarweapgebenback_info; permanent = FALSE; description = "Stále máš Dráp?!"; }; func int dia_addon_saturas_beliarweapgebenback_condition() { if((Saturas_KlaueInsMeer == TRUE) && (TASKFINDCLAW == TRUE) && (MIS_GOLDDRAGONPORTAL == LOG_Running) && !Npc_KnowsInfo(other,dia_dragon_gold_whatman)) { return TRUE; }; }; func void dia_addon_saturas_beliarweapgebenback_info() { AI_Output(other,self,"DIA_Addon_Saturas_BeliarWeapGebenBack_15_00"); //Stále máš Dráp?! AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_01"); //Ano - stále. AI_Output(other,self,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_02"); //Nechystal ses ho zničit? AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_03"); //Ukázalo se, že to není lehké! Stále nevím, jak to udělat. AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_04"); //Ale Adanova moudrost mi pomůže. Proč tě to vlastně zajímá? AI_Output(other,self,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_05"); //Potřebuji ho. Můžeš mi ho vrátit? AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_06"); //Proč?... (udiveně) AI_Output(other,self,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_07"); //Věř mi, je to velice důležité! AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_08"); //Tvá slova znějí zvláštně, avšak nemám důvod ti nevěřit... AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_09"); //Pokud je to pro tebe tak důležité... Tady, vezmi si ho. B_GiveInvItems(self,other,ItMw_BeliarWeapon_Raven,1); AI_Output(self,other,"DIA_Addon_Saturas_BeliarWeapGebenBack_14_12"); //Doufám, že víš, co děláš... }; instance DIA_ADDON_SATURAS_CANBEWATERMAGE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_canbewatermage_condition; information = dia_addon_saturas_canbewatermage_info; permanent = FALSE; description = "Můžu již nosit roucho mága Vody, mistře?"; }; func int dia_addon_saturas_canbewatermage_condition() { if(hero.guild == GIL_NDW) { return TRUE; }; }; func void dia_addon_saturas_canbewatermage_info() { AI_Output(other,self,"DIA_Addon_Saturas_CanBeWaterMage_14_00"); //Můžu již nosit roucho mága Vody, mistře? if(ATR_INTELLECT >= 40) { AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_01"); //Ano! Myslím, že čas nadešel. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_02"); //Po celý čas jsi nosil roucho novice a dokázal jsi, že jsi toho hoden. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_03"); //Taktéž jsi dokázal, že jsi ochoten následovat Adana, i kdyby tě to mělo stát život. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_04"); //Zvažuji, jestli jsi připraven přijmout tento dar a vstoupit do našeho rádu. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_05"); //Měl bys to však zvážit i ty, protože je to závazné a šlechetné rozhodnutí. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_06"); //Myslím, že nadešel čas, abys to skutečně zvážil. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_07"); //Máš času, kolik chceš! AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_08"); //A pokud se rozhodneš, řekni mi, a já tě přijmu do kruhu následovníků Adanových. } else { AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_09"); //Ještě nepřišel tvůj čas synu. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_10"); //Síla tvoji mysli ještě není dostatečná. Log_CreateTopic(TOPIC_KDW_Accept,LOG_NOTE); B_LogEntry(TOPIC_KDW_Accept,"Podle Saturase mi ještě chybí zkušenosti, abych se připojil do Kruhu mágů Vody. (Požadavek: nejméně 40 jednotek inteligence)"); }; }; instance DIA_ADDON_SATURAS_BEWATERMAGE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_bewatermage_condition; information = dia_addon_saturas_bewatermage_info; permanent = TRUE; description = "Jsem připraven stát se mágem Vody."; }; func int dia_addon_saturas_bewatermage_condition() { if(Npc_KnowsInfo(other,dia_addon_saturas_canbewatermage) && (hero.guild == GIL_NDW)) { return TRUE; }; }; func void dia_addon_saturas_bewatermage_info() { if(ATR_INTELLECT < 40) { AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_09"); //Ještě nepřišel tvůj čas synu. AI_Output(self,other,"DIA_Addon_Saturas_CanBeWaterMage_14_10"); //Síla tvoji mysli ještě není dostatečná. } else { AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_00"); //Jsem připraven stát se mágem Vody. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_01"); //Promyslel sis to a je to tvé konečné rozhodnutí? AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_02"); //Ano, je. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_03"); //Pamatuj, jak jsem ti řekl, není to volba na den anebo měsíc, nýbrž na celý život. Rozumíš? AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_04"); //Ano. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_05"); //Dobrá tedy. Jsi připraven složit přísahu? AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_06"); //Jsem připraven složit přísahu. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_07"); //Tak tedy přijmi požehnání Vody a Adana! AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_08"); //Opakuj po mne slova přísahy: AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_09"); //Přísahám při moci bohů... AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_10"); //Přísahám při moci bohů... AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_11"); //... a při síle svaté Vody... AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_12"); //... a při síle svaté Vody... AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_13"); //... že mé vědomosti a činy budou sloužit Vodě až do konce dní... AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_14"); //... že mé vědomosti a činy budou sloužit Vodě až do konce dní... AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_15"); //... dokud mé dočasné tělo nenajde odpočinek v Beliarových komnatách a zdroj mého života se nevyčerpá. AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_16"); //... dokud mé dočasné tělo nenajde odpočinek v Beliarových komnatách a zdroj mého života se nevyčerpá. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_17"); //Tato přísaha ti dala sílu a požehnání Vody. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_18"); //Nos tohle roucho na znak spojení s posvátnou Vodou a Adanem. CreateInvItems(self,ITAR_KDW_L_Addon,1); B_GiveInvItems(self,other,ITAR_KDW_L_Addon,1); other.guild = GIL_KDW; CheckHeroGuild[0] = TRUE; Snd_Play("GUILD_INV"); Mdl_ApplyOverlayMds(hero,"Humans_Mage.mds"); B_GivePlayerXP(XP_BecomeMage); ATR_INTELLECT += 10; Npc_SetTalentSkill(self,NPC_TALENT_INTELLECT,ATR_INTELLECT); AI_PrintClr("Inteligence + 10",83,152,48); AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_1A"); //Taktéž přijmi tuto magickou hůl. Jenom nám, mágům Vody, je dopřáno ji vlastnit a použít! CreateInvItems(self,ITMW_2H_G3_STAFFWATER_01,1); B_GiveInvItems(self,other,ITMW_2H_G3_STAFFWATER_01,1); AI_Output(other,self,"DIA_Addon_Saturas_BeWaterMage_14_19"); //A jaké jsou teď mé povinnosti? AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_20"); //Tvou základní povinností je teď přinášet dobro a moudrost Adana všem živým. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_21"); //Konej moudře a pamatuj na odpovědnost, kterou přináší tvé postavení. AI_Output(self,other,"DIA_Addon_Saturas_BeWaterMage_14_22"); //Nechť tě Adanos provází, bratře! AI_StopProcessInfos(self); }; }; instance DIA_Addon_Saturas_ADW_PreTeachCircle(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 10; condition = DIA_Addon_Saturas_ADW_PreTeachCircle_Condition; information = DIA_Addon_Saturas_ADW_PreTeachCircle_Info; permanent = FALSE; description = "Můžeš mě naučit magii Vody?"; }; func int DIA_Addon_Saturas_ADW_PreTeachCircle_Condition() { if(hero.guild == GIL_KDW) { return TRUE; }; }; func void DIA_Addon_Saturas_ADW_PreTeachCircle_Info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_PreTeachCircle_15_00"); //Můžeš mě naučit magii Vody? AI_Output(self,other,"DIA_Addon_Saturas_ADW_PreTeachCircle_14_10"); //Když jsi teď mágem Vody, s velikým potěšením tě zasvětím do kruhů magie. AI_Output(self,other,"DIA_Addon_Saturas_ADW_PreTeachCircle_14_11"); //Mimo to tě Nefarius může naučit vytvářet runy a Merdarion ti pomůže zvýšit tvou magickou sílu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_PreTeachCircle_14_12"); //Cronos ti vždy poskytne svitky magie Vody a Riordian tě naučí připravit různé lektvary. AI_Output(self,other,"DIA_Addon_Saturas_ADW_PreTeachCircle_14_13"); //Přirozeně můžeš vždy počítat s naší pomocí, bratře. Saturas_Addon_TeachCircle = TRUE; Log_CreateTopic(TOPIC_Addon_KDWTeacher,LOG_NOTE); B_LogEntry(TOPIC_Addon_KDWTeacher,LogText_Addon_SaturasTeach); }; instance DIA_ADDON_SATURAS_ADW_EXPLAINCIRCLES(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; condition = dia_addon_saturas_adw_explaincircles_condition; information = dia_addon_saturas_adw_explaincircles_info; important = FALSE; permanent = FALSE; description = "Můžeš mi, prosím, vysvětlit, co jsou kruhy magie?"; }; func int dia_addon_saturas_adw_explaincircles_condition() { if((hero.guild == GIL_KDW) && Npc_KnowsInfo(other,DIA_Addon_Saturas_ADW_PreTeachCircle)) { return TRUE; }; }; func void dia_addon_saturas_adw_explaincircles_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_15_01"); //Můžeš mi, prosím, vysvětlit, co jsou kruhy magie? AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_02"); //S radostí. Kruhy symbolizují, jak chápeš magii. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_03"); //Ukazují úroveň tvých schopností a vědomostí, zároveň i jaké kouzla se můžeš naučit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_04"); //Měl bys plně ovládnout jeden kruh, pokud se chceš naučit další. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_05"); //Musíš trénovat dlouhé hodiny a mít mnoho zkušeností, abys mohl ovládnout nejvyšší kruhy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_06"); //Odměnou ti budou nová kouzla. Kruhy magie však znamenají mnohem víc. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_07"); //Jsou součástí tvého života. Vždy budou s tebou. Jsou součástí tebe. AI_Output(self,other,"DIA_Addon_Saturas_ADW_EXPLAINCIRCLES_Info_14_08"); //Abys pochopil jejich sílu, musíš poznat sebe. EXPLAINCIRCLEMEAN = TRUE; }; instance DIA_ADDON_SATURAS_ADW_TEACHFIRSTCIRCLE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 10; condition = dia_addon_saturas_adw_teachfirstcircle_condition; information = dia_addon_saturas_adw_teachfirstcircle_info; permanent = TRUE; description = "Nauč mě první kruh magie. (VB: 20)"; }; func int dia_addon_saturas_adw_teachfirstcircle_condition() { if((hero.guild == GIL_KDW) && (Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) < 1) && (Saturas_Addon_TeachCircle == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_teachfirstcircle_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_00"); //Nauč mě první kruh magie. if(B_TeachMagicCircle(self,other,1)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_03"); //V prvním kruhu se naučíš použít magické runy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_04"); //Každá runa obsahuje speciální kouzlo. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_05"); //Svou vlastní magickou sílou si můžeš vytvořit vlastní runy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_06"); //Avšak narozdíl od svitků, runa drží strukturu kouzla navždy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_07"); //Každá runa v sobě obsahuje magickou sílu, kterou můžeš kdykoli využít. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_08"); //Jako u svitků, když runu používáš, spotřebuješ svou vlastní magickou energii. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_09"); //S každým kruhem se naučíš víc a víc o runách. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TeachFirstCircle_01_10"); //Použíj jejich sílu a poznej sebe. }; }; instance DIA_Addon_Saturas_ADW_CIRCLE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 99; condition = DIA_Addon_Saturas_ADW_CIRCLE_Condition; information = DIA_Addon_Saturas_ADW_CIRCLE_Info; permanent = TRUE; description = "Jsem připraven vstoupit do dalšího kruhu magie."; }; var int DIA_Addon_Saturas_ADW_CIRCLE_NoPerm; func int DIA_Addon_Saturas_ADW_CIRCLE_Condition() { if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) >= 1) && (Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) <= 6) && (Saturas_Addon_TeachCircle == TRUE) && (DIA_Addon_Saturas_ADW_CIRCLE_NoPerm == FALSE)) { return TRUE; }; }; func void DIA_Addon_Saturas_ADW_CIRCLE_Info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_CIRCLE_15_00"); //Jsem připraven vstoupit do dalšího kruhu magie. Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,Dialog_Back,DIA_Addon_Saturas_ADW_CIRCLE_Back); if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 1) && (Kapitel >= 2)) { Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,"2. kruh magie (VB: 30)",DIA_Addon_Saturas_ADW_CIRCLE_2); } else if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 2) && (Kapitel >= 3)) { Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,"3. kruh magie (VB: 40)",DIA_Addon_Saturas_ADW_CIRCLE_3); } else if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 3) && (MIS_ReadyforChapter4 == TRUE)) { Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,"4. kruh magie (VB: 60)",DIA_Addon_Saturas_ADW_CIRCLE_4); } else if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 4) && (Kapitel >= 5)) { Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,"5. kruh magie (VB: 80)",DIA_Addon_Saturas_ADW_CIRCLE_5); } else if((Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 5) && (Kapitel >= 5) && (MIS_DarkOrden == LOG_Success) && (MIS_JarCurse == LOG_Success) && (MIS_URNAZULRAGE == LOG_SUCCESS)) { Info_AddChoice(DIA_Addon_Saturas_ADW_CIRCLE,"6. kruh magie (VB: 100)",DIA_Addon_Saturas_ADW_CIRCLE_6); } else { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_12"); //Nejsi ještě připraven! Vrať se později. }; }; func void DIA_Addon_Saturas_ADW_CIRCLE_Back() { Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; func void DIA_Addon_Saturas_ADW_CIRCLE_2() { if(B_TeachMagicCircle(self,other,2)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_01"); //Ano, jsi připraven naučit se víc. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_02"); //Vstup nyní do druhého kruhu magie. Nechť ti Adanos dá sílu použít tvé schopnosti moudře. }; Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; func void DIA_Addon_Saturas_ADW_CIRCLE_3() { if(B_TeachMagicCircle(self,other,3)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_03"); //Ano, je správný čas. Vstup teď do třetího kruhu magie. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_04"); //Tvé vědomosti ti teď umožní použít nové, mocnější kouzla. Použij je dobře. }; Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; func void DIA_Addon_Saturas_ADW_CIRCLE_4() { if(B_TeachMagicCircle(self,other,4)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_05"); //Čas nadešel. Jsi připraven vstoupit do čtvrtého kruhu magie. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_06"); //Mocná jsou teď tvá slova a skutky. Vždy vybírej svá kouzla starostlivě a rozumně. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_0A"); //A ještě něco. Se čtvrtým kruhem získáváš nejvyšší roucho mágů Vody. Nos ho se ctí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_0B"); //Předtím se to zdálo nemožné, ale teď jsi jeden z Adanových nejlepších! AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_0C"); //Tady, vezmi si roucho. CreateInvItems(hero,ItMW_Addon_Stab02,1); CreateInvItems(self,itar_kdw_h,1); B_GiveInvItems(self,other,itar_kdw_h,1); }; Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; func void DIA_Addon_Saturas_ADW_CIRCLE_5() { if(B_TeachMagicCircle(self,other,5)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_07"); //Teď máš privilegium vstoupit do pátého kruhu magie. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_08"); //Kouzla, která teď můžeš studovat, můžou být skutečně ničivá. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_09"); //Takže buď opatrný a zastav se v pravý čas. }; Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; func void DIA_Addon_Saturas_ADW_CIRCLE_6() { if(B_TeachMagicCircle(self,other,6)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_13"); //Mnoho času uběhlo od doby, kdy sis zvolil cestu Adana. Naučil ses mnoho! AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_14"); //Nadešel čas, aby ses naučil poslední věc, kterou nám náš patron dal. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_15"); //Vstupuješ do šestého kruhu - se kterým ovládneš nejsilnější kouzla mágů Vody. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_16"); //Všímej si, že do šestého kruhu mohou vstoupit jenom ti nejmocnější. Poznamenává totiž život. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_17"); //Znamením je Voda! AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_18"); //Šestý kruh ti umožní použít všechny runy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_19"); //Též nezapomeň: nežeň se za silou, buď jejím zdrojem. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CIRCLE_14_20"); //Konej moudře, rozvážně a snaž se použít své vědomosti pro světlo a dobro Adana! DIA_Addon_Saturas_ADW_CIRCLE_NoPerm = TRUE; }; Info_ClearChoices(DIA_Addon_Saturas_ADW_CIRCLE); }; instance DIA_ADDON_SATURAS_MAXROBE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = dia_addon_saturas_MAXROBE_condition; information = dia_addon_saturas_MAXROBE_info; permanent = FALSE; description = "Jak mohu získat lepší roucho?"; }; func int dia_addon_saturas_MAXROBE_condition() { if((hero.guild == GIL_KDW) && (Kapitel >= 5) && (Npc_GetTalentSkill(hero,NPC_TALENT_MAGE) == 6) && (LastRobeKDW == FALSE) && (MAXROBE_Permanent == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_MAXROBE_info() { AI_Output(other,self,"DIA_Addon_Saturas_MAXROBE_01_00"); //Jak mohu získat lepší roucho? AI_Output(self,other,"DIA_Addon_Saturas_MAXROBE_01_01"); //Vzhledem k tomu, že jsi dokončil všech šest kruhů magie, jsi hoden nosit roucho arcimága Vody. AI_Output(self,other,"DIA_Addon_Saturas_MAXROBE_01_02"); //Nicméně, budeš za něj muset zaplatit. Jeho výroba je příliš drahá, abys ho mohl dostat darem. AI_Output(other,self,"DIA_Addon_Saturas_MAXROBE_01_03"); //Rozumím. LastRobeKDW = TRUE; }; instance DIA_ADDON_SATURAS_MAXROBE_Buy(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = dia_addon_saturas_MAXROBE_Buy_condition; information = dia_addon_saturas_MAXROBE_Buy_info; permanent = TRUE; description = "Prodej mi roucho arcimága Vody. (cena: 20000 zlatých)"; }; func int dia_addon_saturas_MAXROBE_Buy_condition() { if((hero.guild == GIL_KDW) && (LastRobeKDW == TRUE) && (MAXROBE_Permanent == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_MAXROBE_Buy_info() { AI_Output(other,self,"DIA_Addon_Saturas_MAXROBE_Buy_01_00"); //Prodej mi roucho arcimága Vody. if(Npc_HasItems(hero,ItMi_Gold) >= 20000) { B_GiveInvItems(other,self,ItMi_Gold,20000); Npc_RemoveInvItems(self,ItMi_Gold,20000); AI_Output(self,other,"DIA_Addon_Saturas_MAXROBE_Buy_01"); //Výborně, tady je. AI_Output(self,other,"DIA_Addon_Saturas_MAXROBE_Buy_02"); //Je to velká čest! Nezapomínej. CreateInvItems(self,itar_kdw_sh,1); B_GiveInvItems(self,other,itar_kdw_sh,1); MAXROBE_Permanent = TRUE; } else { AI_Output(self,other,"DIA_Addon_Saturas_MAXROBE_Buy_01_03"); //Nemáš dost zlata. }; }; instance DIA_ADDON_SATURAS_KAPITEL3(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = dia_addon_saturas_kapitel3_condition; information = dia_addon_saturas_kapitel3_info; permanent = FALSE; description = "Jak to jde?"; }; func int dia_addon_saturas_kapitel3_condition() { if((Kapitel == 3) && (RavenAway == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_kapitel3_info() { AI_Output(other,self,"DIA_Addon_Saturas_Kapitel3_15_00"); //Jak to jde? AI_Output(self,other,"DIA_Addon_Saturas_Kapitel3_14_01"); //Postupujeme pomalu. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel3_14_02"); //Zdržují nás banditi v bažině. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel3_14_03"); //Díky nim nemůžeme začít studovat Adanův chrám. }; instance DIA_ADDON_SATURAS_KAPITEL4(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = dia_addon_saturas_kapitel4_condition; information = dia_addon_saturas_kapitel4_info; permanent = FALSE; important = TRUE; }; func int dia_addon_saturas_kapitel4_condition() { if((Kapitel >= 4) && (RavenAway == TRUE) && (AWORCINVASIONSTART == FALSE) && (KAPITELORCATC == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_kapitel4_info() { AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_01"); //Díky bohům, že jsi tu! AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_02"); //(vyděšeně) Dějí se hrozné věci... AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_04"); //Skřeti narušili Adanovo posvátné území! AI_Output(other,self,"DIA_Addon_Saturas_Kapitel4_01_05"); //Skřeti? Tady?! AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_06"); //Ano, a je jich mnoho. Přímo nespočetně! A každý den přicházejí další hordy... AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_09"); //Ovládli prakticky celé údolí... A je jen záležitostí času, kdy přijdou sem. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_11"); //Kromě toho, kdyby našli portál do Khorinisu... Neodvážím se vyslovit, co by nastalo! AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_13"); //Měl bys nám pomoci. Jsi naše jediná naděje! AI_Output(other,self,"DIA_Addon_Saturas_Kapitel4_01_14"); //Co můžu udělat? AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_15"); //Skřeti, co se tu objevili, nejsou jako ty obyčejné skupiny. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_16"); //Je to kompletní, efektivní armáda. A každou armádu někdo řídí. AI_Output(other,self,"DIA_Addon_Saturas_Kapitel4_01_17"); //Co naznačuješ? AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_18"); //Naznačuji, že nejlépe se s monstrem vypořádáš tak, že mu odsekneš hlavu... AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_23"); //Před několika dny jsme zahlédli skupinu, která šla ke starobylým chrámům na západě. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_24"); //Další velká skupina mířila k táboru banditů. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_25"); //To je vše, co vím... AI_Output(other,self,"DIA_Addon_Saturas_Kapitel4_01_26"); //Hm, není to moc... Dobře tedy, pokusím se to nějak vyřešit. AI_Output(self,other,"DIA_Addon_Saturas_Kapitel4_01_27"); //Ano, Adanos ti žehnej, synu. Všichni v tebe doufáme! AWORCINVASIONSTART = TRUE; MIS_ADW_ORCINVASION = LOG_Running; Log_CreateTopic(TOPIC_ADW_ORCINVASION,LOG_MISSION); Log_SetTopicStatus(TOPIC_ADW_ORCINVASION,LOG_Running); B_LogEntry(TOPIC_ADW_ORCINVASION,"Saturas mi řekl hrozné zprávy! V údolí se usadila celá armáda skřetů. Mágové Vody se bojí, že najdou portál do Khorinisu a to nemůžeme v žádném případě dopustit. Saturas mě požádal o pomoc. Jelikož bojovat s celou armádou je sebevražda, měl bych najít a odstranit jejich vůdce."); Log_AddEntry(TOPIC_ADW_ORCINVASION,"Saturas mi řekl, že viděl, jak se jedna skupina vydala k ruinám na západ a druhá na východ, k táboru banditů."); AI_StopProcessInfos(self); B_RemoveNpc(BDT_1091_Addon_Lucia); B_KillNpc(BDT_1095_Addon_Crimson); B_KillNpc(BDT_10023_Addon_Wache); B_KillNpc(BDT_10024_Addon_Garaz); B_KillNpc(STRF_1131_Addon_Sklave); B_KillNpc(STRF_1132_Addon_Sklave); B_KillNpc(STRF_1133_Addon_Sklave); B_KillNpc(STRF_1134_Addon_Sklave); B_KillNpc(STRF_1135_Addon_Sklave); B_KillNpc(STRF_1128_Addon_Sklave); B_KillNpc(STRF_1129_Addon_Sklave); B_KillNpc(STRF_1130_Addon_Sklave); B_KillNpc(STRF_1136_Addon_Sklave); B_KillNpc(STRF_1137_Addon_Sklave); B_KillNpc(STRF_1138_Addon_Sklave); B_KillNpc(STRF_1139_Addon_Sklave); B_KillNpc(STRF_1140_Addon_Sklave); B_KillNpc(BDT_10025_Addon_Wache); B_KillNpc(BDT_10026_Addon_Wache); B_KillNpc(BDT_10027_Addon_Buddler); B_KillNpc(BDT_10028_Addon_Buddler); B_KillNpc(BDT_10029_Addon_Buddler); B_KillNpc(BDT_10030_Addon_Buddler); B_KillNpc(BDT_1093_Addon_Franco); B_KillNpc(BDT_10011_Addon_Bandit); B_KillNpc(BDT_10012_Addon_Bandit); B_KillNpc(BDT_1076_Addon_Bandit); B_KillNpc(BDT_1077_Addon_Bandit); B_KillNpc(BDT_1073_Addon_Sancho); B_KillNpc(BDT_1087_Addon_Bandit); B_KillNpc(BDT_1072_Addon_Logan); B_KillNpc(BDT_1074_Addon_Edgor); B_KillNpc(BDT_1078_Addon_Bandit); B_KillNpc(BDT_1071_Addon_Ramon); B_KillNpc(BDT_10004_Addon_Finn); B_KillNpc(BDT_1088_Addon_Torwache); B_KillNpc(BDT_1083_Addon_Esteban); B_KillNpc(BDT_1081_Addon_Wache_01); B_KillNpc(BDT_10005_Addon_Wache_02); B_KillNpc(BDT_1099_Addon_Huno); B_KillNpc(BDT_1070_Addon_Paul); B_KillNpc(BDT_1082_Addon_Skinner); B_KillNpc(BDT_1075_Addon_Fortuno); B_KillNpc(BDT_1084_Addon_Senyan); B_KillNpc(BDT_10015_Addon_Emilio); B_KillNpc(BDT_1096_Addon_Lennar); B_KillNpc(BDT_1079_Addon_Carlos); B_KillNpc(BDT_10031_Addon_Wache); B_KillNpc(STRF_1141_Addon_Sklave); B_KillNpc(STRF_1142_Addon_Sklave); B_KillNpc(STRF_1143_Addon_Sklave); B_KillNpc(STRF_1144_Addon_Sklave); B_KillNpc(BDT_10001_Addon_Bandit_L); B_KillNpc(BDT_10002_Addon_Bandit_M); B_KillNpc(BDT_10003_Addon_Bandit_H); B_KillNpc(BDT_10006_Addon_Bandit); B_KillNpc(BDT_10007_Addon_Bandit); B_KillNpc(BDT_10008_Addon_Bandit); B_KillNpc(BDT_10009_Addon_Bandit); B_KillNpc(BDT_10010_Addon_Bandit); B_KillNpc(BDT_10018_Addon_Torwache); B_KillNpc(BDT_10019_Addon_Wache); B_KillNpc(BDT_10020_Addon_Wache); B_KillNpc(BDT_10021_Addon_Wache); if(Npc_IsDead(BDT_10022_Addon_Miguel) == FALSE) { AI_Teleport(BDT_10022_Addon_Miguel,"ADW_PIRATECAMP_CAVE3_92"); Npc_ExchangeRoutine(BDT_10022_Addon_Miguel,"OrcInvasion"); MIGUEL_TP = TRUE; }; if(Npc_IsDead(BDT_1097_Addon_Fisk) == FALSE) { AI_Teleport(BDT_1097_Addon_Fisk,"ADW_PIRATECAMP_CAVE3_91"); Npc_ExchangeRoutine(BDT_1097_Addon_Fisk,"OrcInvasion"); FISK_TP = TRUE; }; if(Npc_IsDead(BDT_1080_Addon_Tom) == FALSE) { AI_Teleport(BDT_1080_Addon_Tom,"ADW_PIRATECAMP_CAVE3_90"); Npc_ExchangeRoutine(BDT_1080_Addon_Tom,"OrcInvasion"); TOM_TP = TRUE; }; if(Npc_IsDead(BDT_10014_Addon_Thorus) == FALSE) { AI_Teleport(BDT_10014_Addon_Thorus,"ADW_PIRATECAMP_CAVE3_01"); Npc_ExchangeRoutine(BDT_10014_Addon_Thorus,"OrcInvasion"); THORUS_TP = TRUE; }; if(Npc_IsDead(BDT_1086_Addon_Scatty) == FALSE) { AI_Teleport(BDT_1086_Addon_Scatty,"ADW_PIRATECAMP_CAVE3_03"); Npc_ExchangeRoutine(BDT_1086_Addon_Scatty,"OrcInvasion"); SCATTY_TP = TRUE; }; if(Npc_IsDead(BDT_1098_Addon_Snaf) == FALSE) { AI_Teleport(BDT_1098_Addon_Snaf,"ADW_PIRATECAMP_CAVE3_04"); Npc_ExchangeRoutine(BDT_1098_Addon_Snaf,"OrcInvasion"); SNAF_TP = TRUE; }; if((Npc_IsDead(BDT_4568_KINJARTS) == FALSE) && (KinjartsIns == TRUE)) { AI_Teleport(BDT_4568_KINJARTS,"ADW_PIRATECAMP_CAVE3_01"); Npc_ExchangeRoutine(BDT_4568_KINJARTS,"Invasion"); }; Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_01"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_03"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_05"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_07"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_09"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_11"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORKINCAMP_12"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_14"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_16"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_18"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_20"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORKINCAMP_22"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_24"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_26"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_28"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_30"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_32"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ORKINCAMP_35"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_37"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORKINCAMP_39"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_41"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_43"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_45"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORKINCAMP_47"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_49"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_51"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORKINCAMP_53"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORKINCAMP_55"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_57"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ORKINCAMP_59"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ENTRANCEORCGUARD_01"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ENTRANCEORCGUARD_03"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_05"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_07"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_09"); Wld_InsertNpc(OrcShaman_Sit,"FP_CAMPFIRE_ORKINCAMP_01"); Wld_InsertNpc(OrcShaman_Sit,"FP_CAMPFIRE_ORKINCAMP_03"); Wld_InsertNpc(OrcShaman_Sit,"FP_CAMPFIRE_ORKINCAMP_05"); Wld_InsertNpc(OrcWarrior_Sit,"FP_CAMPFIRE_SWAMP_01"); Wld_InsertNpc(OrcWarrior_Sit,"FP_CAMPFIRE_VP1_02"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORCINADANOS_01"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ORCINADANOS_03"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ORCINADANOS_05"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ZOBIE_01"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ZOBIE_03"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ZOBIE_05"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_03"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_04"); Wld_InsertNpc(orcshaman_leader4,"FP_CAMPFIRE_ELITEORCSHAMAN_04"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_19"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_21"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_23"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_25"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ENTRANCEORCGUARD_27"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_29"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ENTRANCEORCGUARD_31"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_RHADEMES_DEADBDT_01"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_RHADEMES_DEADBDT_02"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_RHADEMES"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_ENTRANCE_17"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_ENTRANCE_20"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_ENTRANCE_13"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_TREASUREPITS_05A"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_TREASUREPITS_05C"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_TREASUREPITS_05E"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_TREASUREPITS_09A"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_TREASUREPITS_09C"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_ADANOSTEMPEL_TREASUREPITS_09E"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_RHADEMES_14A"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_RHADEMES_14C"); Wld_InsertNpc(orkelite_addon1,"ADW_ADANOSTEMPEL_RHADEMES_14E"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ADANOSTEMPEL_ORC_01"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ADANOSTEMPEL_ORC_03"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ADANOSTEMPEL_ORC_05"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ADANOSTEMPEL_ORC_07"); Wld_InsertNpc(orkelite_addon2,"FP_ROAM_ADANOSTEMPEL_ORC_09"); Wld_InsertNpc(orkelite_adw_leader,"FP_CAMPFIRE_ADANOSTEMPEL_ORC_08"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_11"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_13"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_15"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ENTRANCEORCGUARD_17"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_LIBRARY_04"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_LIBRARY_LEFT_08"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_LIBRARY_LEFT_07"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_LIBRARY_RIGHT_07"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_LIBRARY_RIGHT_13"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_LIBRARY_STONIE_01"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_LIBRARY_STONIE_05"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_ORCS_08"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_PATH_TO_LIBRARY_14"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_CANYON_PATH_TO_LIBRARY_19"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_PATH_TO_LIBRARY_20"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_ORCS_05"); Wld_InsertNpc(orkelite_addon2,"ADW_CANYON_ORCS_02"); Wld_InsertNpc(OrcShaman_Sit,"ADW_CANYON_ORCS_02"); Wld_InsertNpc(orcshaman_leader5,"FP_CAMPFIRE_ELITEORCSHAMAN_05"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_06"); Wld_InsertNpc(orkelite_addon2,"ADW_SENAT_SIDE_01"); Wld_InsertNpc(orkelite_addon2,"ADW_SENAT_SIDE_03"); Wld_InsertNpc(orkelite_addon3,"ADW_SENAT_GUARDIAN_01"); Wld_InsertNpc(orkelite_addon3,"ADW_SENAT_GUARDIAN_03"); Wld_InsertNpc(orcshaman_leader3,"FP_CAMPFIRE_ELITEORCSHAMAN_03"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_02"); Wld_InsertNpc(OrcWarrior_Roam,"STRAND"); Wld_InsertNpc(orkelite_addon2,"ADW_VALLEY_PATH_131"); Wld_InsertNpc(orkelite_addon3,"ADW_VALLEY_PATH_132_A"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_134"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_135"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_135"); Wld_InsertNpc(orcshaman_leader2,"FP_CAMPFIRE_ELITEORCSHAMAN_02"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_07"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_08"); Wld_InsertNpc(orkelite_addon2,"ADW_VALLEY_PATH_064_A"); Wld_InsertNpc(orkelite_addon2,"ADW_VALLEY_PATH_072"); Wld_InsertNpc(orkelite_addon3,"ADW_VALLEY_PATH_073"); Wld_InsertNpc(orcshaman_leader1,"FP_CAMPFIRE_ELITEORCSHAMAN_01"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_09"); Wld_InsertNpc(orkelite_addon3,"FP_ROAM_ELITEORCSHAMANGUARD_10"); Wld_InsertNpc(orkelite_addon1,"ADW_CANYON_TELEPORT_PATH_09"); Wld_InsertNpc(orkelite_addon1,"ADW_CANYON_TELEPORT_PATH_09"); Wld_InsertNpc(orkelite_addon1,"ADW_ENTRANCE_PATH2BANDITS_10"); Wld_InsertNpc(orkelite_addon1,"ADW_ENTRANCE_PATH2BANDITS_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PORTALTEMPEL_08A"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PORTALTEMPEL_08B"); Wld_InsertNpc(orkelite_addon1,"ADW_BL_FLIES_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_BL_FLIES_06"); Wld_InsertNpc(orkelite_addon1,"ADW_LITTLE_HILL_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_LITTLE_HILL_04"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_04"); Wld_InsertNpc(orkelite_addon1,"ADW_SWAMP_05"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_LITTLE_SEA_01"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_LITTLE_SEA_02"); Wld_InsertNpc(orkelite_addon1,"ADW_SWAMP_LITTLE_SEA_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_12"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_13"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PATH_TO_BL_09"); Wld_InsertNpc(orkelite_addon1,"ADW_PATH_TO_BL_10"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PATH_TO_LOCH_01"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PATH_TO_LOCH_01"); Wld_InsertNpc(orkelite_addon1,"ADW_SWAMP_10"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_05"); Wld_InsertNpc(orkelite_addon1,"ADW_SENAT_MONSTER_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SENAT_MONSTER_04"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_HILLS_DOWN_06"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_HILLS_DOWN_03"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_LOCH_05"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_SWAMP_TO_BIGSEA_01"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PIRATECAMP_LONEBEACH_11"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PIRATECAMP_LONEBEACH_10"); Wld_InsertNpc(orkelite_addon2,"DAW_PIRTECAMP_LONEBEACH_07"); Wld_InsertNpc(orkelite_addon2,"ADW_PIRATECAMP_LONEBEACH_08"); Wld_InsertNpc(orkelite_addon2,"ADW_PIRATECAMP_LONEBEACH_04"); Wld_InsertNpc(orkelite_addon3,"ADW_PIRATECAMP_LONEBEACH_CAVE_03"); Wld_InsertNpc(orkelite_addon1,"ADW_PIRATECAMP_LONEBEACH_CAVE_03"); Wld_InsertNpc(orkelite_addon1,"ADW_PIRATCAMP_PLAIN_05"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_PIRATCAMP_PLAIN_05"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_033_A"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_035"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_036"); Wld_InsertNpc(orkelite_addon1,"ADW_VALLEY_BIGCAVE_06"); Wld_InsertNpc(orkelite_addon3,"ADW_VALLEY_BIGCAVE_15"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_110"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_020"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_048_A"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_PATH_047_G"); Wld_InsertNpc(orkelite_addon1,"ADW_VALLEY_PATH_017"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_SHOWCASE1_02"); Wld_InsertNpc(OrcWarrior_Roam,"ADW_VALLEY_SHOWCASE1_03"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ADWENTRANCEHRAM_02"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_04"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_06"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_08"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_10"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_12"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_14"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_16"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_18"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_20"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_22"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_24"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_26"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_30"); Wld_InsertNpc(orkelite_bowmenroam,"FP_ROAM_ADWENTRANCEHRAM_31"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_ADWENTRANCEHRAM_32"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_34"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_ADWENTRANCEHRAM_36"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_02"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_04"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_06"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_GOLDSHAHT_08"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_10"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_12"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_GOLDSHAHT_14"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_GOLDSHAHT_16"); Wld_InsertNpc(orkelite_addon1,"FP_ROAM_GOLDSHAHT_18"); Wld_InsertNpc(OrcWarrior_Roam,"FP_ROAM_GOLDSHAHT_20"); }; instance DIA_ADDON_SATURAS_ORCLEADERDS(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 2; condition = dia_addon_saturas_orcleaderds_condition; information = dia_addon_saturas_orcleaderds_info; permanent = TRUE; description = "Co se týče skřetů..."; }; func int dia_addon_saturas_orcleaderds_condition() { if((Kapitel >= 4) && (RavenAway == TRUE) && (AWORCINVASIONSTART == TRUE) && (AWORCINVASIONSTOP == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_orcleaderds_info() { var int OrcCountXP; OrcCountXP = FALSE; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_01"); //Co se týče skřetů... AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_02"); //Je něco nového? if((ORCSHAMAN1ISDEAD == FALSE) && (Npc_IsDead(orcshaman_leader1) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_03"); //Jedna ze skupin skřetů, které se vydaly na západ, se usídlila v domě kněží. Bezpochyby si vybrali dobré místo! AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_04"); //Byli vedeni šamanem Varrag-Shatanem. Teď už ale on ani ostatní nejsou nebezpeční. AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_05"); //Vlastně jsem z nich vymlátil duši. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_06"); //Díky Adanovi! Aspoň nějaké dobré zprávy... ORCSHAMAN1ISDEAD = TRUE; }; if((ORCSHAMAN2ISDEAD == FALSE) && (Npc_IsDead(orcshaman_leader2) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_07"); //Několik dalších skřetů je už minulostí! AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_08"); //V chrámu Strážců smrti jsem narazil na další skupinu, která se vydala na západ. Bylo potřebné jim dát do zubů! AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_09"); //Soudím, že je vedl šaman Varrag-Kazorg. Teď je on i se skupinou mrtvev. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_10"); //Dobrá práce, synu! ORCSHAMAN2ISDEAD = TRUE; }; if((ORCSHAMAN3ISDEAD == FALSE) && (Npc_IsDead(orcshaman_leader3) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_12"); //V domě léčitelů v bažině jsem našel další skupinu skřetů. Postavili si tam malý tábor. AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_13"); //Jejich velitelem byl šaman Varrag-Hashor. Byl, protože už z nich nic nezbylo... AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_15"); //Skvělé zprávy. Pokračuj se stejným zápalem! ORCSHAMAN3ISDEAD = TRUE; }; if((ORCSHAMAN5ISDEAD == FALSE) && (Npc_IsDead(orcshaman_leader5) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_16"); //V kaňonu na severu, u domu válečníků, se usadila další skupina skřetů. AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_17"); //Dohled nad nimi měl šaman Varrag-Hatash. AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_18"); //Bylo potřebné lehce upravit stav věcí. Teď už v kaňonu žádní skřeti nejsou! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_19"); //Úžasné! ORCSHAMAN5ISDEAD = TRUE; }; if((ORCSHAMAN4ISDEAD == FALSE) && (Npc_IsDead(orcshaman_leader4) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_20"); //Skřeti zaútočili na tábor banditů. Byl to pořádný boj! AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_21"); //Velmi jsem se snažil, abych je všechny pozabíjel. AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_22"); //Včetně velícího šamana hordy - Varrag-Nazula. Myslím, že on byl za tu skupinu odpovědný. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_23"); //Úctyhodný skutek. Myslím, že to skřety hodně oslabí! ORCSHAMAN4ISDEAD = TRUE; }; if((ORKELITELEADERISDEAD == FALSE) && (Npc_IsDead(orkelite_adw_leader) == TRUE)) { OrcCountXP = OrcCountXP + 100; AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_24"); //Skřeti se dostali do Adanova chrámu! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_25"); //Při Adanovi! To prokleté zvěrstvo znesvětilo náš chrám! Podnikl jsi nějaké kroky? AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_26"); //Všechny jsem zabil, včetně jejich vůdce. Byl to tvrdý boj, ale teď je to za námi. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_27"); //Kdo to byl? AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_28"); //Silný nepřítel! Jeden z vůdců celého klanu - Ur-Katan. Já však ukončil jeho život. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_29"); //Soudím, že se skřeti připravovali vážně důkladně, jelikož povolali jednoho z jejich nejlepších. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_30"); //Jsi na správné cestě! Pokud budeš pokračovat takto, zlomíme je. ORKELITELEADERISDEAD = TRUE; }; if((ORCSHAMAN1ISDEAD == TRUE) && (ORCSHAMAN2ISDEAD == TRUE) && (ORCSHAMAN3ISDEAD == TRUE) && (ORCSHAMAN4ISDEAD == TRUE) && (ORCSHAMAN5ISDEAD == TRUE) && (ORKELITELEADERISDEAD == TRUE)) { OrcCountXP = OrcCountXP + 500; B_GivePlayerXP(OrcCountXP); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_31"); //Myslím, že to stačí. Tuto úlohu jsi splnil perfektně! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_32"); //Když jsou jejich vůdci mrtví, skřeti už nepodniknou žádné vážné kroky. A určitě opustí údolí. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_34"); //... Nevím, co bychom bez tebe dělali. Jsi skutečně vyvolený bohů! MIS_ADW_ORCINVASION = LOG_SUCCESS; Log_SetTopicStatus(TOPIC_ADW_ORCINVASION,LOG_SUCCESS); B_LogEntry(TOPIC_ADW_ORCINVASION,"Pravděpodobně jsem zabil všechny vůdce skřetů, kteří pronikli do Jharkendaru. Můžeme věřit, že bez jejich vůdců skřeti ztratili zájem o toto místo a brzy odejdou."); if(other.guild == GIL_KDF) { AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_36"); //Tedy, mágu, přijmi tento dar jako vděk za tvé skutky. B_GiveInvItems(self,other,ItPo_Perm_Mana,1); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_37"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale je to nejcennější věc, kterou mám. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_39"); //A teď pokračuj ve své cestě. Na tomto světě je stále mnoho zla, se kterým všichni bojujeme. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_40"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); } else if(other.guild == GIL_PAL) { AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_41"); //Je mou svatou povinností bojovat se zlem! Innos mi dává sílu! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_42"); //Tedy, šlechetný paladine, přijmi ode mne tento malý dar na počest tvých skutků. B_GiveInvItems(self,other,ItPo_Perm_Health,2); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_43"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale pomůže ti to ve tvém boji! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_45"); //A teď pokračuj ve své cestě. Na tomto světě je stále mnoho míst, kde tě potřebují. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_46"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); } else if(other.guild == GIL_DJG) { AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_48"); //Tedy, žoldáku, přijmi ode mne tenhle malý dar na počest tvých skutků. B_GiveInvItems(self,other,ItPo_Perm_STR,1); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_49"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale doufám, že to bude stačit. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_51"); //A teď pokračuj ve své cestě. Určitě ještě přijde čas, kdy bude tvůj meč potřebný v boji se zlem! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_52"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); } else if((other.guild == GIL_SEK) || (other.guild == GIL_TPL) || (other.guild == GIL_GUR)) { AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_53"); //Jak jistě chápeš, my v Bratrstvu těmto věcem nevěříme! Naše cesta je bohům příliš vzdálená. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_54"); //Tedy, přijmi ode mne tento malý dar na počest tvých skutků. if((other.guild == GIL_SEK) || (other.guild == GIL_TPL)) { B_GiveInvItems(self,other,ItPo_Perm_STR,1); } else { B_GiveInvItems(self,other,ItPo_Perm_Mana,1); }; AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_55"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale doufám, že to bude stačit. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_57"); //A teď pokračuj ve své cestě. Určitě ještě přijde čas, kdy budeš pomáhat v boji se zlem! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_58"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); } else if(other.guild == GIL_KDW) { AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_60"); //Tedy, bratře, přijmi ode mne tento malý dar na počest tvých skutků. B_GiveInvItems(self,other,itpo_perm_mana,1); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_61"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale doufám, že to bude dost. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_63"); //A teď pokračuj ve své cestě. Určitě ještě přijde čas, kdy budeš pomáhat v boji se zlem! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_64"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); } else if(other.guild == GIL_KDM) { AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_66"); //Taková slova nejsou potřebná. Nezapomínej, že sloužím jenom jedinému bohu! A myslím, že mými činy nebude nadšený. B_GiveInvItems(self,other,ItPo_Perm_Mana,1); AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_67"); //Jsou přirozeně hodny mnohem vícera než tohoto. Ale doufám, že to bude stačit. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_69"); //A teď pokračuj ve své cestě. Doufám, že to nebude tvůj jediný čin ve jméně světla! AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_70"); //Sbohem. DIA_Addon_Saturas_ADW_EXIT_Info(); }; AWORCINVASIONSTOP = TRUE; } else { B_GivePlayerXP(OrcCountXP); AI_Output(other,self,"DIA_Addon_Saturas_OrcLeaderds_01_71"); //Ještě nic. AI_Output(self,other,"DIA_Addon_Saturas_OrcLeaderds_01_72"); //Veliká škoda. Doufal jsem, že uslyším příjemnějsí zprávy. }; }; instance DIA_ADDON_SATURAS_ADW_UNKNOWNPORTAL(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 99; condition = dia_addon_saturas_adw_unknownportal_condition; information = dia_addon_saturas_adw_unknownportal_info; permanent = FALSE; description = "V Adanově chrámu jsem našel tenhle divný kámen."; }; func int dia_addon_saturas_adw_unknownportal_condition() { if((Npc_HasItems(other,ITMI_DRAGONGOLDFOCUS) >= 1) && (DRAGONGOLDMEET == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_unknownportal_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortal_01_00"); //V Adanově chrámu jsem našel tenhle divný kámen. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_01"); //Nuže, dovol mi ho prozkoumat. B_GiveInvItems(other,self,ITMI_DRAGONGOLDFOCUS,1); AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_02"); //Hmmm... Ano - velice zajímavý artefakt! Ještě nikdy jsem takový neviděl. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_04"); //Těžko přesně říct, ale připomíná mi to kameny, které jsme používali na aktivaci portálů. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_06"); //Nenapadá mě však, pro jaký portál byl kámen vytvořen. AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortal_01_07"); //Znamená to, že je možné ho nějak použít? AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_08"); //Asi ano! Ale víc mě zajímá, kde jsi ho našel. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_09"); //Jestli jsi ho našel v Adanově chrámu, jak říkáš, určitě představoval pro lidi, jež tu kdysi žili, velikou hodnotu. AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortal_01_10"); //Nebo právě opačně, velikou hrozbu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortal_01_11"); //V každém případě musíš dávat veliký pozor, objevíš-li, jak ho použít. Následky mohou být nepředvídatelné! B_GiveInvItems(self,other,ITMI_DRAGONGOLDFOCUS,1); Log_CreateTopic(TOPIC_GOLDDRAGONPORTAL,LOG_MISSION); Log_SetTopicStatus(TOPIC_GOLDDRAGONPORTAL,LOG_Running); B_LogEntry(TOPIC_GOLDDRAGONPORTAL,"Ukázal jsem Saturasovi kámen, který jsem našel v Adanově chrámu. Saturas mi nemohl přesně říct, na co slouží, ale podotkl, že velmi silně připomíná kameny použité na aktivaci portálů. Asi bych se měl porozhlédnout, jestli se něco jako portál v údolí nachází."); MIS_GOLDDRAGONPORTAL = LOG_Running; }; instance DIA_ADDON_SATURAS_ADW_UNKNOWNPORTALKNOWN(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 98; condition = dia_addon_saturas_adw_unknownportalknown_condition; information = dia_addon_saturas_adw_unknownportalknown_info; permanent = FALSE; description = "Našel jsem portál..."; }; func int dia_addon_saturas_adw_unknownportalknown_condition() { if(DRAGONGOLDMEET == TRUE) { return TRUE; }; }; func void dia_addon_saturas_adw_unknownportalknown_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_00"); //Našel jsem portál a aktivoval ho s pomocí kamenu z chrámu... AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_01"); //ANO?!... (velmi překvapeně) nemožné!... AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_02"); //A kdes ho našel? AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_03"); //V ruinách starého chrámu nedaleko odtud. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_07"); //A kam portál vedl? AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_08"); //Do jednoho malého údolí... AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_12"); //Není tam nic zajímavého, kromě jedné věci... Draka! AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_13"); //DRAKA?! Můj bože!... (vystrašeně) AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_15"); //(panikaří) Pak se obávám, že jsme všichni ve velkém nebezpečí. AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_16"); //Neboj se! Žádné nebezpečí nehrozí. Ashtar není služebníkem zla! AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_17"); //Ashtar?! AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_18"); //Ano, Ashtar - zlatý drak! Ani v nejmenším se nepodobá na draky, kteří zaplavili Hornické údolí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_22"); //Tedy! Nejsem si jistý, jestli říkáš pravdu. Je tomu těžké uvěřit! AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_25"); //Při našem výzkumu jsme našli fresky, které zobrazovaly bytost nejasného původu... AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_26"); //... velice podobnou drakovi. Možná to i byl on. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_35"); //Myslím, že bych měl jít do toho údolí a promluvit si s ním. AI_Output(self,other,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_36"); //Možná nám osvětlí, co se vlastně stalo. AI_Output(other,self,"DIA_Addon_Saturas_ADW_UnknownPortalKnown_01_38"); //Věřím, že si s ním máš co říct. B_LogEntry(TOPIC_GOLDDRAGONPORTAL,"Řekl jsem Saturasovi o drakovi. Byl mírně otřesen, ale dost ho to zajímá."); AI_StopProcessInfos(self); SATURASKNOWSASHTAR = TRUE; self.aivar[AIV_EnemyOverride] = TRUE; }; instance DIA_ADDON_SATURAS_ADW_ARCHDEMON(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 97; condition = dia_addon_saturas_adw_archdemon_condition; information = dia_addon_saturas_adw_archdemon_info; permanent = FALSE; important = TRUE; }; func int dia_addon_saturas_adw_archdemon_condition() { if((TASKFINDSPHERE == TRUE) && Npc_KnowsInfo(hero,dia_addon_saturas_adw_unknownportalknown) && (Npc_GetDistToWP(self,"ADW_SATURAS_2_GOLDDRAGON") < 500) && (AshtarLastWarn == FALSE) && (SenyakIsDead == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_archdemon_info() { AI_Output(self,other,"DIA_Addon_Saturas_ADW_ArchDemon_01_00"); //(rozrušeně) Ashtar mi řekl o Senyakovi. AI_Output(self,other,"DIA_Addon_Saturas_ADW_ArchDemon_01_01"); //Pokud má drak pravdu, svět je ve vážném nebezpečí! To nemůžeme dopustit! AI_Output(self,other,"DIA_Addon_Saturas_ADW_ArchDemon_01_02"); //Měl bys hned konat. Jdi a najdi sféry, o kterých ti drak řekl! AI_Output(self,other,"DIA_Addon_Saturas_ADW_ArchDemon_01_03"); //Jdi, synu! Každá minuta je důležitá! AI_StopProcessInfos(self); }; instance DIA_ADDON_SATURAS_ADW_PRAYFORGOMEZ(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_prayforgomez_condition; information = dia_addon_saturas_adw_prayforgomez_info; permanent = FALSE; description = "Potřebuji Adanovo požehnání."; }; func int dia_addon_saturas_adw_prayforgomez_condition() { if((MIS_RESCUEGOMEZ == LOG_Running) && (RESCUEGOMEZSTEPONE == TRUE) && (RESCUEGOMEZSTEPONEDONE == FALSE) && (RESCUEGOMEZPRAYADANOS == FALSE) && (SATURASREFUSEHELPGOMEZ == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_prayforgomez_info() { B_GivePlayerXP(50); AI_Output(other,self,"DIA_Addon_Saturas_ADW_PrayForGomez_01_01"); //Potřebuji Adanovo požehnání. AI_Output(self,other,"DIA_Addon_Saturas_ADW_PrayForGomez_01_02"); //(nechápavě) Potřebuješ požehnání Vody? AI_Output(self,other,"DIA_Addon_Saturas_ADW_PrayForGomez_01_03"); //Co jsi opět udělal, když o něj tak žádáš? AI_Output(other,self,"DIA_Addon_Saturas_ADW_PrayForGomez_01_04"); //Já nic! Je pro duši, kterou jsem na tomto světě potkal. AI_Output(other,self,"DIA_Addon_Saturas_ADW_PrayForGomez_01_10"); //Duši bývalého rudobarona - Gomeze! AI_Output(self,other,"DIA_Addon_Saturas_ADW_PrayForGomez_01_11"); //GOMEZE?!... (nahněvaně) Toho vraha?! AI_Output(self,other,"DIA_Addon_Saturas_ADW_PrayForGomez_01_12"); //Jak se mne opovažuješ žádat o TOTO?!... (rozzuřeně) AI_Output(self,other,"DIA_Addon_Saturas_ADW_PrayForGomez_01_14"); //(nahněvaně) Ten si zaslouží svůj osud! B_LogEntry(TOPIC_RESCUEGOMEZ,"Saturas a ostatní mágové Vody mi odmítli pomoct."); SATURASREFUSEHELPGOMEZ = TRUE; }; instance DIA_ADDON_SATURAS_ADW_TELLABORKS(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_tellaborks_condition; information = dia_addon_saturas_adw_tellaborks_info; permanent = FALSE; description = "Mám zlé zprávy."; }; func int dia_addon_saturas_adw_tellaborks_condition() { if((HAGENOTHERSAGREED == FALSE) && (MIS_BEWAREWATERMAGE == LOG_Running)) { return TRUE; }; }; func void dia_addon_saturas_adw_tellaborks_info() { B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_TellAbOrks_01_01"); //Mám zlé zprávy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_TellAbOrks_01_02"); //O čem, synu?! AI_Output(other,self,"DIA_Addon_Saturas_ADW_TellAbOrks_01_03"); //Na Khorinis vtrhli skřeti! AI_Output(self,other,"DIA_Addon_Saturas_ADW_TellAbOrks_01_04"); //Co? (otřeseně) To nemůže být pravda! AI_Output(other,self,"DIA_Addon_Saturas_ADW_TellAbOrks_01_06"); //Za několik dní proměnili ostrov v peklo. AI_Output(other,self,"DIA_Addon_Saturas_ADW_TellAbOrks_01_07"); //Přišel jsem tě varovat! AI_Output(self,other,"DIA_Addon_Saturas_ADW_TellAbOrks_01_08"); //A co město?! AI_Output(other,self,"DIA_Addon_Saturas_ADW_TellAbOrks_01_09"); //Skřeti to zvládli bez velkého úsilí. Paladinové byli prakticky bezmocní! AI_Output(self,other,"DIA_Addon_Saturas_ADW_TellAbOrks_01_10"); //Při Adanovi... (zničený) Přinesl jsi vážně zlé zprávy! AI_Output(self,other,"DIA_Addon_Saturas_ADW_TellAbOrks_01_11"); //Pokud jsou královští paladinové bezmocní, naše naděje na záchranu je skutečně malá. BEWAREWATERMAGE = TRUE; MIS_BEWAREWATERMAGE = LOG_SUCCESS; Log_SetTopicStatus(TOPIC_BEWAREWATERMAGE,LOG_SUCCESS); B_LogEntry(TOPIC_BEWAREWATERMAGE,"Oznámil jsem mágům Vody, co se stalo."); }; instance DIA_ADDON_SATURAS_ADW_GATHERARMY(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_gatherarmy_condition; information = dia_addon_saturas_adw_gatherarmy_info; permanent = FALSE; description = "Paladinové potřebují vaší pomoc!"; }; func int dia_addon_saturas_adw_gatherarmy_condition() { if((HAGENOTHERSAGREED == TRUE) && (HAGENNOMORETIMEWAIT == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_gatherarmy_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_01"); //Paladinové potřebují vaší pomoc! if((MIS_BEWAREWATERMAGE == LOG_Running) || (MIS_BEWAREWATERMAGE == FALSE)) { AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_02"); //Hmmm, zajímavé... (udiveně) Co se stalo? AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_05"); //Skřeti vtrhli na Khorinis! AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_06"); //Co?!... (otřeseně) To nemůže být pravda! AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_08"); //Za několik dní proměnili ostrov v peklo. AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_09"); //A co město?! AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_10"); //Skřeti to zvládli bez velkého úsilí. Paladinové byli prakticky bezmocní! AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_11"); //Při Adanovi... (zničený) Přinesl jsi vážně zlé zprávy! AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_12"); //Pokud jsou královští paladinové bezmocní, naše naděje na záchranu je skutečně malá. Tento svět je v koncích! AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_13"); //Ano! Proto tady jsem - lord Hagen potřebuje vaší pomoc. AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_14"); //Dobře!... (rozhodně) Jsme připraveni pomoct mu, jak jen budeme moci. BEWAREWATERMAGE = TRUE; if(MIS_BEWAREWATERMAGE == LOG_Running) { B_GivePlayerXP(1000); MIS_BEWAREWATERMAGE = LOG_SUCCESS; Log_SetTopicStatus(TOPIC_BEWAREWATERMAGE,LOG_SUCCESS); Log_AddEntry(TOPIC_BEWAREWATERMAGE,"Oznámil jsem mágům Vody, co se stalo."); } else { B_GivePlayerXP(500); }; } else { B_GivePlayerXP(500); AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_22"); //(rozhodně) Jsme připraveni pomoci, jak jen budeme moci. }; AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_23"); //Musíme ale nejprve vykonat jednu důležitou věc. AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmy_01_24"); //Nemůže to počkat?! AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmy_01_25"); //Obávám se, že ne... (lítostivě) Osud téhle časti ostrova na tom závisí! B_LogEntry(TOPIC_ORсGREATWAR,"Mágové Vody souhlasili, že lordu Hagenovi pomůžou. Musí však ještě před návratem na Khorinis dokončit jednu důležitou věc. Měl bych jim pomoci zrychlit tento proces."); }; instance DIA_ADDON_SATURAS_ADW_ISTOK(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_istok_condition; information = dia_addon_saturas_adw_istok_info; permanent = FALSE; description = "Co máš na mysli?"; }; func int dia_addon_saturas_adw_istok_condition() { if(Npc_KnowsInfo(hero,dia_addon_saturas_adw_gatherarmy)) { return TRUE; }; }; func void dia_addon_saturas_adw_istok_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_Istok_01_01"); //Co máš na mysli? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_02"); //Hmmm... (přemýšlivě) Víš, že jsme kulturu této části studovali už dost dlouho. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_03"); //Odhalili jsme už mnoho věcí, které zachovávaly moudrost předků. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_04"); //Vždy nás ale zajímala jedna věc. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_05"); //Abych byl přesný... Vždy jsme si přáli pochopit, co zapříčinilo ty smutné události. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Istok_01_06"); //Nebyl na příčině Beliarův dráp?! AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_08"); //Beliarův artefakt skutečně přinesl do tohoto údolí zlo. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_09"); //Nikdy by se to však nestalo, kdyby na toto místo Adanos neseslal kletbu! AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_12"); //A důkazem je jeden ze spisů, které jsme našli v Adanově chrámu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_13"); //To posvátné místo bylo prokleté ještě než Stavitelé našli Dráp. Adanos se od nich odvrátil! AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_15"); //Chtěli bychom to napravit, aby Adanos opět požehnal tomuto místu! AI_Output(other,self,"DIA_Addon_Saturas_ADW_Istok_01_19"); //Co uděláte? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_20"); //Po několika meditacích jsme se rozhodli vykonat rituál Osvícení. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_21"); //Myslím, že to chrámu vrátí bývalou sílu a velkolepost. A s tím i Adanovo požehnání! AI_Output(other,self,"DIA_Addon_Saturas_ADW_Istok_01_22"); //Jasně. A mohu ti s něčím pomoct?! AI_Output(self,other,"DIA_Addon_Saturas_ADW_Istok_01_23"); //Ano, tvá pomoc přijde vhod. Mám takové tušení, že nás někdo bude chtít zastavit. MIS_RESTOREHRAM = LOG_Running; Log_CreateTopic(TOPIC_RESTOREHRAM,LOG_MISSION); Log_SetTopicStatus(TOPIC_RESTOREHRAM,LOG_Running); B_LogEntry(TOPIC_RESTOREHRAM,"Podle Saturase mágové Vody konečně pochopili pravou příčinu zkázy prastaré civilizace. Sám Adanos seslal na chrám kletbu. A teď je potřebné znova ochránit tuhle část ostrova. Mágové Vody se rozhodli znova vysvětit chrám tajemným rituálem. Saturas mě ale varoval, že někdo tomu bude chtít zabránit! Přesně neví, kdo..."); }; instance DIA_ADDON_SATURAS_ADW_FINDRIORDAN(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_findriordan_condition; information = dia_addon_saturas_adw_findriordan_info; permanent = FALSE; description = "Kdy chcete vykonat rituál?"; }; func int dia_addon_saturas_adw_findriordan_condition() { if(MIS_RESTOREHRAM == LOG_Running) { return TRUE; }; }; func void dia_addon_saturas_adw_findriordan_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_FindRiordan_01_01"); //Kdy chcete vykonat rituál? AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordan_01_02"); //Co nejdřív. (přemýšlivě) Ale měli bychom nejdřív počkat na Riordiana! AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordan_01_04"); //Před několika dny jsem ho poslal do ruin chrámu na severu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordan_01_05"); //Podle záznamů by tam měl být jeden z artefaktů, které Stavitelé používali při rituálech. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordan_01_06"); //Pro náš rituál je taktéž extremně důležitý! Wld_InsertNpc(riordian_zombie,"ADW_CANYON_LIBRARY_RIGHT_13"); B_LogEntry(TOPIC_RESTOREHRAM,"Saturas mi řekl, že čekají na návrat Riordiana. Měl přinést nějaký starobylý artefakt z chrámu na severu, který je pro ně důležitý. Stavitelé ho používali na vykonávaní rituálů v Adanově chrámu."); }; instance DIA_ADDON_SATURAS_ADW_FINDRIORDANDONE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_findriordandone_condition; information = dia_addon_saturas_adw_findriordandone_info; permanent = FALSE; description = "Střetl jsem se s Riordianem."; }; func int dia_addon_saturas_adw_findriordandone_condition() { if((MIS_RESTOREHRAM == LOG_Running) && (RIORDANEVILDEAD == TRUE) && (Npc_HasItems(hero,itmi_adanosamulet) >= 1)) { return TRUE; }; }; func void dia_addon_saturas_adw_findriordandone_info() { B_GivePlayerXP(200); AI_Output(other,self,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_01"); //Střetl jsem se s Riordianem. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_02"); //(vážně) Proč se nevrátil s tebou? AI_Output(other,self,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_03"); //Je mrtvý! Ovládlo ho zlo a téměř mě zabil. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_05"); //Při Adanovi... (rozrušeně) Veliká ztráta pro všechny mágy Vody! Neměl jsem to dopustit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_07"); //Dobře... (přichází ke smyslům) Věřím, že nemůžeme dál váhat! AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_08"); //Zlo je blízko a může se nás kdykoliv zmocnit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_09"); //Mimochodem, získal jsi ten artefakt, co měl Riordian přinést? AI_Output(other,self,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_10"); //Ano, tady. B_GiveInvItems(other,self,itmi_adanosamulet,1); AI_Output(self,other,"DIA_Addon_Saturas_ADW_FindRiordanDone_01_11"); //Dobře. Pošlu všechny do Adanova chrámu. READYWATERRITUAL = TRUE; B_LogEntry(TOPIC_RESTOREHRAM,"Saturas byl šokován, když se dozvěděl o smrti Riordiana. Teď nezbývá nic víc, než jít do Adanova chrámu a vykonat posvátný rituál, než zlo, které zničilo Riordiana, nezmocní všech mágů."); AI_StopProcessInfos(self); B_StartOtherRoutine(KDW_14000_Addon_Saturas_ADW,"WaitTempel"); B_StartOtherRoutine(KDW_14020_Addon_Nefarius_ADW,"WaitTempel"); B_StartOtherRoutine(KDW_14010_Addon_Cronos_ADW,"WaitTempel"); B_StartOtherRoutine(KDW_14050_Addon_Merdarion_ADW,"WaitTempel"); }; instance DIA_ADDON_SATURAS_ADW_BEFORERITUAL(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_beforeritual_condition; information = dia_addon_saturas_adw_beforeritual_info; permanent = FALSE; important = TRUE; }; func int dia_addon_saturas_adw_beforeritual_condition() { if((MIS_RESTOREHRAM == LOG_Running) && (READYWATERRITUAL == TRUE) && (Npc_GetDistToWP(self,"ADW_ADANOSTEMPEL_RAVEN_01") <= 2000)) { return TRUE; }; }; func void dia_addon_saturas_adw_beforeritual_info() { AI_Output(self,other,"DIA_Addon_Saturas_ADW_BeforeRitual_01_01"); //Jsi tady... Dobře, měli bychom tedy začít! AI_Output(self,other,"DIA_Addon_Saturas_ADW_BeforeRitual_01_03"); //Všechno, co požadujeme je, abys dohlédl, aby nám nikdo nezabránil vykonat rituál. AI_Output(self,other,"DIA_Addon_Saturas_ADW_BeforeRitual_01_04"); //Když začneme, budeme absolutně bezbranní! AI_Output(self,other,"DIA_Addon_Saturas_ADW_BeforeRitual_01_05"); //Čili pokud se cokoliv objeví, je to jen a jen na tobě. AI_Output(other,self,"DIA_Addon_Saturas_ADW_BeforeRitual_01_06"); //V pořádku, rozumím. AI_Output(self,other,"DIA_Addon_Saturas_ADW_BeforeRitual_01_07"); //Začneme... Adane, ochraňuj nás! B_LogEntry(TOPIC_RESTOREHRAM,"Mágové Vody začali rituál Osvícení! Měl bych dohlédnout, aby je nikdo nevyrušoval."); BEGINWATERRITUAL = TRUE; AI_StopProcessInfos(self); Npc_ExchangeRoutine(self,"WaterRitual"); B_StartOtherRoutine(KDW_14020_Addon_Nefarius_ADW,"WaterRitual"); B_StartOtherRoutine(KDW_14010_Addon_Cronos_ADW,"WaterRitual"); B_StartOtherRoutine(KDW_14050_Addon_Merdarion_ADW,"WaterRitual"); }; instance DIA_ADDON_SATURAS_ADW_DURINGRITUAL(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_duringritual_condition; information = dia_addon_saturas_adw_duringritual_info; permanent = FALSE; important = TRUE; }; func int dia_addon_saturas_adw_duringritual_condition() { if((MIS_RESTOREHRAM == LOG_Running) && (BEGINWATERRITUAL == TRUE) && (STOPWATERRITUAL == FALSE) && Npc_IsInState(self,ZS_Talk)) { return TRUE; }; }; func void dia_addon_saturas_adw_duringritual_info() { B_Say(self,other,"$NOTNOW"); AI_StopProcessInfos(self); }; instance DIA_ADDON_SATURAS_ADW_AFTERRITUAL(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_afterritual_condition; information = dia_addon_saturas_adw_afterritual_info; permanent = FALSE; important = TRUE; }; func int dia_addon_saturas_adw_afterritual_condition() { if((MIS_RESTOREHRAM == LOG_Running) && (STOPWATERRITUAL == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_afterritual_info() { B_GivePlayerXP(1000); AI_Output(self,other,"DIA_Addon_Saturas_ADW_AfterRitual_01_01"); //Perfektně... (chytá dech) Vypadá to, že všechno vyšlo! AI_Output(self,other,"DIA_Addon_Saturas_ADW_AfterRitual_01_04"); //Můžu ti však říct, že někdo určitě nechtěl, abychom rituál vykonali. AI_Output(self,other,"DIA_Addon_Saturas_ADW_AfterRitual_01_06"); //Už cítím, jak je naplněný Adanovým požehnáním! AI_Output(self,other,"DIA_Addon_Saturas_ADW_AfterRitual_01_09"); //Toto místo je opět posvátné a už to tak i zůstane. AI_Output(self,other,"DIA_Addon_Saturas_ADW_AfterRitual_01_11"); //(usmívá se) Děkuji za tvou pomoc! Byla neocenitelná. MIS_RESTOREHRAM = LOG_SUCCESS; Log_SetTopicStatus(TOPIC_RESTOREHRAM,LOG_SUCCESS); B_LogEntry(TOPIC_RESTOREHRAM,"S mou pomocí mágové Vody vykonali rituál. Adanův chrám byl očištěn od zla a byla mu navrácena původní síla. Teď je toto místo pod Adanovou ochranou a nic mu nehrozí."); }; instance DIA_ADDON_SATURAS_ADW_GATHERARMYDONE(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_gatherarmydone_condition; information = dia_addon_saturas_adw_gatherarmydone_info; permanent = FALSE; description = "Půjdete teď na pomoc lordu Hagenovi?"; }; func int dia_addon_saturas_adw_gatherarmydone_condition() { if(MIS_RESTOREHRAM == LOG_SUCCESS) { return TRUE; }; }; func void dia_addon_saturas_adw_gatherarmydone_info() { B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_GatherArmyDone_01_01"); //Půjdete teď na pomoc lordu Hagenovi? AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmyDone_01_03"); //Řekni veliteli paladinů, že přijdeme hned, jakmile nám dá vědět. AI_Output(self,other,"DIA_Addon_Saturas_ADW_GatherArmyDone_01_04"); //Jen Adanos nám teď může pomoci! KDW_JOINHAGEN = TRUE; B_LogEntry(TOPIC_ORсGREATWAR,"Je potřebné informovat lorda Hagena, že mágové Vody čekají na jeho další rozkazy ohledně nadcházejícího boje se skřety."); }; instance DIA_ADDON_SATURAS_ADW_RAVENAWAY(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_RAVENAWAY_condition; information = dia_addon_saturas_adw_RAVENAWAY_info; permanent = FALSE; description = "Raven utekl!"; }; func int dia_addon_saturas_adw_RAVENAWAY_condition() { if(RavenAway == TRUE) { return TRUE; }; }; func void dia_addon_saturas_adw_RAVENAWAY_info() { B_GivePlayerXP(500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_01"); //Raven utekl! AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_02"); //(nechápavě) Co? Jak uprchl? AI_Output(other,self,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_03"); //Dostihnul jsem ho ve vnitřní svatyni chrámu! A pak došlo na souboj. AI_Output(other,self,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_04"); //Ale na poslední chvíli, použil nějakou mě neznámou magii a prostě zmizel. AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_05"); //Hmmm... (zamyšleně) Ani nevím, co na to říct. AI_Output(other,self,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_06"); //Možná, že teď už není tak nebezpečný? AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_07"); //To si nemyslím. Je zde stále cítit obrovská přítomnost zla! AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_08"); //A dokud se nezbavíme Ravena, tak se to nezlepší. AI_Output(other,self,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_09"); //Takže, kde ho mám hledat? AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_10"); //Kdybych to věděl, už bych tě za ním poslal! Potřebuji nějaký čas, abych si všechno promyslel. AI_Output(self,other,"DIA_Addon_Saturas_ADW_RAVENAWAY_01_12"); //Pak ti možná budu schopen dát odpověď. B_LogEntry(TOPIC_Addon_RavenKDW,"Saturas byl překvapený když se dozvěděl, že mi Raven utekl. Teď potřebuje čas na přemýšlení o našich dalších krocích."); RavenAwayDone = LOG_SUCCESS; Log_SetTopicStatus(TOPIC_Addon_Kammern,LOG_SUCCESS); }; instance DIA_ADDON_SATURAS_ADW_ADANOSVALLEY(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_ADANOSVALLEY_condition; information = dia_addon_saturas_adw_ADANOSVALLEY_info; permanent = FALSE; description = "Co mi můžeš říci o této starověké tabulce?"; }; func int dia_addon_saturas_adw_ADANOSVALLEY_condition() { if((Npc_HasItems(hero,ItWr_CroneAdanos) >= 1) && (KnowsTextAdanos == FALSE) && (MIS_AdanosCrone == LOG_Running)) { return TRUE; }; }; func void dia_addon_saturas_adw_ADANOSVALLEY_info() { B_GivePlayerXP(150); AI_Output(other,self,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_01"); //Co mi můžeš říci o této starověké tabulce? B_GiveInvItems(other,self,ItWr_CroneAdanos,1); AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_02"); //(Překvapeně) Je jiná než ty tabulky, které jsme našli předtím. AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_03"); //Kde jsi ji získal? AI_Output(other,self,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_04"); //V jedné vnitřní svatyni Adanova chrámu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_05"); //Zdá se, že má velkou hodnotu, pokud byla ukryta právě tam. AI_Output(other,self,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_06"); //Dokážeš přečíst, co je na ni napsáno? AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_07"); //Obávám se, že ne. Symboly, které jsou na ní zobrazeny, mi nic neříkají. AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_08"); //Zdá se, že všechny texty jsou psány v nějakém velmi starodávném jazyce. A prostudovat ho může trvat několik let. AI_Output(other,self,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_10"); //Tak dlouho čekat nemůžu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_ADANOSVALLEY_01_11"); //Musíš tedy najít někoho, kdo ten jazyk ovládá. Nic jiného mě nenapadá. B_GiveInvItems(self,other,ItWr_CroneAdanos,1); B_LogEntry(TOPIC_AdanosCrone,"Saturase velmi zaujala starodávná tabulka, kterou jsem našel v chrámu, ale nedokázal ji přečíst. Zdá se, že nápisy jsou psané v nějakém velmi starém jazyce."); }; instance DIA_ADDON_SATURAS_ADW_ABOUTANTIENTGUARDS(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_aboutantientguards_condition; information = dia_addon_saturas_adw_aboutantientguards_info; permanent = FALSE; description = "Zjistil jsi něco o kamenných strážcích?"; }; func int dia_addon_saturas_adw_aboutantientguards_condition() { if((KnowAboutAdVal == TRUE) && (RavenIsDead == FALSE) && (StoneBossIsDead == FALSE) && (TellAboutAdanosWeapon == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_aboutantientguards_info() { var int randomplace; B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_01"); //Zjistil jsi něco o kamenných strážcích? AI_Output(self,other,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_04"); //V starých záznamech se píše, že je stvořil Adanos a byli tady jakýmisi strážci zákona. AI_Output(self,other,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_05"); //Jsou velmi silní a dokonce i zkušený válečník by s nimi mohl mít potíže. AI_Output(self,other,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_06"); //Jak jsme ale pochopili, existovala jistá zbraň, která by je mohla pomoci zneškodnit. AI_Output(other,self,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_07"); //Co je to za zbraň? AI_Output(self,other,"DIA_Addon_Saturas_ADW_AboutAntientGuards_01_08"); //Nevím co to je. (lítostivě) Ani kde to hledat... if(DragonGoldIsDead == TRUE) { if(TellAboutAdanosWeapon == FALSE) { randomplace = Hlp_Random(4); if(randomplace == 0) { Wld_InsertItem(itmw_adanosmolot,"FP_ITEM_ADANOSMOLOT_01"); } else if(randomplace == 1) { Wld_InsertItem(itmw_adanosmolot,"FP_ITEM_ADANOSMOLOT_02"); } else if(randomplace == 2) { Wld_InsertItem(itmw_adanosmolot,"FP_ITEM_ADANOSMOLOT_03"); } else { Wld_InsertItem(itmw_adanosmolot,"FP_ITEM_ADANOSMOLOT_04"); }; TELLABOUTSTONEGUARD = TRUE; TellAboutAdanosWeapon = TRUE; }; }; }; instance DIA_ADDON_SATURAS_ADW_AncientAltar(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_AncientAltar_condition; information = dia_addon_saturas_adw_AncientAltar_info; permanent = FALSE; description = "Víš jak je možné vrátit magii starodávnému oltáři?"; }; func int dia_addon_saturas_adw_AncientAltar_condition() { if((TaskHram_04 == TRUE) && (ANCIENTALTARSIsAwake == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_AncientAltar_info() { B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_AncientAltar_01_01"); //Víš jak je možné vrátit magii starodávnému oltáři? AI_Output(self,other,"DIA_Addon_Saturas_ADW_AncientAltar_01_02"); //Docela neobvyklá otázka! Jen nechápu, proč tě to zajímá. AI_Output(self,other,"DIA_Addon_Saturas_ADW_AncientAltar_01_03"); //Podle mého názoru to lze provést pomocí ohniskového kamene. AI_Output(other,self,"DIA_Addon_Saturas_ADW_AncientAltar_01_04"); //Mluvíš o ohnisku? AI_Output(self,other,"DIA_Addon_Saturas_ADW_AncientAltar_01_05"); //Ano. On má schopnost přitahovat magickou energii a část jí předávat místu, kde se nachází. AI_Output(other,self,"DIA_Addon_Saturas_ADW_AncientAltar_01_06"); //Aha. Náhodou nemáš u sebe navíc několik těchto kamenů? AI_Output(self,other,"DIA_Addon_Saturas_ADW_AncientAltar_01_07"); //S tím by ses měl obrátit na Merdariona. Všechna ohniska, která jsem měl, jsem mu dal. AltarToMerdarion = TRUE; }; instance DIA_ADDON_SATURAS_ADW_Tree(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_Tree_condition; information = dia_addon_saturas_adw_Tree_info; permanent = FALSE; description = "Zajímáš se o stromy?"; }; func int dia_addon_saturas_adw_Tree_condition() { if((LastAdanosTask == TRUE) && (RootIsUp == FALSE) && (LastAdanosTaskDone == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_Tree_info() { B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_01"); //Zajímáš se o stromy? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_02"); //(překvapeně) Co? Začínáš mi pokládat velmi zvláštní otázky. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_03"); //Proč se ptáš? AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_04"); //Mám mrtvý strom a musím ho přivést zpět k životu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_05"); //Ale proč ses v této záležitosti rozhodl obrátit přímo na mě? AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_06"); //No jsi mág, mohl bys znát způsob jak to zařídit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_07"); //Dokonce i když jsem mág, tak to neznamená, že dokážu všechny věci na tomhle světě. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_08"); //Jakto, že ani moudrý Saturas pro mě nemůže nic udělat? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_09"); //Obávám se, že tentokrát, bohužel... AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_10"); //I když... (zamyšleně) Něco mě napadlo. Jediné co by ti mohlo v této situaci pomoct, je kouzlo druidů. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_11"); //Magie druidů. O té jsem nikdy neslyšel. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_12"); //Sám si toho pamatuji jen velmi málo. Nicméně, existuje! AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_13"); //Když jsem byl tak mladý jako ty, tak jsem se s některými z druidů setkal. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_14"); //Stejně jako my, mágové Vody, ctí posvátné přikázání Adana. Ale druidové svoji magickou sílu čerpají - ze stromů a rostlin. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_15"); //To znamená, že musím najít druida? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_16"); //Ano! Ale pochybuji, že některého z nich najdeš na tomto ostrově. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_17"); //Pokud si vzpomínám, všichni žili v lesích Myrtany, na pevnině. Avšak stále existuje nějaká šance. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_18"); //Jestli mě paměť neklame, tak jeden z mágů kteří přišli na tento ostrov vztyčit magickou bariéru, ovládal umění druidů. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Tree_01_19"); //A kdo to byl? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_20"); //(S nechutí) Xardas! V té době často experimentoval s různou magií a taky s něčím co připomínalo magii druidů. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Tree_01_21"); //Víc ti už v téhle záležitosti nemůžu pomoci. XarDruid = TRUE; if(Kapitel < 5) { B_LogEntry(TOPIC_AdanosCrone,"Saturas se zmínil o magii druidů, která by mohla oživit velký strom. Říkal něco o tom, že by mohl pomoci Xardas. Myslím že je čas návštívit starého přítele. Nebo najít někoho jiného, kdo zná magii druidů."); } else { B_LogEntry(TOPIC_AdanosCrone,"Saturas se zmínil o magii druidů, která by mohla oživit velký strom. Musím najít někoho, kdo jí rozumí."); }; }; instance DIA_ADDON_SATURAS_ADW_JarCurse(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_JarCurse_condition; information = dia_addon_saturas_adw_JarCurse_info; permanent = FALSE; description = "Je všechno v pořádku?"; }; func int dia_addon_saturas_adw_JarCurse_condition() { if((MIS_JarCurse == LOG_Running) && (MyxirSendSaturas == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_JarCurse_info() { B_GivePlayerXP(100); AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurse_01_01"); //Je všechno v pořádku? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_02"); //Ne, jak Vidíš. Zdá se, že znesvěcení Adanova chrámu mělo dalekosáhlé důsledky! AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurse_01_03"); //Co tím myslíš? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_04"); //(Rozčileně) Jsi snad slepý? Obrovské armády nemrtvých vtrhly do země! AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_05"); //Nějaká nám neznámá pradávná moc je přiměla povstat z mrtvých. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_06"); //A teď jsou připraveni obrátit svůj hněv proti všem, kdo se odváží postavit se jim do cesty. AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurse_01_07"); //Myslíš, že na tom všem nese vinu Raven? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_08"); //S největší pravděpodobností. Jeho rouhání a znesvěcení starověkých svatyní jistě nezůstalo bez povšimnutí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurse_01_09"); //Můžeme se jen modlit, aby to byla jediná katastrofa, která nás v budoucnu čeká. MeetSaturasOkPortal = TRUE; B_LogEntry(TOPIC_JarCurse,"Situace v Jharkendarmu není o moc lepší než Khorinisu. Nějaké neznámé starobylé síly vyvolaly obrovskou armádu nemrtvých. Podle všeho nemrtví prorazili portál do Khorinisu, a to je jen malá část toho, co nás do budoucna čeká."); }; instance DIA_ADDON_SATURAS_ADW_JarCurseUndead(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_JarCurseUndead_condition; information = dia_addon_saturas_adw_JarCurseUndead_info; permanent = FALSE; description = "Takové nemrtvé jsem ještě neviděl."; }; func int dia_addon_saturas_adw_JarCurseUndead_condition() { if((MIS_JarCurse == LOG_Running) && (Npc_KnowsInfo(other,DIA_Addon_Saturas_ADW_JarCurse) == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_JarCurseUndead_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseUndead_01_01"); //Takové nemrtvé jsem ještě neviděl. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseUndead_01_02"); //Ne, to určitě ne. A to není největší problém. Naše magie je prakticky vůči nim bezmocná! AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseUndead_01_03"); //Zdá se, že jsou to válečníci a kněží starodávného národa, kteří kdysi zemřeli díky svému prokletí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseUndead_01_04"); //A nyní povstali, aby se pomstili za svoji smrt a za znesvěcení této země přisluhovači Beliara! }; instance DIA_ADDON_SATURAS_ADW_JarCurseDo(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_JarCurseDo_condition; information = dia_addon_saturas_adw_JarCurseDo_info; permanent = FALSE; description = "Co budeme dělat?"; }; func int dia_addon_saturas_adw_JarCurseDo_condition() { if((MIS_JarCurse == LOG_Running) && (Npc_KnowsInfo(other,DIA_Addon_Saturas_ADW_JarCurseUndead) == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_JarCurseDo_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDo_01_01"); //Co budeme dělat? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_02"); //Modlit se k Adanovi... aby nás všechny ušetřil! AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDo_01_03"); //A teď vážně? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_04"); //(Zamyšleně) Já nevím. Ale mám podezření, že všichni tito nemrtví nejsou jen nemyslící stádo. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_06"); //Řídí je nějaká zlá vůle! Ale čí? AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDo_01_07"); //Máš na mysli něco konkrétního? AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_08"); //Jako u každého národa mají i Stavitelé své vůdce a šéfy. Ty, které respektovali a ctili. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_09"); //Možná za tím vším stojí někdo z nich! AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDo_01_10"); //Možná Khardimon? On byl velkým vůdcem Stavitelů. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_11"); //Jediné, co teď můžem udělat je, že se ho zeptáme, co se stalo. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_14"); //Dávej si ale pozor! Podle mých informací všechny cesty, od velkého chrámu v údolí, nyní ovládají nemrtví. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_15"); //A teleportační kameny už vůbec nejsou bezpečné. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_16"); //Takže jestli můžeš postarej se o jejich ochranu. AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDo_01_17"); //Postarám se. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDo_01_18"); //Tak si pospěš, každá minuta se počítá. MIS_FreeTeleport = LOG_Running; Log_CreateTopic(TOPIC_FreeTeleport,LOG_MISSION); Log_SetTopicStatus(TOPIC_FreeTeleport,LOG_Running); B_LogEntry(TOPIC_FreeTeleport,"Saturas mě požádal, abych osvobodil všechny teleporty v údolí z rukou nemrtvých."); B_LogEntry_Quiet(TOPIC_JarCurse,"Podle Saturase řídí armádu nemrtvých něčí zlá vůle. Musím najít Khardimona. Možná, že o tom něco ví."); AI_StopProcessInfos(self); Wld_InsertNpc(NONE_ADDON_1159_Rhademes,"ADW_SATURAS_2_GOLDDRAGON"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"FP_ROAM_VALLEY_037"); Wld_InsertNpc(Ancient_Warrior_01,"FP_ROAM_VALLEY_036"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"ADW_VALLEY_PATH_032"); Wld_InsertNpc(Ancient_Warrior_02,"ADW_VALLEY_PATH_031"); Wld_InsertNpc(Skeleton_Shadow_Priest_ADW_01,"ADW_SOUTHWEST_TELEPORTSTATION"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"ADW_PORTALTEMPEL_05"); Wld_InsertNpc(Ancient_Warrior_01,"ADW_PORTALTEMPEL_06"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"ADW_PORTALTEMPEL_08B"); Wld_InsertNpc(Ancient_Warrior_02,"ADW_PORTALTEMPEL_08A"); Wld_InsertNpc(Skeleton_Shadow_Priest_ADW_02,"ADW_PORTALTEMPEL_TELEPORTSTATION"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"FP_ROAM_TELEPORT_03_01"); Wld_InsertNpc(Ancient_Warrior_01,"FP_ROAM_TELEPORT_03_02"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"FP_ROAM_TELEPORT_03_03"); Wld_InsertNpc(Ancient_Warrior_02,"FP_ROAM_TELEPORT_03_04"); Wld_InsertNpc(Skeleton_Shadow_Priest_ADW_03,"FP_ROAM_TELEPORT_03_05"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"FP_ROAM_CANYON_MONSTER_32"); Wld_InsertNpc(Ancient_Warrior_01,"FP_ROAM_CANYON_MONSTER_31"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"ADW_CANYON_TELEPORT_PATH_02"); Wld_InsertNpc(Ancient_Warrior_02,"FP_ROAM_CANYON_MONSTER_33"); Wld_InsertNpc(Skeleton_Shadow_Priest_ADW_04,"ADW_CANYON_TELEPORT_PATH_01"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"BL_UP_PLACE_06"); Wld_InsertNpc(Ancient_Warrior_01,"FP_ROAM_ORKINCAMP_51"); Wld_InsertNpc(SKELETON_WARRIOR_AV_ELITE,"FP_ROAM_ENTRANCEORCGUARD_10"); Wld_InsertNpc(Ancient_Warrior_02,"BL_UP_PLACE_03"); Wld_InsertNpc(Skeleton_Shadow_Priest_ADW_05,"ADW_ADANOSTEMPEL_TELEPORTSTATION"); }; instance DIA_ADDON_SATURAS_ADW_JarCurseDone(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_JarCurseDone_condition; information = dia_addon_saturas_adw_JarCurseDone_info; permanent = FALSE; description = "Vyčistil jsem okolí teleportačních kamenů."; }; func int dia_addon_saturas_adw_JarCurseDone_condition() { if((MIS_FreeTeleport == LOG_Running) && (Npc_IsDead(Skeleton_Shadow_Priest_ADW_01) == TRUE) && (Npc_IsDead(Skeleton_Shadow_Priest_ADW_02) == TRUE) && (Npc_IsDead(Skeleton_Shadow_Priest_ADW_03) == TRUE) && (Npc_IsDead(Skeleton_Shadow_Priest_ADW_04) == TRUE) && (Npc_IsDead(Skeleton_Shadow_Priest_ADW_05) == TRUE)) { return TRUE; }; }; func void dia_addon_saturas_adw_JarCurseDone_info() { B_GivePlayerXP(500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_JarCurseDone_01_01"); //Vyčistil jsem okolí teleportačních kamenů. AI_Output(self,other,"DIA_Addon_Saturas_ADW_JarCurseDone_01_02"); //Dobře! Alespoň se již nebudeme muset bát, že nám někdo vpadne do zad. MIS_FreeTeleport = LOG_Success; Log_SetTopicStatus(TOPIC_FreeTeleport,LOG_Success); B_LogEntry(TOPIC_FreeTeleport,"Oznámil jsem, Saturasovi, že okolí teleportačních kamenů je bezpečné."); }; instance DIA_ADDON_SATURAS_ADW_Qvardemon(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_Qvardemon_condition; information = dia_addon_saturas_adw_Qvardemon_info; permanent = FALSE; description = "Potřebuji tvoji radu."; }; func int dia_addon_saturas_adw_Qvardemon_condition() { if((MIS_Qvardemon == LOG_Running) && (FTDamageQvardemon == TRUE) && (QvardemonIsDead == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_Qvardemon_info() { B_GivePlayerXP(500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_Qvardemon_01_01"); //Potřebuji tvoji radu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_02"); //Samozřejmě, můj synu. Co konkrétního? AI_Output(other,self,"DIA_Addon_Saturas_ADW_Qvardemon_01_03"); //V jednom z chrámů jsem našel ducha velekněze Stavitelů Khardimona. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Qvardemon_01_04"); //Myslím, že je to právě jeho zlá vůle, která nutí nemrtvé na nás útočit! Ovládá i mágy a předky kněží, jako je on sám. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_05"); //Potom se domnívám, že ho musíme poslat zpět do říše mrtvých. AI_Output(other,self,"DIA_Addon_Saturas_ADW_Qvardemon_01_06"); //Zkoušel jsem to, ale moje zbraň je proti němu bezmocná. Nemáš nějaké nápady? AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_08"); //Nechci být posel špatných zpráv, ale obávám se, že naše znalosti nebudou stačit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_09"); //Hmmm... Je možné, že v tomto světě existuje nějaký mocný artefakt, který může zlomit kouzlo pradávného kněze. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_10"); //Musí mít však opravdovou božskou moc! Moc, kterou ti může dát jen sám Adanos. AI_Output(self,other,"DIA_Addon_Saturas_ADW_Qvardemon_01_11"); //Ale to je jen můj odhad... Nemohu ti říct, kde ten artefakt hledat. B_LogEntry(TOPIC_Qvardemon,"Saturas mi řekl, že v boji s Khardimonem muže pomoci jen artefakt s mocí bohů samotných. Pouze takový je schopen zlomit jeho kouzla. Nicméně, je to jen domněnka."); }; instance DIA_ADDON_SATURAS_ADW_QvardemonDead(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_QvardemonDead_condition; information = dia_addon_saturas_adw_QvardemonDead_info; permanent = FALSE; description = "Zničil jsem Khardimona!"; }; func int dia_addon_saturas_adw_QvardemonDead_condition() { if(MIS_Qvardemon == LOG_Success) { return TRUE; }; }; func void dia_addon_saturas_adw_QvardemonDead_info() { B_GivePlayerXP(1000); AI_Output(other,self,"DIA_Addon_Saturas_ADW_QvardemonDead_01_01"); //Zničil jsem Khardimona! AI_Output(self,other,"DIA_Addon_Saturas_ADW_QvardemonDead_01_02"); //To je výborná zpráva, můj synu. Požehnej ti Adanos! }; instance DIA_ADDON_SATURAS_ADW_CurseAncient(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_CurseAncient_condition; information = dia_addon_saturas_adw_CurseAncient_info; permanent = FALSE; description = "Co víš o prokletí pradávných lidí?"; }; func int dia_addon_saturas_adw_CurseAncient_condition() { if((MIS_CurseAncient == LOG_Running) && (CurseAncientRemove == FALSE)) { return TRUE; }; }; func void dia_addon_saturas_adw_CurseAncient_info() { B_GivePlayerXP(300); AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncient_01_01"); //Co víš o prokletí pradávných lidí? AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_02"); //Nic moc. Proč se ptáš? AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncient_01_03"); //Musíme co nejrychleji zbavit prokletí tuto zemi. AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncient_01_04"); //Můj vnitřní hlas mi říká, že je to jediný způsob, jak zastavit útok nemrtvých. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_05"); //Hmmm... Odkud bereš tu jistotu? AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncient_01_06"); //To je na dlouhé vyprávění. Jen mi řekni, co můžeme udělat? AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_07"); //Pokud je mi známo, prokletí Stavitelů je velmi staré a velmi mocné. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_08"); //Je velmi nepravděpodobné, že by ho dokázal zlomit obyčejný člověk! AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncient_01_09"); //A co Adanos? Ten by mohl být schopen? AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_10"); //On je bůh! Vše je v jeho moci... Ale obávám se, že obvyklé modlitby nezaberou... AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_11"); //Nedokážu si představit, že by Adanos udělal něco takového. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncient_01_12"); //Muselo by to být něco velmi zvláštního, aby kvůli tomu seslal svoje požehnání na tento prokletý národ. B_LogEntry(TOPIC_CurseAncient,"Saturas neví, co může přimět Adana sejmout prokletí z pradávného národa. Odpovědi musím hledat jinde."); }; instance DIA_ADDON_SATURAS_ADW_CurseAncientDone(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_CurseAncientDone_condition; information = dia_addon_saturas_adw_CurseAncientDone_info; permanent = FALSE; description = "Pradávní nemrtví, jsou již minulostí!"; }; func int dia_addon_saturas_adw_CurseAncientDone_condition() { if(MIS_JarCurse == LOG_Success) { return TRUE; }; }; func void dia_addon_saturas_adw_CurseAncientDone_info() { B_GivePlayerXP(500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_01"); //Pradávní nemrtví jsou již minulostí! AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_02"); //A ti, co ještě zůstali, už pro vás nebudou problém. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_03"); //Jsi si jistý, můj synu? (nevěřícně) Jestli je to tak, musíme ti všichni poděkovat za naši spásu. AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_04"); //Poděkuj Adanovi! Já jen plnil jeho vůli. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_05"); //No, v tom případě se k němu budu každý den modlit a děkovat za naši spásu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_06"); //Nicméně stále věřím, že i ty na tom máš velký podíl! AI_Output(self,other,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_07"); //Tady, vem si tento elixír! Je to nejlepší z toho, co ti mohu nabídnout. B_GiveInvItems(self,other,ITPO_MEGAPOTIONSKILL,1); AI_Output(other,self,"DIA_Addon_Saturas_ADW_CurseAncientDone_01_08"); //Děkuji. }; instance DIA_ADDON_SATURAS_ADW_WaterMageDocumentsDone(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_WaterMageDocumentsDone_condition; information = dia_addon_saturas_adw_WaterMageDocumentsDone_info; permanent = FALSE; description = "Myslím, že toto patří tobě."; }; func int dia_addon_saturas_adw_WaterMageDocumentsDone_condition() { if((MIS_WaterMageDocuments == LOG_Running) && (Npc_HasItems(hero,ItWr_WaterMageDoc) >= 1)) { return TRUE; }; }; func void dia_addon_saturas_adw_WaterMageDocumentsDone_info() { B_GivePlayerXP(1500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_01"); //Myslím, že toto patří tobě. B_GiveInvItems(other,self,ItWr_WaterMageDoc,1); Npc_RemoveInvItems(self,ItWr_WaterMageDoc,1); B_UseFakeScroll(); AI_Output(self,other,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_02"); //(překvapeně) Nečekal jsem, že to Lee pošle přímo po tobě. AI_Output(other,self,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_03"); //Opravdu záleží na tom, kdo ty záznamy přinese? AI_Output(self,other,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_04"); //Ne, jen jsem doufal, že do Hornického údolí pošle velkou skupinu žoldáků. AI_Output(self,other,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_05"); //A ty ses s tím vypořádal sám. AI_Output(other,self,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_06"); //To tě překvapuje? AI_Output(self,other,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_07"); //Trochu... Ale v každém případě jsem velmi vděčný za tvou pomoc. AI_Output(self,other,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_08"); //Myslím, že najdeš dobré využití pro tyto svitky. B_GiveInvItemsManyThings(self,other); CreateInvItems(other,ItSc_IceWave,2); CreateInvItems(other,ItSc_LightningFlash,1); AI_Output(other,self,"DIA_Addon_Saturas_ADW_WaterMageDocumentsDone_01_09"); //Díky. MIS_WaterMageDocuments = LOG_Success; Log_SetTopicStatus(TOPIC_WaterMageDocuments,LOG_Success); B_LogEntry(TOPIC_WaterMageDocuments,"Přinesl jsem Saturasovi záznamy mágů Vody, které zůstaly v Hornickém údolí."); }; instance DIA_ADDON_SATURAS_ADW_SendNorolas(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_SendNorolas_condition; information = dia_addon_saturas_adw_SendNorolas_info; permanent = FALSE; description = "A co ty záznamy, které jsem přinesl?"; }; func int dia_addon_saturas_adw_SendNorolas_condition() { if(MIS_WaterMageDocuments == LOG_Success) { return TRUE; }; }; func void dia_addon_saturas_adw_SendNorolas_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_01_01"); //A co ty záznamy, které jsem přinesl? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_02"); //Je v nich shromážděna naše práce v průběhu mnoha let v Hornickém údolí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_03"); //Většina z nich je věnována tehdejšímu Bratrstvu Spáče. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_04"); //Přesněji řečeno, velmi nás zajímala magie, kterou používali jejich duchovní vůdci - Guru. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_06"); //Jejich magie v přírodě byla zcela jedinečná. Nedokázali jsme pochopit, odkud berou svou magickou energii, nebo jak dokáží využívat runy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_08"); //Kdyby byly tyto znalosti mágům Vody skrze Adanovu vůli dostupné, tak bychom se stali jejich ochránci. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_01_09"); //Opravdu to nebyl Spáč? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_10"); //Ano, nejdřív jsme si to myslel taky. Ale pokud je mi známo - Guru, kteří zůstali po pádu bariéry, tuto magii stále používají. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_12"); //Proto musí existovat nějaké jiné vysvětlení. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_01_13"); //Proč si o tom s nimi nepromluvíte? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_14"); //Obávám se, že je nepravděpodobné, že by odhalili svá tajemství. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_01_15"); //Co navrhuješ? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_16"); //V nedávné době jsem se rozhodl poslat jednoho z našich noviců do starého chrámu Bratrstva v bažinách. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_17"); //S největší pravděpodobností odpovědi na naše otázky můžeme najít pouze tam. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_01_18"); //Ale je to velmi nebezpečné! Nemáš strach že padne do zajetí skřetů nebo ho roztrhá divoká zvěř? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_20"); //Jsem si jistý, že to zvládne. Je velmi dobře připraven! Ačkoli zvláštní pomoc by nebyla na škodu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_01_21"); //Pokud chceš, můžeš jít za ním a pomoci mu v našem úsilí. MIS_SendNorolas = LOG_Running; Log_CreateTopic(TOPIC_SendNorolas,LOG_MISSION); Log_SetTopicStatus(TOPIC_SendNorolas,LOG_Running); B_LogEntry(TOPIC_SendNorolas,"Saturas poslal novice mága do chrámu Bratrstva Spáče, který leží v bažině v Hornickém údolí. Mohl bych mu pomoci. Saturas hledá něco, co je nějak spojeno s magií Guru."); }; var int SaturasReadDay; var int SaturasReadGuru; instance DIA_ADDON_SATURAS_ADW_SendNorolas_Done(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = dia_addon_saturas_adw_SendNorolas_Done_condition; information = dia_addon_saturas_adw_SendNorolas_Done_info; permanent = FALSE; description = "Přinesl jsem Y'Berionův deník!"; }; func int dia_addon_saturas_adw_SendNorolas_Done_condition() { if((MIS_SendNorolas == LOG_Success) && (Npc_HasItems(hero,ItWr_UberionBook) >= 1)) { return TRUE; }; }; func void dia_addon_saturas_adw_SendNorolas_Done_info() { B_GivePlayerXP(500); AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_01"); //Přinesl jsem Y'Berionův deník! AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_02"); //To je velmi dobrá zpráva, můj synu. Podívám se na něj. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_03"); //Tady. B_GiveInvItems(other,self,ItWr_UberionBook,1); Npc_RemoveInvItems(self,ItWr_UberionBook,1); B_UseFakeScroll(); AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_04"); //Hmmm... Ano, velmi zajímavě tento muž uvažoval. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_05"); //Nyní máme naději, že se dozvíme, jak přesně Guru mohli používat magické runy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_06"); //Chci ti poděkovat za pomoc Norolasovi. Mimochodem, kde je? AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_07"); //Zůstal v Hornickém údolí. Zaujal ho místní tábor bývalých noviců Bratrstva. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_10"); //Zdá se, že jejich vůdce není nikdo jiný než skutečný druid! AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_11"); //Druid? Hmmm... Naposledy jsem o nich slyšel na pevnině... to bylo už dávno. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_12"); //No abych pravdu řekl, nějak mě to teď nezajímá. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_13"); //Ale za tvou nezjištnou pomoc ti chci dát nějaké cenné svitky a lektvary. B_GiveInvItemsManyThings(self,other); CreateInvItems(other,ItSc_Waterfist,1); CreateInvItems(other,ItPo_Perm_Health,1); AI_Output(other,self,"DIA_Addon_Saturas_ADW_SendNorolas_Done_01_15"); //Díky. SaturasReadGuru = TRUE; SaturasReadDay = Wld_GetDay(); }; instance DIA_Addon_Saturas_ADW_SwampSecret(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = DIA_Addon_Saturas_ADW_SwampSecret_condition; information = DIA_Addon_Saturas_ADW_SwampSecret_info; important = TRUE; }; func int DIA_Addon_Saturas_ADW_SwampSecret_condition() { var int DayNow; DayNow = Wld_GetDay(); if((SaturasReadGuru == TRUE) && (SaturasReadDay < DayNow)) { return TRUE; }; }; func void DIA_Addon_Saturas_ADW_SwampSecret_info() { AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_01"); //Je dobré, že jsi tady, synu! Čekám na tebe. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_01_02"); //Co se stalo? AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_03"); //Před nějakým časem jsi mi přinesl Y'Berionův deník, za což jsem velmi vděčný. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_04"); //Ale obávám se, že to nestačí. Není tu žádné vysvětlení toho, jak se Guru naučil používat magii. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_05"); //Jsme však přesvědčeni, že jejich kouzlo jim nebylo dáno Spáčem. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_06"); //Ve svém deníku Y'Berion uvádí, že používal obyčejnou bažinnou trávu pro zvýšení své magické síly. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_07"); //Předpokládám, že toto je jediná stopa, která nás může vést k odhalení tohoto tajemství. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_08"); //Takže nejprve se musíme naučit trochu více o této rostlině. Věřím, že nám neodmítneš pomoct. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_01_09"); //Samozřejmě, starče, - zkusím ti něco zjistit. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_01_10"); //Děkuji synu... MIS_SwampSecret = LOG_Running; Log_CreateTopic(TOPIC_SwampSecret,LOG_MISSION); Log_SetTopicStatus(TOPIC_SwampSecret,LOG_Running); B_LogEntry(TOPIC_SwampSecret,"Saturas věří, že bažina je nějak spojena s magií Guru. Možná bych se měl zeptat na někoho, kdo je v alchymii a bylinkařství mnohem lepší než ostatní."); }; instance DIA_Addon_Saturas_ADW_SwampSecret_Done(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = DIA_Addon_Saturas_ADW_SwampSecret_Done_condition; information = DIA_Addon_Saturas_ADW_SwampSecret_Done_info; permanent = FALSE; description = "Zjistil jsem, kde Guru berou svou magickou sílu."; }; func int DIA_Addon_Saturas_ADW_SwampSecret_Done_condition() { if((MIS_SwampSecret == LOG_Running) && (Npc_HasItems(hero,ItWr_StonePower) >= 1) && (StonePower == TRUE)) { return TRUE; }; }; func void DIA_Addon_Saturas_ADW_SwampSecret_Done_info() { AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_01"); //Zjistil jsem, kde Guru berou svou magickou sílu. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_02"); //Řekni mi všechno, co jsi zjistil. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_03"); //Měl jsi pravdu - je to vše z bažinné trávy. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_04"); //Vážně? AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_05"); //Naprosto. Každý stonek trávy nese magickou sílu elementů Země a Kamene. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_06"); //Toto kouzlo je rozděleno v každé rostlině, která roste na tomto světě. AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_07"); //Pokud je člověk dostatečně duševně silný, může tuto trávu použít, aby změnil své vědomí a naučit se užívat této magie. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_08"); //Neuvěřitelné! Neuměl jsem si představit nic takového. Ale jak ses o tom dozvěděl? AI_Output(other,self,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_09"); //Četl jsem o tom v jedné ze starých tabulek. Tady - můžeš si to vzít. B_GiveInvItems(other,self,ItWr_StonePower,1); Npc_RemoveInvItems(self,ItWr_StonePower,1); AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_10"); //Jak zajímavé! Budu ji pečlivě studovat. AI_Output(self,other,"DIA_Addon_Saturas_ADW_SwampSecret_Done_01_11"); //Děkuji za pomoc. Tady, vezmi si to - tyhle svitky určitě využiješ. B_GiveInvItems(self,other,ItSc_IceWave,2); MIS_SwampSecret = LOG_Success; Log_SetTopicStatus(TOPIC_SwampSecret,LOG_Success); B_LogEntry(TOPIC_SwampSecret,"Saturasovi jsem dal starobylou tabulku, která popisovala magické vlastnosti trávy z bažin. Myslím, že zbytek pochopí sám."); }; instance DIA_Addon_Saturas_ADW_OpenPortal(C_Info) { npc = KDW_14000_Addon_Saturas_ADW; nr = 1; condition = DIA_Addon_Saturas_ADW_OpenPortal_condition; information = DIA_Addon_Saturas_ADW_OpenPortal_info; permanent = FALSE; important = TRUE; }; func int DIA_Addon_Saturas_ADW_OpenPortal_condition() { if(AdanosPortalOpen == TRUE) { return TRUE; }; }; func void DIA_Addon_Saturas_ADW_OpenPortal_info() { B_GivePlayerXP(200); AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_01"); //(zmateně) Můj synu, co to bylo? AI_Output(other,self,"DIA_Addon_Saturas_ADW_OpenPortal_01_02"); //O čem to mluvíš? AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_03"); //Hovořím o jasném záblesku světla, které rozsvítilo oblohu na severovýchodě údolí. AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_04"); //A pak přišel skutečný déšť, i když na obloze nebyl jediný mrak. AI_Output(other,self,"DIA_Addon_Saturas_ADW_OpenPortal_01_05"); //Myslím, že je to díky magickému portálu. Aktivoval jsem ho starodávnou magií Stavitelů. AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_06"); //Neuvěřitelné! Co je však tento portál a kde vede? AI_Output(other,self,"DIA_Addon_Saturas_ADW_OpenPortal_01_07"); //Ještě nevím. Ale brzy zjistím. AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_08"); //Být tebou, jsem velmi opatrný. Možná, za tímto portálem je skryté, něco, čeho bychom se měli vyvarovat! AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_10"); //Domnívám se, že moje slova tě pravděpodobně nezastaví. AI_Output(other,self,"DIA_Addon_Saturas_ADW_OpenPortal_01_11"); //Vskutku. AI_Output(self,other,"DIA_Addon_Saturas_ADW_OpenPortal_01_12"); //(povzdech) Dobře. Nezapomeň, že důsledky mohou být nepředvídatelné. SaturasKnowPortalOpenDay = Wld_GetDay(); MIS_LostPower = LOG_Running; Log_CreateTopic(TOPIC_LostPower,LOG_MISSION); Log_SetTopicStatus(TOPIC_LostPower,LOG_Running); B_LogEntry(TOPIC_LostPower,"Řekl jsem Saturasovi, že jsem objevil podivný magický portál na severovýchodě údolí. Požádal mě, abych se od něho držel, protože se bál, co by mohlo být skryto na druhé straně. Alespoň prozatím."); AI_StopProcessInfos(self); };
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Crypto.build/Hash/Hash+Method.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/ByteStream.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Hash+Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/PseudoRandom.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/LibreSSLError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Helpers.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Exports.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/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Crypto.build/Hash+Method~partial.swiftmodule : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/ByteStream.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Hash+Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/PseudoRandom.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/LibreSSLError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Helpers.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Exports.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/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Crypto.build/Hash+Method~partial.swiftdoc : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher+Method.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Hash/Hash.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/ByteStream.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Hash+Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/Random.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/PseudoRandom.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Cipher/Cipher.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Random/LibreSSLError.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Helpers.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/Essentials/Exports.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/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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/Desktop/VaporProject/LaSalleChat/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.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
/Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Build/Intermediates.noindex/ProyectoFinal.build/Debug-iphonesimulator/ProyectoFinal.build/Objects-normal/x86_64/InfoViewController.o : /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerInfoActividad.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/AppDelegate.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/Evento.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerFiltrar.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TabBarController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/SecondViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/InfoViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/FirstViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TableViewControllerActividadesCult.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/Firebase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsSwiftNameSupport.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/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/MessageUI.framework/Headers/MessageUI.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/CoreLocation.framework/Headers/CoreLocation.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/EventKit.framework/Headers/EventKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Build/Intermediates.noindex/ProyectoFinal.build/Debug-iphonesimulator/ProyectoFinal.build/Objects-normal/x86_64/InfoViewController~partial.swiftmodule : /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerInfoActividad.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/AppDelegate.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/Evento.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerFiltrar.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TabBarController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/SecondViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/InfoViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/FirstViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TableViewControllerActividadesCult.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/Firebase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsSwiftNameSupport.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/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/MessageUI.framework/Headers/MessageUI.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/CoreLocation.framework/Headers/CoreLocation.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/EventKit.framework/Headers/EventKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Build/Intermediates.noindex/ProyectoFinal.build/Debug-iphonesimulator/ProyectoFinal.build/Objects-normal/x86_64/InfoViewController~partial.swiftdoc : /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerInfoActividad.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/AppDelegate.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/Evento.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/ViewControllerFiltrar.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TabBarController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/SecondViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/InfoViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/FirstViewController.swift /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/ProyectoFinal/TableViewControllerActividadesCult.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreLocation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/Firebase.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsSwiftNameSupport.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/Firebase/Core/Sources/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/mauriciogarza/Desktop/ProyectoFinal/ProyectoFinalMovilesApp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/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/MessageUI.framework/Headers/MessageUI.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/CoreLocation.framework/Headers/CoreLocation.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/EventKit.framework/Headers/EventKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
a heavy rain
D
module EncoShared.Network.Network; import std.bitmanip; import EncoShared; import std.socket; /// interface IPacket { @property ushort id(); /// Serializes the content without id. Streams should be Big Endian. ubyte[] serialize(); /// Deserializes the content without id and advances the stream. Streams should be Big Endian. void deserialize(ref ubyte[] stream); } void writePacket(Socket socket, IPacket packet) { }
D
/** * TypeInfo support code. * * Copyright: Copyright Digital Mars 2004 - 2009. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright */ /* Copyright Digital Mars 2004 - 2009. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE or copy at * http://www.boost.org/LICENSE_1_0.txt) */ module rt.typeinfo.ti_uint; // uint class TypeInfo_k : TypeInfo { @trusted: const: pure: nothrow: override string toString() const pure nothrow @safe { return "uint"; } override size_t getHash(in void* p) { return *cast(uint *)p; } override bool equals(in void* p1, in void* p2) { return *cast(uint *)p1 == *cast(uint *)p2; } override int compare(in void* p1, in void* p2) { if (*cast(uint*) p1 < *cast(uint*) p2) return -1; else if (*cast(uint*) p1 > *cast(uint*) p2) return 1; return 0; } override @property size_t tsize() nothrow pure { return uint.sizeof; } override const(void)[] init() const @trusted { return (cast(void *)null)[0 .. uint.sizeof]; } override void swap(void *p1, void *p2) { int t; t = *cast(uint *)p1; *cast(uint *)p1 = *cast(uint *)p2; *cast(uint *)p2 = t; } }
D
module std.typeinfo.ti_Ag; private import std.string; private import std.c.string; // byte[] class TypeInfo_Ag : TypeInfo { override string toString() { return "byte[]"; } override hash_t getHash(in void *p) { byte[] s = *cast(byte[]*)p; size_t len = s.length; byte *str = s.ptr; hash_t hash = 0; while (1) { switch (len) { case 0: return hash; case 1: hash *= 9; hash += *cast(ubyte *)str; return hash; case 2: hash *= 9; hash += *cast(ushort *)str; return hash; case 3: hash *= 9; hash += (*cast(ushort *)str << 8) + (cast(ubyte *)str)[2]; return hash; default: hash *= 9; hash += *cast(uint *)str; str += 4; len -= 4; break; } } return hash; } override int equals(in void *p1, in void *p2) { byte[] s1 = *cast(byte[]*)p1; byte[] s2 = *cast(byte[]*)p2; return s1.length == s2.length && memcmp(cast(byte *)s1, cast(byte *)s2, s1.length) == 0; } override int compare(in void *p1, in void *p2) { byte[] s1 = *cast(byte[]*)p1; byte[] s2 = *cast(byte[]*)p2; size_t len = s1.length; if (s2.length < len) len = s2.length; for (size_t u = 0; u < len; u++) { int result = s1[u] - s2[u]; if (result) return result; } return cast(int)s1.length - cast(int)s2.length; } override size_t tsize() { return (byte[]).sizeof; } override uint flags() { return 1; } override TypeInfo next() { return typeid(byte); } } // ubyte[] class TypeInfo_Ah : TypeInfo_Ag { override string toString() { return "ubyte[]"; } override int compare(in void *p1, in void *p2) { char[] s1 = *cast(char[]*)p1; char[] s2 = *cast(char[]*)p2; return std.string.cmp(s1, s2); } override TypeInfo next() { return typeid(ubyte); } } // void[] class TypeInfo_Av : TypeInfo_Ah { override string toString() { return "void[]"; } override TypeInfo next() { return typeid(void); } } // bool[] class TypeInfo_Ab : TypeInfo_Ah { override string toString() { return "bool[]"; } override TypeInfo next() { return typeid(bool); } } // char[] class TypeInfo_Aa : TypeInfo_Ag { override string toString() { return "char[]"; } override hash_t getHash(in void *p) { char[] s = *cast(char[]*)p; hash_t hash = 0; version (all) { foreach (char c; s) hash = hash * 11 + c; } else { size_t len = s.length; char *str = s; while (1) { switch (len) { case 0: return hash; case 1: hash *= 9; hash += *cast(ubyte *)str; return hash; case 2: hash *= 9; hash += *cast(ushort *)str; return hash; case 3: hash *= 9; hash += (*cast(ushort *)str << 8) + (cast(ubyte *)str)[2]; return hash; default: hash *= 9; hash += *cast(uint *)str; str += 4; len -= 4; break; } } } return hash; } override TypeInfo next() { return typeid(char); } }
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.build/ByteBuffer+binaryFloatingPointOperations.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.build/ByteBuffer+binaryFloatingPointOperations~partial.swiftmodule : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.build/ByteBuffer+binaryFloatingPointOperations~partial.swiftdoc : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Deprecated.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+require.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+string.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+peek.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Control.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/BitsError.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Bytes.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Data+Strings.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/ByteBuffer+binaryFloatingPointOperations.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Alphabet.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/core/Sources/Bits/Byte+Digit.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.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/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module bottino.main; import bottino.irc; import bottino.bots; import vibe.core.net; import vibe.core.log; import vibe.core.task; import vibe.core.core; import vibe.core.concurrency; import vibe.stream.tls; import sumtype; import std.stdio; import std.string; import std.getopt; /* ----------------------------------------------------------------------- */ /* Handle registered bot commands */ /* ----------------------------------------------------------------------- */ Bot[] makeBots(ref IrcClient irc, const BotConfig config) { import bottino.bots.logger; import bottino.bots.echo : createEchoBot; import bottino.bots.raver : createRaverBot; import bottino.bots.nickserv : createNickServBot; import bottino.bots.help : createHelpBot; Bot[] bots; bots ~= createEchoBot("echoerino", config, irc); bots ~= createNickServBot("nickerino", config, irc); bots ~= createHelpBot("helperino", config, bots, irc); bots ~= createLoggerBot("loggerino", config, "./logs"); return bots; } void main(string[] args) { bool tls = false; string server; string password = ""; ushort port = 6667; string nick; string realname; string[] channels; auto helpInformation = getopt( args, "server|s", "Server address", &server, "port|p", "Server port [6667]", &port, "password|k", "Server password [empty]", &password, "tls|t", "Use TLS (requires a SSL provider)", &tls, "nick|n", "Bot nick", &nick, "realname|r", "Bot realname [bottino]", &realname, "channel|c", "Add a channel (might be specified more than once)", &channels); if(helpInformation.helpWanted) { defaultGetoptPrinter("Bottino: IRC bot", helpInformation.options); return; } immutable config = BotConfig(nick, realname, channels); // initialize IRC client & connect to server IrcClient irc = createIrcClient(server, port, password, tls); irc.connect(config.nick, config.realname); foreach(bot; makeBots(irc, config)) irc.registerBot(bot.name, bot); irc.serveBots(); logInfo("CIAO UAGNU'! Bottino is going down."); }
D
/Users/erick/Documents/Code/solona/packages/dapplib/programs/target/bpfel-unknown-unknown/release/deps/cfg_if-fecc917c6ce3b874.rmeta: /Users/erick/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs /Users/erick/Documents/Code/solona/packages/dapplib/programs/target/bpfel-unknown-unknown/release/deps/libcfg_if-fecc917c6ce3b874.rlib: /Users/erick/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs /Users/erick/Documents/Code/solona/packages/dapplib/programs/target/bpfel-unknown-unknown/release/deps/cfg_if-fecc917c6ce3b874.d: /Users/erick/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs /Users/erick/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-1.0.0/src/lib.rs:
D
/** * HibernateD - Object-Relation Mapping for D programming language, with interface similar to Hibernate. * * Hibernate documentation can be found here: * $(LINK http://hibernate.org/docs)$(BR) * * Source file hibernated/metadata.d. * * This module contains implementation of Annotations parsing and ORM model metadata holder classes. * * Copyright: Copyright 2013 * License: $(LINK www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Author: Vadim Lopatin */ module hibernated.metadata; import std.ascii; import std.conv; import std.datetime; import std.exception; import std.stdio; import std.string; import std.traits; import std.typecons; import std.typetuple; import std.variant; import std.uuid; import ddbc.core; import ddbc.common; import hibernated.annotations; import hibernated.core; import hibernated.type; import hibernated.session; import hibernated.dialect; import hibernated.dialects.mysqldialect; abstract class EntityMetaData { @property size_t length(); const(EntityInfo) opIndex(int index) const; const(EntityInfo) opIndex(string entityName) const; const(PropertyInfo) opIndex(string entityName, string propertyName) const; public string getEntityName(TypeInfo_Class type) const { return getClassMap()[type].name; } public string getEntityNameForClass(T)() const { return getClassMap()[T.classinfo].name; } int opApply(int delegate(ref const EntityInfo) dg) const; public const(EntityInfo[]) getEntities() const; public const(EntityInfo[string]) getEntityMap() const; public const(EntityInfo[TypeInfo_Class]) getClassMap() const; public const(EntityInfo) findEntity(string entityName) const; public const(EntityInfo) findEntity(TypeInfo_Class entityClass) const; public const(EntityInfo) findEntityForObject(Object obj) const; public const(EntityInfo) getEntity(int entityIndex) const; public int getEntityCount() const; /// Entity factory public Object createEntity(string entityName) const; /// Fills all properties of entity instance from dataset public int readAllColumns(Object obj, DataSetReader r, int startColumn) const; /// Puts all properties of entity instance to dataset public int writeAllColumns(Object obj, DataSetWriter w, int startColumn, bool exceptKey = false) const; public string generateFindAllForEntity(string entityName) const; public int getFieldCount(const EntityInfo ei, bool exceptKey) const; public string getAllFieldList(const EntityInfo ei, bool exceptKey = false) const; public string getAllFieldList(string entityName, bool exceptKey = false) const; public string generateFindByPkForEntity(const EntityInfo ei) const; public string generateFindByPkForEntity(string entityName) const; public string generateInsertAllFieldsForEntity(const EntityInfo ei) const; public string generateInsertAllFieldsForEntity(string entityName) const; public string generateInsertNoKeyForEntity(const EntityInfo ei) const; public string generateUpdateForEntity(const EntityInfo ei) const; public Variant getPropertyValue(Object obj, string propertyName) const; public void setPropertyValue(Object obj, string propertyName, Variant value) const; } enum RelationType { None, Embedded, OneToOne, OneToMany, ManyToOne, ManyToMany, } /// Metadata of entity property class PropertyInfo { public: /// reads simple property value from data set to object alias void function(Object, DataSetReader, int index) ReaderFunc; /// writes simple property value to data set from object alias void function(Object, DataSetWriter, int index) WriterFunc; /// copy property from second passed object to first alias void function(Object, Object) CopyFunc; /// returns simple property as Variant alias Variant function(Object) GetVariantFunc; /// sets simple property from Variant alias void function(Object, Variant value) SetVariantFunc; /// returns true if property value of object is not null alias bool function(Object) IsNullFunc; /// returns true if key property of object is set (similar to IsNullFunc but returns true if non-nullable number is 0. alias bool function(Object) KeyIsSetFunc; /// returns OneToOne, ManyToOne or Embedded property as Object alias Object function(Object) GetObjectFunc; /// sets OneToOne, ManyToOne or Embedded property as Object alias void function(Object, Object) SetObjectFunc; /// sets lazy loader delegate for OneToOne, or ManyToOne property if it's Lazy! template instance alias void function(Object, Object delegate()) SetObjectDelegateFunc; /// sets lazy loader delegate for OneToMany, or ManyToMany property if it's LazyCollection! template instance alias void function(Object, Object[] delegate()) SetCollectionDelegateFunc; /// returns OneToMany or ManyToMany property value as object array alias Object[] function(Object) GetCollectionFunc; /// sets OneToMany or ManyToMany property value from object array alias void function(Object, Object[]) SetCollectionFunc; /// returns true if Lazy! or LazyCollection! property is loaded (no loader delegate set). alias bool function(Object) IsLoadedFunc; /// returns new generated primary key for property alias Variant function(Connection conn, const PropertyInfo prop) GeneratorFunc; package EntityInfo _entity; @property const(EntityInfo) entity() const { return _entity; } @property const(EntityMetaData) metadata() const { return _entity._metadata; } immutable string propertyName; immutable string columnName; immutable Type columnType; immutable int length; immutable bool key; immutable bool generated; immutable bool nullable; immutable string uniqueIndex; immutable RelationType relation; immutable bool lazyLoad; immutable bool collection; immutable string referencedEntityName; // for @Embedded, @OneToOne, @OneToMany, @ManyToOne, @ManyToMany holds name of entity package EntityInfo _referencedEntity; // for @Embedded, @OneToOne, @OneToMany, @ManyToOne, @ManyToMany holds entity info reference, filled in runtime @property const(EntityInfo) referencedEntity() const { return _referencedEntity; } immutable string referencedPropertyName; // for @OneToOne, @OneToMany, @ManyToOne package PropertyInfo _referencedProperty; @property const(PropertyInfo) referencedProperty() const { return _referencedProperty; } package int _columnOffset; // offset from first column of this entity in selects @property int columnOffset() const { return _columnOffset; } // offset from first column of this entity in selects package JoinTableInfo _joinTable; @property const (JoinTableInfo) joinTable() const { return _joinTable; } immutable ReaderFunc readFunc; immutable WriterFunc writeFunc; immutable GetVariantFunc getFunc; immutable SetVariantFunc setFunc; immutable KeyIsSetFunc keyIsSetFunc; immutable IsNullFunc isNullFunc; immutable GetObjectFunc getObjectFunc; immutable SetObjectFunc setObjectFunc; immutable CopyFunc copyFieldFunc; immutable GetCollectionFunc getCollectionFunc; immutable SetCollectionFunc setCollectionFunc; immutable SetObjectDelegateFunc setObjectDelegateFunc; immutable SetCollectionDelegateFunc setCollectionDelegateFunc; immutable IsLoadedFunc isLoadedFunc; immutable GeneratorFunc generatorFunc; @property bool simple() const { return relation == RelationType.None; }; @property bool embedded() const { return relation == RelationType.Embedded; }; @property bool oneToOne() const { return relation == RelationType.OneToOne; }; @property bool oneToMany() const { return relation == RelationType.OneToMany; }; @property bool manyToOne() const { return relation == RelationType.ManyToOne; }; @property bool manyToMany() const { return relation == RelationType.ManyToMany; }; this(string propertyName, string columnName, Type columnType, int length, bool key, bool generated, bool nullable, string uniqueIndex, RelationType relation, string referencedEntityName, string referencedPropertyName, ReaderFunc reader, WriterFunc writer, GetVariantFunc getFunc, SetVariantFunc setFunc, KeyIsSetFunc keyIsSetFunc, IsNullFunc isNullFunc, CopyFunc copyFieldFunc, GeneratorFunc generatorFunc = null, GetObjectFunc getObjectFunc = null, SetObjectFunc setObjectFunc = null, GetCollectionFunc getCollectionFunc = null, SetCollectionFunc setCollectionFunc = null, SetObjectDelegateFunc setObjectDelegateFunc = null, SetCollectionDelegateFunc setCollectionDelegateFunc = null, IsLoadedFunc isLoadedFunc = null, bool lazyLoad = false, bool collection = false, JoinTableInfo joinTable = null) { this.propertyName = propertyName; this.columnName = columnName; this.columnType = cast(immutable Type)columnType; this.length = length; this.key = key; this.generated = generated; this.nullable = nullable; this.relation = relation; this.referencedEntityName =referencedEntityName; this.referencedPropertyName = referencedPropertyName; this.readFunc = reader; this.writeFunc = writer; this.getFunc = getFunc; this.setFunc = setFunc; this.keyIsSetFunc = keyIsSetFunc; this.isNullFunc = isNullFunc; this.getObjectFunc = getObjectFunc; this.setObjectFunc = setObjectFunc; this.copyFieldFunc = copyFieldFunc; this.generatorFunc = generatorFunc; this.lazyLoad = lazyLoad; this.collection = collection; this.setObjectDelegateFunc = setObjectDelegateFunc; this.setCollectionDelegateFunc = setCollectionDelegateFunc; this.getCollectionFunc = getCollectionFunc; this.setCollectionFunc = setCollectionFunc; this.isLoadedFunc = isLoadedFunc; this._joinTable = joinTable; this.uniqueIndex = uniqueIndex; } package void updateJoinTable() { assert(relation == RelationType.ManyToMany); assert(_joinTable !is null); _joinTable.setEntities(entity, referencedEntity); } const hash_t opHash() const { return (cast(hash_t)(cast(void*)this)) * 31; } const bool opEquals(ref const PropertyInfo s) const { return this == s; } const int opCmp(ref const PropertyInfo s) const { return this == s ? 0 : (opHash() > s.opHash() ? 1 : -1); } Variant[] getCollectionIds(Object obj) const { assert(oneToMany || manyToMany); Variant[] res; Object[] list = getCollectionFunc(obj); if (list is null) return res; foreach(item; list) { res ~= referencedEntity.getKey(item); } return res; } } /// Metadata of single entity class EntityInfo { package EntityMetaData _metadata; @property const(EntityMetaData) metadata() const { return _metadata; } immutable string name; immutable string tableName; private PropertyInfo[] _properties; @property const(PropertyInfo[]) properties() const { return _properties; } package PropertyInfo [string] _propertyMap; immutable TypeInfo_Class classInfo; private int _keyIndex; @property int keyIndex() const { return _keyIndex; } private PropertyInfo _keyProperty; @property const(PropertyInfo) keyProperty() const { return _keyProperty; } immutable bool embeddable; int opApply(int delegate(ref const PropertyInfo) dg) const { int result = 0; for (int i = 0; i < _properties.length; i++) { result = dg(_properties[i]); if (result) break; } return result; } public this(string name, string tableName, bool embeddable, PropertyInfo [] properties, TypeInfo_Class classInfo) { this.name = name; this.tableName = tableName; this.embeddable = embeddable; this._properties = properties; this.classInfo = cast(immutable TypeInfo_Class)classInfo; PropertyInfo[string] map; foreach(i, p; properties) { p._entity = this; map[p.propertyName] = p; if (p.key) { _keyIndex = cast(int)i; _keyProperty = p; } } this._propertyMap = map; enforceEx!MappingException(keyProperty !is null || embeddable, "No key specified for non-embeddable entity " ~ name); } /// returns key value as Variant from entity instance Variant getKey(Object obj) const { return keyProperty.getFunc(obj); } /// returns key value as Variant from data set Variant getKey(DataSetReader r, int startColumn) const { return r.getVariant(startColumn + keyProperty.columnOffset); } /// sets key value from Variant void setKey(Object obj, Variant value) const { keyProperty.setFunc(obj, value); } /// returns property info for key property const(PropertyInfo) getKeyProperty() const { return keyProperty; } /// checks if primary key is set (for non-nullable member types like int or long, 0 is considered as non-set) bool isKeySet(Object obj) const { return keyProperty.keyIsSetFunc(obj); } /// checks if primary key is set (for non-nullable member types like int or long, 0 is considered as non-set) bool isKeyNull(DataSetReader r, int startColumn) const { return r.isNull(startColumn + keyProperty.columnOffset); } /// checks if property value is null bool isNull(Object obj) const { return keyProperty.isNullFunc(obj); } /// returns property value as Variant Variant getPropertyValue(Object obj, string propertyName) const { return findProperty(propertyName).getFunc(obj); } /// sets property value from Variant void setPropertyValue(Object obj, string propertyName, Variant value) const { return findProperty(propertyName).setFunc(obj, value); } /// returns all properties as array const (PropertyInfo[]) getProperties() const { return properties; } /// returns map of property name to property metadata const (PropertyInfo[string]) getPropertyMap() const { return _propertyMap; } /// returns number of properties ulong getPropertyCount() const { return properties.length; } /// returns number of properties ulong getPropertyCountExceptKey() const { return properties.length - 1; } @property size_t length() const { return properties.length; } const(PropertyInfo) opIndex(int index) const { return properties[index]; } const(PropertyInfo) opIndex(string propertyName) const { return findProperty(propertyName); } /// returns property by index const(PropertyInfo) getProperty(int propertyIndex) const { return properties[propertyIndex]; } /// returns property by name, throws exception if not found const(PropertyInfo) findProperty(string propertyName) const { try { return _propertyMap[propertyName]; } catch (Throwable e) { throw new MappingException("No property " ~ propertyName ~ " found in entity " ~ name); } } /// create instance of entity object (using default constructor) Object createEntity() const { return Object.factory(classInfo.name); } void copyAllProperties(Object to, Object from) const { foreach(pi; this) pi.copyFieldFunc(to, from); } } class JoinTableInfo { package string _tableName; @property string tableName() const { return _tableName; } package string _column1; @property string column1() const { return _column1; } package string _column2; @property string column2() const { return _column2; } package EntityInfo _thisEntity; @property const (EntityInfo) thisEntity() const { return _thisEntity; } package EntityInfo _otherEntity; @property const (EntityInfo) otherEntity() const { return _otherEntity; } this(string tableName, string column1, string column2) { this._tableName = tableName; this._column1 = column1; this._column2 = column2; } /// set entities, and replace missing parameters with default generated values package void setEntities(const EntityInfo thisEntity, const EntityInfo otherEntity) { assert(thisEntity !is null); assert(otherEntity !is null); this._thisEntity = cast(EntityInfo)thisEntity; this._otherEntity = cast(EntityInfo)otherEntity; // table name is constructed from names of two entities delimited with underscore, sorted in alphabetical order, with appended suffix 's': entity1_entity2s // (to get same table name on two sides) string entity1 = camelCaseToUnderscoreDelimited(thisEntity.name < otherEntity.name ? thisEntity.name : otherEntity.name); string entity2 = camelCaseToUnderscoreDelimited(thisEntity.name < otherEntity.name ? otherEntity.name : thisEntity.name); _tableName = _tableName !is null ? _tableName : entity1 ~ "_" ~ entity2 ~ "s"; // columns are entity name (CamelCase to camel_case _column1 = _column1 !is null ? _column1 : camelCaseToUnderscoreDelimited(thisEntity.name) ~ "_fk"; _column2 = _column2 !is null ? _column2 : camelCaseToUnderscoreDelimited(otherEntity.name) ~ "_fk"; } static string generateJoinTableCode(string table, string column1, string column2) { return "new JoinTableInfo(" ~ quoteString(table) ~ ", " ~ quoteString(column1) ~ ", " ~ quoteString(column2) ~ ")"; } string getInsertSQL(const Dialect dialect) const { return "INSERT INTO " ~ dialect.quoteIfNeeded(_tableName) ~ "(" ~ dialect.quoteIfNeeded(_column1) ~ ", " ~ dialect.quoteIfNeeded(column2) ~ ") VALUES "; } string getOtherKeySelectSQL(const Dialect dialect, string thisKeySQL) const { return "SELECT " ~ dialect.quoteIfNeeded(column2) ~ " FROM " ~ dialect.quoteIfNeeded(_tableName) ~ " WHERE " ~ dialect.quoteIfNeeded(_column1) ~ "=" ~ thisKeySQL; } string getInsertSQL(const Dialect dialect, string thisKeySQL, string[] otherKeysSQL) const { string list; foreach(otherKeySQL; otherKeysSQL) { if (list.length > 0) list ~= ", "; list ~= "(" ~ thisKeySQL ~ ", " ~ otherKeySQL ~ ")"; } return getInsertSQL(dialect) ~ list; } string getDeleteSQL(const Dialect dialect, string thisKeySQL, string[] otherKeysSQL) const { string sql = "DELETE FROM " ~ dialect.quoteIfNeeded(_tableName) ~ " WHERE " ~ dialect.quoteIfNeeded(_column1) ~ "=" ~ thisKeySQL ~ " AND " ~ dialect.quoteIfNeeded(_column2) ~ " IN "; string list; foreach(otherKeySQL; otherKeysSQL) { if (list.length > 0) list ~= ", "; list ~= otherKeySQL; } return sql ~ "(" ~ list ~ ")"; } } string quoteString(string s) { return s is null ? "null" : "\"" ~ s ~ "\""; } string quoteBool(bool b) { return b ? "true" : "false"; } string capitalizeFieldName(immutable string name) { if (name[0] == '_') return toUpper(name[1..2]) ~ name[2..$]; else return toUpper(name[0..1]) ~ name[1..$]; } /// lowercases first letter string classNameToPropertyName(immutable string name) { return toLower(name[0..1]) ~ name[1..$]; } string getterNameToFieldName(immutable string name) { if (name[0..3] == "get") return toLower(name[3..4]) ~ name[4..$]; if (name[0..2] == "is") return toLower(name[2..3]) ~ name[3..$]; return "_" ~ name; } string getterNameToSetterName(immutable string name) { if (name[0..3] == "get") return "set" ~ name[3..$]; // e.g. getValue() -> setValue() if (name[0..2] == "is") return "set" ~ toUpper(name[0..1]) ~ name[1..$]; // e.g. isDefault()->setIsDefault() return "_" ~ name; } /// converts camel case MyEntityName to my_entity_name string camelCaseToUnderscoreDelimited(immutable string s) { string res; bool lastLower = false; foreach(ch; s) { if (ch >= 'A' && ch <= 'Z') { if (lastLower) { lastLower = false; res ~= "_"; } res ~= toLower(ch); } else if (ch >= 'a' && ch <= 'z') { lastLower = true; res ~= ch; } else { res ~= ch; } } return res; } unittest { static assert(camelCaseToUnderscoreDelimited("User") == "user"); static assert(camelCaseToUnderscoreDelimited("MegaTableName") == "mega_table_name"); } /// returns true if class member has at least one known property level annotation (@Column, @Id, @Generated) template hasHibernatedPropertyAnnotation(T, string m) { enum bool hasHibernatedPropertyAnnotation = hasOneOfMemberAnnotations!(T, m, Id, Column, OneToOne, ManyToOne, ManyToMany, OneToMany, Generated, Generator); } bool hasHibernatedClassOrPropertyAnnotation(T)() { static if (hasOneOfAnnotations!(T, Entity, Embeddable, Table)) { return true; } else { foreach (m; __traits(allMembers, T)) { static if (__traits(compiles, (typeof(__traits(getMember, T, m))))){ static if (__traits(getProtection, __traits(getMember, T, m)) == "public") { static if (hasHibernatedPropertyAnnotation!(T, m)) return true; } } } return false; } } bool hasAnyKeyPropertyAnnotation(T)() { foreach (m; __traits(allMembers, T)) { static if (__traits(compiles, (typeof(__traits(getMember, T, m))))){ static if (__traits(getProtection, __traits(getMember, T, m)) == "public") { static if (hasOneOfMemberAnnotations!(T, m, Id, Generated, Generator)) return true; } } } return false; } /// returns true if class has one of specified anotations bool hasOneOfAnnotations(T : Object, A...)() { foreach(a; A) { static if (hasAnnotation!(T, a)) { return true; } } return false; } /// returns true if class member has one of specified anotations bool hasOneOfMemberAnnotations(T : Object, string m, A...)() { foreach(a; A) { static if (hasMemberAnnotation!(T, m, a)) { return true; } } return false; } /// returns true if class has specified anotations bool hasAnnotation(T, A)() { foreach(a; __traits(getAttributes, T)) { static if (is(typeof(a) == A) || a.stringof == A.stringof) { return true; } } return false; } bool isGetterFunction(alias overload, string methodName)() { //pragma(msg, "isGetterFunction " ~ methodName ~ " " ~ typeof(overload).stringof); static if (is(typeof(overload) == function)) { //pragma(msg, "is function " ~ methodName ~ " " ~ typeof(overload).stringof); static if (ParameterTypeTuple!(overload).length == 0) { //pragma(msg, "no params " ~ methodName ~ " " ~ typeof(overload).stringof); static if (functionAttributes!overload & FunctionAttribute.property) { //pragma(msg, "is property"); //writeln("is property or starts with get or is"); return true; } static if (methodName.startsWith("get") || methodName.startsWith("get")) { //pragma(msg, "is getter"); //writeln("is property or starts with get or is"); return true; } } } return false; } /// returns true if class member has specified anotations bool hasMemberAnnotation(T, string m, A)() { static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == A) || a.stringof == A.stringof) { return true; } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == A) || a.stringof == A.stringof) { return true; } } } return false; } /// returns entity name for class type string getEntityName(T : Object)() { // foreach (a; __traits(getAttributes, T)) { // static if (is(typeof(a) == Entity)) { // return a.name; // } // static if (a.stringof == Entity.stringof) { // return T.stringof; // } // } return T.stringof; } /// returns table name for class type string getTableName(T : Object)() { foreach (a; __traits(getAttributes, T)) { static if (is(typeof(a) == Table)) { return a.name; } } return camelCaseToUnderscoreDelimited(T.stringof); } string applyDefault(string s, string defaultValue) { return s != null && s.length > 0 ? s : defaultValue; } string getColumnName(T, string m)() { immutable string defValue = camelCaseToUnderscoreDelimited(getPropertyName!(T,m)); static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == Column)) { return applyDefault(a.name, defValue); } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == Column)) { return applyDefault(a.name, defValue); } } } return defValue; } string getGeneratorCode(T, string m)() { foreach (a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == Generator)) { static assert(a.code != null && a.code != "", "@Generator doesn't have code specified"); return a.code; } static if (a.stringof == Generator.stringof) { static assert(false, "@Generator doesn't have code specified"); } } return null; } string getJoinColumnName(T, string m)() { immutable string defValue = camelCaseToUnderscoreDelimited(getPropertyName!(T,m)()) ~ "_fk"; static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == JoinColumn)) { return applyDefault(a.name, defValue); } else static if (a.stringof == JoinColumn.stringof) { return defValue; } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == JoinColumn)) { return applyDefault(a.name, defValue); } else static if (a.stringof == JoinColumn.stringof) { return defValue; } } } return null; } string getUniqueIndexName(T, string m)() { immutable string defValue = camelCaseToUnderscoreDelimited(getEntityName!T) ~ "_" ~ camelCaseToUnderscoreDelimited(getPropertyName!(T,m)()) ~ "_index"; static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == UniqueKey)) { return applyDefault(a.name, defValue); } else static if (a.stringof == UniqueKey.stringof) { return defValue; } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == UniqueKey)) { return applyDefault(a.name, defValue); } else static if (a.stringof == UniqueKey.stringof) { return defValue; } } } return null; } string getJoinTableName(T, string m)() { static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == JoinTable)) { return emptyStringToNull(a.joinTableName); } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == JoinTable)) { return emptyStringToNull(a.joinTableName); } } } return null; } string getJoinTableColumn1(T, string m)() { foreach (a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == JoinTable)) { return emptyStringToNull(a.joinColumn1); } } return null; } string getJoinTableColumn2(T, string m)() { foreach (a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == JoinTable)) { return emptyStringToNull(a.joinColumn2); } } return null; } string emptyStringToNull(string s) { return (s is null || s.length == 0) ? null : s; } string getOneToOneReferencedPropertyName(T, string m)() { foreach (a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == OneToOne)) { return emptyStringToNull(a.name); } static if (a.stringof == OneToOne.stringof) { return null; } } return null; } string getOneToManyReferencedPropertyName(T, string m)() { immutable string defaultPropertyName = classNameToPropertyName(getEntityName!(T)); foreach (a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == OneToMany)) { return applyDefault(a.name, defaultPropertyName); } static if (a.stringof == OneToOne.stringof) { return defaultPropertyName; } } return defaultPropertyName; } int getColumnLength(T, string m)() { static if (is(typeof(__traits(getMember, T, m)) == function)) { // function: check overloads foreach(overload; MemberFunctionsTuple!(T, m)) { static if (isGetterFunction!(overload, m)) { foreach(a; __traits(getAttributes, overload)) { static if (is(typeof(a) == Column)) { return a.length; } } } } } else { foreach(a; __traits(getAttributes, __traits(getMember,T,m))) { static if (is(typeof(a) == Column)) { return a.length; } } } return 0; } string getPropertyName(T, string m)() { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { return getterNameToFieldName(m); } return m; } enum PropertyMemberKind : int { FIELD_MEMBER, // int field; GETTER_MEMBER, // getField() + setField() or isField() and setField() PROPERTY_MEMBER, // @property T field() { ... } + @property xxx field(T value) { ... } LAZY_MEMBER, // Lazy!Object field; UNSUPPORTED_MEMBER,// } bool hasPercentSign(immutable string str) { foreach(ch; str) { if (ch == '%') return true; } return false; } int percentSignCount(immutable string str) { string res; foreach(ch; str) { if (ch == '%') res ~= "%"; } return cast(int)res.length; } string substituteParam(immutable string fmt, immutable string value) { if (hasPercentSign(fmt)) return format(fmt, value); else return fmt; } //string substituteIntParam(immutable string fmt, immutable int value) { // int percentPos = -1; // for (int i=0; i<fmt.length; i++) { // if (fmt[i] == '%') { // percentPos = i; // } // // } // if (percentPos < 0) // return fmt; // return fmt[0 .. percentPos] ~ "1024" ~ fmt[percentPos + 2 .. $]; //to!string(value) //// string res; //// bool skipNext = false; //// //// foreach(ch; fmt) { //// if (ch == '%') { //// res ~= "1024"; //to!string(value); //// skipNext = true; //// } else if (!skipNext) { //// res ~= ch; //// skipNext = false; //// } //// } //// return res; // // following code causes error in DMD //// if (hasPercentSign(fmt)) //// return format(fmt, value); //// else //// return fmt; //} string substituteParamTwice(immutable string fmt, immutable string value) { immutable int paramCount = cast(int)percentSignCount(fmt); if (paramCount == 1) return format(fmt, value); else if (paramCount == 2) return format(fmt, value, value); else return fmt; } static immutable string[] PropertyMemberKind_ReadCode = [ "entity.%s", "entity.%s()", "entity.%s", "entity.%s()", "dummy" ]; PropertyMemberKind getPropertyMemberKind(T : Object, string m)() { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { // interate through all overloads //return checkGetterOverload!(T, m); foreach(overload; MemberFunctionsTuple!(T, m)) { static if (ParameterTypeTuple!(overload).length == 0) { static if (functionAttributes!overload & FunctionAttribute.property) return PropertyMemberKind.PROPERTY_MEMBER; else static if (m.startsWith("get") || m.startsWith("is")) return PropertyMemberKind.GETTER_MEMBER; } } return PropertyMemberKind.UNSUPPORTED_MEMBER; } else { static if (isLazyInstance!(ti)) { return PropertyMemberKind.LAZY_MEMBER; } else { return PropertyMemberKind.FIELD_MEMBER; } } } string getPropertyEmbeddedEntityName(T : Object, string m)() { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { static if (isImplicitlyConvertible!(ReturnType!(ti), Object)) { static assert(hasAnnotation!(ReturnType!(ti), Embeddable), "@Embedded property class should have @Embeddable annotation"); return getEntityName!(ReturnType!(ti)); } else static assert(false, "@Embedded property can be only class with @Embeddable annotation"); } else { static if (isImplicitlyConvertible!(ti, Object)) { static assert(hasAnnotation!(ti, Embeddable), "@Embedded property class should have @Embeddable annotation"); return getEntityName!ti; } else static assert(false, "@Embedded property can be only class with @Embeddable annotation"); } } template isLazyInstance(T) { static if (is(T x == Lazy!Args, Args...)) enum bool isLazyInstance = true; else enum bool isLazyInstance = false; } template isLazyCollectionInstance(T) { static if (is(T x == LazyCollection!Args, Args...)) enum bool isLazyCollectionInstance = true; else enum bool isLazyCollectionInstance = false; } template isLazyMember(T : Object, string m) { static if (is(typeof(__traits(getMember, T, m)) x == Lazy!Args, Args...)) enum bool isLazyMember = true; else enum bool isLazyMember = false; } template isLazyCollectionMember(T : Object, string m) { static if (is(typeof(__traits(getMember, T, m)) x == LazyCollection!Args, Args...)) enum bool isLazyCollectionMember = true; else enum bool isLazyCollectionMember = false; } template isObject(T) { enum bool isObject = (__traits(compiles, isImplicitlyConvertible!(T, Object)) && isImplicitlyConvertible!(T, Object)); } /// member is field or function or property with SomeClass type template isObjectMember(T : Object, string m) { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { enum bool isObjectMember = isImplicitlyConvertible!(ReturnType!(ti), Object); } else { enum bool isObjectMember = isImplicitlyConvertible!(ti, Object); } } template hasPublicMember(T : Object, string m) { //pragma(msg, "hasPublicMember "~ T.stringof ~ ", " ~ m); static if (__traits(hasMember, T, m)) { enum bool hasPublicMember = __traits(compiles, __traits(getMember, T, m));//(__traits(getProtection, __traits(getMember, T, m)) == "public"); } else { enum bool hasPublicMember = false; } } //unittest { // class Foo { // int id; // void x(); // } // static assert(hasPublicMember!(Foo, "id")); // static assert(hasPublicMember!(Foo, "x")); // static assert(!hasPublicMember!(Foo, "zzz")); // //} /// returns true if it's object field of Embeddable object type template isEmbeddedObjectMember(T : Object, string m) { static if (isObjectMember!(T, m)) { alias typeof(__traits(getMember, T, m)) ti; enum bool isEmbeddedObjectMember = hasAnnotation!(getReferencedInstanceType!ti, Embeddable); } else { enum bool isEmbeddedObjectMember = false; } } template hasPublicField(T : Object, string m) { static if (hasPublicMember!(T, m)) { enum bool hasPublicField = !is(typeof(__traits(getMember, T, m)) == function) && !is(typeof(__traits(getMember, T, m)) == delegate); } else { enum bool hasPublicField = false; } } template hasPublicFieldWithAnnotation(T : Object, string m) { static if (hasPublicField!(T, m)) { enum bool hasPublicFieldWithAnnotation = hasHibernatedPropertyAnnotation!(T, m); } else { enum bool hasPublicFieldWithAnnotation = false; } } /// returns true if one of overloads of member m of class T is property setter with specified value type bool hasWritePropretyForType(T: Object, string m, ParamType)() { foreach(overload; MemberFunctionsTuple!(T, m)) { static if (ParameterTypeTuple!(overload).length == 1) { static if (functionAttributes!overload & FunctionAttribute.property) { return is(ParameterTypeTuple!(overload)[0] == ParamType); } } } return false; } /// returns true if member m of class T has both property getter and setter of the same type bool isReadWriteProperty(T: Object, string m)() { foreach(overload; MemberFunctionsTuple!(T, m)) { static if (ParameterTypeTuple!(overload).length == 0) { static if (functionAttributes!overload & FunctionAttribute.property) return hasWritePropretyForType!(T, m, ReturnType!overload); } } return false; } /// check that member m exists in class T, and it's function with single parameter of type ti template isValidSetter(T : Object, string m, ParamType) { // it's public member static if (hasPublicMember!(T, m)) { // it's function with single parameter of proper type enum bool isValidSetter = is(typeof(__traits(getMember, T, m)) == function) && ParameterTypeTuple!(typeof(__traits(getMember, T, m))).length == 1 && is(ParameterTypeTuple!(typeof(__traits(getMember, T, m)))[0] == ParamType); } else { enum bool isValidSetter = false; } } template isValidGetter(T : Object, string m) { // it's public member with get or is prefix static if ((m.startsWith("get") || m.startsWith("is")) && hasPublicMember!(T, m)) { alias typeof(__traits(getMember, T, m)) ti; alias ReturnType!ti rti; // it's function static if (is(typeof(__traits(getMember, T, m)) == function)) { // function has no parameters static if (ParameterTypeTuple!(typeof(__traits(getMember, T, m))).length == 0) { // has paired setter function of the same type static if (isValidSetter!(T, getterNameToSetterName(m), rti)) { enum bool isValidGetter = true; } else { enum bool isValidGetter = false; } } } else { enum bool isValidGetter = false; } } else { enum bool isValidGetter = false; } } template isValidGetterWithAnnotation(T : Object, string m) { // it's public member with get or is prefix static if (isValidGetter!(T, m)) { enum bool isValidGetterWithAnnotation = hasHibernatedPropertyAnnotation!(T,m); } else { enum bool isValidGetterWithAnnotation = false; } } bool isMainMemberForProperty(T : Object, string m)() { // skip non-public members static if (hasPublicMember!(T, m)) { alias typeof(__traits(getMember, T, m)) ti; immutable bool thisMemberHasAnnotation = hasHibernatedPropertyAnnotation!(T,m); static if (is(ti == function)) { // function or property static if (functionAttributes!ti & FunctionAttribute.property) { // property return isReadWriteProprety!(T, m); } else { // getter function // should have corresponding setter static if (isValidGetter!(T,m)) { // if any field with matching name is found, only one of them may have annotation immutable bool annotatedField = hasPublicFieldWithAnnotation!(T, getterNameToFieldName(m)) || hasPublicFieldWithAnnotation!(T, "_" ~ getterNameToFieldName(m)); static assert(!annotatedField || !thisMemberHasAnnotation, "Both getter and corresponding field have annotations. Annotate only one of them."); return !annotatedField; } else { // non-conventional name for getter or no setter return false; } } } else { // field //capitalizeFieldName immutable string gname = capitalizeFieldName(m); immutable bool hasAnnotadedGetter = isValidGetterWithAnnotation!(T, "get" ~ gname) || isValidGetterWithAnnotation!(T, "is" ~ gname); immutable bool hasGetter = isValidGetter!(T, "get" ~ gname) || isValidGetter!(T, "is" ~ gname); static assert (!thisMemberHasAnnotation || !hasAnnotadedGetter, "Both getter and corresponding field have annotations. Annotate only one of them."); return !hasAnnotadedGetter && (thisMemberHasAnnotation || !hasGetter); } return false; } else { // member is not public return false; } } /// member is field or function or property returing SomeClass[] or LazyCollection!SomeClass template isCollectionMember(T : Object, string m) { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { static if (is(ReturnType!(typeof(__traits(getMember, T, m))) x == LazyCollection!Args, Args...)) enum bool isCollectionMember = true; else { //pragma(msg, typeof(__traits(getMember, T, m).init[0])); alias ReturnType!ti rti; static if (isArray!rti && isImplicitlyConvertible!(typeof(rti.init[0]), Object)) enum bool isCollectionMember = true; else enum bool isCollectionMember = false; } } else { static if (is(typeof(__traits(getMember, T, m)) x == LazyCollection!Args, Args...)) enum bool isCollectionMember = true; else { //pragma(msg, typeof(__traits(getMember, T, m).init[0])); static if (isArray!(ti) && isImplicitlyConvertible!(typeof(__traits(getMember, T, m).init[0]), Object)) enum bool isCollectionMember = true; else enum bool isCollectionMember = false; } } } unittest { class Foo { bool dummy; } struct Bar { bool dummy; } class MemberTest { bool simple; bool getSimple() { return simple; } int someInt; Long someLong; bool[] simples; bool[] getSimples() { return simples; } @property bool[] simpless() { return simples; } Foo foo; Foo getFoo() { return foo; } @property Foo fooo() { return foo; } Foo[] foos; Foo[] getFoos() { return foos; } @property Foo[] fooos() { return foos; } LazyCollection!Foo lfoos; ref LazyCollection!Foo lgetFoos() { return lfoos; } @property ref LazyCollection!Foo lfooos() { return lfoos; } } static assert(getColumnName!(MemberTest, "simple") == "simple"); static assert(getColumnName!(MemberTest, "getSimple") == "simple"); static assert(isObject!Foo); static assert(!isObject!Bar); static assert(!isObjectMember!(MemberTest, "simple")); static assert(!isObjectMember!(MemberTest, "simples")); static assert(!isObjectMember!(MemberTest, "getSimples")); static assert(!isObjectMember!(MemberTest, "simpless")); static assert(!isCollectionMember!(MemberTest, "simples")); static assert(!isCollectionMember!(MemberTest, "getSimples")); static assert(!isCollectionMember!(MemberTest, "simpless")); static assert(isObjectMember!(MemberTest, "foo")); static assert(isObjectMember!(MemberTest, "getFoo")); static assert(isObjectMember!(MemberTest, "fooo")); static assert(!isCollectionMember!(MemberTest, "simple")); static assert(!isCollectionMember!(MemberTest, "foo")); static assert(!isCollectionMember!(MemberTest, "getFoo")); static assert(!isCollectionMember!(MemberTest, "fooo")); static assert(isCollectionMember!(MemberTest, "foos")); static assert(isCollectionMember!(MemberTest, "getFoos")); static assert(isCollectionMember!(MemberTest, "fooos")); static assert(isCollectionMember!(MemberTest, "lfoos")); static assert(isCollectionMember!(MemberTest, "lgetFoos")); static assert(isCollectionMember!(MemberTest, "lfooos")); static assert(!isSupportedSimpleType!(MemberTest, "simple")); // bool not supported so far static assert(!isSupportedSimpleType!(MemberTest, "foo")); static assert(isSupportedSimpleType!(MemberTest, "someInt")); static assert(isSupportedSimpleType!(MemberTest, "someLong")); } template getLazyInstanceType(T) { static if (is(T x == Lazy!Args, Args...)) alias Args[0] getLazyInstanceType; else { static assert(false, "Not a Lazy! instance"); } } template getLazyCollectionInstanceType(T) { static if (is(T x == LazyCollection!Args, Args...)) alias Args[0] getLazyInstanceType; else { static assert(false, "Not a LazyCollection! instance"); } } template getReferencedInstanceType(T) { //pragma(msg, T.stringof); static if (is(T == delegate)) { //pragma(msg, "is delegate"); static if (isImplicitlyConvertible!(ReturnType!(T), Object)) { alias ReturnType!(T) getReferencedInstanceType; } else static assert(false, "@OneToOne, @ManyToOne, @OneToMany, @ManyToMany property can be only class or Lazy!class"); } else static if (is(T == function)) { //pragma(msg, "is function"); static if (isImplicitlyConvertible!(ReturnType!(T), Object)) { alias ReturnType!(T) getReferencedInstanceType; } else { static if (is(ReturnType!(T) x == Lazy!Args, Args...)) alias Args[0] getReferencedInstanceType; else static assert(false, "Type cannot be used as relation " ~ T.stringof); } } else { //pragma(msg, "is not function"); static if (is(T x == LazyCollection!Args, Args...)) { alias Args[0] getReferencedInstanceType; } else { static if (is(T x == Lazy!Args, Args...)) { alias Args[0] getReferencedInstanceType; } else { static if (isArray!(T)) { static if (isImplicitlyConvertible!(typeof(T.init[0]), Object)) { //pragma(msg, "isImplicitlyConvertible!(T, Object)"); alias typeof(T.init[0]) getReferencedInstanceType; } else { static assert(false, "Type cannot be used as relation " ~ T.stringof); } } else static if (isImplicitlyConvertible!(T, Object)) { //pragma(msg, "isImplicitlyConvertible!(T, Object)"); alias T getReferencedInstanceType; } else static if (isImplicitlyConvertible!(T, Object[])) { //pragma(msg, "isImplicitlyConvertible!(T, Object)"); alias T getReferencedInstanceType; } else { static assert(false, "Type cannot be used as relation " ~ T.stringof); } } } } } string getPropertyReferencedEntityName(T : Object, string m)() { alias typeof(__traits(getMember, T, m)) ti; return getEntityName!(getReferencedInstanceType!ti); } string getPropertyEmbeddedClassName(T : Object, string m)() { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { static if (isImplicitlyConvertible!(ReturnType!(ti), Object)) { static assert(hasAnnotation!(ReturnType!(ti), Embeddable), "@Embedded property class should have @Embeddable annotation"); return fullyQualifiedName!(ReturnType!(ti)); } else static assert(false, "@Embedded property can be only class with @Embeddable annotation"); } else { static if (isImplicitlyConvertible!(ti, Object)) { static assert(hasAnnotation!(ti, Embeddable), "@Embedded property class should have @Embeddable annotation"); return fullyQualifiedName!ti; } else static assert(false, "@Embedded property can be only class with @Embeddable annotation"); } } string getPropertyReferencedClassName(T : Object, string m)() { alias typeof(__traits(getMember, T, m)) ti; return fullyQualifiedName!(getReferencedInstanceType!ti); } enum PropertyMemberType : int { BYTE_TYPE, // byte SHORT_TYPE, // short INT_TYPE, // int LONG_TYPE, // long UBYTE_TYPE, // ubyte USHORT_TYPE, // ushort UINT_TYPE, // uint ULONG_TYPE, // ulong NULLABLE_BYTE_TYPE, // Nullable!byte NULLABLE_SHORT_TYPE, // Nullable!short NULLABLE_INT_TYPE, // Nullable!int NULLABLE_LONG_TYPE, // Nullable!long NULLABLE_UBYTE_TYPE, // Nullable!ubyte NULLABLE_USHORT_TYPE,// Nullable!ushort NULLABLE_UINT_TYPE, // Nullable!uint NULLABLE_ULONG_TYPE, // Nullable!ulong FLOAT_TYPE, // float DOUBLE_TYPE, // double NULLABLE_FLOAT_TYPE, // Nullable!float NULLABLE_DOUBLE_TYPE,// Nullable!double STRING_TYPE, // string NULLABLE_STRING_TYPE, // nullable string - String struct DATETIME_TYPE, // std.datetime.DateTime DATE_TYPE, // std.datetime.Date TIME_TYPE, // std.datetime.TimeOfDay NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay BYTE_ARRAY_TYPE, // byte[] UBYTE_ARRAY_TYPE, // ubyte[] } template isSupportedSimpleType(T, string m) { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { static if (is(ReturnType!(ti) == byte)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == short)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == int)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == long)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == ubyte)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == ushort)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == uint)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == ulong)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == float)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == double)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!byte)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!short)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!int)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!long)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!ubyte)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!ushort)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!uint)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!ulong)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!float)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!double)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == string)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == String)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == DateTime)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Date)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == TimeOfDay)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!DateTime)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!Date)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == Nullable!TimeOfDay)) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == byte[])) { enum bool isSupportedSimpleType = true; } else static if (is(ReturnType!(ti) == ubyte[])) { enum bool isSupportedSimpleType = true; } else { enum bool isSupportedSimpleType = false; } } else static if (is(ti == byte)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == short)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == int)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == long)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == ubyte)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == ushort)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == uint)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == ulong)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == float)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == double)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!byte)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!short)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!int)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!long)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!ubyte)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!ushort)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!uint)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!ulong)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!float)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!double)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == string)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == String)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == DateTime)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Date)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == TimeOfDay)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!DateTime)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!Date)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == Nullable!TimeOfDay)) { enum bool isSupportedSimpleType = true; } else static if (is(ti == byte[])) { enum bool isSupportedSimpleType = true; } else static if (is(ti == ubyte[])) { enum bool isSupportedSimpleType = true; } else { enum bool isSupportedSimpleType = false; } } PropertyMemberType getPropertyMemberType(T, string m)() { alias typeof(__traits(getMember, T, m)) ti; static if (is(ti == function)) { static if (is(ReturnType!(ti) == byte)) { return PropertyMemberType.BYTE_TYPE; } else if (is(ReturnType!(ti) == short)) { return PropertyMemberType.SHORT_TYPE; } else if (is(ReturnType!(ti) == int)) { return PropertyMemberType.INT_TYPE; } else if (is(ReturnType!(ti) == long)) { return PropertyMemberType.LONG_TYPE; } else if (is(ReturnType!(ti) == ubyte)) { return PropertyMemberType.UBYTE_TYPE; } else if (is(ReturnType!(ti) == ushort)) { return PropertyMemberType.USHORT_TYPE; } else if (is(ReturnType!(ti) == uint)) { return PropertyMemberType.UINT_TYPE; } else if (is(ReturnType!(ti) == ulong)) { return PropertyMemberType.ULONG_TYPE; } else if (is(ReturnType!(ti) == float)) { return PropertyMemberType.FLOAT_TYPE; } else if (is(ReturnType!(ti) == double)) { return PropertyMemberType.DOUBLE_TYPE; } else if (is(ReturnType!(ti) == Nullable!byte)) { return PropertyMemberType.NULLABLE_BYTE_TYPE; } else if (is(ReturnType!(ti) == Nullable!short)) { return PropertyMemberType.NULLABLE_SHORT_TYPE; } else if (is(ReturnType!(ti) == Nullable!int)) { return PropertyMemberType.NULLABLE_INT_TYPE; } else if (is(ReturnType!(ti) == Nullable!long)) { return PropertyMemberType.NULLABLE_LONG_TYPE; } else if (is(ReturnType!(ti) == Nullable!ubyte)) { return PropertyMemberType.NULLABLE_UBYTE_TYPE; } else if (is(ReturnType!(ti) == Nullable!ushort)) { return PropertyMemberType.NULLABLE_USHORT_TYPE; } else if (is(ReturnType!(ti) == Nullable!uint)) { return PropertyMemberType.NULLABLE_UINT_TYPE; } else if (is(ReturnType!(ti) == Nullable!ulong)) { return PropertyMemberType.NULLABLE_ULONG_TYPE; } else if (is(ReturnType!(ti) == Nullable!float)) { return PropertyMemberType.NULLABLE_FLOAT_TYPE; } else if (is(ReturnType!(ti) == Nullable!double)) { return PropertyMemberType.NULLABLE_DOUBLE_TYPE; } else if (is(ReturnType!(ti) == string)) { return PropertyMemberType.STRING_TYPE; } else if (is(ReturnType!(ti) == String)) { return PropertyMemberType.NULLABLE_STRING_TYPE; } else if (is(ReturnType!(ti) == DateTime)) { return PropertyMemberType.DATETIME_TYPE; } else if (is(ReturnType!(ti) == Date)) { return PropertyMemberType.DATE_TYPE; } else if (is(ReturnType!(ti) == TimeOfDay)) { return PropertyMemberType.TIME_TYPE; } else if (is(ReturnType!(ti) == Nullable!DateTime)) { return PropertyMemberType.NULLABLE_DATETIME_TYPE; } else if (is(ReturnType!(ti) == Nullable!Date)) { return PropertyMemberType.NULLABLE_DATE_TYPE; } else if (is(ReturnType!(ti) == Nullable!TimeOfDay)) { return PropertyMemberType.NULLABLE_TIME_TYPE; } else if (is(ReturnType!(ti) == byte[])) { return PropertyMemberType.BYTE_ARRAY_TYPE; } else if (is(ReturnType!(ti) == ubyte[])) { return PropertyMemberType.UBYTE_ARRAY_TYPE; } else { assert (false, "Member " ~ m ~ " of class " ~ T.stringof ~ " has unsupported type " ~ ti.stringof); } } else if (is(ti == byte)) { return PropertyMemberType.BYTE_TYPE; } else if (is(ti == short)) { return PropertyMemberType.SHORT_TYPE; } else if (is(ti == int)) { return PropertyMemberType.INT_TYPE; } else if (is(ti == long)) { return PropertyMemberType.LONG_TYPE; } else if (is(ti == ubyte)) { return PropertyMemberType.UBYTE_TYPE; } else if (is(ti == ushort)) { return PropertyMemberType.USHORT_TYPE; } else if (is(ti == uint)) { return PropertyMemberType.UINT_TYPE; } else if (is(ti == ulong)) { return PropertyMemberType.ULONG_TYPE; } else if (is(ti == float)) { return PropertyMemberType.FLOAT_TYPE; } else if (is(ti == double)) { return PropertyMemberType.DOUBLE_TYPE; } else if (is(ti == Nullable!byte)) { return PropertyMemberType.NULLABLE_BYTE_TYPE; } else if (is(ti == Nullable!short)) { return PropertyMemberType.NULLABLE_SHORT_TYPE; } else if (is(ti == Nullable!int)) { return PropertyMemberType.NULLABLE_INT_TYPE; } else if (is(ti == Nullable!long)) { return PropertyMemberType.NULLABLE_LONG_TYPE; } else if (is(ti == Nullable!ubyte)) { return PropertyMemberType.NULLABLE_UBYTE_TYPE; } else if (is(ti == Nullable!ushort)) { return PropertyMemberType.NULLABLE_USHORT_TYPE; } else if (is(ti == Nullable!uint)) { return PropertyMemberType.NULLABLE_UINT_TYPE; } else if (is(ti == Nullable!ulong)) { return PropertyMemberType.NULLABLE_ULONG_TYPE; } else if (is(ti == Nullable!float)) { return PropertyMemberType.NULLABLE_FLOAT_TYPE; } else if (is(ti == Nullable!double)) { return PropertyMemberType.NULLABLE_DOUBLE_TYPE; } else if (is(ti == string)) { return PropertyMemberType.STRING_TYPE; } else if (is(ti == String)) { return PropertyMemberType.NULLABLE_STRING_TYPE; } else if (is(ti == DateTime)) { return PropertyMemberType.DATETIME_TYPE; } else if (is(ti == Date)) { return PropertyMemberType.DATE_TYPE; } else if (is(ti == TimeOfDay)) { return PropertyMemberType.TIME_TYPE; } else if (is(ti == Nullable!DateTime)) { return PropertyMemberType.NULLABLE_DATETIME_TYPE; } else if (is(ti == Nullable!Date)) { return PropertyMemberType.NULLABLE_DATE_TYPE; } else if (is(ti == Nullable!TimeOfDay)) { return PropertyMemberType.NULLABLE_TIME_TYPE; } else if (is(ti == byte[])) { return PropertyMemberType.BYTE_ARRAY_TYPE; } else if (is(ti == ubyte[])) { return PropertyMemberType.UBYTE_ARRAY_TYPE; } else { assert (false, "Member " ~ m ~ " of class " ~ T.stringof ~ " has unsupported type " ~ ti.stringof); } //static assert (false, "Member " ~ m ~ " of class " ~ T.stringof ~ " has unsupported type " ~ ti.stringof); } string getPropertyReadCode(T, string m)() { return substituteParam(PropertyMemberKind_ReadCode[getPropertyMemberKind!(T,m)()], m); } static immutable bool[] ColumnTypeCanHoldNulls = [ false, //BYTE_TYPE, // byte false, //SHORT_TYPE, // short false, //INT_TYPE, // int false, //LONG_TYPE, // long false, //UBYTE_TYPE, // ubyte false, //USHORT_TYPE, // ushort false, //UINT_TYPE, // uint false, //ULONG_TYPE, // ulong true, //NULLABLE_BYTE_TYPE, // Nullable!byte true, //NULLABLE_SHORT_TYPE, // Nullable!short true, //NULLABLE_INT_TYPE, // Nullable!int true, //NULLABLE_LONG_TYPE, // Nullable!long true, //NULLABLE_UBYTE_TYPE, // Nullable!ubyte true, //NULLABLE_USHORT_TYPE,// Nullable!ushort true, //NULLABLE_UINT_TYPE, // Nullable!uint true, //NULLABLE_ULONG_TYPE, // Nullable!ulong false,//FLOAT_TYPE, // float false,//DOUBLE_TYPE, // double true, //NULLABLE_FLOAT_TYPE, // Nullable!float true, //NULLABLE_DOUBLE_TYPE,// Nullable!double false, //STRING_TYPE // string -- treat as @NotNull by default true, //NULLABLE_STRING_TYPE // String false, //DATETIME_TYPE, // std.datetime.DateTime false, //DATE_TYPE, // std.datetime.Date false, //TIME_TYPE, // std.datetime.TimeOfDay true, //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime true, //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date true, //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay true, //BYTE_ARRAY_TYPE, // byte[] true, //UBYTE_ARRAY_TYPE, // ubyte[] ]; bool isColumnTypeNullableByDefault(T, string m)() { return ColumnTypeCanHoldNulls[getPropertyMemberType!(T,m)]; } static immutable string[] ColumnTypeKeyIsSetCode = [ "(%s != 0)", //BYTE_TYPE, // byte "(%s != 0)", //SHORT_TYPE, // short "(%s != 0)", //INT_TYPE, // int "(%s != 0)", //LONG_TYPE, // long "(%s != 0)", //UBYTE_TYPE, // ubyte "(%s != 0)", //USHORT_TYPE, // ushort "(%s != 0)", //UINT_TYPE, // uint "(%s != 0)", //ULONG_TYPE, // ulong "(!%s.isNull)", //NULLABLE_BYTE_TYPE, // Nullable!byte "(!%s.isNull)", //NULLABLE_SHORT_TYPE, // Nullable!short "(!%s.isNull)", //NULLABLE_INT_TYPE, // Nullable!int "(!%s.isNull)", //NULLABLE_LONG_TYPE, // Nullable!long "(!%s.isNull)", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "(!%s.isNull)", //NULLABLE_USHORT_TYPE,// Nullable!ushort "(!%s.isNull)", //NULLABLE_UINT_TYPE, // Nullable!uint "(!%s.isNull)", //NULLABLE_ULONG_TYPE, // Nullable!ulong "(%s != 0)",//FLOAT_TYPE, // float "(%s != 0)",//DOUBLE_TYPE, // double "(!%s.isNull)", //NULLABLE_FLOAT_TYPE, // Nullable!float "(!%s.isNull)", //NULLABLE_DOUBLE_TYPE,// Nullable!double "(%s !is null)", //STRING_TYPE // string "(%s !is null)", //NULLABLE_STRING_TYPE // String "(%s != DateTime())", //DATETIME_TYPE, // std.datetime.DateTime "(%s != Date())", //DATE_TYPE, // std.datetime.Date "(%s != TimeOfDay())", //TIME_TYPE, // std.datetime.TimeOfDay "(!%s.isNull)", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "(!%s.isNull)", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "(!%s.isNull)", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "(%s !is null)", //BYTE_ARRAY_TYPE, // byte[] "(%s !is null)", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getColumnTypeKeyIsSetCode(T, string m)() { return substituteParam(ColumnTypeKeyIsSetCode[getPropertyMemberType!(T,m)()], getPropertyReadCode!(T,m)()); } static immutable string[] ColumnTypeIsNullCode = [ "(false)", //BYTE_TYPE, // byte "(false)", //SHORT_TYPE, // short "(false)", //INT_TYPE, // int "(false)", //LONG_TYPE, // long "(false)", //UBYTE_TYPE, // ubyte "(false)", //USHORT_TYPE, // ushort "(false)", //UINT_TYPE, // uint "(false)", //ULONG_TYPE, // ulong "(%s.isNull)", //NULLABLE_BYTE_TYPE, // Nullable!byte "(%s.isNull)", //NULLABLE_SHORT_TYPE, // Nullable!short "(%s.isNull)", //NULLABLE_INT_TYPE, // Nullable!int "(%s.isNull)", //NULLABLE_LONG_TYPE, // Nullable!long "(%s.isNull)", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "(%s.isNull)", //NULLABLE_USHORT_TYPE,// Nullable!ushort "(%s.isNull)", //NULLABLE_UINT_TYPE, // Nullable!uint "(%s.isNull)", //NULLABLE_ULONG_TYPE, // Nullable!ulong "(false)",//FLOAT_TYPE, // float "(false)",//DOUBLE_TYPE, // double "(%s.isNull)", //NULLABLE_FLOAT_TYPE, // Nullable!float "(%s.isNull)", //NULLABLE_DOUBLE_TYPE,// Nullable!double "(%s is null)", //STRING_TYPE // string "(%s is null)", //NULLABLE_STRING_TYPE // String "(false)", //DATETIME_TYPE, // std.datetime.DateTime "(false)", //DATE_TYPE, // std.datetime.Date "(false)", //TIME_TYPE, // std.datetime.TimeOfDay "(%s.isNull)", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "(%s.isNull)", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "(%s.isNull)", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "(%s is null)", //BYTE_ARRAY_TYPE, // byte[] "(%s is null)", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getColumnTypeIsNullCode(T, string m)() { return substituteParam(ColumnTypeIsNullCode[getPropertyMemberType!(T,m)()], getPropertyReadCode!(T,m)()); } static immutable string[] ColumnTypeSetNullCode = [ "byte nv = 0;", //BYTE_TYPE, // byte "short nv = 0;", //SHORT_TYPE, // short "int nv = 0;", //INT_TYPE, // int "long nv = 0;", //LONG_TYPE, // long "ubyte nv = 0;", //UBYTE_TYPE, // ubyte "ushort nv = 0;", //USHORT_TYPE, // ushort "uint nv = 0;", //UINT_TYPE, // uint "ulong nv = 0;", //ULONG_TYPE, // ulong "Nullable!byte nv;", //NULLABLE_BYTE_TYPE, // Nullable!byte "Nullable!short nv;", //NULLABLE_SHORT_TYPE, // Nullable!short "Nullable!int nv;", //NULLABLE_INT_TYPE, // Nullable!int "Nullable!long nv;", //NULLABLE_LONG_TYPE, // Nullable!long "Nullable!ubyte nv;", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "Nullable!ushort nv;", //NULLABLE_USHORT_TYPE,// Nullable!ushort "Nullable!uint nv;", //NULLABLE_UINT_TYPE, // Nullable!uint "Nullable!ulong nv;", //NULLABLE_ULONG_TYPE, // Nullable!ulong "float nv = 0;",//FLOAT_TYPE, // float "double nv = 0;",//DOUBLE_TYPE, // double "Nullable!float nv;", //NULLABLE_FLOAT_TYPE, // Nullable!float "Nullable!double nv;", //NULLABLE_DOUBLE_TYPE,// Nullable!double "string nv;", //STRING_TYPE // string "string nv;", //NULLABLE_STRING_TYPE // String "DateTime nv;", //DATETIME_TYPE, // std.datetime.DateTime "Date nv;", //DATE_TYPE, // std.datetime.Date "TimeOfDay nv;", //TIME_TYPE, // std.datetime.TimeOfDay "Nullable!DateTime nv;", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "Nullable!Date nv;", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "Nullable!TimeOfDay nv;", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "byte[] nv = null;", //BYTE_ARRAY_TYPE, // byte[] "ubyte[] nv = null;", //UBYTE_ARRAY_TYPE, // ubyte[] ]; static immutable string[] ColumnTypePropertyToVariant = [ "Variant(%s)", //BYTE_TYPE, // byte "Variant(%s)", //SHORT_TYPE, // short "Variant(%s)", //INT_TYPE, // int "Variant(%s)", //LONG_TYPE, // long "Variant(%s)", //UBYTE_TYPE, // ubyte "Variant(%s)", //USHORT_TYPE, // ushort "Variant(%s)", //UINT_TYPE, // uint "Variant(%s)", //ULONG_TYPE, // ulong "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_BYTE_TYPE, // Nullable!byte "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_SHORT_TYPE, // Nullable!short "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_INT_TYPE, // Nullable!int "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_LONG_TYPE, // Nullable!long "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_USHORT_TYPE,// Nullable!ushort "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_UINT_TYPE, // Nullable!uint "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_ULONG_TYPE, // Nullable!ulong "Variant(%s)",//FLOAT_TYPE, // float "Variant(%s)",//DOUBLE_TYPE, // double "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_FLOAT_TYPE, // Nullable!float "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_DOUBLE_TYPE,// Nullable!double "Variant(%s)", //STRING_TYPE // string "Variant(%s)", //NULLABLE_STRING_TYPE // String "Variant(%s)", //DATETIME_TYPE, // std.datetime.DateTime "Variant(%s)", //DATE_TYPE, // std.datetime.Date "Variant(%s)", //TIME_TYPE, // std.datetime.TimeOfDay "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "(%s.isNull ? Variant(null) : Variant(%s.get()))", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "Variant(%s)", //BYTE_ARRAY_TYPE, // byte[] "Variant(%s)", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getPropertyWriteCode(T, string m)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); immutable string nullValueCode = ColumnTypeSetNullCode[getPropertyMemberType!(T,m)()]; immutable string datasetReader = "(!r.isNull(index) ? " ~ getColumnTypeDatasetReadCode!(T, m)() ~ " : nv)"; final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return nullValueCode ~ "entity." ~ m ~ " = " ~ datasetReader ~ ";"; case PropertyMemberKind.LAZY_MEMBER: return nullValueCode ~ "entity." ~ m ~ " = " ~ datasetReader ~ ";"; case PropertyMemberKind.GETTER_MEMBER: return nullValueCode ~ "entity." ~ getterNameToSetterName(m) ~ "(" ~ datasetReader ~ ");"; case PropertyMemberKind.PROPERTY_MEMBER: return nullValueCode ~ "entity." ~ m ~ " = " ~ datasetReader ~ ";"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m ~ " " ~ typeof(__traits(getMember, T, m)).stringof); } } string getPropertyCopyCode(T, string m)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "toentity." ~ m ~ " = fromentity." ~ m ~ ";"; case PropertyMemberKind.LAZY_MEMBER: return "toentity." ~ m ~ " = fromentity." ~ m ~ "();"; case PropertyMemberKind.GETTER_MEMBER: return "toentity." ~ getterNameToSetterName(m) ~ "(fromentity." ~ m ~ "());"; case PropertyMemberKind.PROPERTY_MEMBER: return "toentity." ~ m ~ " = fromentity." ~ m ~ ";"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getPropertyVariantWriteCode(T, string m)() { immutable memberType = getPropertyMemberType!(T,m)(); immutable string nullValueCode = ColumnTypeSetNullCode[memberType]; immutable string variantReadCode = ColumnTypeVariantReadCode[memberType]; static if (getPropertyMemberKind!(T, m)() == PropertyMemberKind.GETTER_MEMBER) { return nullValueCode ~ "entity." ~ getterNameToSetterName(m) ~ "(" ~ variantReadCode ~ ");"; } else { return nullValueCode ~ "entity." ~ m ~ " = " ~ variantReadCode ~ ";"; } } string getPropertyVariantReadCode(T, string m)() { immutable memberType = getPropertyMemberType!(T,m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m)(); return substituteParamTwice(ColumnTypePropertyToVariant[memberType], propertyReadCode); } static immutable string[] ColumnTypeConstructorCode = [ "new NumberType(2, false, SqlType.TINYINT)", //BYTE_TYPE, // byte "new NumberType(4, false, SqlType.SMALLINT)", //SHORT_TYPE, // short "new NumberType(9, false, SqlType.INTEGER)", //INT_TYPE, // int "new NumberType(20, false, SqlType.BIGINT)", //LONG_TYPE, // long "new NumberType(2, true, SqlType.TINYINT)", //UBYTE_TYPE, // ubyte "new NumberType(4, true, SqlType.SMALLINT)", //USHORT_TYPE, // ushort "new NumberType(9, true, SqlType.INTEGER)", //UINT_TYPE, // uint "new NumberType(20, true, SqlType.BIGINT)", //ULONG_TYPE, // ulong "new NumberType(2, false, SqlType.TINYINT)", //NULLABLE_BYTE_TYPE, // Nullable!byte "new NumberType(4, false, SqlType.SMALLINT)", //NULLABLE_SHORT_TYPE, // Nullable!short "new NumberType(9, false, SqlType.INTEGER)", //NULLABLE_INT_TYPE, // Nullable!int "new NumberType(20, false, SqlType.BIGINT)", //NULLABLE_LONG_TYPE, // Nullable!long "new NumberType(2, true, SqlType.TINYINT)", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "new NumberType(4, true, SqlType.SMALLINT)", //NULLABLE_USHORT_TYPE,// Nullable!ushort "new NumberType(9, true, SqlType.INTEGER)", //NULLABLE_UINT_TYPE, // Nullable!uint "new NumberType(20, true, SqlType.BIGINT)", //NULLABLE_ULONG_TYPE, // Nullable!ulong "new NumberType(7, false, SqlType.FLOAT)",//FLOAT_TYPE, // float "new NumberType(14, false, SqlType.DOUBLE)",//DOUBLE_TYPE, // double "new NumberType(7, false, SqlType.FLOAT)", //NULLABLE_FLOAT_TYPE, // Nullable!float "new NumberType(14, false, SqlType.DOUBLE)", //NULLABLE_DOUBLE_TYPE,// Nullable!double "new StringType()", //STRING_TYPE // string "new StringType()", //NULLABLE_STRING_TYPE // String "new DateTimeType()", //DATETIME_TYPE, // std.datetime.DateTime "new DateType()", //DATE_TYPE, // std.datetime.Date "new TimeType()", //TIME_TYPE, // std.datetime.TimeOfDay "new DateTimeType()", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "new DateType()", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "new TimeType()", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "new ByteArrayBlobType()", //BYTE_ARRAY_TYPE, // byte[] "new UbyteArrayBlobType()", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getColumnTypeName(T, string m, int length)() { immutable PropertyMemberType mt = getPropertyMemberType!(T,m); static if (mt == PropertyMemberType.STRING_TYPE || mt == PropertyMemberType.NULLABLE_STRING_TYPE) { return "new StringType(" ~ to!string(length) ~ ")"; } else { return ColumnTypeConstructorCode[mt]; } } static immutable string[] ColumnTypeDatasetReaderCode = [ "r.getByte(index)", //BYTE_TYPE, // byte "r.getShort(index)", //SHORT_TYPE, // short "r.getInt(index)", //INT_TYPE, // int "r.getLong(index)", //LONG_TYPE, // long "r.getUbyte(index)", //UBYTE_TYPE, // ubyte "r.getUshort(index)", //USHORT_TYPE, // ushort "r.getUint(index)", //UINT_TYPE, // uint "r.getUlong(index)", //ULONG_TYPE, // ulong "Nullable!byte(r.getByte(index))", //NULLABLE_BYTE_TYPE, // Nullable!byte "Nullable!short(r.getShort(index))", //NULLABLE_SHORT_TYPE, // Nullable!short "Nullable!int(r.getInt(index))", //NULLABLE_INT_TYPE, // Nullable!int "Nullable!long(r.getLong(index))", //NULLABLE_LONG_TYPE, // Nullable!long "Nullable!ubyte(r.getUbyte(index))", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "Nullable!ushort(r.getUshort(index))", //NULLABLE_USHORT_TYPE,// Nullable!ushort "Nullable!uint(r.getUint(index))", //NULLABLE_UINT_TYPE, // Nullable!uint "Nullable!ulong(r.getUlong(index))", //NULLABLE_ULONG_TYPE, // Nullable!ulong "r.getFloat(index)",//FLOAT_TYPE, // float "r.getDouble(index)",//DOUBLE_TYPE, // double "Nullable!float(r.getFloat(index))", //NULLABLE_FLOAT_TYPE, // Nullable!float "Nullable!double(r.getDouble(index))", //NULLABLE_DOUBLE_TYPE,// Nullable!double "r.getString(index)", //STRING_TYPE // string "r.getString(index)", //NULLABLE_STRING_TYPE // String "r.getDateTime(index)", //DATETIME_TYPE, // std.datetime.DateTime "r.getDate(index)", //DATE_TYPE, // std.datetime.Date "r.getTime(index)", //TIME_TYPE, // std.datetime.TimeOfDay "Nullable!DateTime(r.getDateTime(index))", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "Nullable!Date(r.getDate(index))", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "Nullable!TimeOfDay(r.getTime(index))", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "r.getBytes(index)", //BYTE_ARRAY_TYPE, // byte[] "r.getUbytes(index)", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getColumnTypeDatasetReadCode(T, string m)() { return ColumnTypeDatasetReaderCode[getPropertyMemberType!(T,m)()]; } static immutable string[] ColumnTypeVariantReadCode = [ "(value == null ? nv : (value.convertsTo!(byte) ? value.get!(byte) : (value.convertsTo!(long) ? to!byte(value.get!(long)) : to!byte((value.get!(ulong))))))", //BYTE_TYPE, // byte "(value == null ? nv : (value.convertsTo!(short) ? value.get!(short) : (value.convertsTo!(long) ? to!short(value.get!(long)) : to!short((value.get!(ulong))))))", //SHORT_TYPE, // short "(value == null ? nv : (value.convertsTo!(int) ? value.get!(int) : (value.convertsTo!(long) ? to!int(value.get!(long)) : to!int((value.get!(ulong))))))", //INT_TYPE, // int "(value == null ? nv : (value.convertsTo!(long) ? value.get!(long) : to!long(value.get!(ulong))))", //LONG_TYPE, // long "(value == null ? nv : (value.convertsTo!(ubyte) ? value.get!(ubyte) : (value.convertsTo!(ulong) ? to!ubyte(value.get!(ulong)) : to!ubyte((value.get!(long))))))", //UBYTE_TYPE, // ubyte "(value == null ? nv : (value.convertsTo!(ushort) ? value.get!(ushort) : (value.convertsTo!(ulong) ? to!ushort(value.get!(ulong)) : to!ushort((value.get!(long))))))", //USHORT_TYPE, // ushort "(value == null ? nv : (value.convertsTo!(uint) ? value.get!(uint) : (value.convertsTo!(ulong) ? to!uint(value.get!(ulong)) : to!uint((value.get!(long))))))", //UINT_TYPE, // uint "(value == null ? nv : (value.convertsTo!(ulong) ? value.get!(ulong) : to!ulong(value.get!(long))))", //ULONG_TYPE, // ulong "(value == null ? nv : (value.convertsTo!(byte) ? value.get!(byte) : (value.convertsTo!(long) ? to!byte(value.get!(long)) : to!byte((value.get!(ulong))))))", //NULLABLE_BYTE_TYPE, // Nullable!byte "(value == null ? nv : (value.convertsTo!(short) ? value.get!(short) : (value.convertsTo!(long) ? to!short(value.get!(long)) : to!short((value.get!(ulong))))))", //NULLABLE_SHORT_TYPE, // Nullable!short "(value == null ? nv : (value.convertsTo!(int) ? value.get!(int) : (value.convertsTo!(long) ? to!int(value.get!(long)) : to!int((value.get!(ulong))))))", //NULLABLE_INT_TYPE, // Nullable!int "(value == null ? nv : (value.convertsTo!(long) ? value.get!(long) : to!long(value.get!(ulong))))", //NULLABLE_LONG_TYPE, // Nullable!long "(value == null ? nv : (value.convertsTo!(ubyte) ? value.get!(ubyte) : (value.convertsTo!(ulong) ? to!ubyte(value.get!(ulong)) : to!ubyte((value.get!(long))))))", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "(value == null ? nv : (value.convertsTo!(ushort) ? value.get!(ushort) : (value.convertsTo!(ulong) ? to!ushort(value.get!(ulong)) : to!ushort((value.get!(long))))))", //NULLABLE_USHORT_TYPE,// Nullable!ushort "(value == null ? nv : (value.convertsTo!(uint) ? value.get!(uint) : (value.convertsTo!(ulong) ? to!uint(value.get!(ulong)) : to!uint((value.get!(long))))))", //NULLABLE_UINT_TYPE, // Nullable!uint "(value == null ? nv : (value.convertsTo!(ulong) ? value.get!(ulong) : to!ulong(value.get!(long))))", //NULLABLE_ULONG_TYPE, // Nullable!ulong "(value == null ? nv : (value.convertsTo!(float) ? value.get!(float) : to!float(value.get!(double))))",//FLOAT_TYPE, // float "(value == null ? nv : (value.convertsTo!(double) ? value.get!(double) : to!double(value.get!(double))))",//DOUBLE_TYPE, // double "(value == null ? nv : (value.convertsTo!(float) ? value.get!(float) : to!float(value.get!(double))))", //NULLABLE_FLOAT_TYPE, // Nullable!float "(value == null ? nv : (value.convertsTo!(double) ? value.get!(double) : to!double(value.get!(double))))", //NULLABLE_DOUBLE_TYPE,// Nullable!double "(value == null ? nv : value.get!(string))", //STRING_TYPE // string "(value == null ? nv : value.get!(string))", //NULLABLE_STRING_TYPE // String "(value == null ? nv : value.get!(DateTime))", //DATETIME_TYPE, // std.datetime.DateTime "(value == null ? nv : value.get!(Date))", //DATE_TYPE, // std.datetime.Date "(value == null ? nv : value.get!(TimeOfDay))", //TIME_TYPE, // std.datetime.TimeOfDay "(value == null ? nv : value.get!(DateTime))", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "(value == null ? nv : value.get!(Date))", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "(value == null ? nv : value.get!(TimeOfDay))", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "(value == null ? nv : value.get!(byte[]))", //BYTE_ARRAY_TYPE, // byte[] "(value == null ? nv : value.get!(ubyte[]))", //UBYTE_ARRAY_TYPE, // ubyte[] ]; static immutable string[] DatasetWriteCode = [ "r.setByte(index, %s);", //BYTE_TYPE, // byte "r.setShort(index, %s);", //SHORT_TYPE, // short "r.setInt(index, %s);", //INT_TYPE, // int "r.setLong(index, %s);", //LONG_TYPE, // long "r.setUbyte(index, %s);", //UBYTE_TYPE, // ubyte "r.setUshort(index, %s);", //USHORT_TYPE, // ushort "r.setUint(index, %s);", //UINT_TYPE, // uint "r.setUlong(index, %s);", //ULONG_TYPE, // ulong "r.setByte(index, %s);", //NULLABLE_BYTE_TYPE, // Nullable!byte "r.setShort(index, %s);", //NULLABLE_SHORT_TYPE, // Nullable!short "r.setInt(index, %s);", //NULLABLE_INT_TYPE, // Nullable!int "r.setLong(index, %s);", //NULLABLE_LONG_TYPE, // Nullable!long "r.setUbyte(index, %s);", //NULLABLE_UBYTE_TYPE, // Nullable!ubyte "r.setUshort(index, %s);", //NULLABLE_USHORT_TYPE,// Nullable!ushort "r.setUint(index, %s);", //NULLABLE_UINT_TYPE, // Nullable!uint "r.setUlong(index, %s);", //NULLABLE_ULONG_TYPE, // Nullable!ulong "r.setFloat(index, %s);",//FLOAT_TYPE, // float "r.setDouble(index, %s);",//DOUBLE_TYPE, // double "r.setFloat(index, %s);", //NULLABLE_FLOAT_TYPE, // Nullable!float "r.setDouble(index, %s);", //NULLABLE_DOUBLE_TYPE,// Nullable!double "r.setString(index, %s);", //STRING_TYPE // string "r.setString(index, %s);", //NULLABLE_STRING_TYPE // String "r.setDateTime(index, %s);", //DATETIME_TYPE, // std.datetime.DateTime "r.setDate(index, %s);", //DATE_TYPE, // std.datetime.Date "r.setTime(index, %s);", //TIME_TYPE, // std.datetime.TimeOfDay "r.setDateTime(index, %s);", //NULLABLE_DATETIME_TYPE, // Nullable!std.datetime.DateTime "r.setDate(index, %s);", //NULLABLE_DATE_TYPE, // Nullable!std.datetime.Date "r.setTime(index, %s);", //NULLABLE_TIME_TYPE, // Nullable!std.datetime.TimeOfDay "r.setBytes(index, %s);", //BYTE_ARRAY_TYPE, // byte[] "r.setUbytes(index, %s);", //UBYTE_ARRAY_TYPE, // ubyte[] ]; string getColumnTypeDatasetWriteCode(T, string m)() { alias typeof(__traits(getMember, T, m)) ti; immutable string isNullCode = getColumnTypeIsNullCode!(T,m)(); immutable string readCode = getPropertyReadCode!(T,m)(); immutable string setDataCode = DatasetWriteCode[getPropertyMemberType!(T,m)()]; return "if (" ~ isNullCode ~ ") r.setNull(index); else " ~ substituteParam(setDataCode, readCode); } string getEmbeddedPropertyVariantWriteCode(T, string m, string className)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "));"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ getterNameToSetterName(m) ~ "(value == null ? null : value.get!(" ~ className ~ "));"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "));"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "));"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getCollectionPropertyVariantWriteCode(T, string m, string className)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "[]));"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ getterNameToSetterName(m) ~ "(value == null ? null : value.get!(" ~ className ~ "[]));"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "[]));"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ " = (value == null ? null : value.get!(" ~ className ~ "[]));"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getPropertyObjectWriteCode(T, string m, string className)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ ")value;"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ getterNameToSetterName(m) ~ "(cast(" ~ className ~ ")value);"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ ")value;"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ ")value;"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getPropertyCollectionWriteCode(T, string m, string className)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ "[])value;"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ getterNameToSetterName(m) ~ "(cast(" ~ className ~ "[])value);"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ "[])value;"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ " = cast(" ~ className ~ "[])value;"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getLazyPropertyObjectWriteCode(T, string m)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ " = loader;"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ getterNameToSetterName(m) ~ "(loader);"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ " = loader;"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ " = loader;"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } string getLazyPropertyLoadedCode(T, string m)() { immutable PropertyMemberKind kind = getPropertyMemberKind!(T, m)(); final switch (kind) { case PropertyMemberKind.FIELD_MEMBER: return "entity." ~ m ~ ".loaded"; case PropertyMemberKind.GETTER_MEMBER: return "entity." ~ m ~ "().loaded"; case PropertyMemberKind.PROPERTY_MEMBER: return "entity." ~ m ~ ".loaded"; case PropertyMemberKind.LAZY_MEMBER: return "entity." ~ m ~ ".loaded"; case PropertyMemberKind.UNSUPPORTED_MEMBER: assert(false, "Unsupported member kind " ~ T.stringof ~ "." ~ m); } } // TODO: minimize duplication of code in getXXXtoXXXPropertyDef /// generate source code for creation of OneToOne definition string getOneToOnePropertyDef(T, immutable string m)() { immutable string referencedEntityName = getPropertyReferencedEntityName!(T,m); immutable string referencedClassName = getPropertyReferencedClassName!(T,m); immutable string referencedPropertyName = getOneToOneReferencedPropertyName!(T,m); immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, Column, Id, Generated, Generator, ManyToOne, ManyToMany), entityClassName ~ "." ~ propertyName ~ ": OneToOne property cannot have Column, Id, Generated, Generator, ManyToOne, ManyToMany annotation"); immutable bool isLazy = isLazyMember!(T,m); immutable string columnName = getJoinColumnName!(T, m); immutable length = getColumnLength!(T, m)(); immutable bool hasNull = hasMemberAnnotation!(T,m, Null); immutable bool hasNotNull = hasMemberAnnotation!(T,m, NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : true); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = "new EntityType(cast(immutable TypeInfo_Class)" ~ entityClassName ~ ".classinfo, \"" ~ entityClassName ~ "\")"; //getColumnTypeName!(T, m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m); immutable string datasetReadCode = null; //getColumnTypeDatasetReadCode!(T,m)(); immutable string propertyWriteCode = null; //getPropertyWriteCode!(T,m)(); immutable string datasetWriteCode = null; //getColumnTypeDatasetWriteCode!(T,m)(); immutable string propertyVariantSetCode = getEmbeddedPropertyVariantWriteCode!(T, m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyVariantGetCode = "Variant(" ~ propertyReadCode ~ " is null ? null : " ~ propertyReadCode ~ ")"; //getPropertyVariantReadCode!(T,m)(); immutable string propertyObjectSetCode = getPropertyObjectWriteCode!(T,m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyObjectGetCode = propertyReadCode; //getPropertyVariantReadCode!(T,m)(); immutable string keyIsSetCode = null; //getColumnTypeKeyIsSetCode!(T,m)(); immutable string isNullCode = propertyReadCode ~ " is null"; immutable string copyFieldCode = getPropertyCopyCode!(T,m); // pragma(msg, "property read: " ~ propertyReadCode); // pragma(msg, "property write: " ~ propertyWriteCode); // pragma(msg, "variant get: " ~ propertyVariantGetCode); immutable string readerFuncDef = "null"; immutable string writerFuncDef = "null"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " return false;\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string getObjectFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " assert(entity !is null);\n" ~ " return " ~ propertyObjectGetCode ~ "; \n" ~ " }\n"; immutable string setObjectFuncDef = "\n" ~ "function(Object obj, Object value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyObjectSetCode ~ "\n" ~ " }\n"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; immutable string getCollectionFuncDef = "null"; immutable string setCollectionFuncDef = "null"; immutable string setObjectDelegateFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj, Object delegate() loader) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ getLazyPropertyObjectWriteCode!(T,m) ~ "\n" ~ " }\n"; immutable string setCollectionDelegateFuncDef = "null"; immutable string isLoadedFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ getLazyPropertyLoadedCode!(T,m) ~ ";\n" ~ " }\n"; return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ "false, " ~ // id "false, " ~ // generated quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.OneToOne, " ~ quoteString(referencedEntityName) ~ ", " ~ quoteString(referencedPropertyName) ~ ", " ~ readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ "null, " ~ // generatorFunc getObjectFuncDef ~ ", " ~ setObjectFuncDef ~ ", " ~ getCollectionFuncDef ~ ", " ~ setCollectionFuncDef ~ ", " ~ setObjectDelegateFuncDef ~ ", " ~ setCollectionDelegateFuncDef ~ ", " ~ isLoadedFuncDef ~ ", " ~ quoteBool(isLazy) ~ ", " ~ // lazy "false" ~ // collection ")"; } /// generate source code for creation of ManyToOne definition string getManyToOnePropertyDef(T, immutable string m)() { immutable string referencedEntityName = getPropertyReferencedEntityName!(T,m); immutable string referencedClassName = getPropertyReferencedClassName!(T,m); immutable string referencedPropertyName = getOneToOneReferencedPropertyName!(T,m); immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, Column, Id, Generated, Generator, OneToOne, ManyToMany), entityClassName ~ "." ~ propertyName ~ ": ManyToOne property cannot have Column, Id, Generated, Generator, OneToOne, ManyToMany annotation"); immutable string columnName = applyDefault(getJoinColumnName!(T, m),camelCaseToUnderscoreDelimited(referencedEntityName) ~ "_fk"); static assert (columnName != null, "ManyToOne property " ~ m ~ " has no JoinColumn name"); immutable bool isLazy = isLazyMember!(T,m); immutable length = getColumnLength!(T, m); immutable bool hasNull = hasMemberAnnotation!(T,m, Null); immutable bool hasNotNull = hasMemberAnnotation!(T,m, NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : true); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = "new EntityType(cast(immutable TypeInfo_Class)" ~ entityClassName ~ ".classinfo, \"" ~ entityClassName ~ "\")"; //getColumnTypeName!(T, m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m)(); immutable string datasetReadCode = null; //getColumnTypeDatasetReadCode!(T,m)(); immutable string propertyWriteCode = null; //getPropertyWriteCode!(T,m)(); immutable string datasetWriteCode = null; //getColumnTypeDatasetWriteCode!(T,m)(); immutable string propertyVariantSetCode = getEmbeddedPropertyVariantWriteCode!(T, m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyVariantGetCode = "Variant(" ~ propertyReadCode ~ " is null ? null : " ~ propertyReadCode ~ ")"; //getPropertyVariantReadCode!(T,m)(); immutable string propertyObjectSetCode = getPropertyObjectWriteCode!(T,m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyObjectGetCode = propertyReadCode; //getPropertyVariantReadCode!(T,m)(); immutable string keyIsSetCode = null; //getColumnTypeKeyIsSetCode!(T,m)(); immutable string isNullCode = propertyReadCode ~ " is null"; immutable string copyFieldCode = getPropertyCopyCode!(T,m); // pragma(msg, "property read: " ~ propertyReadCode); // pragma(msg, "property write: " ~ propertyWriteCode); // pragma(msg, "variant get: " ~ propertyVariantGetCode); immutable string readerFuncDef = "null"; immutable string writerFuncDef = "null"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " return false;\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string getObjectFuncDef = "\n" ~ "function(Object obj) { \n" ~ " //writeln(\"Inside getObjectFunc\"); \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " assert(entity !is null);\n" ~ " Object res = " ~ propertyObjectGetCode ~ "; \n" ~ " //writeln(res is null ? \"obj is null\" : \"obj is not null\"); \n" ~ " return res; \n" ~ " }\n"; immutable string setObjectFuncDef = "\n" ~ "function(Object obj, Object value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyObjectSetCode ~ "\n" ~ " }\n"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; immutable string getCollectionFuncDef = "null"; immutable string setCollectionFuncDef = "null"; immutable string setObjectDelegateFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj, Object delegate() loader) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ getLazyPropertyObjectWriteCode!(T,m) ~ "\n" ~ " }\n"; immutable string setCollectionDelegateFuncDef = "null"; immutable string isLoadedFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ getLazyPropertyLoadedCode!(T,m) ~ ";\n" ~ " }\n"; return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ "false, " ~ // id "false, " ~ // generated quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.ManyToOne, " ~ quoteString(referencedEntityName) ~ ", " ~ quoteString(referencedPropertyName) ~ ", " ~ readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ "null, " ~ // generatorFunc getObjectFuncDef ~ ", " ~ setObjectFuncDef ~ ", " ~ getCollectionFuncDef ~ ", " ~ setCollectionFuncDef ~ ", " ~ setObjectDelegateFuncDef ~ ", " ~ setCollectionDelegateFuncDef ~ ", " ~ isLoadedFuncDef ~ ", " ~ quoteBool(isLazy) ~ ", " ~ // lazy "false" ~ // collection ")"; } /// generate source code for creation of OneToMany definition string getOneToManyPropertyDef(T, immutable string m)() { immutable string referencedEntityName = getPropertyReferencedEntityName!(T,m); immutable string referencedClassName = getPropertyReferencedClassName!(T,m); immutable string referencedPropertyName = getOneToManyReferencedPropertyName!(T,m); static assert (referencedPropertyName != null, "OneToMany should have referenced property name parameter"); immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m)(); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, Column, Id, Generated, Generator, OneToOne, ManyToMany), entityClassName ~ "." ~ propertyName ~ ": OneToMany property cannot have Column, Id, Generated, Generator, OneToOne, ManyToMany or Embedded annotation"); immutable string columnName = getJoinColumnName!(T, m)(); immutable bool isCollection = isCollectionMember!(T,m); static assert (isCollection, "OneToMany property " ~ m ~ " should be array of objects or LazyCollection"); static assert (columnName == null, "OneToMany property " ~ m ~ " should not have JoinColumn name"); immutable bool isLazy = isLazyMember!(T,m) || isLazyCollectionMember!(T,m); immutable length = getColumnLength!(T, m); immutable bool hasNull = hasMemberAnnotation!(T,m, Null); immutable bool hasNotNull = hasMemberAnnotation!(T,m, NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : true); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = "new EntityType(cast(immutable TypeInfo_Class)" ~ entityClassName ~ ".classinfo, \"" ~ entityClassName ~ "\")"; //getColumnTypeName!(T, m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m)(); immutable string datasetReadCode = null; //getColumnTypeDatasetReadCode!(T,m)(); immutable string propertyWriteCode = null; //getPropertyWriteCode!(T,m)(); immutable string datasetWriteCode = null; //getColumnTypeDatasetWriteCode!(T,m)(); immutable string propertyVariantSetCode = getCollectionPropertyVariantWriteCode!(T, m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyVariantGetCode = "Variant(" ~ propertyReadCode ~ " is null ? null : " ~ propertyReadCode ~ ")"; //getPropertyVariantReadCode!(T,m)(); //pragma(msg, "propertyVariantGetCode: " ~ propertyVariantGetCode); //pragma(msg, "propertyVariantSetCode: " ~ propertyVariantSetCode); immutable string propertyObjectSetCode = getPropertyCollectionWriteCode!(T,m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyObjectGetCode = propertyReadCode; //getPropertyVariantReadCode!(T,m)(); immutable string keyIsSetCode = null; //getColumnTypeKeyIsSetCode!(T,m)(); immutable string isNullCode = propertyReadCode ~ " is null"; immutable string copyFieldCode = getPropertyCopyCode!(T,m); // pragma(msg, "property read: " ~ propertyReadCode); // pragma(msg, "property write: " ~ propertyWriteCode); // pragma(msg, "variant get: " ~ propertyVariantGetCode); immutable string readerFuncDef = "null"; immutable string writerFuncDef = "null"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " return false;\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string getObjectFuncDef = "null"; immutable string setObjectFuncDef = "null"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; immutable string getCollectionFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " assert(entity !is null);\n" ~ " return cast(Object[])" ~ propertyObjectGetCode ~ "; \n" ~ " }\n"; immutable string setCollectionFuncDef = "\n" ~ "function(Object obj, Object[] value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyObjectSetCode ~ "\n" ~ " }\n"; immutable string setObjectDelegateFuncDef = "null"; immutable string setCollectionDelegateFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj, Object[] delegate() loader) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ getLazyPropertyObjectWriteCode!(T,m) ~ "\n" ~ " }\n"; immutable string isLoadedFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ getLazyPropertyLoadedCode!(T,m) ~ ";\n" ~ " }\n"; return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ "false" ~ ", " ~ // id "false" ~ ", " ~ // generated quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.OneToMany, " ~ quoteString(referencedEntityName) ~ ", " ~ quoteString(referencedPropertyName) ~ ", " ~ readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ "null, " ~ // generatorFunc getObjectFuncDef ~ ", " ~ setObjectFuncDef ~ ", " ~ getCollectionFuncDef ~ ", " ~ setCollectionFuncDef ~ ", " ~ setObjectDelegateFuncDef ~ ", " ~ setCollectionDelegateFuncDef ~ ", " ~ isLoadedFuncDef ~ ", " ~ quoteBool(isLazy) ~ ", " ~ // lazy "true" ~ // is collection ")"; } /// generate source code for creation of ManyToMany definition string getManyToManyPropertyDef(T, immutable string m)() { immutable string referencedEntityName = getPropertyReferencedEntityName!(T,m); immutable string referencedClassName = getPropertyReferencedClassName!(T,m); immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, Column, Id, Generated, Generator, OneToOne, OneToMany), entityClassName ~ "." ~ propertyName ~ ": ManyToMany property cannot have Column, Id, Generated, Generator, OneToOne, OneToMany annotation"); immutable string columnName = getJoinColumnName!(T, m); immutable string joinTableName = getJoinTableName!(T, m); immutable string joinColumn1 = getJoinTableColumn1!(T, m); immutable string joinColumn2 = getJoinTableColumn2!(T, m); immutable string joinTableCode = JoinTableInfo.generateJoinTableCode(joinTableName, joinColumn1, joinColumn2); immutable bool isCollection = isCollectionMember!(T,m); static assert (isCollection, "ManyToMany property " ~ m ~ " should be array of objects or LazyCollection"); static assert (columnName == null, "ManyToMany property " ~ m ~ " should not have JoinColumn name"); immutable bool isLazy = isLazyMember!(T,m) || isLazyCollectionMember!(T,m); immutable length = getColumnLength!(T, m); immutable bool hasNull = hasMemberAnnotation!(T,m, Null); immutable bool hasNotNull = hasMemberAnnotation!(T,m, NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : true); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = "new EntityType(cast(immutable TypeInfo_Class)" ~ entityClassName ~ ".classinfo, \"" ~ entityClassName ~ "\")"; //getColumnTypeName!(T, m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m); immutable string datasetReadCode = null; //getColumnTypeDatasetReadCode!(T,m)(); immutable string propertyWriteCode = null; //getPropertyWriteCode!(T,m)(); immutable string datasetWriteCode = null; //getColumnTypeDatasetWriteCode!(T,m)(); immutable string propertyVariantSetCode = getCollectionPropertyVariantWriteCode!(T, m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyVariantGetCode = "Variant(" ~ propertyReadCode ~ " is null ? null : " ~ propertyReadCode ~ ")"; //getPropertyVariantReadCode!(T,m)(); //pragma(msg, "propertyVariantGetCode: " ~ propertyVariantGetCode); //pragma(msg, "propertyVariantSetCode: " ~ propertyVariantSetCode); immutable string propertyObjectSetCode = getPropertyCollectionWriteCode!(T,m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyObjectGetCode = propertyReadCode; //getPropertyVariantReadCode!(T,m)(); immutable string keyIsSetCode = null; //getColumnTypeKeyIsSetCode!(T,m)(); immutable string isNullCode = propertyReadCode ~ " is null"; immutable string copyFieldCode = getPropertyCopyCode!(T,m); immutable string readerFuncDef = "null"; immutable string writerFuncDef = "null"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " return false;\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string getObjectFuncDef = "null"; immutable string setObjectFuncDef = "null"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; immutable string getCollectionFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " assert(entity !is null);\n" ~ " return cast(Object[])" ~ propertyObjectGetCode ~ "; \n" ~ " }\n"; immutable string setCollectionFuncDef = "\n" ~ "function(Object obj, Object[] value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyObjectSetCode ~ "\n" ~ " }\n"; immutable string setObjectDelegateFuncDef = "null"; immutable string setCollectionDelegateFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj, Object[] delegate() loader) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ getLazyPropertyObjectWriteCode!(T,m) ~ "\n" ~ " }\n"; immutable string isLoadedFuncDef = !isLazy ? "null" : "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ getLazyPropertyLoadedCode!(T,m) ~ ";\n" ~ " }\n"; return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ "false" ~ ", " ~ // id "false" ~ ", " ~ // generated quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.ManyToMany, " ~ quoteString(referencedEntityName) ~ ", " ~ "null, " ~ //referencedPropertyName readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ "null, " ~ // generatorFunc getObjectFuncDef ~ ", " ~ setObjectFuncDef ~ ", " ~ getCollectionFuncDef ~ ", " ~ setCollectionFuncDef ~ ", " ~ setObjectDelegateFuncDef ~ ", " ~ setCollectionDelegateFuncDef ~ ", " ~ isLoadedFuncDef ~ ", " ~ quoteBool(isLazy) ~ ", " ~ // lazy "true" ~ ", " ~ // is collection joinTableCode ~ ")"; } /// generate source code for creation of Embedded definition string getEmbeddedPropertyDef(T, immutable string m)() { immutable string referencedEntityName = getPropertyEmbeddedEntityName!(T,m); immutable string referencedClassName = getPropertyEmbeddedClassName!(T,m); immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, Column, Id, Generated, Generator, ManyToOne, ManyToMany, OneToOne), entityClassName ~ "." ~ propertyName ~ ": Embedded property cannot have Column, Id, Generated, OneToOne, ManyToOne, ManyToMany annotation"); immutable string columnName = getColumnName!(T, m); immutable length = getColumnLength!(T, m); immutable bool hasNull = hasMemberAnnotation!(T, m, Null); immutable bool hasNotNull = hasMemberAnnotation!(T, m, NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : true); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = "new EntityType(cast(immutable TypeInfo_Class)" ~ entityClassName ~ ".classinfo, \"" ~ entityClassName ~ "\")"; //getColumnTypeName!(T, m)(); immutable string propertyReadCode = getPropertyReadCode!(T,m); immutable string datasetReadCode = null; //getColumnTypeDatasetReadCode!(T,m)(); immutable string propertyWriteCode = null; //getPropertyWriteCode!(T,m)(); immutable string datasetWriteCode = null; //getColumnTypeDatasetWriteCode!(T,m)(); immutable string propertyVariantSetCode = getEmbeddedPropertyVariantWriteCode!(T, m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyVariantGetCode = "Variant(" ~ propertyReadCode ~ " is null ? null : " ~ propertyReadCode ~ ")"; //getPropertyVariantReadCode!(T,m)(); immutable string propertyObjectSetCode = getPropertyObjectWriteCode!(T,m, referencedClassName); // getPropertyVariantWriteCode!(T,m)(); immutable string propertyObjectGetCode = propertyReadCode; //getPropertyVariantReadCode!(T,m)(); immutable string keyIsSetCode = null; //getColumnTypeKeyIsSetCode!(T,m)(); immutable string isNullCode = propertyReadCode ~ " is null"; immutable string copyFieldCode = getPropertyCopyCode!(T,m); // pragma(msg, "property read: " ~ propertyReadCode); // pragma(msg, "property write: " ~ propertyWriteCode); // pragma(msg, "variant get: " ~ propertyVariantGetCode); immutable string readerFuncDef = "null"; immutable string writerFuncDef = "null"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " return false;\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string getObjectFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " assert(entity !is null);\n" ~ " return " ~ propertyObjectGetCode ~ "; \n" ~ " }\n"; immutable string setObjectFuncDef = "\n" ~ "function(Object obj, Object value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyObjectSetCode ~ "\n" ~ " }\n"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ "false, " ~ // id "false, " ~ // generated quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.Embedded, " ~ quoteString(referencedEntityName) ~ ", " ~ "null, \n" ~ readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ "null, " ~ // generatorFunc getObjectFuncDef ~ ", " ~ setObjectFuncDef ~ ")"; } /// generate source code for creation of simple property definition string getSimplePropertyDef(T, immutable string m)() { //getPropertyReferencedEntityName( immutable string entityClassName = fullyQualifiedName!T; immutable string propertyName = getPropertyName!(T,m); static assert (propertyName != null, "Cannot determine property name for member " ~ m ~ " of type " ~ T.stringof); static assert (!hasOneOfMemberAnnotations!(T, m, ManyToOne, OneToOne, ManyToMany), entityClassName ~ "." ~ propertyName ~ ": simple property cannot have OneToOne, ManyToOne, or ManyToMany annotation"); immutable bool isIdPropertyName = propertyName == "id"; immutable bool isEmbeddableClass = hasAnnotation!(T, Embeddable); immutable bool classHasKeyField = hasAnyKeyPropertyAnnotation!T; immutable string generatorCode = getGeneratorCode!(T, m); immutable bool hasKeyAnnotation = hasMemberAnnotation!(T, m, Id) || hasMemberAnnotation!(T, m, Generated) || generatorCode != null; immutable bool isId = hasKeyAnnotation || (isIdPropertyName && !classHasKeyField && !isEmbeddableClass); immutable bool isGenerated = hasMemberAnnotation!(T, m, Generated) || (!hasKeyAnnotation && isId); immutable string columnName = getColumnName!(T, m); static assert(!isGenerated || generatorCode == null, T.stringof ~ "." ~ m ~ ": You cannot mix @Generated and @Generator for the same property"); immutable length = getColumnLength!(T, m)(); immutable bool hasNull = hasMemberAnnotation!(T,m,Null); immutable bool hasNotNull = hasMemberAnnotation!(T,m,NotNull); immutable bool nullable = hasNull ? true : (hasNotNull ? false : isColumnTypeNullableByDefault!(T, m)); //canColumnTypeHoldNulls!(T.m) immutable string unique = quoteString(getUniqueIndexName!(T, m)); immutable string typeName = getColumnTypeName!(T, m, length); immutable string propertyReadCode = getPropertyReadCode!(T,m); immutable string datasetReadCode = getColumnTypeDatasetReadCode!(T,m); immutable string propertyWriteCode = getPropertyWriteCode!(T,m); immutable string datasetWriteCode = getColumnTypeDatasetWriteCode!(T,m); immutable string propertyVariantSetCode = getPropertyVariantWriteCode!(T,m); immutable string propertyVariantGetCode = getPropertyVariantReadCode!(T,m); immutable string keyIsSetCode = getColumnTypeKeyIsSetCode!(T,m); immutable string isNullCode = getColumnTypeIsNullCode!(T,m); immutable string copyFieldCode = getPropertyCopyCode!(T,m); immutable string readerFuncDef = "\n" ~ "function(Object obj, DataSetReader r, int index) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyWriteCode ~ " \n" ~ " }\n"; immutable string writerFuncDef = "\n" ~ "function(Object obj, DataSetWriter r, int index) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ datasetWriteCode ~ " \n" ~ " }\n"; immutable string getVariantFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ propertyVariantGetCode ~ "; \n" ~ " }\n"; immutable string setVariantFuncDef = "\n" ~ "function(Object obj, Variant value) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " " ~ propertyVariantSetCode ~ "\n" ~ " }\n"; immutable string keyIsSetFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ keyIsSetCode ~ ";\n" ~ " }\n"; immutable string isNullFuncDef = "\n" ~ "function(Object obj) { \n" ~ " " ~ entityClassName ~ " entity = cast(" ~ entityClassName ~ ")obj; \n" ~ " return " ~ isNullCode ~ ";\n" ~ " }\n"; immutable string copyFuncDef = "\n" ~ "function(Object to, Object from) { \n" ~ " " ~ entityClassName ~ " toentity = cast(" ~ entityClassName ~ ")to; \n" ~ " " ~ entityClassName ~ " fromentity = cast(" ~ entityClassName ~ ")from; \n" ~ " " ~ copyFieldCode ~ "\n" ~ " }\n"; immutable string generatorFuncDef = generatorCode is null ? "null" : "\n" ~ "function(Connection conn, const PropertyInfo property) { \n" ~ " return Variant(" ~ generatorCode ~ ");\n" ~ "}\n"; static assert (typeName != null, "Cannot determine column type for member " ~ m ~ " of type " ~ T.stringof); return " new PropertyInfo(" ~ quoteString(propertyName) ~ ", " ~ quoteString(columnName) ~ ", " ~ typeName ~ ", " ~ format("%s",length) ~ ", " ~ quoteBool(isId) ~ ", " ~ quoteBool(isGenerated) ~ ", " ~ quoteBool(nullable) ~ ", " ~ unique ~ ", " ~ "RelationType.None, " ~ "null, " ~ "null, \n" ~ readerFuncDef ~ ", " ~ writerFuncDef ~ ", " ~ getVariantFuncDef ~ ", " ~ setVariantFuncDef ~ ", " ~ keyIsSetFuncDef ~ ", " ~ isNullFuncDef ~ ", " ~ copyFuncDef ~ ", " ~ generatorFuncDef ~ ")"; } /// creates "new PropertyInfo(...)" code to create property metadata for member m of class T string getPropertyDef(T, string m)() { immutable bool isObject = isObjectMember!(T, m); immutable bool isCollection = isCollectionMember!(T, m); immutable bool isEmbedded = isEmbeddedObjectMember!(T, m); immutable bool isOneToOne = hasMemberAnnotation!(T, m, OneToOne); immutable bool isManyToOne = hasMemberAnnotation!(T, m, ManyToOne); immutable bool isManyToMany = hasMemberAnnotation!(T, m, ManyToMany); immutable bool isOneToMany = hasMemberAnnotation!(T, m, OneToMany); immutable bool isSimple = isSupportedSimpleType!(T, m); static if (isSimple) { return getSimplePropertyDef!(T, m); } else static if (isObject) { static if (isOneToOne) { return getOneToOnePropertyDef!(T, m); } else static if (isEmbedded) { return getEmbeddedPropertyDef!(T, m); } else { // if no annotations on Object field, assume it is ManyToOne return getManyToOnePropertyDef!(T, m); } } else static if (isCollection) { static assert(!isEmbedded && !isOneToOne && !isManyToOne, "Collection object array or LazyCollection! cannot be marked as @Embedded, @OneToOne, or @ManyToOne"); static if (isManyToMany) { return getManyToManyPropertyDef!(T, m); } else { // if no annotations on collection field, assume it is OneToMany return getOneToManyPropertyDef!(T, m); } } } string getEntityDef(T)() { string res; string generatedGettersSetters; string generatedEntityInfo; string generatedPropertyInfo; immutable string typeName = fullyQualifiedName!T; immutable bool isEntity = hasAnnotation!(T, Entity); //Don't require class level annotation. If no @Embeddable annotation, will treat as if there is @Entity annotation //static assert (hasOneOfAnnotations!(T, Entity, Embeddable), "Type " ~ typeName ~ " has neither @Entity nor @Embeddable annotation"); static assert (!hasAnnotation!(T, Entity) || !hasAnnotation!(T, Embeddable), "Type " ~ typeName ~ " may not have both @Entity and @Embeddable at the same time"); //pragma(msg, "Entity type name: " ~ typeName); immutable string entityName = getEntityName!T(); immutable string tableName = getTableName!T(); //pragma(msg, "preparing entity : " ~ entityName); static assert (entityName != null, "Type " ~ typeName ~ " has no Entity name specified"); static assert (tableName != null, "Type " ~ typeName ~ " has no Table name specified"); generatedEntityInfo ~= "new EntityInfo("; generatedEntityInfo ~= "\"" ~ entityName ~ "\", "; generatedEntityInfo ~= "\"" ~ tableName ~ "\", "; generatedEntityInfo ~= hasAnnotation!(T, Embeddable) ? "true," : "false,"; generatedEntityInfo ~= "[\n"; //pragma(msg, entityName ~ " : " ~ ((hasHibernatedEmbeddableAnnotation!T) ? "true," : "false,")); foreach (m; __traits(allMembers, T)) { //pragma(msg, m); static if (__traits(compiles, (typeof(__traits(getMember, T, m))))){ // skip non-public members static if (__traits(getProtection, __traits(getMember, T, m)) == "public") { alias typeof(__traits(getMember, T, m)) ti; // hasHibernatedPropertyAnnotation!(T, m) && // automatically treat all public members of supported types as persistent immutable bool typeSupported = (isSupportedSimpleType!(T, m) || isObjectMember!(T, m) || isCollectionMember!(T, m)); immutable bool isMainProp = isMainMemberForProperty!(T,m) && !hasMemberAnnotation!(T, m, Transient); static if (typeSupported && isMainProp) { immutable string propertyDef = getPropertyDef!(T, m)(); //pragma(msg, propertyDef); if (generatedPropertyInfo != null) generatedPropertyInfo ~= ",\n"; generatedPropertyInfo ~= propertyDef; } } } } //pragma(msg, t); //pragma(msg, typeof(t)); generatedEntityInfo ~= generatedPropertyInfo; generatedEntityInfo ~= "],"; generatedEntityInfo ~= "" ~ typeName ~ ".classinfo"; generatedEntityInfo ~= ")"; //pragma(msg, "built entity : " ~ entityName); return generatedEntityInfo ~ "\n" ~ generatedGettersSetters; } string entityListDef(T ...)() { string res; foreach(t; T) { //pragma(msg, t); static if (t.stringof.startsWith("module ")) { //pragma(msg, "is module"); //pragma(msg, "Module passed as schema parameter: " ~ t.stringof); //pragma(msg, __traits(allMembers, t)); foreach(tt; __traits(allMembers, t)) { //alias ti; //pragma(msg, "Module member: " ~ (__traits(getMember, t, tt)).stringof); static if (__traits(compiles, isImplicitlyConvertible!((__traits(getMember, t, tt)), Object)) && isImplicitlyConvertible!((__traits(getMember, t, tt)), Object)) { //pragma(msg, "checking member" ~ (__traits(getMember, t, tt)).stringof); // import class metadata if class or any of its members has hibenrated annotation static if (hasHibernatedClassOrPropertyAnnotation!(__traits(getMember, t, tt))) { // class should not be marked as @Transient static if (!hasAnnotation!(__traits(getMember, t, tt), Transient)) { immutable string def = getEntityDef!(__traits(getMember, t, tt)); if (res.length > 0) res ~= ",\n"; res ~= def; } } } } } else { //pragma(msg, "not module"); static if (__traits(compiles, isImplicitlyConvertible!(t, Object)) && isImplicitlyConvertible!(t, Object)) { static assert(!hasAnnotation!(t, Transient), "Class " ~ t.stringof ~ " has @Transient annotation and cannot be used in metadata"); // will be considered as @Entity if doesn't have @Embeddable annotation immutable string def = getEntityDef!t; //pragma(msg, def); if (res.length > 0) res ~= ",\n"; res ~= def; } else { static assert(t.stringof ~ " cannot be passed as schema item"); } } } string code = "static this() {\n" ~ " //writeln(\"starting static initializer\");\n" ~ " entities = [\n" ~ res ~ "];\n" ~ " EntityInfo [string] map;\n" ~ " EntityInfo [TypeInfo_Class] typemap;\n" ~ " foreach(e; entities) {\n" ~ " map[e.name] = e;\n" ~ " typemap[cast(TypeInfo_Class)e.classInfo] = e;\n" ~ " }\n" ~ " entityMap = map;\n" ~ " classMap = typemap;\n" ~ " //writeln(\"updating referenced entities\");\n" ~ " foreach(e; entities) {\n" ~ " foreach(p; e._properties) {\n" ~ " if (p.referencedEntityName !is null) {\n" ~ " //writeln(\"embedded entity \" ~ p.referencedEntityName);\n" ~ " enforceEx!MappingException((p.referencedEntityName in map) !is null, \"referenced entity not found in schema: \" ~ p.referencedEntityName);\n" ~ " p._referencedEntity = map[p.referencedEntityName];\n" ~ " if (p.referencedPropertyName !is null) {\n" ~ " enforceEx!MappingException((p.referencedPropertyName in p._referencedEntity._propertyMap) !is null, \"embedded entity property not found in schema: \" ~ p.referencedEntityName);\n" ~ " p._referencedProperty = p._referencedEntity._propertyMap[p.referencedPropertyName];\n" ~ " }\n" ~ " }\n" ~ " }\n" ~ " }\n" ~ " //writeln(\"finished static initializer\");\n" ~ "}"; //pragma(msg, "built entity list"); return code; } abstract class SchemaInfo : EntityMetaData { override @property size_t length() const { return getEntityCount(); } override const(EntityInfo) opIndex(int index) const { return getEntity(index); } override const(EntityInfo) opIndex(string entityName) const { return findEntity(entityName); } override const(PropertyInfo) opIndex(string entityName, string propertyName) const { return findEntity(entityName).findProperty(propertyName); } override public Variant getPropertyValue(Object obj, string propertyName) const { return findEntityForObject(obj).getPropertyValue(obj, propertyName); } override public void setPropertyValue(Object obj, string propertyName, Variant value) const { findEntityForObject(obj).setPropertyValue(obj, propertyName, value); } private void appendCommaDelimitedList(ref string buf, string data) const { if (buf.length != 0) buf ~= ", "; buf ~= data; } public string getAllFieldListForUpdate(const EntityInfo ei, bool exceptKey = false) const { string query; foreach(pi; ei) { if (pi.key && exceptKey) continue; if (pi.embedded) { auto emei = pi.referencedEntity; appendCommaDelimitedList(query, getAllFieldListForUpdate(emei, exceptKey)); } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName != null) { // read FK column appendCommaDelimitedList(query, pi.columnName ~ "=?"); } } else if (pi.oneToMany || pi.manyToMany) { // skip } else { appendCommaDelimitedList(query, pi.columnName ~ "=?"); } } return query; } override public string getAllFieldList(const EntityInfo ei, bool exceptKey = false) const { string query; foreach(pi; ei) { if (pi.key && exceptKey) continue; if (pi.embedded) { auto emei = pi.referencedEntity; appendCommaDelimitedList(query, getAllFieldList(emei, exceptKey)); } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName != null) { // read FK column appendCommaDelimitedList(query, pi.columnName); } } else if (pi.oneToMany || pi.manyToMany) { // skip } else { appendCommaDelimitedList(query, pi.columnName); } } return query; } override public int getFieldCount(const EntityInfo ei, bool exceptKey) const { int count = 0; foreach(pi; ei) { if (pi.key && exceptKey) continue; if (pi.embedded) { auto emei = pi.referencedEntity; count += getFieldCount(emei, exceptKey); } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName != null) { // read FK column count++; } } else if (pi.oneToMany || pi.manyToMany) { // skip } else { count++; } } return count; } public string getAllFieldPlaceholderList(const EntityInfo ei, bool exceptKey = false) const { string query; foreach(pi; ei) { if (pi.key && exceptKey) continue; if (pi.embedded) { auto emei = pi.referencedEntity; appendCommaDelimitedList(query, getAllFieldPlaceholderList(emei)); } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName != null) { // read FK column appendCommaDelimitedList(query, "?"); } } else if (pi.oneToMany || pi.manyToMany) { // skip } else { appendCommaDelimitedList(query, "?"); } } return query; } override public string getAllFieldList(string entityName, bool exceptKey) const { return getAllFieldList(findEntity(entityName), exceptKey); } override public int readAllColumns(Object obj, DataSetReader r, int startColumn) const { auto ei = findEntityForObject(obj); int columnCount = 0; foreach(pi; ei) { if (pi.embedded) { auto emei = pi.referencedEntity; Object em = emei.createEntity(); int columnsRead = readAllColumns(em, r, startColumn + columnCount); pi.setObjectFunc(obj, em); columnCount += columnsRead; } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName !is null) { Variant fk = r.getVariant(startColumn + columnCount); // TODO: use FK columnCount++; } else { // TODO: plan reading } } else if (pi.oneToMany || pi.manyToMany) { // skip } else { pi.readFunc(obj, r, startColumn + columnCount); columnCount++; } } return columnCount; } override public int writeAllColumns(Object obj, DataSetWriter w, int startColumn, bool exceptKey = false) const { auto ei = findEntityForObject(obj); //writeln(ei.name ~ ".writeAllColumns"); int columnCount = 0; foreach(pi; ei) { if (pi.key && exceptKey) continue; if (pi.embedded) { auto emei = pi.referencedEntity; //writeln("getting embedded entity " ~ emei.name); assert(pi.getObjectFunc !is null, "No getObjectFunc defined for embedded entity " ~ emei.name); Object em = pi.getObjectFunc(obj); if (em is null) em = emei.createEntity(); assert(em !is null, "embedded object is null"); //writeln("writing embedded entity " ~ emei.name); int columnsWritten = writeAllColumns(em, w, startColumn + columnCount); //writeln("written"); columnCount += columnsWritten; } else if (pi.oneToOne || pi.manyToOne) { if (pi.columnName !is null) { Object obj = pi.getObjectFunc(obj); if (obj is null) { w.setNull(startColumn + columnCount); } else { //writeln("setting ID column for property " ~ pi.entity.name ~ "." ~ pi.propertyName); //if (pi.lazyLoad) // writeln("property has lazy loader"); //writeln("reading ID variant " ~ pi.propertyName ~ " from object"); Variant id = pi.referencedEntity.getKey(obj); //writeln("setting parameter " ~ to!string(startColumn + columnCount)); w.setVariant(startColumn + columnCount, id); } columnCount++; } // skip } else if (pi.oneToMany || pi.manyToMany) { // skip } else { pi.writeFunc(obj, w, startColumn + columnCount); columnCount++; } } return columnCount; } override public string generateFindAllForEntity(string entityName) const { auto ei = findEntity(entityName); return "SELECT " ~ getAllFieldList(ei) ~ " FROM " ~ ei.tableName; } override public string generateFindByPkForEntity(const EntityInfo ei) const { return "SELECT " ~ getAllFieldList(ei) ~ " FROM " ~ ei.tableName ~ " WHERE " ~ ei.keyProperty.columnName ~ " = ?"; } override public string generateInsertAllFieldsForEntity(const EntityInfo ei) const { return "INSERT INTO " ~ ei.tableName ~ "(" ~ getAllFieldList(ei) ~ ") VALUES (" ~ getAllFieldPlaceholderList(ei) ~ ")"; } override public string generateInsertNoKeyForEntity(const EntityInfo ei) const { return "INSERT INTO " ~ ei.tableName ~ "(" ~ getAllFieldList(ei, true) ~ ") VALUES (" ~ getAllFieldPlaceholderList(ei, true) ~ ")"; } override public string generateUpdateForEntity(const EntityInfo ei) const { return "UPDATE " ~ ei.tableName ~ " SET " ~ getAllFieldListForUpdate(ei, true) ~ " WHERE " ~ ei.getKeyProperty().columnName ~ "=?"; } override public string generateFindByPkForEntity(string entityName) const { return generateFindByPkForEntity(findEntity(entityName)); } override public string generateInsertAllFieldsForEntity(string entityName) const { return generateInsertAllFieldsForEntity(findEntity(entityName)); } } class SchemaInfoImpl(T...) : SchemaInfo { static EntityInfo [string] entityMap; static EntityInfo [] entities; static EntityInfo [TypeInfo_Class] classMap; //pragma(msg, entityListDef!(T)()); mixin(entityListDef!(T)()); override public int getEntityCount() const { return cast(int)entities.length; } override public const(EntityInfo[]) getEntities() const { return entities; } override public const(EntityInfo[string]) getEntityMap() const { return entityMap; } override public const(EntityInfo [TypeInfo_Class]) getClassMap() const { return classMap; } override int opApply(int delegate(ref const EntityInfo) dg) const { int result = 0; for (int i = 0; i < entities.length; i++) { result = dg(entities[i]); if (result) break; } return result; } override public const(EntityInfo) findEntity(string entityName) const { enforceEx!MappingException((entityName in entityMap) !is null, "Cannot find entity by name " ~ entityName); return entityMap[entityName]; } override public const(EntityInfo) findEntity(TypeInfo_Class entityClass) const { enforceEx!MappingException((entityClass in classMap) !is null, "Cannot find entity by class " ~ entityClass.toString()); return classMap[entityClass]; } override public const(EntityInfo) getEntity(int entityIndex) const { enforceEx!MappingException(entityIndex >= 0 && entityIndex < entities.length, "Invalid entity index " ~ to!string(entityIndex)); return entities[entityIndex]; } override public Object createEntity(string entityName) const { enforceEx!MappingException((entityName in entityMap) !is null, "Cannot find entity by name " ~ entityName); return entityMap[entityName].createEntity(); } override public const(EntityInfo) findEntityForObject(Object obj) const { enforceEx!MappingException((obj.classinfo in classMap) !is null, "Cannot find entity by class " ~ obj.classinfo.toString()); return classMap[obj.classinfo]; } this() { // update entity._metadata reference foreach(e; entities) { e._metadata = this; int columnOffset = 0; foreach(p; e._properties) { if (p.manyToMany) { p.updateJoinTable(); } p._columnOffset = columnOffset; if (p.embedded) { auto emei = p.referencedEntity; columnOffset += e.metadata.getFieldCount(emei, false); } else if (p.oneToOne || p.manyToOne) { if (p.columnName != null) { // read FK column columnOffset++; } } else { columnOffset++; } } } } } /// information about DB structure generated from HibernateD entity metadata class DBInfo { Dialect dialect; EntityMetaData metaData; bool hasCircularRefs; this(Dialect dialect, EntityMetaData metaData) { this.dialect = dialect; this.metaData = metaData; foreach(entity; metaData) { if (!entity.embeddable) add(new TableInfo(this, entity)); } sortTables(); } TableInfo[] tables; TableInfo[string] tableNameMap; TableInfo get(string tableName) { TableInfo res = find(tableName); enforceEx!HibernatedException(res !is null, "table " ~ tableName ~ " is not found in schema"); return res; } TableInfo find(string tableName) { if ((tableName in tableNameMap) is null) return null; return tableNameMap[tableName]; } void add(TableInfo table) { enforceEx!HibernatedException((table.tableName in tableNameMap) is null, "duplicate table " ~ table.tableName ~ " in schema"); tables ~= table; tableNameMap[table.tableName] = table; } private static bool[string] arrayToMap(string[] keys) { bool[string] res; if (keys !is null) { foreach(key; keys) res[key] = true; } return res; } /// drop and/or create tables and indexes in DB using specified connection void updateDBSchema(Connection conn, bool dropTables, bool createTables) { string[] existingTables = getExistingTables(conn); string[] batch; if (dropTables) batch ~= getDropTableSQL(existingTables); if (createTables) batch ~= getCreateTableSQL(existingTables); try { Statement stmt = conn.createStatement(); scope(exit) stmt.close(); foreach(sql; batch) { stmt.executeUpdate(sql); } } catch (Throwable e) { throw new HibernatedException(e); } } string[] getExistingTables(Connection conn) { string[] res; try { Statement stmt = conn.createStatement(); scope(exit) stmt.close(); foreach(table; tables) { string sql = dialect.getCheckTableExistsSQL(table.tableName); ResultSet rs = stmt.executeQuery(sql); scope(exit)rs.close(); if (rs.next()) res ~= table.tableName; } } catch (Throwable e) { throw new HibernatedException(e); } return res; } string[] getCreateTableSQL(string[] existingTables = null) { auto map = arrayToMap(existingTables); string[] res; foreach(table; tables) { if (existingTables is null || (table.tableName in map) is null) res ~= table.getCreateTableSQL(); } return res; } string[] getCreateIndexSQL(string[] existingTables = null) { auto map = arrayToMap(existingTables); string[] res; foreach(table; tables) { if (existingTables is null || (table.tableName in map) is null) res ~= table.getCreateIndexSQL(); } return res; } string[] getDropTableSQL(string[] existingTables = null) { auto map = arrayToMap(existingTables); string[] res; foreach(table; tables) { if (existingTables is null || (table.tableName in map) !is null) { if (hasCircularRefs) res ~= table.getDropIndexSQL(); res ~= table.getDropTableSQL(); } } return res; } TableInfo opIndex(string tableName) { TableInfo ti = find(tableName); enforceEx!HibernatedException(ti !is null, "Table " ~ tableName ~ " is not found in schema"); return ti; } private static TableInfo[] addTableSorted(TableInfo[] list, TableInfo table) { TableInfo[] head; TableInfo[] tail; if (list.length == 0) { // trivial return [table]; } else { foreach(ti; list) { if (ti.references(table)) tail ~= ti; else head ~= ti; } return head ~ [table] ~ tail; } } private void sortTables() { TableInfo[] list; foreach(table; tables) { list = addTableSorted(list, table); } tables = list; hasCircularRefs = hasCircularReferences(); if (hasCircularRefs) writeln("has circular references"); } private bool hasCircularReferences() { for (int i=0; i<tables.length; i++) for (int j=i + 1; j<tables.length; j++) if (tables[i].references(tables[j])) return true; return false; } } /// information about table in DB class TableInfo { DBInfo schema; string tableName; const EntityInfo entity; const EntityInfo entity2; ColumnInfo[] columns; ColumnInfo[string] columnNameMap; IndexInfo[] indexes; const string pkDef; this(DBInfo schema, const EntityInfo entity, const EntityInfo entity2, const JoinTableInfo joinTable) { this.schema = schema; this.tableName = joinTable.tableName; this.entity = entity; this.entity2 = entity; ColumnInfo c1; ColumnInfo c2; assert(joinTable.column1 !is null); assert(joinTable.column2 !is null); assert(entity !is null); assert(entity2 !is null); assert(joinTable.thisEntity !is null); assert(joinTable.otherEntity !is null); if (joinTable.column1 < joinTable.column2) { c1 = new ColumnInfo(this, joinTable.column1, entity); c2 = new ColumnInfo(this, joinTable.column2, entity2); } else { c2 = new ColumnInfo(this, joinTable.column1, entity); c1 = new ColumnInfo(this, joinTable.column2, entity2); } addColumn(c1); addColumn(c2); pkDef = "PRIMARY KEY (" ~ schema.dialect.quoteIfNeeded(c1.columnName) ~ ", " ~ schema.dialect.quoteIfNeeded(c2.columnName) ~ "), " ~ schema.dialect.getUniqueIndexItemSQL(tableName ~ "_reverse_index", [c2.columnName, c1.columnName]); addForeignKey(tableName, entity, joinTable.column1, null); addForeignKey(tableName, entity2, joinTable.column2, null); } ColumnInfo opIndex(string columnName) { ColumnInfo ti = find(columnName); enforceEx!HibernatedException(ti !is null, "Column " ~ columnName ~ " is not found in table " ~ tableName); return ti; } ColumnInfo find(string columnName) { if ((columnName in columnNameMap) is null) return null; return columnNameMap[columnName]; } private void appendColumns(const EntityInfo entity) { foreach(pi; entity) { if (pi.embedded) { appendColumns(pi.referencedEntity); } else if (pi.simple || (pi.columnName !is null)) { addColumn(new ColumnInfo(this, pi)); if (pi.simple && pi.uniqueIndex !is null) //pi.unique) addUniqueColumnIndex(pi); } else if (pi.manyToMany) { addJoinTable(pi); } } } this(DBInfo schema, const EntityInfo entity) { this.schema = schema; this.entity = entity; this.entity2 = null; this.tableName = entity.tableName; this.pkDef = null; appendColumns(entity); } void addJoinTable(const PropertyInfo pi) { assert(pi.referencedEntity !is null); assert(pi.joinTable !is null); TableInfo t = new TableInfo(schema, entity, pi.referencedEntity, pi.joinTable); TableInfo existing = schema.find(t.tableName); if (existing !is null) { enforceEx!HibernatedException(t.getCreateTableSQL() == existing.getCreateTableSQL(), "JoinTable structure in " ~ entity.name ~ " and " ~ pi.referencedEntityName ~ " do not match"); } else { schema.add(t); } } void addUniqueColumnIndex(const PropertyInfo pi) { assert(pi.columnName !is null); IndexInfo index = new IndexInfo(this, IndexType.Unique); index.indexName = pi.uniqueIndex; index.columnNames ~= pi.columnName; addIndex(index); } void addForeignKey(string thisTable, const EntityInfo otherEntity, string columnName, string uniqueIndex) { IndexInfo index = new IndexInfo(this, uniqueIndex is null ? IndexType.ForeignKey : IndexType.UniqueForeignKey); index.indexName = thisTable ~ "_" ~ columnName ~ "_index"; index.columnNames ~= columnName; index.referencedTable = otherEntity.tableName; index.referencedColumnNames ~= otherEntity.getKeyProperty().columnName; addIndex(index); } void addForeignKey(const PropertyInfo pi) { assert(pi.columnName !is null); assert(pi.manyToOne || pi.oneToOne); addForeignKey(pi.entity.tableName, pi.referencedEntity, pi.columnName, pi.uniqueIndex); } private void addIndex(IndexInfo index) { // TODO: check duplicates indexes ~= index; } void addColumn(ColumnInfo column) { enforceEx!HibernatedException((column.columnName in columnNameMap) is null, "duplicate column name " ~ tableName ~ "." ~ column.columnName ~ " in schema"); columns ~= column; columnNameMap[column.columnName] = column; if (column.property !is null && (column.property.manyToOne || column.property.oneToOne)) { addForeignKey(column.property); } } string getCreateTableSQL() { string res; foreach(col; columns) { if (res.length > 0) res ~= ", "; res ~= col.columnDefinition; } if (pkDef !is null) res ~= ", " ~ pkDef; return "CREATE TABLE " ~ schema.dialect.quoteIfNeeded(tableName) ~ " (" ~ res ~ ")"; } string getDropTableSQL() { return "DROP TABLE IF EXISTS " ~ schema.dialect.quoteIfNeeded(tableName); } string[] getDropIndexSQL() { string[] res; foreach(index; indexes) { if (index.type == IndexType.ForeignKey || index.type == IndexType.UniqueForeignKey) { res ~= index.getDropIndexSQL(); } } return res; } string[] getCreateIndexSQL() { string[] res; foreach(index; indexes) { res ~= index.getCreateIndexSQL(); } return res; } bool references(ref bool[string] visitedTables, TableInfo other) { visitedTables[tableName] = true; foreach(index; indexes) { if (index.type == IndexType.ForeignKey || index.type == IndexType.UniqueForeignKey) { if (index.referencedTable == other.tableName) return true; if ((index.referencedTable in visitedTables) is null) { // not yet visited TableInfo t = schema.find(index.referencedTable); enforceEx!HibernatedException(t !is null, "Table " ~ index.referencedTable ~ " referenced in index " ~ index.indexName ~ " is not found in schema"); if (t.references(visitedTables, other)) return true; } } } return false; } bool references(TableInfo other) { bool[string] visitedTables; return references(visitedTables, other); } } class ColumnInfo { TableInfo table; const PropertyInfo property; string columnName; string columnDefinition; this(TableInfo table, string columnName, const EntityInfo referencedEntity) { this.table = table; this.property = null; this.columnName = columnName; this.columnDefinition = table.schema.dialect.quoteIfNeeded(columnName) ~ " " ~ table.schema.dialect.getColumnTypeDefinition(null, referencedEntity.getKeyProperty()); } this(TableInfo table, const PropertyInfo property) { this.table = table; this.property = property; this.columnName = property.columnName; assert(columnName !is null); if (property.manyToOne || property.oneToOne) { assert(property.columnName !is null); assert(property.referencedEntity !is null); this.columnDefinition = table.schema.dialect.quoteIfNeeded(property.columnName) ~ " " ~ table.schema.dialect.getColumnTypeDefinition(property, property.referencedEntity.getKeyProperty()); } else { this.columnDefinition = table.schema.dialect.getColumnDefinition(property); } } } enum IndexType { Index, Unique, ForeignKey, UniqueForeignKey } class IndexInfo { TableInfo table; IndexType type; string indexName; string[] columnNames; string referencedTable; string[] referencedColumnNames; this(TableInfo table, IndexType type) { this.table = table; this.type = type; } string[] getDropIndexSQL() { final switch(type) { case IndexType.Unique: case IndexType.Index: return [table.schema.dialect.getDropIndexSQL(table.tableName, indexName)]; case IndexType.ForeignKey: case IndexType.UniqueForeignKey: return [table.schema.dialect.getDropForeignKeySQL(table.tableName, indexName), table.schema.dialect.getDropIndexSQL(table.tableName, indexName)]; } } string[] getCreateIndexSQL() { final switch(type) { case IndexType.Unique: return [table.schema.dialect.getUniqueIndexSQL(table.tableName, indexName, columnNames)]; case IndexType.Index: return [table.schema.dialect.getIndexSQL(table.tableName, indexName, columnNames)]; case IndexType.ForeignKey: return [table.schema.dialect.getForeignKeySQL(table.tableName, indexName, columnNames, referencedTable, referencedColumnNames)]; case IndexType.UniqueForeignKey: return [table.schema.dialect.getUniqueIndexSQL(table.tableName, indexName, columnNames), table.schema.dialect.getForeignKeySQL(table.tableName, indexName, columnNames, referencedTable, referencedColumnNames)]; } } } unittest { @Entity @Table("users") static class User { //@Id @Generated @Column("id_column") int id; @Column("name_column") string name; // no column name //@Column string flags; // annotated getter private string login; //@Column public string getLogin() { return login; } public void setLogin(string login) { this.login = login; } // no (), no column name //@Column int testColumn; } @Entity @Table("customer") static class Customer { //@Id @Generated //@Column int id; //@Column string name; } EntityInfo entity = new EntityInfo("user", "users", false, [ new PropertyInfo("id", "id", new NumberType(10,false,SqlType.INTEGER), 0, true, true, false, null, RelationType.None, null, null, null, null, null, null, null, null, null) ], null); assert(entity.properties.length == 1); // immutable string info = getEntityDef!User(); // immutable string infos = entityListDef!(User, Customer)(); EntityInfo ei = new EntityInfo("User", "users", false, [ new PropertyInfo("id", "id_column", new NumberType(10,false,SqlType.INTEGER), 0, true, true, false, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("name", "name_column", new StringType(), 0, false, false, false, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("flags", "flags", new StringType(), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("login", "login", new StringType(), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("testColumn", "testcolumn", new NumberType(10,false,SqlType.INTEGER), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null)], null); //void function(User, DataSetReader, int) readFunc = function(User entity, DataSetReader reader, int index) { }; assert(ei.findProperty("name").columnName == "name_column"); assert(ei.getProperties()[0].columnName == "id_column"); assert(ei.getProperty(2).propertyName == "flags"); assert(ei.getPropertyCount == 5); EntityInfo[] entities3 = [ new EntityInfo("User", "users", false, [ new PropertyInfo("id", "id_column", new NumberType(10,false,SqlType.INTEGER), 0, true, true, false, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("name", "name_column", new StringType(), 0, false, false, false, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("flags", "flags", new StringType(), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("login", "login", new StringType(), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("testColumn", "testcolumn", new NumberType(10,false,SqlType.INTEGER), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null)], null) , new EntityInfo("Customer", "customer", false, [ new PropertyInfo("id", "id", new NumberType(10,false,SqlType.INTEGER), 0, true, true, true, null, RelationType.None, null, null, null, null, null, null, null, null, null), new PropertyInfo("name", "name", new StringType(), 0, false, false, true, null, RelationType.None, null, null, null, null, null, null, null, null, null)], null) ]; }
D
/Users/ginaldojunior/Desktop/MVVMCExample/DerivedData/MVVMCExample/Build/Intermediates.noindex/MVVMCExample.build/Debug-iphonesimulator/MVVMCExample.build/Objects-normal/x86_64/User.o : /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/Bindable.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/SceneDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/AppDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewModel.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewController.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/User.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/ginaldojunior/Desktop/MVVMCExample/DerivedData/MVVMCExample/Build/Intermediates.noindex/MVVMCExample.build/Debug-iphonesimulator/MVVMCExample.build/Objects-normal/x86_64/User~partial.swiftmodule : /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/Bindable.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/SceneDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/AppDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewModel.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewController.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/User.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/ginaldojunior/Desktop/MVVMCExample/DerivedData/MVVMCExample/Build/Intermediates.noindex/MVVMCExample.build/Debug-iphonesimulator/MVVMCExample.build/Objects-normal/x86_64/User~partial.swiftdoc : /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/Bindable.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/SceneDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Common/AppDelegate.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewModel.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/ViewController.swift /Users/ginaldojunior/Desktop/MVVMCExample/MVVMCExample/Scenes/MovieList/User.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/ImageIO.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/IOSurface.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreVideo.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/FileProvider.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module dark.gfx.node_part; import std.stdio; import std.algorithm; import std.typecons; import dark.gfx.node; import dark.gfx.mesh_part; import dark.gfx.material; import dark.gfx.renderable; import dark.math; struct InvBoneBind { Node node; Mat4 transform; this(Node node, Mat4 transform) { this.node = node; this.transform = transform; } } class NodePart { MeshPart meshPart; Material material; InvBoneBind[] invBoneBindTransforms; Mat4[] bones; bool enabled = true; this() { } NodePart copy() { auto node = new NodePart(); node.set(this); return node; } NodePart set(NodePart other) { meshPart = new MeshPart(other.meshPart); material = other.material; enabled = other.enabled; if(other.invBoneBindTransforms.length > 0) { invBoneBindTransforms.length = other.invBoneBindTransforms.length; bones.length = other.invBoneBindTransforms.length; for(int i = 0; i < other.invBoneBindTransforms.length; ++i) { auto entry = &other.invBoneBindTransforms[i]; invBoneBindTransforms[i] = InvBoneBind(entry.node, entry.transform); } for (int i = 0; i < bones.length; i++) { bones[i] = Mat4.identity; } } return this; } }
D
func void b_assessfightsound() { printdebugnpc(PD_ZS_FRAME,"B_AssessFightSound"); if(c_npcismonster(other) && c_npcishuman(victim)) { printdebugnpc(PD_ZS_FRAME,"...Monster greift Mensch an!"); if((Npc_GetAttitude(self,victim) == ATT_FRIENDLY) || (Npc_GetAttitude(self,victim) == ATT_NEUTRAL)) { if(Npc_CanSeeNpcFreeLOS(self,other) && (Npc_GetDistToNpc(self,other) < HAI_DIST_ASSESS_MONSTER)) { AI_StartState(self,zs_assessmonster,0,""); return; }; return; } else { b_smartturntonpc(self,victim); printattitudes(PD_ZS_CHECK); b_assessfighter(); return; }; } else if(c_npcismonster(victim) && c_npcishuman(other)) { printdebugnpc(PD_ZS_CHECK,"...Mensch greift Monster an!"); if((Npc_GetAttitude(self,other) == ATT_FRIENDLY) || (Npc_GetAttitude(self,other) == ATT_NEUTRAL)) { if(Npc_CanSeeNpcFreeLOS(self,other)) { Npc_SetTarget(self,victim); Npc_GetTarget(self); AI_StartState(self,zs_assessmonster,0,""); return; }; return; } else { b_smartturntonpc(self,victim); printattitudes(PD_ZS_CHECK); b_assessfighter(); return; }; }; if(Hlp_GetInstanceID(self) == Hlp_GetInstanceID(victim)) { printdebugnpc(PD_ZS_CHECK,"...NSC selbst wurde getroffen!"); b_fullstop(self); AI_StartState(self,zs_reacttodamage,0,""); return; }; if(c_chargewasattacked(self,victim,other)) { printdebugnpc(PD_ZS_CHECK,"...NSC ist Wache und ein Schützling wurde attackiert!"); if(Npc_GetPermAttitude(victim,other) == ATT_FRIENDLY) { printdebugnpc(PD_ZS_CHECK,"...war nur 'friendly fire'!"); return; } else { printglobals(PD_ZS_CHECK); printdebugnpc(PD_ZS_CHECK,"...und der ist auch sauer bzw. flieht!"); b_fullstop(self); Npc_SetTarget(self,other); b_whirlaround(self,other); b_drawweapon(self,other); AI_StartState(self,zs_proclaimandpunish,0,""); return; }; } else if(c_npcisboss(self) || c_npcisguard(self) || c_npcisguardarcher(self)) { printdebugnpc(PD_ZS_CHECK,"...NSC gehört zu BOSS-Gilde!"); b_smartturntonpc(self,victim); b_assessfighter(); return; } else if(Npc_GetDistToNpc(self,victim) < PERC_DIST_WATCHFIGHT && self.id != 328 && self.id != 888 && self.id != 889) { printdebugnpc(PD_ZS_CHECK,"...Opfer in WatchFight-Range!"); b_whirlaround(self,victim); AI_StartState(self,zs_watchfight,0,""); return; }; };
D
//T compiles:yes //T has-passed:no //T retval:0 void main() { string str = "foobar"; // This is narrowing, but valid. foreach(byte i, c; str) {} }
D
a person whose behavior deviates from what is acceptable especially in sexual behavior corrupt morally or by intemperance or sensuality practice sophistry change the inherent purpose or function of something
D
; Copyright (C) 2008 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ; See the License for the specific language governing permissions and ; limitations under the License. .source T_return_object_10.java .class public dot.junit.opcodes.return_object.d.T_return_object_10 .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()Ljava/lang/Object; .limit regs 3 const v1, 123 return-object v1 .end method
D
import core.demangle; import std.array; import std.conv; import std.file; import std.regex; import std.stdio; import std.string; import std.algorithm; enum Column { NUM_CALLS, TREE_TIME, TREE_TIME_PERCENT, FUNC_TIME, FUNC_TIME_PERCENT, AVG_FUNC_TIME, FUNC_NAME, SIZE } struct Data { long numCalls; long treeTime; long funcTime; long avgFuncTime; char[] funcName; } void main( string[] args ) { string filename; switch(args.length) { case 1: filename = "trace.log"; break; default: filename = args[1]; break; } string file; try { file = readText(filename); } catch(Exception e) { writefln( "Can't read " ~ filename ~ "." "\nUsage: " ~ args[0] ~ " [trace file] (default: trace.log)." ); writeln(e); return; } string[] inputLines = splitLines(file); uint lineCounter; foreach( uint counter, string contents; inputLines ) { if( contents.length > 0 && contents[0] == '=' ) { lineCounter = counter; break; } } // Extract tick value auto ticksPerSecondRegExp = regex("[0-9]+"); auto m = match(inputLines[lineCounter], ticksPerSecondRegExp); long ticksPerSecond = to!long( m.hit ); writefln( "ticksPerSecond: %d", ticksPerSecond ); // Skip five lines to the beginning of the data lineCounter += 5; inputLines = inputLines[lineCounter..$]; Data[] datas; foreach( uint counter, string contents; inputLines ) { auto re = split( inputLines[counter] ); Data tmp; tmp.numCalls = to!long( re[0] ); tmp.treeTime = to!long( re[1] ); tmp.funcTime = to!long( re[2] ); tmp.avgFuncTime = to!long( re[3] ); tmp.funcName = demangle( join(re[4..$], " ") ); datas ~= tmp; } sort!((a,b) {return a.funcTime < b.funcTime;})(datas); foreach(data; datas) { writefln ( "\n%s\n\tnumCalls : %s\n\ttreeTime : %s\n\tfuncTime : %s\n\tavgFuncTime : %s\n", data.funcName, data.numCalls, data.treeTime, data.funcTime, data.avgFuncTime ); } }
D
/Users/marvinevins/Library/Autosave\ Information/SandwichApp/DerivedData/SandwichApp/Build/Intermediates.noindex/SandwichApp.build/Debug-iphonesimulator/SandwichApp.build/Objects-normal/x86_64/ViewController.o : /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SandwichQuizVC.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SceneDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/AppDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/ViewController.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/DirectionsViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/marvinevins/Library/Autosave\ Information/SandwichApp/DerivedData/SandwichApp/Build/Intermediates.noindex/SandwichApp.build/Debug-iphonesimulator/SandwichApp.build/Objects-normal/x86_64/ViewController~partial.swiftmodule : /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SandwichQuizVC.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SceneDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/AppDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/ViewController.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/DirectionsViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/marvinevins/Library/Autosave\ Information/SandwichApp/DerivedData/SandwichApp/Build/Intermediates.noindex/SandwichApp.build/Debug-iphonesimulator/SandwichApp.build/Objects-normal/x86_64/ViewController~partial.swiftdoc : /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SandwichQuizVC.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SceneDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/AppDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/ViewController.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/DirectionsViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/marvinevins/Library/Autosave\ Information/SandwichApp/DerivedData/SandwichApp/Build/Intermediates.noindex/SandwichApp.build/Debug-iphonesimulator/SandwichApp.build/Objects-normal/x86_64/ViewController~partial.swiftsourceinfo : /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SandwichQuizVC.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/SceneDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/AppDelegate.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/ViewController.swift /Users/marvinevins/Library/Autosave\ Information/SandwichApp/SandwichApp/DirectionsViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreMedia.framework/Headers/CoreMedia.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVFoundation.framework/Headers/AVFoundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Headers/CoreAudioTypes.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AVKit.framework/Headers/AVKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
instance KDF_1103_Nereus (Npc_Default) { //-------- primary data -------- name = "Nereus"; npctype = npctype_main; guild = GIL_KDF; level = 28; voice = 13; id = 1103; //-------- abilities -------- attribute[ATR_STRENGTH] = 40; attribute[ATR_DEXTERITY] = 35; attribute[ATR_MANA_MAX] = 90; attribute[ATR_MANA] = 90; attribute[ATR_HITPOINTS_MAX]= 376; attribute[ATR_HITPOINTS] = 376; //-------- visuals -------- // animations Mdl_SetVisual (self,"HUMANS.MDS"); Mdl_ApplyOverlayMds (self,"Humans_Mage.mds"); // body mesh, head mesh, hairmesh, face-tex, hair-tex, skin Mdl_SetVisualBody (self,"hum_body_Naked0",0,0,"Hum_Head_Thief", 4, 0, KDF_ARMOR_L); B_Scale (self); Mdl_SetModelFatness (self, 0); self.aivar[AIV_IMPORTANT] = TRUE; fight_tactic = FAI_HUMAN_MAGE; //-------- Talente -------- Npc_SetTalentSkill ( self, NPC_TALENT_MAGE, 6); //-------- Spells-------- //-------- inventory -------- //-------------Daily Routine------------- daily_routine = Rtn_start_1103; }; FUNC VOID Rtn_start_1103 () { TA_ReadBook (18,50,07,10,"BF_MAGE2_BOOK_1"); TA_ReadBook (07,10,18,50,"BF_MAGE2_BOOK_1"); };
D
# FIXED offset.obj: G:/motor_control/motorware_1_01_00_18/sw/modules/offset/src/32b/offset.c offset.obj: G:/motor_control/motorware_1_01_00_18/sw/modules/offset/src/32b/offset.h offset.obj: G:/motor_control/motorware_1_01_00_18/sw/modules/types/src/types.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/stdbool.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/string.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/_ti_config.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/linkage.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/cdefs.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/stdint.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/_stdint40.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/stdint.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/_types.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/machine/_types.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/machine/_stdint.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/_stdint.h offset.obj: G:/motor_control/motorware_1_01_00_18/sw/modules/iqmath/src/32b/IQmathLib.h offset.obj: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/limits.h offset.obj: G:/motor_control/motorware_1_01_00_18/sw/modules/filter/src/32b/filter_fo.h G:/motor_control/motorware_1_01_00_18/sw/modules/offset/src/32b/offset.c: G:/motor_control/motorware_1_01_00_18/sw/modules/offset/src/32b/offset.h: G:/motor_control/motorware_1_01_00_18/sw/modules/types/src/types.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/stdbool.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/string.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/_ti_config.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/linkage.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/cdefs.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/stdint.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/_stdint40.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/stdint.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/_types.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/machine/_types.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/machine/_stdint.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/sys/_stdint.h: G:/motor_control/motorware_1_01_00_18/sw/modules/iqmath/src/32b/IQmathLib.h: G:/TI/ccs920/ccs/tools/compiler/ti-cgt-c2000_18.12.3.LTS/include/limits.h: G:/motor_control/motorware_1_01_00_18/sw/modules/filter/src/32b/filter_fo.h:
D
/* [The "BSD licence"] Copyright (c) 2005-2008 Terence Parr All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. 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 BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ module antlr.runtime.ClassicToken; import antlr.runtime.Token; import antlr.runtime.CharStream; import antlr.runtime.tango.Format; import tango.text.Regex; /** A Token object like we'd use in ANTLR 2.x; has an actual string created * and associated with this object. These objects are needed for imaginary * tree nodes that have payload objects. We need to create a Token object * that has a string; the tree node will point at this token. CommonToken * has indexes into a char stream and hence cannot be used to introduce * new strings. */ public class ClassicToken(char_t) : Token { protected char_t[] text; protected int type; protected int line; protected int charPositionInLine; protected int channel=DEFAULT_CHANNEL; /** What token number is this from 0..n-1 tokens */ protected int index; public this(int type) { this.type = type; } public this(Token oldToken) { text = oldToken.Text; type = oldToken.Type; line = oldToken.Line; charPositionInLine = oldToken.CharPositionInLine(); channel = oldToken.Channel; } public this(int type, char_t[] text) { this.type = type; this.text = text; } public this(int type, char_t[] text, int channel) { this.type = type; this.text = text; this.channel = channel; } public int Type() { return type; } public int Line(int line) { return (this.line = line); } public char_t[] Text() { return text; } public void Text(char_t[] text) { this.text = text; } public int Line() { return line; } public int CharPositionInLine() { return charPositionInLine; } public void CharPositionInLine(int charPositionInLine) { this.charPositionInLine = charPositionInLine; } public int Channel() { return channel; } public int Channel(int channel) { return (this.channel = channel); } public int Type(int type) { return (this.type = type); } public int TokenIndex() { return index; } public int TokenIndex(int index) { return this.index = index; } public CharStream InputStream() { return null; } public void InputStream(CharStream input) { } public char_t[] toStringT() { alias RegExpT!(char_t) RegexT; char_t[] channelStr = ""; if ( channel>0 ) { channelStr=Format16(",channel={}"w,channel); } char_t[] txt = Text(); if ( txt.length == 0 ) { Regex16("\n"w).replaceAll(txt, r"\\n"w, txt); Regex16("\r"w).replaceAll(txt, r"\\r"w, txt); Regex16("\t"w).replaceAll(txt, r"\\t"w, txt); // txt = txt.replaceAll("\n","\\\\n"); // txt = txt.replaceAll("\r","\\\\r"); // txt = txt.replaceAll("\t","\\\\t"); } else { txt = "<no text>"w; } return Format16("[@{},'{}',<{}>{},{}:{}]",TokenIndex,txt,type,channelStr,line,CharPositionInLine); //+getTokenIndex()+",'"+txt+"',<"+type+">"+channelStr+","+line+":"+CharPositionInLine()+"]"; } }
D
// Written in the D programming language. /** * $(RED Deprecated: This module is considered out-dated and not up to Phobos' * current standards. It will be remove in October 2016.) * * The std.cstream module bridges core.stdc.stdio (or std.stdio) and std.stream. * Both core.stdc.stdio and std.stream are publicly imported by std.cstream. * * Macros: * WIKI=Phobos/StdCstream * * Copyright: Copyright Ben Hinkle 2007 - 2009. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Ben Hinkle * Source: $(PHOBOSSRC std/_cstream.d) */ /* Copyright Ben Hinkle 2007 - 2009. * 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) */ deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.cstream; // @@@DEPRECATED_2016-10@@@ public import core.stdc.stdio; public import std.stream; version(unittest) import std.stdio; import std.algorithm; /** * A Stream wrapper for a C file of type FILE*. */ class CFile : Stream { protected FILE* cfile; /** * Create the stream wrapper for the given C file. * Params: * cfile = a valid C $(B FILE) pointer to wrap. * mode = a bitwise combination of $(B FileMode.In) for a readable file * and $(B FileMode.Out) for a writeable file. * seekable = indicates if the stream should be _seekable. */ this(FILE* cfile, FileMode mode, bool seekable = false) { super(); this.file = cfile; readable = cast(bool)(mode & FileMode.In); writeable = cast(bool)(mode & FileMode.Out); this.seekable = seekable; } /** * Closes the stream. */ ~this() { close(); } /** * Property to get or set the underlying file for this stream. * Setting the file marks the stream as open. */ @property FILE* file() { return cfile; } /** * Ditto */ @property void file(FILE* cfile) { this.cfile = cfile; isopen = true; } /** * Overrides of the $(B Stream) methods to call the underlying $(B FILE*) * C functions. */ override void flush() { fflush(cfile); } /** * Ditto */ override void close() { if (isopen) fclose(cfile); isopen = readable = writeable = seekable = false; } /** * Ditto */ override bool eof() { return cast(bool)(readEOF || feof(cfile)); } /** * Ditto */ override char getc() { return cast(char)fgetc(cfile); } /** * Ditto */ override char ungetc(char c) { return cast(char)core.stdc.stdio.ungetc(c,cfile); } /** * Ditto */ override size_t readBlock(void* buffer, size_t size) { size_t n = fread(buffer,1,size,cfile); readEOF = cast(bool)(n == 0); return n; } /** * Ditto */ override size_t writeBlock(const void* buffer, size_t size) { return fwrite(buffer,1,size,cfile); } /** * Ditto */ override ulong seek(long offset, SeekPos rel) { readEOF = false; if (fseek(cfile,cast(int)offset,rel) != 0) throw new SeekException("unable to move file pointer"); return ftell(cfile); } /** * Ditto */ override void writeLine(const(char)[] s) { writeString(s); writeString("\n"); } /** * Ditto */ override void writeLineW(const(wchar)[] s) { writeStringW(s); writeStringW("\n"); } // run a few tests unittest { import std.file : deleteme; import std.internal.cstring : tempCString; auto stream_file = (deleteme ~ "-stream.txt").tempCString(); FILE* f = fopen(stream_file,"w"); assert(f !is null); CFile file = new CFile(f,FileMode.Out); int i = 666; // should be ok to write assert(file.writeable); file.writeLine("Testing stream.d:"); file.writeString("Hello, world!"); file.write(i); // string#1 + string#2 + int should give exacly that version (Windows) assert(file.position == 19 + 13 + 4); version (Posix) assert(file.position == 18 + 13 + 4); file.close(); // no operations are allowed when file is closed assert(!file.readable && !file.writeable && !file.seekable); f = fopen(stream_file,"r"); file = new CFile(f,FileMode.In,true); // should be ok to read assert(file.readable); auto line = file.readLine(); auto exp = "Testing stream.d:"; assert(line[0] == 'T'); assert(line.length == exp.length); assert(!std.algorithm.cmp(line, "Testing stream.d:")); // jump over "Hello, " file.seek(7, SeekPos.Current); version (Windows) assert(file.position == 19 + 7); version (Posix) assert(file.position == 18 + 7); assert(!std.algorithm.cmp(file.readString(6), "world!")); i = 0; file.read(i); assert(i == 666); // string#1 + string#2 + int should give exacly that version (Windows) assert(file.position == 19 + 13 + 4); version (Posix) assert(file.position == 18 + 13 + 4); // we must be at the end of file file.close(); f = fopen(stream_file,"w+"); file = new CFile(f,FileMode.In|FileMode.Out,true); file.writeLine("Testing stream.d:"); file.writeLine("Another line"); file.writeLine(""); file.writeLine("That was blank"); file.position = 0; char[][] lines; foreach (char[] line; file) { lines ~= line.dup; } assert( lines.length == 5 ); assert( lines[0] == "Testing stream.d:"); assert( lines[1] == "Another line"); assert( lines[2] == ""); assert( lines[3] == "That was blank"); file.position = 0; lines = new char[][5]; foreach (ulong n, char[] line; file) { lines[cast(size_t)(n-1)] = line.dup; } assert( lines[0] == "Testing stream.d:"); assert( lines[1] == "Another line"); assert( lines[2] == ""); assert( lines[3] == "That was blank"); file.close(); remove(stream_file); } } /** * CFile wrapper of core.stdc.stdio.stdin (not seekable). */ __gshared CFile din; /** * CFile wrapper of core.stdc.stdio.stdout (not seekable). */ __gshared CFile dout; /** * CFile wrapper of core.stdc.stdio.stderr (not seekable). */ __gshared CFile derr; shared static this() { // open standard I/O devices din = new CFile(core.stdc.stdio.stdin,FileMode.In); dout = new CFile(core.stdc.stdio.stdout,FileMode.Out); derr = new CFile(core.stdc.stdio.stderr,FileMode.Out); }
D
/home/anas/Documents/RUST/Quarter2/assingments/4th/q2/target/debug/deps/q2-006a2f93db2fb8fc: src/main.rs /home/anas/Documents/RUST/Quarter2/assingments/4th/q2/target/debug/deps/q2-006a2f93db2fb8fc.d: src/main.rs src/main.rs:
D
/** * This file is part of DCD, a development tool for the D programming language. * Copyright (C) 2014 Brian Schott * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ module dsymbol.deferred; import containers.unrolledlist; import containers.openhashset; import dsymbol.string_interning; import dsymbol.import_; import dsymbol.symbol; import dsymbol.type_lookup; import std.experimental.allocator; import std.experimental.allocator.mallocator; /** * Contains information for deferred type resolution */ struct DeferredSymbol { ~this() { foreach (l; typeLookups[]) Mallocator.instance.dispose(l); foreach (i; imports[]) Mallocator.instance.dispose(i); } bool dependsOn(istring modulePath) { foreach (i; imports[]) if (i.symbolFile.ptr == modulePath.ptr) return true; return false; } /// The symbol that needs its type resolved DSymbol* symbol; /// The imports that were in scope for the symbol's declaration' UnrolledList!(DSymbol*, false) imports; /// The type lookup information UnrolledList!(TypeLookup*, false) typeLookups; }
D
/home/zbf/workspace/git/RTAP/target/debug/deps/rand-8af9dfbe28eaa45e.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/range.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/gamma.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/normal.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/exponential.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/ziggurat_tables.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/jitter.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/os.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/read.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/reseeding.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/seq.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/rand_impls.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/chacha.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac64.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/xorshift.rs /home/zbf/workspace/git/RTAP/target/debug/deps/librand-8af9dfbe28eaa45e.rlib: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/range.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/gamma.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/normal.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/exponential.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/ziggurat_tables.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/jitter.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/os.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/read.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/reseeding.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/seq.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/rand_impls.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/chacha.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac64.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/xorshift.rs /home/zbf/workspace/git/RTAP/target/debug/deps/rand-8af9dfbe28eaa45e.d: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/range.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/gamma.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/normal.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/exponential.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/ziggurat_tables.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/jitter.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/os.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/read.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/reseeding.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/seq.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/rand_impls.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/chacha.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac64.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/xorshift.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/lib.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/mod.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/range.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/gamma.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/normal.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/exponential.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/distributions/ziggurat_tables.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/jitter.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/os.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/read.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/reseeding.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/seq.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/rand_impls.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/mod.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/chacha.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/isaac64.rs: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand-0.4.6/src/prng/xorshift.rs:
D
// Copyright Ferdinand Majerech 2010 - 2012. // 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) ///Keyboard/mouse key related enums. module platform.key; import derelict.sdl2.sdl; ///Possible key event states. enum KeyState { ///Key is being pressed. Pressed, ///Key is being released. Released } ///Key codes. Map directly to SDL 2.0 key codes. enum Key { Unknown = SDLK_UNKNOWN, Return = SDLK_RETURN, Escape = SDLK_ESCAPE, Backspace = SDLK_BACKSPACE, Tab = SDLK_TAB, Space = SDLK_SPACE, Exclaim = SDLK_EXCLAIM, Quotedbl = SDLK_QUOTEDBL, Hash = SDLK_HASH, Percent = SDLK_PERCENT, Dollar = SDLK_DOLLAR, Ampersand = SDLK_AMPERSAND, Quote = SDLK_QUOTE, LeftParen = SDLK_LEFTPAREN, RightParen = SDLK_RIGHTPAREN, Asterisk = SDLK_ASTERISK, Plus = SDLK_PLUS, Comma = SDLK_COMMA, Minus = SDLK_MINUS, Period = SDLK_PERIOD, Slash = SDLK_SLASH, K_0 = SDLK_0, K_1 = SDLK_1, K_2 = SDLK_2, K_3 = SDLK_3, K_4 = SDLK_4, K_5 = SDLK_5, K_6 = SDLK_6, K_7 = SDLK_7, K_8 = SDLK_8, K_9 = SDLK_9, Colon = SDLK_COLON, Semicolon = SDLK_SEMICOLON, Less = SDLK_LESS, Equals = SDLK_EQUALS, Greater = SDLK_GREATER, Question = SDLK_QUESTION, At = SDLK_AT, LeftBracket = SDLK_LEFTBRACKET, Backslash = SDLK_BACKSLASH, RightBracket = SDLK_RIGHTBRACKET, Caret = SDLK_CARET, Underscore = SDLK_UNDERSCORE, Backquote = SDLK_BACKQUOTE, K_a = SDLK_a, K_b = SDLK_b, K_c = SDLK_c, K_d = SDLK_d, K_e = SDLK_e, K_f = SDLK_f, K_g = SDLK_g, K_h = SDLK_h, K_i = SDLK_i, K_j = SDLK_j, K_k = SDLK_k, K_l = SDLK_l, K_m = SDLK_m, K_n = SDLK_n, K_o = SDLK_o, K_p = SDLK_p, K_q = SDLK_q, K_r = SDLK_r, K_s = SDLK_s, K_t = SDLK_t, K_u = SDLK_u, K_v = SDLK_v, K_w = SDLK_w, K_x = SDLK_x, K_y = SDLK_y, K_z = SDLK_z, CapsLock = SDLK_CAPSLOCK, F1 = SDLK_F1, F2 = SDLK_F2, F3 = SDLK_F3, F4 = SDLK_F4, F5 = SDLK_F5, F6 = SDLK_F6, F7 = SDLK_F7, F8 = SDLK_F8, F9 = SDLK_F9, F10 = SDLK_F10, F11 = SDLK_F11, F12 = SDLK_F12, PrintScreen = SDLK_PRINTSCREEN, ScrollLock = SDLK_SCROLLLOCK, Pause = SDLK_PAUSE, Insert = SDLK_INSERT, Home = SDLK_HOME, PageUp = SDLK_PAGEUP, Delete = SDLK_DELETE, End = SDLK_END, PageDown = SDLK_PAGEDOWN, Right = SDLK_RIGHT, Left = SDLK_LEFT, Down = SDLK_DOWN, Up = SDLK_UP, NumlockClear = SDLK_NUMLOCKCLEAR, NP_Divide = SDLK_KP_DIVIDE, NP_Multiply = SDLK_KP_MULTIPLY, NP_Minus = SDLK_KP_MINUS, NP_Plus = SDLK_KP_PLUS, NP_Enter = SDLK_KP_ENTER, NP_1 = SDLK_KP_1, NP_2 = SDLK_KP_2, NP_3 = SDLK_KP_3, NP_4 = SDLK_KP_4, NP_5 = SDLK_KP_5, NP_6 = SDLK_KP_6, NP_7 = SDLK_KP_7, NP_8 = SDLK_KP_8, NP_9 = SDLK_KP_9, NP_0 = SDLK_KP_0, KP_Period = SDLK_KP_PERIOD, Application = SDLK_APPLICATION, Power = SDLK_POWER, NP_Equals = SDLK_KP_EQUALS, F13 = SDLK_F13, F14 = SDLK_F14, F15 = SDLK_F15, F16 = SDLK_F16, F17 = SDLK_F17, F18 = SDLK_F18, F19 = SDLK_F19, F20 = SDLK_F20, F21 = SDLK_F21, F22 = SDLK_F22, F23 = SDLK_F23, F24 = SDLK_F24, Execute = SDLK_EXECUTE, Help = SDLK_HELP, Menu = SDLK_MENU, Select = SDLK_SELECT, Stop = SDLK_STOP, Again = SDLK_AGAIN, Undo = SDLK_UNDO, Cut = SDLK_CUT, Copy = SDLK_COPY, Paste = SDLK_PASTE, Find = SDLK_FIND, Mute = SDLK_MUTE, VolumeUp = SDLK_VOLUMEUP, VolumeDown = SDLK_VOLUMEDOWN, KP_Comma = SDLK_KP_COMMA, KP_EqualsAs400 = SDLK_KP_EQUALSAS400, AltErase = SDLK_ALTERASE, SysReq = SDLK_SYSREQ, Cancel = SDLK_CANCEL, Clear = SDLK_CLEAR, Prior = SDLK_PRIOR, Return2 = SDLK_RETURN2, Separator = SDLK_SEPARATOR, Out = SDLK_OUT, Oper = SDLK_OPER, ClearAgain = SDLK_CLEARAGAIN, CrSel = SDLK_CRSEL, ExSel = SDLK_EXSEL, KP_00 = SDLK_KP_00, KP_000 = SDLK_KP_000, ThousandsSeparator = SDLK_THOUSANDSSEPARATOR, DecimalSeparator = SDLK_DECIMALSEPARATOR, CurrencyUnit = SDLK_CURRENCYUNIT, CurrencySubunit = SDLK_CURRENCYSUBUNIT, NP_LeftParen = SDLK_KP_LEFTPAREN, NP_RightParen = SDLK_KP_RIGHTPAREN, NP_LeftBrace = SDLK_KP_LEFTBRACE, NP_RightBrace = SDLK_KP_RIGHTBRACE, NP_Tab = SDLK_KP_TAB, NP_Backspace = SDLK_KP_BACKSPACE, NP_A = SDLK_KP_A, NP_B = SDLK_KP_B, NP_C = SDLK_KP_C, NP_D = SDLK_KP_D, NP_E = SDLK_KP_E, NP_F = SDLK_KP_F, NP_Xor = SDLK_KP_XOR, NP_Power = SDLK_KP_POWER, NP_Percent = SDLK_KP_PERCENT, NP_Less = SDLK_KP_LESS, NP_Greater = SDLK_KP_GREATER, NP_Ampersand = SDLK_KP_AMPERSAND, NP_DblAmpersand = SDLK_KP_DBLAMPERSAND, NP_VerticalBar = SDLK_KP_VERTICALBAR, NP_DblVerticalBar = SDLK_KP_DBLVERTICALBAR, NP_Colon = SDLK_KP_COLON, NP_Hash = SDLK_KP_HASH, NP_Space = SDLK_KP_SPACE, NP_At = SDLK_KP_AT, NP_Exclam = SDLK_KP_EXCLAM, NP_MemStore = SDLK_KP_MEMSTORE, NP_MemRecall = SDLK_KP_MEMRECALL, NP_MemClear = SDLK_KP_MEMCLEAR, NP_MemAdd = SDLK_KP_MEMADD, NP_MemSubtract = SDLK_KP_MEMSUBTRACT, NP_MemMultiply = SDLK_KP_MEMMULTIPLY, NP_MemDivide = SDLK_KP_MEMDIVIDE, NP_PlusMinus = SDLK_KP_PLUSMINUS, NP_Clear = SDLK_KP_CLEAR, NP_ClearEntry = SDLK_KP_CLEARENTRY, NP_Binary = SDLK_KP_BINARY, NP_Octal = SDLK_KP_OCTAL, NP_Decimal = SDLK_KP_DECIMAL, NP_Hexadecimal = SDLK_KP_HEXADECIMAL, LeftCtrl = SDLK_LCTRL, LeftShift = SDLK_LSHIFT, LeftAlt = SDLK_LALT, LeftGUI = SDLK_LGUI, RightCtrl = SDLK_RCTRL, RightShift = SDLK_RSHIFT, RightAlt = SDLK_RALT, RightGui = SDLK_RGUI, Mode = SDLK_MODE, AudioNext = SDLK_AUDIONEXT, AudioPrev = SDLK_AUDIOPREV, AudioStop = SDLK_AUDIOSTOP, AudioPlay = SDLK_AUDIOPLAY, AudioMute = SDLK_AUDIOMUTE, MediaSelect = SDLK_MEDIASELECT, WWW = SDLK_WWW, Mail = SDLK_MAIL, Calculator = SDLK_CALCULATOR, Computer = SDLK_COMPUTER, AC_Search = SDLK_AC_SEARCH, AC_Home = SDLK_AC_HOME, AC_Back = SDLK_AC_BACK, AC_Forward = SDLK_AC_FORWARD, AC_Stop = SDLK_AC_STOP, AC_Refresh = SDLK_AC_REFRESH, AC_Bookmarks = SDLK_AC_BOOKMARKS, BrightnessDown = SDLK_BRIGHTNESSDOWN, BrightnessUp = SDLK_BRIGHTNESSUP, DisplaySwitch = SDLK_DISPLAYSWITCH, KbdIllumToggle = SDLK_KBDILLUMTOGGLE, KbdIllumDown = SDLK_KBDILLUMDOWN, KbdIllumUp = SDLK_KBDILLUMUP, Eject = SDLK_EJECT, Sleep = SDLK_SLEEP, } ///Mouse buttons. enum MouseKey { Left, Middle, Right, WheelUp, WheelDown }
D
/Users/esharp2/MobileSensing/MachineLearning/Build/Intermediates/HTTPSwiftExample.build/Debug-iphoneos/HTTPSwiftExample.build/Objects-normal/arm64/RingBuffer.o : /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/AppDelegate.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/RingBuffer.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/ViewController.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/CoreMLViewController.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/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/SwiftOnoneSupport.swiftmodule /Users/esharp2/MobileSensing/MachineLearning/Build/Intermediates/HTTPSwiftExample.build/Debug-iphoneos/HTTPSwiftExample.build/Objects-normal/arm64/RingBuffer~partial.swiftmodule : /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/AppDelegate.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/RingBuffer.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/ViewController.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/CoreMLViewController.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/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/SwiftOnoneSupport.swiftmodule /Users/esharp2/MobileSensing/MachineLearning/Build/Intermediates/HTTPSwiftExample.build/Debug-iphoneos/HTTPSwiftExample.build/Objects-normal/arm64/RingBuffer~partial.swiftdoc : /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/AppDelegate.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/RingBuffer.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/ViewController.swift /Users/esharp2/MobileSensing/MachineLearning/HTTPSwiftExample/CoreMLViewController.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/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/SwiftOnoneSupport.swiftmodule
D
//Munition const int Value_Pfeil = 1; const int Value_Bolzen = 1; //NSC und Ambientwaffen const int Damage_MilArmbrust = 45; const int Condition_MilArmbrust = 30; const int Value_MilArmbrust = 200; const int Damage_SldBogen = 30; const int Condition_SldBogen = 25; const int Value_SldBogen = 200; //Bögen //Kapitel 1 const int Damage_Kurzbogen = 15; const int Condition_Kurzbogen = 10; const int Value_Kurzbogen = 100; const int Damage_Weidenbogen = 25; const int Condition_Weidenbogen = 20; const int Value_Weidenbogen = 150; //Kapitel 2 const int Damage_Jagdbogen = 35; const int Condition_Jagdbogen = 30; const int Value_Jagdbogen = 400; const int Damage_Ulmenbogen = 50; const int Condition_Ulmenbogen = 50; const int Value_Ulmenbogen = 500; //Kapitel 3 const int Damage_Kompositbogen = 65; const int Condition_Kompositbogen = 60; const int Value_Kompositbogen = 700; const int Damage_Eschenbogen = 80; const int Condition_Eschenbogen = 80; const int Value_Eschenbogen = 800; //Kapitel 4 const int Damage_Langbogen = 95; const int Condition_Langbogen = 90; const int Value_Langbogen = 1000; const int Damage_Buchenbogen = 110; const int Condition_Buchenbogen = 110; const int Value_Buchenbogen = 1100; //Kapitel 5 const int Damage_Knochenbogen = 125; const int Condition_Knochenbogen = 120; const int Value_Knochenbogen = 1300; const int Damage_Eichenbogen = 140; const int Condition_Eichenbogen = 140; const int Value_Eichenbogen = 1400; //Kapitel 6 const int Damage_Kriegsbogen = 150; const int Condition_Kriegsbogen = 150; const int Value_Kriegsbogen = 1500; const int Damage_Drachenbogen = 160; const int Condition_Drachenbogen = 160; const int Value_Drachenbogen = 1600; //Armbrüste //Kapitel 1 const int Damage_Jagdarmbrust = 30; const int Condition_Jagdarmbrust = 20; const int Value_Jagdarmbrust = 500; const int Damage_Holzarmbrust = 45; const int Condition_Holzarmbrust = 30; const int Value_Holzarmbrust = 750; //Kapitel 2 const int Damage_LeichteArmbrust = 60; const int Condition_LeichteArmbrust = 40; const int Value_LeichteArmbrust = 900; const int Damage_GoldArmbrust = 75; const int Condition_GoldArmbrust = 50; const int Value_GoldArmbrust = 1050; //Kapitel 3 const int Damage_Armbrust = 90; const int Condition_Armbrust = 60; const int Value_Armbrust = 1200; //Kapitel 4 const int Damage_Kriegsarmbrust = 120; const int Condition_Kriegsarmbrust = 90; const int Value_Kriegsarmbrust = 1500; //Kapitel 5 const int Damage_SchwereArmbrust = 150; const int Condition_SchwereArmbrust = 120; const int Value_SchwereArmbrust = 2000; //Kapitel 6 const int Damage_Drachenjaegerarmbrust = 180; const int Condition_Drachenjaegerarmbrust = 150; const int Value_Drachenjaegerarmbrust = 2500; //MAGISCHE WAFFEN const int Damage_FireBow = 50; //MAGIC const int Condition_FireBow = 25; const int Value_FireBow = 2000; const int Damage_MagicBow = 100; //MAGIC const int Condition_MagicBow = 50; const int Value_MagicBow = 2000; const int Damage_MagicCrossbow = 200; //MAGIC const int Condition_MagicCrossbow = 75; const int Value_MagicCrossbow = 2000;
D
a plant fiber used in making rope or sacks a member of a Germanic people who conquered England and merged with the Angles and Saxons to become Anglo-Saxons
D
/******************************************************************************* * Copyright (c) 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Port to the D programming language: * Frank Benoit <benoit@tionex.de> *******************************************************************************/ module dwtx.jface.text.source.IAnnotationHoverExtension2; import dwtx.jface.text.source.ISharedTextColors; // packageimport import dwtx.jface.text.source.ILineRange; // packageimport import dwtx.jface.text.source.IAnnotationPresentation; // packageimport import dwtx.jface.text.source.IVerticalRulerInfoExtension; // packageimport import dwtx.jface.text.source.ICharacterPairMatcher; // packageimport import dwtx.jface.text.source.TextInvocationContext; // packageimport import dwtx.jface.text.source.LineChangeHover; // packageimport import dwtx.jface.text.source.IChangeRulerColumn; // packageimport import dwtx.jface.text.source.IAnnotationMap; // packageimport import dwtx.jface.text.source.IAnnotationModelListenerExtension; // packageimport import dwtx.jface.text.source.ISourceViewerExtension2; // packageimport import dwtx.jface.text.source.IAnnotationHover; // packageimport import dwtx.jface.text.source.ContentAssistantFacade; // packageimport import dwtx.jface.text.source.IAnnotationAccess; // packageimport import dwtx.jface.text.source.IVerticalRulerExtension; // packageimport import dwtx.jface.text.source.IVerticalRulerColumn; // packageimport import dwtx.jface.text.source.LineNumberRulerColumn; // packageimport import dwtx.jface.text.source.MatchingCharacterPainter; // packageimport import dwtx.jface.text.source.IAnnotationModelExtension; // packageimport import dwtx.jface.text.source.ILineDifferExtension; // packageimport import dwtx.jface.text.source.DefaultCharacterPairMatcher; // packageimport import dwtx.jface.text.source.LineNumberChangeRulerColumn; // packageimport import dwtx.jface.text.source.IAnnotationAccessExtension; // packageimport import dwtx.jface.text.source.ISourceViewer; // packageimport import dwtx.jface.text.source.AnnotationModel; // packageimport import dwtx.jface.text.source.ILineDifferExtension2; // packageimport import dwtx.jface.text.source.IAnnotationModelListener; // packageimport import dwtx.jface.text.source.IVerticalRuler; // packageimport import dwtx.jface.text.source.DefaultAnnotationHover; // packageimport import dwtx.jface.text.source.SourceViewer; // packageimport import dwtx.jface.text.source.SourceViewerConfiguration; // packageimport import dwtx.jface.text.source.AnnotationBarHoverManager; // packageimport import dwtx.jface.text.source.CompositeRuler; // packageimport import dwtx.jface.text.source.ImageUtilities; // packageimport import dwtx.jface.text.source.VisualAnnotationModel; // packageimport import dwtx.jface.text.source.IAnnotationModel; // packageimport import dwtx.jface.text.source.ISourceViewerExtension3; // packageimport import dwtx.jface.text.source.ILineDiffInfo; // packageimport import dwtx.jface.text.source.VerticalRulerEvent; // packageimport import dwtx.jface.text.source.ChangeRulerColumn; // packageimport import dwtx.jface.text.source.ILineDiffer; // packageimport import dwtx.jface.text.source.AnnotationModelEvent; // packageimport import dwtx.jface.text.source.AnnotationColumn; // packageimport import dwtx.jface.text.source.AnnotationRulerColumn; // packageimport import dwtx.jface.text.source.IAnnotationHoverExtension; // packageimport import dwtx.jface.text.source.AbstractRulerColumn; // packageimport import dwtx.jface.text.source.ISourceViewerExtension; // packageimport import dwtx.jface.text.source.AnnotationMap; // packageimport import dwtx.jface.text.source.IVerticalRulerInfo; // packageimport import dwtx.jface.text.source.IAnnotationModelExtension2; // packageimport import dwtx.jface.text.source.LineRange; // packageimport import dwtx.jface.text.source.IAnnotationAccessExtension2; // packageimport import dwtx.jface.text.source.VerticalRuler; // packageimport import dwtx.jface.text.source.JFaceTextMessages; // packageimport import dwtx.jface.text.source.IOverviewRuler; // packageimport import dwtx.jface.text.source.Annotation; // packageimport import dwtx.jface.text.source.IVerticalRulerListener; // packageimport import dwtx.jface.text.source.ISourceViewerExtension4; // packageimport import dwtx.jface.text.source.AnnotationPainter; // packageimport import dwtx.jface.text.source.OverviewRuler; // packageimport import dwtx.jface.text.source.OverviewRulerHoverManager; // packageimport import dwt.dwthelper.utils; /** * Extension interface for {@link dwtx.jface.text.source.IAnnotationHover} for * <ul> * <li>providing whether the information control can interact with the mouse wheel</li> * </ul> * * @see dwtx.jface.text.source.IAnnotationHover * @since 3.2 */ public interface IAnnotationHoverExtension2 { /** * Returns whether the provided information control can interact with the mouse wheel. I.e. the * hover will not be closed when the mouse wheel is moved. * * @return <code>true</code> if the mouse wheel is handled by the hover */ bool canHandleMouseWheel(); }
D
/+++++++++++++++++++++++++++++ + This module defines algorithm 'groupBy' +/ module rx.algorithm.groupby; import rx.disposable; import rx.observable; import rx.observer; import rx.subject; import rx.util; import std.functional : unaryFun; import std.range : put; //#################### // GroupBy //#################### /// interface GroupedObservable(TKey, E) : Observable!E { TKey key() const pure nothrow @safe @nogc @property; } private class GroupedObservableObject(TKey, E) : GroupedObservable!(TKey, E) { alias ElementType = E; public: this(TKey key, Observable!E subject, RefCountDisposable cancel = null) { _key = key; _subject = subject; _cancel = cancel; } public: TKey key() const pure nothrow @safe @nogc @property { return _key; } public: Disposable subscribe(Observer!E observer) { if (_cancel is null) { return _subject.subscribe(observer); } else { auto canceler = _cancel.getDisposable(); auto subscription = _subject.subscribe(observer); return new CompositeDisposable(canceler, subscription); } } private: TKey _key; Observable!E _subject; RefCountDisposable _cancel; } private class GroupByObserver(alias selector, TObserver, E) { public: alias TKey = typeof({ return unaryFun!(selector)(E.init); }()); public: this(TObserver observer, Disposable disposable, RefCountDisposable refCountedDisposable) { _observer = observer; _disposable = disposable; _refCountDisposable = refCountedDisposable; } public: void put(E obj) { alias keySelector = unaryFun!selector; Subject!E writer; TKey key; bool fireNewEntry = false; try { key = keySelector(obj); static if (__traits(compiles, { TKey unused = null; })) { if (key is null) { if (_null is null) { _null = new SubjectObject!E; fireNewEntry = true; } writer = _null; } else { if (key in _map) { writer = _map[key]; } else { _map[key] = writer = new SubjectObject!E; fireNewEntry = true; } } } else { if (key in _map) { writer = _map[key]; } else { _map[key] = writer = new SubjectObject!E; fireNewEntry = true; } } } catch (Exception e) { failure(e); return; } if (fireNewEntry) { auto group = new GroupedObservableObject!(TKey, E)(key, writer, _refCountDisposable); .put(_observer, group); } .put(writer, obj); } void completed() { static if (__traits(compiles, { TKey unused = null; })) { if (_null !is null) { _null.completed(); } } foreach (sink; _map.values) { sink.completed(); } static if (hasCompleted!TObserver) { _observer.completed(); } _disposable.dispose(); } void failure(Exception e) { static if (__traits(compiles, { TKey unused = null; })) { if (_null !is null) { _null.failure(e); } } foreach (sink; _map.values) { sink.failure(e); } static if (hasFailure!TObserver) { _observer.failure(e); } _disposable.dispose(); } private: TObserver _observer; Disposable _disposable; Subject!E[TKey] _map; static if (__traits(compiles, { TKey unused = null; })) { Subject!E _null; } RefCountDisposable _refCountDisposable; } unittest { alias TObserver = GroupByObserver!(n => n % 10, Observer!(GroupedObservable!(int, int)), int); auto observer = new CounterObserver!(GroupedObservable!(int, int)); auto refCount = new RefCountDisposable(NopDisposable.instance); auto group = new TObserver(observer, NopDisposable.instance, refCount); assert(observer.putCount == 0); group.put(0); assert(observer.putCount == 1); assert(observer.lastValue.key == 0); group.put(0); assert(observer.putCount == 1); assert(observer.lastValue.key == 0); group.put(1); assert(observer.putCount == 2); assert(observer.lastValue.key == 1); group.put(11); assert(observer.putCount == 2); assert(observer.lastValue.key == 1); group.put(3); assert(observer.putCount == 3); assert(observer.lastValue.key == 3); } unittest { alias TObserver = GroupByObserver!(n => n % 2 == 0, Observer!(GroupedObservable!(bool, int)), int); import std.typecons : Tuple, tuple; import rx.algorithm.map : map; auto tester = new CounterObserver!(Tuple!(bool, int)); auto observer = observerObject!(GroupedObservable!(bool, int))( (GroupedObservable!(bool, int) observable) { observable.map!(n => tuple(observable.key, n)).doSubscribe(tester); }); auto refCount = new RefCountDisposable(NopDisposable.instance); auto group = new TObserver(observer, NopDisposable.instance, refCount); group.put(0); assert(tester.putCount == 1); assert(tester.lastValue == tuple(true, 0)); group.put(1); assert(tester.putCount == 2); assert(tester.lastValue == tuple(false, 1)); group.put(3); assert(tester.putCount == 3); assert(tester.lastValue == tuple(false, 3)); } unittest { alias TObserver = GroupByObserver!(n => n % 2 == 0, Observer!(GroupedObservable!(bool, int)), int); auto tester = new CounterObserver!int; auto observer = observerObject!(GroupedObservable!(bool, int))( (GroupedObservable!(bool, int) observable) { observable.doSubscribe(tester); }); auto refCount = new RefCountDisposable(NopDisposable.instance); auto group = new TObserver(observer, NopDisposable.instance, refCount); assert(tester.putCount == 0); assert(tester.completedCount == 0); assert(tester.failureCount == 0); group.put(0); assert(tester.putCount == 1); assert(tester.completedCount == 0); assert(tester.failureCount == 0); group.completed(); assert(tester.putCount == 1); assert(tester.completedCount == 1); assert(tester.failureCount == 0); } private struct GroupByObservable(alias selector, TObservable) { static assert(isObservable!TObservable); alias TKey = typeof({ return unaryFun!(selector)(TObservable.ElementType.init); }()); alias ElementType = GroupedObservable!(TKey, TObservable.ElementType); public: this(TObservable observable) { _observable = observable; } public: Disposable subscribe(TObserver)(TObserver observer) { auto result = new SingleAssignmentDisposable; auto refCountDisposable = new RefCountDisposable(result); alias ObserverType = GroupByObserver!(selector, TObserver, TObservable.ElementType); auto subscription = _observable.doSubscribe(new ObserverType(observer, result, refCountDisposable)); result.setDisposable(disposableObject(subscription)); return result; } private: TObservable _observable; } unittest { alias TObservable = GroupByObservable!(n => n % 10, Observable!int); static assert(is(TObservable.TKey == int)); static assert(is(TObservable.ElementType == GroupedObservable!(int, int))); auto subject = new SubjectObject!int; auto group = TObservable(subject); auto observer = new CounterObserver!(GroupedObservable!(int, int)); auto disposable = group.subscribe(observer); subject.put(0); assert(observer.putCount == 1); subject.put(0); assert(observer.putCount == 1); subject.put(10); assert(observer.putCount == 1); subject.put(11); assert(observer.putCount == 2); subject.put(12); assert(observer.putCount == 3); subject.put(102); assert(observer.putCount == 3); } /// template groupBy(alias selector) { GroupByObservable!(selector, TObservable) groupBy(TObservable)(auto ref TObservable observable) { static assert(isObservable!TObservable); return typeof(return)(observable); } } /// unittest { auto sub = new SubjectObject!int; auto group = sub.groupBy!(n => n % 10); auto tester = new CounterObserver!(typeof(group).ElementType); auto disposable = group.subscribe(tester); sub.put(0); assert(tester.putCount == 1); assert(tester.lastValue.key == 0); sub.put(10); assert(tester.putCount == 1); } /// unittest { auto sub = new SubjectObject!string; auto group = sub.groupBy!(text => text); auto tester = new CounterObserver!(typeof(group).ElementType); auto disposable = group.subscribe(tester); sub.put("A"); assert(tester.putCount == 1); assert(tester.lastValue.key == "A"); sub.put("B"); assert(tester.putCount == 2); assert(tester.lastValue.key == "B"); sub.put("XXX"); assert(tester.putCount == 3); assert(tester.lastValue.key == "XXX"); } unittest { auto sub = new SubjectObject!string; string delegate(string _) dg = (test) { throw new Exception(""); }; auto group = sub.groupBy!(dg); auto tester = new CounterObserver!(typeof(group).ElementType); auto disposable = group.subscribe(tester); sub.put("A"); assert(tester.putCount == 0); assert(tester.completedCount == 0); assert(tester.failureCount == 1); } unittest { auto sub = new SubjectObject!string; auto group = sub.groupBy!(test => null); auto tester = new CounterObserver!(typeof(group).ElementType); auto disposable = group.subscribe(tester); sub.put("A"); assert(tester.putCount == 1); assert(tester.lastValue.key is null); } unittest { auto sub = new SubjectObject!string; auto group = sub.groupBy!(test => null); auto tester = new CounterObserver!string; auto disposable = group.doSubscribe!((o) { o.doSubscribe(tester); }); sub.put("A"); assert(tester.putCount == 1); assert(tester.lastValue == "A"); } unittest { import rx; auto sub = new SubjectObject!int; auto group = sub.groupBy!(i => i % 2 == 0); auto evenObserver = new CounterObserver!int; auto oddObserver = new CounterObserver!int; auto container = new CompositeDisposable(); auto disposable = group.doSubscribe!((o) { container.insert(o.fold!"a + b"(0).doSubscribe(o.key ? evenObserver : oddObserver)); }); container.insert(disposable); scope (exit) container.dispose(); sub.put(1); assert(oddObserver.putCount == 0); sub.put(2); assert(evenObserver.putCount == 0); sub.put(3); sub.put(4); sub.completed(); assert(oddObserver.putCount == 1); assert(oddObserver.lastValue == 4); assert(evenObserver.putCount == 1); assert(evenObserver.lastValue == 6); }
D
module Glib.Scene.Model; import Glib.System.Log; import Glib.Scene.Mesh; import Glib.Scene.Transform; import Glib.Scene.Render; import Glib.Scene.RMObject; import derelict.assimp3.assimp; import std.algorithm; import std.math; import std.conv; import gl3n.linalg; class Model:IComponent, IDrawable { Mesh[] meshes; //toDo: //animations //shaders this(string path) { const char* pathC = std.string.toStringz(path); const aiScene* loadScene = aiImportFile(pathC, aiProcess_CalcTangentSpace | aiProcess_Triangulate | aiProcess_JoinIdenticalVertices); if(loadScene == null) { Log.error("unable to import model: " ~ path); } else { for(int i = 0; i < loadScene.mNumMeshes; i++) { const aiMesh* mesh = loadScene.mMeshes[i]; meshes ~= new Mesh(mesh); } } aiReleaseImport(loadScene); } void Draw() { foreach(Mesh m; meshes) { m.Draw(this.owner.transform); } } } class PrimitiveObject: IComponent, IDrawable { Mesh mesh; PrimitiveTypes type; public enum PrimitiveTypes { Sphere, Cube, Plane } this(PrimitiveTypes type) { this.type = type; switch(type) { case(PrimitiveTypes.Sphere): CreateSphere(); break; case(PrimitiveTypes.Cube): CreateCube(); break; default: break; } } void Draw() { mesh.Draw(this.owner.transform); } void CreateSphere() { const int detailLevel = 2; Icosahedron icosahedron; vec3[] verts; uint[] indices; vec3[] normals; vec2[] uvs; vec3[] tangents; vec3[] bitTangents; indices = icosahedron.indices; verts = icosahedron.vertices; for(int i = 0; i < detailLevel; i++) { Subdivide(verts, indices, true); } for(int i = 0; i < verts.length; i++) { verts[i].normalize(); normals ~= verts[i]; vec2 CalcUVs(vec3 v) { vec2 uv; uv.x = atan2(v.x, v.z) / (2 * PI) + 0.5f; uv.y = asin(v.y) / PI + 0.5f; return uv; } uvs ~= CalcUVs(verts[i]); } vec3[] tan1; vec3[] tan2; tan1.length = verts.length; tan2.length = verts.length; tan1[0..tan1.length].fill(vec3(0)); tan2[0..tan2.length].fill(vec3(0)); for (int i=0; i<indices.length; i+=3) { uint i1 = indices[i+0]; uint i2 = indices[i+1]; uint i3 = indices[i+2]; vec3 v1 = verts[i1]; vec3 v2 = verts[i2]; vec3 v3 = verts[i3]; vec2 w1 = uvs[i1]; vec2 w2 = uvs[i2]; vec2 w3 = uvs[i3]; float x1 = v2.x - v1.x; float x2 = v3.x - v1.x; float y1 = v2.y - v1.y; float y2 = v3.y - v1.y; float z1 = v2.z - v1.z; float z2 = v3.z - v1.z; float s1 = w2.x - w1.x; float s2 = w3.x - w1.x; float t1 = w2.y - w1.y; float t2 = w3.y - w1.y; float r = 1.0F / (s1 * t2 - s2 * t1); vec3 sdir = vec3((t2 * x1 - t1 * x2) * r, (t2 * y1 - t1 * y2) * r, (t2 * z1 - t1 * z2) * r); vec3 tdir = vec3((s1 * x2 - s2 * x1) * r, (s1 * y2 - s2 * y1) * r, (s1 * z2 - s2 * z1) * r); tan1[i1] += sdir; tan1[i2] += sdir; tan1[i3] += sdir; tan2[i1] += tdir; tan2[i2] += tdir; tan2[i3] += tdir; } tangents.length = verts.length; bitTangents.length = verts.length; for (int a = 0; a < verts.length; a++) { vec3 n = normals[a]; vec3 t = tan1[a]; // Gram-Schmidt orthogonalize tangents[a] = (t - n * dot!vec3(n, t)).normalized(); float w = (dot!vec3(cross!vec3(n, t), tan2[a]) < 0.0F) ? -1.0F : 1.0F; bitTangents[a] = cross!vec3(n,t) * w; } mesh = new Mesh(verts, indices, uvs, normals, tangents, bitTangents); } private static uint GetMidpointIndex(ref uint[string] midpointIndices, ref vec3[] vertices, int i0, int i1) { string edgeKey = to!string(fmin(i0, i1)) ~ "_" ~ to!string(fmax(i0, i1)); uint* pMidpointIndex = (edgeKey in midpointIndices); uint midpointIndex; if (pMidpointIndex == null) { vec3 v0 = vertices[i0]; vec3 v1 = vertices[i1]; auto midpoint = (v0 + v1) / 2f; if (any!(a => a == midpoint)(vertices)) midpointIndex = vertices.countUntil(midpoint); else { midpointIndex = vertices.length; vertices ~= midpoint; } midpointIndices[edgeKey] = midpointIndex; } else midpointIndex = *pMidpointIndex; return midpointIndex; } /// <remarks> /// i0 /// / \ /// m02-m01 /// / \ / \ /// i2---m12---i1 /// </remarks> /// <param name="vectors"></param> /// <param name="indices"></param> public static void Subdivide(ref vec3[] vectors, ref uint[] indices, bool removeSourceTriangles) { uint[string] midpointIndices; uint[] newIndices;// = int[(indices.length * 4)]; if (!removeSourceTriangles) newIndices ~= indices; for (int i = 0; i < indices.length - 2; i += 3) { uint i0 = indices[i]; uint i1 = indices[i + 1]; uint i2 = indices[i + 2]; uint m01 = GetMidpointIndex(midpointIndices, vectors, i0, i1); uint m12 = GetMidpointIndex(midpointIndices, vectors, i1, i2); uint m02 = GetMidpointIndex(midpointIndices, vectors, i2, i0); newIndices ~= [ i0,m01,m02, i1,m12,m01, i2,m02,m12, m02,m01,m12 ]; } indices = newIndices; } void CreateCube() { Cube cube; vec3[] verts = cube.vertices; uint[] indices = cube.indices; vec3[] normals = cube.normals; vec2[] uvs = cube.uvcoords; vec3[] tangents; vec3[] bitTangents; //calcTangents(tangents, bitTangents, verts, indices, uvs, normals); dirtyCalcTangents(tangents, bitTangents, normals); mesh = new Mesh(verts, indices, uvs, normals, tangents, bitTangents); } void dirtyCalcTangents(ref vec3[] tangents, ref vec3[] bitTangents, vec3[] normals) { foreach(n; normals) { vec3 t; vec3 b; vec3 c1 = cross(n, vec3(0.0, 0.0, 1.0)); vec3 c2 = cross(n, vec3(0.0, 1.0, 0.0)); if (c1.length > c2.length) t = c1; else t = c2; t = t.normalized(); b = cross!vec3(n, t).normalized(); tangents ~= t; bitTangents ~= b; } } void calcTangents(ref vec3[] tangents, ref vec3[] bitTangents, vec3[] verts, uint[] indices, vec2[] uvs, vec3[] normals) { vec3[] tan1; vec3[] tan2; tan1.length = verts.length; tan2.length = verts.length; tan1[0..tan1.length].fill(vec3(0)); tan2[0..tan2.length].fill(vec3(0)); for (int i=0; i<indices.length; i+=3) { uint i1 = indices[i+0]; uint i2 = indices[i+1]; uint i3 = indices[i+2]; vec3 v1 = verts[i1]; vec3 v2 = verts[i2]; vec3 v3 = verts[i3]; vec2 w1 = uvs[i1]; vec2 w2 = uvs[i2]; vec2 w3 = uvs[i3]; float x1 = v2.x - v1.x; float x2 = v3.x - v1.x; float y1 = v2.y - v1.y; float y2 = v3.y - v1.y; float z1 = v2.z - v1.z; float z2 = v3.z - v1.z; float s1 = w2.x - w1.x; float s2 = w3.x - w1.x; float t1 = w2.y - w1.y; float t2 = w3.y - w1.y; float r = 1.0F / (s1 * t2 - s2 * t1); vec3 sdir = vec3((t2 * x1 - t1 * x2) * r, (t2 * y1 - t1 * y2) * r, (t2 * z1 - t1 * z2) * r); vec3 tdir = vec3((s1 * x2 - s2 * x1) * r, (s1 * y2 - s2 * y1) * r, (s1 * z2 - s2 * z1) * r); Log.info("sDir - vector: " ~ sdir.toString()); Log.info("tDir - vector: " ~ tdir.toString()); tan1[i1] += sdir; tan1[i2] += sdir; tan1[i3] += sdir; tan2[i1] += tdir; tan2[i2] += tdir; tan2[i3] += tdir; } tangents.length = verts.length; bitTangents.length = verts.length; for (int a = 0; a < verts.length; a++) { vec3 n = normals[a]; vec3 t = tan1[a]; // Gram-Schmidt orthogonalize tangents[a] = (t - n * dot!vec3(n, t)).normalized(); float w = (dot!vec3(cross!vec3(n, t), tan2[a]) < 0.0F) ? -1.0F : 1.0F; Log.info("Tangent - index: " ~ to!string(a) ~ " vector: " ~ tangents[a].toString()); bitTangents[a] = cross!vec3(n,t) * w; Log.info("Bitangent - index: " ~ to!string(a) ~ " vector: " ~ bitTangents[a].toString()); } } struct Cube { vec3[] vertices = [ vec3 (-1.0f, -1.0f, 1.0f), vec3 (1.0f, -1.0f, 1.0f), vec3 (1.0f, 1.0f, 1.0f), vec3 (-1.0f, 1.0f, 1.0f), vec3 (-1.0f, -1.0f, -1.0f), vec3 (1.0f, -1.0f, -1.0f), vec3 (1.0f, 1.0f, -1.0f), vec3 (-1.0f, 1.0f, -1.0f) ]; uint[] indices = [ 0, 1, 2, 2, 3, 0, 3, 2, 6, 6, 7, 3, 7, 6, 5, 5, 4, 7, 4, 0, 3, 3, 7, 4, 0, 1, 5, 5, 4, 0, 1, 5, 6, 6, 2, 1 ]; vec2[] uvcoords = [ vec2(0.0,0.0), vec2(1.0,0.0), vec2(1.0,1.0), vec2(0.0,1.0), vec2(0.0,0.0), vec2(1.0,0.0), vec2(1.0,1.0), vec2(0.0,1.0) /* vec2(0.0,0.0), vec2(1.0,0.0), vec2(1.0,1.0), vec2(0.0,1.0), vec2(0.0,0.0), vec2(1.0,0.0), vec2(1.0,1.0), vec2(0.0,1.0) */ ]; // Normal Data for the Cube Verticies vec3[] normals = [ vec3 (-1.0f, -1.0f, 1.0f), vec3 (1.0f, -1.0f, 1.0f), vec3 (1.0f, 1.0f, 1.0f), vec3 (-1.0f, 1.0f, 1.0f), vec3 (-1.0f, -1.0f, -1.0f), vec3 (1.0f, -1.0f, -1.0f), vec3 (1.0f, 1.0f, -1.0f), vec3 (-1.0f, 1.0f, -1.0f) ]; } struct Icosahedron { uint[] indices = [ 0,4,1, 0,9,4, 9,5,4, 4,5,8, 4,8,1, 8,10,1, 8,3,10, 5,3,8, 5,2,3, 2,7,3, 7,10,3, 7,6,10, 7,11,6, 11,0,6, 0,1,6, 6,1,10, 9,0,11, 9,11,2, 9,2,5, 7,2,11 ]; static const float X = 0.525731112119133606f; static const float Z = 0.850650808352039932f; vec3[] vertices = [ vec3(-X, 0f, Z), vec3(X, 0f, Z), vec3(-X, 0f, -Z), vec3(X, 0f, -Z), vec3(0f, Z, X), vec3(0f, Z, -X), vec3(0f, -Z, X), vec3(0f, -Z, -X), vec3(Z, X, 0f), vec3(-Z, X, 0f), vec3(Z, -X, 0f), vec3(-Z, -X, 0f) ]; } }
D
characteristic of the time of chivalry and knighthood in the Middle Ages
D
// https://issues.dlang.org/show_bug.cgi?id=18719 // REQUIRED_ARGS: -de /* TEST_OUTPUT: --- fail_compilation/fail18719.d(29): Deprecation: immutable field `x` initialized multiple times --- */ struct S { int x = -1; this(int y) immutable { x = y; import std.stdio; writeln("Ctor called with ", y); } void opAssign(int) immutable; } class C { S x; this() immutable { this(42); /* Initializes x. */ x = 13; /* Breaking immutable, or ok? */ } this(int x) immutable { this.x = x; } } void main() { new immutable C; }
D
/** * TypeInfo support code. * * Copyright: Copyright Digital Mars 2004 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright */ /* Copyright Digital Mars 2004 - 2009. * 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 rt.typeinfo.ti_Acreal; private import rt.typeinfo.ti_creal; private import rt.util.hash; // creal[] class TypeInfo_Ac : TypeInfo { @trusted: const: pure: nothrow: override string toString() const pure nothrow @safe { return "creal[]"; } override hash_t getHash(in void* p) { creal[] s = *cast(creal[]*)p; return hashOf(s.ptr, s.length * creal.sizeof); } override equals_t equals(in void* p1, in void* p2) { creal[] s1 = *cast(creal[]*)p1; creal[] s2 = *cast(creal[]*)p2; size_t len = s1.length; if (len != s2.length) return 0; for (size_t u = 0; u < len; u++) { if (!TypeInfo_c._equals(s1[u], s2[u])) return false; } return true; } override int compare(in void* p1, in void* p2) { creal[] s1 = *cast(creal[]*)p1; creal[] s2 = *cast(creal[]*)p2; size_t len = s1.length; if (s2.length < len) len = s2.length; for (size_t u = 0; u < len; u++) { int c = TypeInfo_c._compare(s1[u], s2[u]); if (c) return c; } if (s1.length < s2.length) return -1; else if (s1.length > s2.length) return 1; return 0; } @property override size_t tsize() nothrow pure { return (creal[]).sizeof; } @property override uint flags() nothrow pure { return 1; } @property override TypeInfo next() nothrow pure { return typeid(creal); } @property override size_t talign() nothrow pure { return (real[]).alignof; } version (X86_64) override int argTypes(out TypeInfo arg1, out TypeInfo arg2) { //arg1 = typeid(size_t); //arg2 = typeid(void*); return 0; } }
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2019 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/escape.d, _escape.d) * Documentation: https://dlang.org/phobos/dmd_escape.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/escape.d */ module dmd.escape; import core.stdc.stdio : printf; import dmd.aggregate; import dmd.declaration; import dmd.dscope; import dmd.dsymbol; import dmd.errors; import dmd.expression; import dmd.func; import dmd.globals; import dmd.identifier; import dmd.init; import dmd.mtype; import dmd.printast; import dmd.root.rootobject; import dmd.tokens; import dmd.visitor; import dmd.arraytypes; /****************************************** * Array literal is going to be allocated on the GC heap. * Check its elements to see if any would escape by going on the heap. * Params: * sc = used to determine current function and module * ae = array literal expression * gag = do not print error messages * Returns: * true if any elements escaped */ bool checkArrayLiteralEscape(Scope *sc, ArrayLiteralExp ae, bool gag) { bool errors; if (ae.basis) errors = checkNewEscape(sc, ae.basis, gag); foreach (ex; *ae.elements) { if (ex) errors |= checkNewEscape(sc, ex, gag); } return errors; } /****************************************** * Associative array literal is going to be allocated on the GC heap. * Check its elements to see if any would escape by going on the heap. * Params: * sc = used to determine current function and module * ae = associative array literal expression * gag = do not print error messages * Returns: * true if any elements escaped */ bool checkAssocArrayLiteralEscape(Scope *sc, AssocArrayLiteralExp ae, bool gag) { bool errors; foreach (ex; *ae.keys) { if (ex) errors |= checkNewEscape(sc, ex, gag); } foreach (ex; *ae.values) { if (ex) errors |= checkNewEscape(sc, ex, gag); } return errors; } /**************************************** * Function parameter par is being initialized to arg, * and par may escape. * Detect if scoped values can escape this way. * Print error messages when these are detected. * Params: * sc = used to determine current function and module * fdc = function being called, `null` if called indirectly * par = function parameter ('this' if null) * arg = initializer for param * gag = do not print error messages * Returns: * true if pointers to the stack can escape via assignment */ bool checkParamArgumentEscape(Scope* sc, FuncDeclaration fdc, Parameter par, Expression arg, bool gag) { enum log = false; if (log) printf("checkParamArgumentEscape(arg: %s par: %s)\n", arg ? arg.toChars() : "null", par ? par.toChars() : "this"); //printf("type = %s, %d\n", arg.type.toChars(), arg.type.hasPointers()); if (!arg.type.hasPointers()) return false; EscapeByResults er; escapeByValue(arg, &er); if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) return false; bool result = false; /* 'v' is assigned unsafely to 'par' */ void unsafeAssign(VarDeclaration v, const char* desc) { if (global.params.vsafe && sc.func.setUnsafe()) { if (!gag) error(arg.loc, "%s `%s` assigned to non-scope parameter `%s` calling %s", desc, v.toChars(), par ? par.toChars() : "this", fdc ? fdc.toPrettyChars() : "indirectly"); result = true; } } foreach (VarDeclaration v; er.byvalue) { if (log) printf("byvalue %s\n", v.toChars()); if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); notMaybeScope(v); if (v.isScope()) { unsafeAssign(v, "scope variable"); } else if (v.storage_class & STC.variadic && p == sc.func) { Type tb = v.type.toBasetype(); if (tb.ty == Tarray || tb.ty == Tsarray) { unsafeAssign(v, "variadic variable"); } } else { /* v is not 'scope', and is assigned to a parameter that may escape. * Therefore, v can never be 'scope'. */ if (log) printf("no infer for %s in %s loc %s, fdc %s, %d\n", v.toChars(), sc.func.ident.toChars(), sc.func.loc.toChars(), fdc.ident.toChars(), __LINE__); v.doNotInferScope = true; } } foreach (VarDeclaration v; er.byref) { if (log) printf("byref %s\n", v.toChars()); if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); notMaybeScope(v); if ((v.storage_class & (STC.ref_ | STC.out_)) == 0 && p == sc.func) { if (par && (par.storageClass & (STC.scope_ | STC.return_)) == STC.scope_) continue; unsafeAssign(v, "reference to local variable"); continue; } } foreach (FuncDeclaration fd; er.byfunc) { //printf("fd = %s, %d\n", fd.toChars(), fd.tookAddressOf); VarDeclarations vars; findAllOuterAccessedVariables(fd, &vars); foreach (v; vars) { //printf("v = %s\n", v.toChars()); assert(!v.isDataseg()); // these are not put in the closureVars[] Dsymbol p = v.toParent2(); notMaybeScope(v); if ((v.storage_class & (STC.ref_ | STC.out_ | STC.scope_)) && p == sc.func) { unsafeAssign(v, "reference to local"); continue; } } } foreach (Expression ee; er.byexp) { if (sc.func.setUnsafe()) { if (!gag) error(ee.loc, "reference to stack allocated value returned by `%s` assigned to non-scope parameter `%s`", ee.toChars(), par ? par.toChars() : "this"); result = true; } } return result; } /***************************************************** * Function argument initializes a `return` parameter, * and that parameter gets assigned to `firstArg`. * Essentially, treat as `firstArg = arg;` * Params: * sc = used to determine current function and module * firstArg = ref argument through which arg may be assigned * arg = initializer for param * gag = do not print error messages * Returns: * true if assignment to firstArg would cause an error */ bool checkParamArgumentReturn(Scope* sc, Expression firstArg, Expression arg, bool gag) { enum log = false; if (log) printf("checkParamArgumentReturn(firstArg: %s arg: %s)\n", firstArg.toChars(), arg.toChars()); //printf("type = %s, %d\n", arg.type.toChars(), arg.type.hasPointers()); if (!arg.type.hasPointers()) return false; scope e = new AssignExp(arg.loc, firstArg, arg); return checkAssignEscape(sc, e, gag); } /***************************************************** * Check struct constructor of the form s.this(args), by * checking each `return` parameter to see if it gets * assigned to `s`. * Params: * sc = used to determine current function and module * ce = constructor call of the form s.this(args) * gag = do not print error messages * Returns: * true if construction would cause an escaping reference error */ bool checkConstructorEscape(Scope* sc, CallExp ce, bool gag) { enum log = false; if (log) printf("checkConstructorEscape(%s, %s)\n", ce.toChars(), ce.type.toChars()); Type tthis = ce.type.toBasetype(); assert(tthis.ty == Tstruct); if (!tthis.hasPointers()) return false; if (!ce.arguments && ce.arguments.dim) return false; assert(ce.e1.op == TOK.dotVariable); DotVarExp dve = cast(DotVarExp)ce.e1; CtorDeclaration ctor = dve.var.isCtorDeclaration(); assert(ctor); assert(ctor.type.ty == Tfunction); TypeFunction tf = cast(TypeFunction)ctor.type; const nparams = tf.parameterList.length; const n = ce.arguments.dim; // j=1 if _arguments[] is first argument const j = (tf.linkage == LINK.d && tf.parameterList.varargs == VarArg.variadic); /* Attempt to assign each `return` arg to the `this` reference */ foreach (const i; 0 .. n) { Expression arg = (*ce.arguments)[i]; if (!arg.type.hasPointers()) return false; //printf("\targ[%d]: %s\n", i, arg.toChars()); if (i - j < nparams && i >= j) { Parameter p = tf.parameterList[i - j]; if (p.storageClass & STC.return_) { /* Fake `dve.e1 = arg;` and look for scope violations */ scope e = new AssignExp(arg.loc, dve.e1, arg); if (checkAssignEscape(sc, e, gag)) return true; } } } return false; } /**************************************** * Given an AssignExp, determine if the lvalue will cause * the contents of the rvalue to escape. * Print error messages when these are detected. * Infer 'scope' for the lvalue where possible, in order * to eliminate the error. * Params: * sc = used to determine current function and module * e = AssignExp or CatAssignExp to check for any pointers to the stack * gag = do not print error messages * Returns: * true if pointers to the stack can escape via assignment */ bool checkAssignEscape(Scope* sc, Expression e, bool gag) { enum log = false; if (log) printf("checkAssignEscape(e: %s)\n", e.toChars()); if (e.op != TOK.assign && e.op != TOK.blit && e.op != TOK.construct && e.op != TOK.concatenateAssign && e.op != TOK.concatenateElemAssign && e.op != TOK.concatenateDcharAssign) return false; auto ae = cast(BinExp)e; Expression e1 = ae.e1; Expression e2 = ae.e2; //printf("type = %s, %d\n", e1.type.toChars(), e1.type.hasPointers()); if (!e1.type.hasPointers()) return false; if (e1.op == TOK.slice) return false; /* The struct literal case can arise from the S(e2) constructor call: * return S(e2); * and appears in this function as: * structLiteral = e2; * Such an assignment does not necessarily remove scope-ness. */ if (e1.op == TOK.structLiteral) return false; EscapeByResults er; escapeByValue(e2, &er); if (!er.byref.dim && !er.byvalue.dim && !er.byfunc.dim && !er.byexp.dim) return false; VarDeclaration va = expToVariable(e1); if (va && e.op == TOK.concatenateElemAssign) { /* https://issues.dlang.org/show_bug.cgi?id=17842 * Draw an equivalence between: * *q = p; * and: * va ~= e; * since we are not assigning to va, but are assigning indirectly through va. */ va = null; } if (va && e1.op == TOK.dotVariable && va.type.toBasetype().ty == Tclass) { /* https://issues.dlang.org/show_bug.cgi?id=17949 * Draw an equivalence between: * *q = p; * and: * va.field = e2; * since we are not assigning to va, but are assigning indirectly through class reference va. */ va = null; } if (log && va) printf("va: %s\n", va.toChars()); // Try to infer 'scope' for va if in a function not marked @system bool inferScope = false; if (va && sc.func && sc.func.type && sc.func.type.ty == Tfunction) inferScope = (cast(TypeFunction)sc.func.type).trust != TRUST.system; //printf("inferScope = %d, %d\n", inferScope, (va.storage_class & STCmaybescope) != 0); // Determine if va is a parameter that is an indirect reference const bool vaIsRef = va && va.storage_class & STC.parameter && (va.storage_class & (STC.ref_ | STC.out_) || va.type.toBasetype().ty == Tclass); if (log && vaIsRef) printf("va is ref `%s`\n", va.toChars()); /* Determine if va is the first parameter, through which other 'return' parameters * can be assigned. */ bool isFirstRef() { if (!vaIsRef) return false; Dsymbol p = va.toParent2(); FuncDeclaration fd = sc.func; if (p == fd && fd.type && fd.type.ty == Tfunction) { TypeFunction tf = cast(TypeFunction)fd.type; if (!tf.nextOf() || (tf.nextOf().ty != Tvoid && !fd.isCtorDeclaration())) return false; if (va == fd.vthis) return true; if (fd.parameters && fd.parameters.dim && (*fd.parameters)[0] == va) return true; } return false; } const bool vaIsFirstRef = isFirstRef(); if (log && vaIsFirstRef) printf("va is first ref `%s`\n", va.toChars()); bool result = false; foreach (VarDeclaration v; er.byvalue) { if (log) printf("byvalue: %s\n", v.toChars()); if (v.isDataseg()) continue; if (v == va) continue; Dsymbol p = v.toParent2(); if (va && !vaIsRef && !va.isScope() && !v.isScope() && (va.storage_class & v.storage_class & (STC.maybescope | STC.variadic)) == STC.maybescope && p == sc.func) { /* Add v to va's list of dependencies */ va.addMaybe(v); continue; } if (vaIsFirstRef && (v.isScope() || (v.storage_class & STC.maybescope)) && !(v.storage_class & STC.return_) && v.isParameter() && sc.func.flags & FUNCFLAG.returnInprocess && p == sc.func) { if (log) printf("inferring 'return' for parameter %s in function %s\n", v.toChars(), sc.func.toChars()); inferReturn(sc.func, v); // infer addition of 'return' } if (!(va && va.isScope()) || vaIsRef) notMaybeScope(v); if (v.isScope()) { if (vaIsFirstRef && v.isParameter() && v.storage_class & STC.return_) { if (va.isScope()) continue; if (inferScope && !va.doNotInferScope) { if (log) printf("inferring scope for lvalue %s\n", va.toChars()); va.storage_class |= STC.scope_ | STC.scopeinferred; continue; } } if (va && va.isScope() && va.storage_class & STC.return_ && !(v.storage_class & STC.return_) && sc.func.setUnsafe()) { if (!gag) error(ae.loc, "scope variable `%s` assigned to return scope `%s`", v.toChars(), va.toChars()); result = true; continue; } // If va's lifetime encloses v's, then error if (va && (va.enclosesLifetimeOf(v) && !(v.storage_class & (STC.parameter | STC.temp)) || // va is class reference ae.e1.op == TOK.dotVariable && va.type.toBasetype().ty == Tclass && (va.enclosesLifetimeOf(v) || !va.isScope()) || vaIsRef || va.storage_class & (STC.ref_ | STC.out_) && !(v.storage_class & (STC.parameter | STC.temp))) && sc.func.setUnsafe()) { if (!gag) error(ae.loc, "scope variable `%s` assigned to `%s` with longer lifetime", v.toChars(), va.toChars()); result = true; continue; } if (va && !va.isDataseg() && !va.doNotInferScope) { if (!va.isScope() && inferScope) { //printf("inferring scope for %s\n", va.toChars()); va.storage_class |= STC.scope_ | STC.scopeinferred; if (v.storage_class & STC.return_ && !(va.storage_class & STC.return_)) { va.storage_class |= STC.return_ | STC.returninferred; } } continue; } if (sc.func.setUnsafe()) { if (!gag) error(ae.loc, "scope variable `%s` assigned to non-scope `%s`", v.toChars(), e1.toChars()); result = true; } } else if (v.storage_class & STC.variadic && p == sc.func) { Type tb = v.type.toBasetype(); if (tb.ty == Tarray || tb.ty == Tsarray) { if (va && !va.isDataseg() && !va.doNotInferScope) { if (!va.isScope() && inferScope) { //printf("inferring scope for %s\n", va.toChars()); va.storage_class |= STC.scope_ | STC.scopeinferred; } continue; } if (sc.func.setUnsafe()) { if (!gag) error(ae.loc, "variadic variable `%s` assigned to non-scope `%s`", v.toChars(), e1.toChars()); result = true; } } } else { /* v is not 'scope', and we didn't check the scope of where we assigned it to. * It may escape via that assignment, therefore, v can never be 'scope'. */ //printf("no infer for %s in %s, %d\n", v.toChars(), sc.func.ident.toChars(), __LINE__); v.doNotInferScope = true; } } ByRef: foreach (VarDeclaration v; er.byref) { if (log) printf("byref: %s\n", v.toChars()); if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); // If va's lifetime encloses v's, then error if (va && (va.enclosesLifetimeOf(v) && !(v.storage_class & STC.parameter) || va.storage_class & STC.ref_ || va.isDataseg()) && sc.func.setUnsafe()) { if (!gag) error(ae.loc, "address of variable `%s` assigned to `%s` with longer lifetime", v.toChars(), va.toChars()); result = true; continue; } if (va && v.storage_class & (STC.ref_ | STC.out_)) { Dsymbol pva = va.toParent2(); for (Dsymbol pv = p; pv; ) { pv = pv.toParent2(); if (pva == pv) // if v is nested inside pva { if (sc.func.setUnsafe()) { if (!gag) error(ae.loc, "reference `%s` assigned to `%s` with longer lifetime", v.toChars(), va.toChars()); result = true; continue ByRef; } break; } } } if (!(va && va.isScope())) notMaybeScope(v); if ((v.storage_class & (STC.ref_ | STC.out_)) == 0 && p == sc.func) { if (va && !va.isDataseg() && !va.doNotInferScope) { if (!va.isScope() && inferScope) { //printf("inferring scope for %s\n", va.toChars()); va.storage_class |= STC.scope_ | STC.scopeinferred; } continue; } if (e1.op == TOK.structLiteral) continue; if (sc.func.setUnsafe()) { if (!gag) error(ae.loc, "reference to local variable `%s` assigned to non-scope `%s`", v.toChars(), e1.toChars()); result = true; } continue; } } foreach (FuncDeclaration fd; er.byfunc) { if (log) printf("byfunc: %s, %d\n", fd.toChars(), fd.tookAddressOf); VarDeclarations vars; findAllOuterAccessedVariables(fd, &vars); /* https://issues.dlang.org/show_bug.cgi?id=16037 * If assigning the address of a delegate to a scope variable, * then uncount that address of. This is so it won't cause a * closure to be allocated. */ if (va && va.isScope() && fd.tookAddressOf && global.params.vsafe) --fd.tookAddressOf; foreach (v; vars) { //printf("v = %s\n", v.toChars()); assert(!v.isDataseg()); // these are not put in the closureVars[] Dsymbol p = v.toParent2(); if (!(va && va.isScope())) notMaybeScope(v); if ((v.storage_class & (STC.ref_ | STC.out_ | STC.scope_)) && p == sc.func) { if (va && !va.isDataseg() && !va.doNotInferScope) { /* Don't infer STC.scope_ for va, because then a closure * won't be generated for sc.func. */ //if (!va.isScope() && inferScope) //va.storage_class |= STC.scope_ | STC.scopeinferred; continue; } if (sc.func.setUnsafe()) { if (!gag) error(ae.loc, "reference to local `%s` assigned to non-scope `%s` in @safe code", v.toChars(), e1.toChars()); result = true; } continue; } } } foreach (Expression ee; er.byexp) { if (log) printf("byexp: %s\n", ee.toChars()); /* Do not allow slicing of a static array returned by a function */ if (va && ee.op == TOK.call && ee.type.toBasetype().ty == Tsarray && va.type.toBasetype().ty == Tarray && !(va.storage_class & STC.temp)) { if (!gag) deprecation(ee.loc, "slice of static array temporary returned by `%s` assigned to longer lived variable `%s`", ee.toChars(), va.toChars()); //result = true; continue; } if (va && !va.isDataseg() && !va.doNotInferScope) { if (!va.isScope() && inferScope) { //printf("inferring scope for %s\n", va.toChars()); va.storage_class |= STC.scope_ | STC.scopeinferred; } continue; } if (sc.func.setUnsafe()) { if (!gag) error(ee.loc, "reference to stack allocated value returned by `%s` assigned to non-scope `%s`", ee.toChars(), e1.toChars()); result = true; } } return result; } /************************************ * Detect cases where pointers to the stack can 'escape' the * lifetime of the stack frame when throwing `e`. * Print error messages when these are detected. * Params: * sc = used to determine current function and module * e = expression to check for any pointers to the stack * gag = do not print error messages * Returns: * true if pointers to the stack can escape */ bool checkThrowEscape(Scope* sc, Expression e, bool gag) { //printf("[%s] checkThrowEscape, e = %s\n", e.loc.toChars(), e.toChars()); EscapeByResults er; escapeByValue(e, &er); if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) return false; bool result = false; foreach (VarDeclaration v; er.byvalue) { //printf("byvalue %s\n", v.toChars()); if (v.isDataseg()) continue; if (v.isScope() && !v.iscatchvar) // special case: allow catch var to be rethrown // despite being `scope` { if (sc._module && sc._module.isRoot()) { // Only look for errors if in module listed on command line if (global.params.vsafe) // https://issues.dlang.org/show_bug.cgi?id=17029 { if (!gag) error(e.loc, "scope variable `%s` may not be thrown", v.toChars()); result = true; } continue; } } else { //printf("no infer for %s in %s, %d\n", v.toChars(), sc.func.ident.toChars(), __LINE__); v.doNotInferScope = true; } } return result; } /************************************ * Detect cases where pointers to the stack can 'escape' the * lifetime of the stack frame by being placed into a GC allocated object. * Print error messages when these are detected. * Params: * sc = used to determine current function and module * e = expression to check for any pointers to the stack * gag = do not print error messages * Returns: * true if pointers to the stack can escape */ bool checkNewEscape(Scope* sc, Expression e, bool gag) { //printf("[%s] checkNewEscape, e = %s\n", e.loc.toChars(), e.toChars()); enum log = false; if (log) printf("[%s] checkNewEscape, e: `%s`\n", e.loc.toChars(), e.toChars()); EscapeByResults er; escapeByValue(e, &er); if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) return false; bool result = false; foreach (VarDeclaration v; er.byvalue) { if (log) printf("byvalue `%s`\n", v.toChars()); if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); if (v.isScope()) { if (sc._module && sc._module.isRoot() && /* This case comes up when the ReturnStatement of a __foreachbody is * checked for escapes by the caller of __foreachbody. Skip it. * * struct S { static int opApply(int delegate(S*) dg); } * S* foo() { * foreach (S* s; S) // create __foreachbody for body of foreach * return s; // s is inferred as 'scope' but incorrectly tested in foo() * return null; } */ !(p.parent == sc.func)) { // Only look for errors if in module listed on command line if (global.params.vsafe) // https://issues.dlang.org/show_bug.cgi?id=17029 { if (!gag) error(e.loc, "scope variable `%s` may not be copied into allocated memory", v.toChars()); result = true; } continue; } } else if (v.storage_class & STC.variadic && p == sc.func) { Type tb = v.type.toBasetype(); if (tb.ty == Tarray || tb.ty == Tsarray) { if (!gag) error(e.loc, "copying `%s` into allocated memory escapes a reference to variadic parameter `%s`", e.toChars(), v.toChars()); result = false; } } else { //printf("no infer for %s in %s, %d\n", v.toChars(), sc.func.ident.toChars(), __LINE__); v.doNotInferScope = true; } } foreach (VarDeclaration v; er.byref) { if (log) printf("byref `%s`\n", v.toChars()); void escapingRef(VarDeclaration v) { if (!gag) { const(char)* kind = (v.storage_class & STC.parameter) ? "parameter" : "local"; error(e.loc, "copying `%s` into allocated memory escapes a reference to %s variable `%s`", e.toChars(), kind, v.toChars()); } result = true; } if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); if ((v.storage_class & (STC.ref_ | STC.out_)) == 0) { if (p == sc.func) { escapingRef(v); continue; } } /* Check for returning a ref variable by 'ref', but should be 'return ref' * Infer the addition of 'return', or set result to be the offending expression. */ if (v.storage_class & (STC.ref_ | STC.out_)) { if (global.params.useDIP25 && sc._module && sc._module.isRoot()) { // https://dlang.org/spec/function.html#return-ref-parameters // Only look for errors if in module listed on command line if (p == sc.func) { //printf("escaping reference to local ref variable %s\n", v.toChars()); //printf("storage class = x%llx\n", v.storage_class); escapingRef(v); continue; } // Don't need to be concerned if v's parent does not return a ref FuncDeclaration fd = p.isFuncDeclaration(); if (fd && fd.type && fd.type.ty == Tfunction) { TypeFunction tf = cast(TypeFunction)fd.type; if (tf.isref) { if (!gag) error(e.loc, "storing reference to outer local variable `%s` into allocated memory causes it to escape", v.toChars()); result = true; continue; } } } } } foreach (Expression ee; er.byexp) { if (log) printf("byexp %s\n", ee.toChars()); if (!gag) error(ee.loc, "storing reference to stack allocated value returned by `%s` into allocated memory causes it to escape", ee.toChars()); result = true; } return result; } /************************************ * Detect cases where pointers to the stack can 'escape' the * lifetime of the stack frame by returning 'e' by value. * Print error messages when these are detected. * Params: * sc = used to determine current function and module * e = expression to check for any pointers to the stack * gag = do not print error messages * Returns: * true if pointers to the stack can escape */ bool checkReturnEscape(Scope* sc, Expression e, bool gag) { //printf("[%s] checkReturnEscape, e: %s\n", e.loc.toChars(), e.toChars()); return checkReturnEscapeImpl(sc, e, false, gag); } /************************************ * Detect cases where returning 'e' by ref can result in a reference to the stack * being returned. * Print error messages when these are detected. * Params: * sc = used to determine current function and module * e = expression to check * gag = do not print error messages * Returns: * true if references to the stack can escape */ bool checkReturnEscapeRef(Scope* sc, Expression e, bool gag) { version (none) { printf("[%s] checkReturnEscapeRef, e = %s\n", e.loc.toChars(), e.toChars()); printf("current function %s\n", sc.func.toChars()); printf("parent2 function %s\n", sc.func.toParent2().toChars()); } return checkReturnEscapeImpl(sc, e, true, gag); } /*************************************** * Implementation of checking for escapes in `return`. * Params: * sc = used to determine current function and module * e = expression to check * refs = true: escape by value, false: escape by ref * gag = do not print error messages * Returns: * true if references to the stack can escape */ private bool checkReturnEscapeImpl(Scope* sc, Expression e, bool refs, bool gag) { enum log = false; if (log) printf("[%s] checkReturnEscapeImpl, refs: %d e: `%s`\n", e.loc.toChars(), refs, e.toChars()); EscapeByResults er; if (refs) escapeByRef(e, &er); else escapeByValue(e, &er); if (!er.byref.dim && !er.byvalue.dim && !er.byexp.dim) return false; bool result = false; foreach (VarDeclaration v; er.byvalue) { if (log) printf("byvalue `%s`\n", v.toChars()); if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); if ((v.isScope() || (v.storage_class & STC.maybescope)) && !(v.storage_class & STC.return_) && v.isParameter() && sc.func.flags & FUNCFLAG.returnInprocess && p == sc.func) { inferReturn(sc.func, v); // infer addition of 'return' continue; } if (v.isScope()) { if (v.storage_class & STC.return_) continue; if (sc._module && sc._module.isRoot() && /* This case comes up when the ReturnStatement of a __foreachbody is * checked for escapes by the caller of __foreachbody. Skip it. * * struct S { static int opApply(int delegate(S*) dg); } * S* foo() { * foreach (S* s; S) // create __foreachbody for body of foreach * return s; // s is inferred as 'scope' but incorrectly tested in foo() * return null; } */ !(!refs && p.parent == sc.func && p.isFuncDeclaration() && p.isFuncDeclaration().fes) && /* * auto p(scope string s) { * string scfunc() { return s; } * } */ !(!refs && p.isFuncDeclaration() && sc.func.isFuncDeclaration().getLevel(p.isFuncDeclaration(), sc.intypeof) > 0) ) { // Only look for errors if in module listed on command line if (global.params.vsafe) // https://issues.dlang.org/show_bug.cgi?id=17029 { if (!gag) error(e.loc, "scope variable `%s` may not be returned", v.toChars()); result = true; } continue; } } else if (v.storage_class & STC.variadic && p == sc.func) { Type tb = v.type.toBasetype(); if (tb.ty == Tarray || tb.ty == Tsarray) { if (!gag) error(e.loc, "returning `%s` escapes a reference to variadic parameter `%s`", e.toChars(), v.toChars()); result = false; } } else { //printf("no infer for %s in %s, %d\n", v.toChars(), sc.func.ident.toChars(), __LINE__); v.doNotInferScope = true; } } foreach (VarDeclaration v; er.byref) { if (log) printf("byref `%s`\n", v.toChars()); void escapingRef(VarDeclaration v) { if (!gag) { const(char)* msg; if (v.storage_class & STC.parameter) msg = "returning `%s` escapes a reference to parameter `%s`, perhaps annotate with `return`"; else msg = "returning `%s` escapes a reference to local variable `%s`"; error(e.loc, msg, e.toChars(), v.toChars()); } result = true; } if (v.isDataseg()) continue; Dsymbol p = v.toParent2(); if ((v.storage_class & (STC.ref_ | STC.out_)) == 0) { if (p == sc.func) { escapingRef(v); continue; } FuncDeclaration fd = p.isFuncDeclaration(); if (fd && sc.func.flags & FUNCFLAG.returnInprocess) { /* Code like: * int x; * auto dg = () { return &x; } * Making it: * auto dg = () return { return &x; } * Because dg.ptr points to x, this is returning dt.ptr+offset */ if (global.params.vsafe) { sc.func.storage_class |= STC.return_ | STC.returninferred; } } } /* Check for returning a ref variable by 'ref', but should be 'return ref' * Infer the addition of 'return', or set result to be the offending expression. */ if ( (v.storage_class & (STC.ref_ | STC.out_)) && !(v.storage_class & (STC.return_ | STC.foreach_))) { if (sc.func.flags & FUNCFLAG.returnInprocess && p == sc.func) { inferReturn(sc.func, v); // infer addition of 'return' } else if (global.params.useDIP25 && sc._module && sc._module.isRoot()) { // https://dlang.org/spec/function.html#return-ref-parameters // Only look for errors if in module listed on command line if (p == sc.func) { //printf("escaping reference to local ref variable %s\n", v.toChars()); //printf("storage class = x%llx\n", v.storage_class); escapingRef(v); continue; } // Don't need to be concerned if v's parent does not return a ref FuncDeclaration fd = p.isFuncDeclaration(); if (fd && fd.type && fd.type.ty == Tfunction) { TypeFunction tf = cast(TypeFunction)fd.type; if (tf.isref) { if (!gag) error(e.loc, "escaping reference to outer local variable `%s`", v.toChars()); result = true; continue; } } } } } foreach (Expression ee; er.byexp) { if (log) printf("byexp %s\n", ee.toChars()); if (!gag) error(ee.loc, "escaping reference to stack allocated value returned by `%s`", ee.toChars()); result = true; } return result; } /************************************* * Variable v needs to have 'return' inferred for it. * Params: * fd = function that v is a parameter to * v = parameter that needs to be STC.return_ */ private void inferReturn(FuncDeclaration fd, VarDeclaration v) { // v is a local in the current function //printf("for function '%s' inferring 'return' for variable '%s'\n", fd.toChars(), v.toChars()); v.storage_class |= STC.return_ | STC.returninferred; TypeFunction tf = cast(TypeFunction)fd.type; if (v == fd.vthis) { /* v is the 'this' reference, so mark the function */ fd.storage_class |= STC.return_ | STC.returninferred; if (tf.ty == Tfunction) { //printf("'this' too %p %s\n", tf, sc.func.toChars()); tf.isreturn = true; tf.isreturninferred = true; } } else { // Perform 'return' inference on parameter if (tf.ty == Tfunction) { const dim = tf.parameterList.length; foreach (const i; 0 .. dim) { Parameter p = tf.parameterList[i]; if (p.ident == v.ident) { p.storageClass |= STC.return_ | STC.returninferred; break; // there can be only one } } } } } /**************************************** * e is an expression to be returned by value, and that value contains pointers. * Walk e to determine which variables are possibly being * returned by value, such as: * int* function(int* p) { return p; } * If e is a form of &p, determine which variables have content * which is being returned as ref, such as: * int* function(int i) { return &i; } * Multiple variables can be inserted, because of expressions like this: * int function(bool b, int i, int* p) { return b ? &i : p; } * * No side effects. * * Params: * e = expression to be returned by value * er = where to place collected data */ private void escapeByValue(Expression e, EscapeByResults* er) { //printf("[%s] escapeByValue, e: %s\n", e.loc.toChars(), e.toChars()); extern (C++) final class EscapeVisitor : Visitor { alias visit = Visitor.visit; public: EscapeByResults* er; extern (D) this(EscapeByResults* er) { this.er = er; } override void visit(Expression e) { } override void visit(AddrExp e) { /* Taking the address of struct literal is normally not * allowed, but CTFE can generate one out of a new expression, * but it'll be placed in static data so no need to check it. */ if (e.e1.op != TOK.structLiteral) escapeByRef(e.e1, er); } override void visit(SymOffExp e) { VarDeclaration v = e.var.isVarDeclaration(); if (v) er.byref.push(v); } override void visit(VarExp e) { VarDeclaration v = e.var.isVarDeclaration(); if (v) er.byvalue.push(v); } override void visit(ThisExp e) { if (e.var) er.byvalue.push(e.var); } override void visit(DotVarExp e) { auto t = e.e1.type.toBasetype(); if (t.ty == Tstruct) e.e1.accept(this); } override void visit(DelegateExp e) { Type t = e.e1.type.toBasetype(); if (t.ty == Tclass || t.ty == Tpointer) escapeByValue(e.e1, er); else escapeByRef(e.e1, er); er.byfunc.push(e.func); } override void visit(FuncExp e) { if (e.fd.tok == TOK.delegate_) er.byfunc.push(e.fd); } override void visit(TupleExp e) { assert(0); // should have been lowered by now } override void visit(ArrayLiteralExp e) { Type tb = e.type.toBasetype(); if (tb.ty == Tsarray || tb.ty == Tarray) { if (e.basis) e.basis.accept(this); foreach (el; *e.elements) { if (el) el.accept(this); } } } override void visit(StructLiteralExp e) { if (e.elements) { foreach (ex; *e.elements) { if (ex) ex.accept(this); } } } override void visit(NewExp e) { Type tb = e.newtype.toBasetype(); if (tb.ty == Tstruct && !e.member && e.arguments) { foreach (ex; *e.arguments) { if (ex) ex.accept(this); } } } override void visit(CastExp e) { Type tb = e.type.toBasetype(); if (tb.ty == Tarray && e.e1.type.toBasetype().ty == Tsarray) { escapeByRef(e.e1, er); } else e.e1.accept(this); } override void visit(SliceExp e) { if (e.e1.op == TOK.variable) { VarDeclaration v = (cast(VarExp)e.e1).var.isVarDeclaration(); Type tb = e.type.toBasetype(); if (v) { if (tb.ty == Tsarray) return; if (v.storage_class & STC.variadic) { er.byvalue.push(v); return; } } } Type t1b = e.e1.type.toBasetype(); if (t1b.ty == Tsarray) { Type tb = e.type.toBasetype(); if (tb.ty != Tsarray) escapeByRef(e.e1, er); } else e.e1.accept(this); } override void visit(IndexExp e) { if (e.e1.type.toBasetype().ty == Tsarray) { e.e1.accept(this); } } override void visit(BinExp e) { Type tb = e.type.toBasetype(); if (tb.ty == Tpointer) { e.e1.accept(this); e.e2.accept(this); } } override void visit(BinAssignExp e) { e.e1.accept(this); } override void visit(AssignExp e) { e.e1.accept(this); } override void visit(CommaExp e) { e.e2.accept(this); } override void visit(CondExp e) { e.e1.accept(this); e.e2.accept(this); } override void visit(CallExp e) { //printf("CallExp(): %s\n", e.toChars()); /* Check each argument that is * passed as 'return scope'. */ Type t1 = e.e1.type.toBasetype(); TypeFunction tf; TypeDelegate dg; if (t1.ty == Tdelegate) { dg = cast(TypeDelegate)t1; tf = cast(TypeFunction)(cast(TypeDelegate)t1).next; } else if (t1.ty == Tfunction) tf = cast(TypeFunction)t1; else return; if (e.arguments && e.arguments.dim) { /* j=1 if _arguments[] is first argument, * skip it because it is not passed by ref */ int j = (tf.linkage == LINK.d && tf.parameterList.varargs == VarArg.variadic); for (size_t i = j; i < e.arguments.dim; ++i) { Expression arg = (*e.arguments)[i]; size_t nparams = tf.parameterList.length; if (i - j < nparams && i >= j) { Parameter p = tf.parameterList[i - j]; const stc = tf.parameterStorageClass(null, p); if ((stc & (STC.scope_)) && (stc & STC.return_)) arg.accept(this); else if ((stc & (STC.ref_)) && (stc & STC.return_)) escapeByRef(arg, er); } } } // If 'this' is returned, check it too if (e.e1.op == TOK.dotVariable && t1.ty == Tfunction) { DotVarExp dve = cast(DotVarExp)e.e1; FuncDeclaration fd = dve.var.isFuncDeclaration(); AggregateDeclaration ad; if (global.params.vsafe && tf.isreturn && fd && (ad = fd.isThis()) !is null) { if (ad.isClassDeclaration() || tf.isscope) // this is 'return scope' dve.e1.accept(this); else if (ad.isStructDeclaration()) // this is 'return ref' escapeByRef(dve.e1, er); } else if (dve.var.storage_class & STC.return_ || tf.isreturn) { if (dve.var.storage_class & STC.scope_) dve.e1.accept(this); else if (dve.var.storage_class & STC.ref_) escapeByRef(dve.e1, er); } // If it's also a nested function that is 'return scope' if (fd && fd.isNested()) { if (tf.isreturn && tf.isscope) er.byexp.push(e); } } /* If returning the result of a delegate call, the .ptr * field of the delegate must be checked. */ if (dg) { if (tf.isreturn) e.e1.accept(this); } /* If it's a nested function that is 'return scope' */ if (e.e1.op == TOK.variable) { VarExp ve = cast(VarExp)e.e1; FuncDeclaration fd = ve.var.isFuncDeclaration(); if (fd && fd.isNested()) { if (tf.isreturn && tf.isscope) er.byexp.push(e); } } } } scope EscapeVisitor v = new EscapeVisitor(er); e.accept(v); } /**************************************** * e is an expression to be returned by 'ref'. * Walk e to determine which variables are possibly being * returned by ref, such as: * ref int function(int i) { return i; } * If e is a form of *p, determine which variables have content * which is being returned as ref, such as: * ref int function(int* p) { return *p; } * Multiple variables can be inserted, because of expressions like this: * ref int function(bool b, int i, int* p) { return b ? i : *p; } * * No side effects. * * Params: * e = expression to be returned by 'ref' * er = where to place collected data */ private void escapeByRef(Expression e, EscapeByResults* er) { //printf("[%s] escapeByRef, e: %s\n", e.loc.toChars(), e.toChars()); extern (C++) final class EscapeRefVisitor : Visitor { alias visit = Visitor.visit; public: EscapeByResults* er; extern (D) this(EscapeByResults* er) { this.er = er; } override void visit(Expression e) { } override void visit(VarExp e) { auto v = e.var.isVarDeclaration(); if (v) { if (v.storage_class & STC.ref_ && v.storage_class & (STC.foreach_ | STC.temp) && v._init) { /* If compiler generated ref temporary * (ref v = ex; ex) * look at the initializer instead */ if (ExpInitializer ez = v._init.isExpInitializer()) { assert(ez.exp && ez.exp.op == TOK.construct); Expression ex = (cast(ConstructExp)ez.exp).e2; ex.accept(this); } } else er.byref.push(v); } } override void visit(ThisExp e) { if (e.var && e.var.toParent2().isFuncDeclaration().isThis2) escapeByValue(e, er); else if (e.var) er.byref.push(e.var); } override void visit(PtrExp e) { escapeByValue(e.e1, er); } override void visit(IndexExp e) { Type tb = e.e1.type.toBasetype(); if (e.e1.op == TOK.variable) { VarDeclaration v = (cast(VarExp)e.e1).var.isVarDeclaration(); if (tb.ty == Tarray || tb.ty == Tsarray) { if (v && v.storage_class & STC.variadic) { er.byref.push(v); return; } } } if (tb.ty == Tsarray) { e.e1.accept(this); } else if (tb.ty == Tarray) { escapeByValue(e.e1, er); } } override void visit(StructLiteralExp e) { if (e.elements) { foreach (ex; *e.elements) { if (ex) ex.accept(this); } } er.byexp.push(e); } override void visit(DotVarExp e) { Type t1b = e.e1.type.toBasetype(); if (t1b.ty == Tclass) escapeByValue(e.e1, er); else e.e1.accept(this); } override void visit(BinAssignExp e) { e.e1.accept(this); } override void visit(AssignExp e) { e.e1.accept(this); } override void visit(CommaExp e) { e.e2.accept(this); } override void visit(CondExp e) { e.e1.accept(this); e.e2.accept(this); } override void visit(CallExp e) { /* If the function returns by ref, check each argument that is * passed as 'return ref'. */ Type t1 = e.e1.type.toBasetype(); TypeFunction tf; if (t1.ty == Tdelegate) tf = cast(TypeFunction)(cast(TypeDelegate)t1).next; else if (t1.ty == Tfunction) tf = cast(TypeFunction)t1; else return; if (tf.isref) { if (e.arguments && e.arguments.dim) { /* j=1 if _arguments[] is first argument, * skip it because it is not passed by ref */ int j = (tf.linkage == LINK.d && tf.parameterList.varargs == VarArg.variadic); for (size_t i = j; i < e.arguments.dim; ++i) { Expression arg = (*e.arguments)[i]; size_t nparams = tf.parameterList.length; if (i - j < nparams && i >= j) { Parameter p = tf.parameterList[i - j]; const stc = tf.parameterStorageClass(null, p); if ((stc & (STC.out_ | STC.ref_)) && (stc & STC.return_)) arg.accept(this); else if ((stc & STC.scope_) && (stc & STC.return_)) { if (arg.op == TOK.delegate_) { DelegateExp de = cast(DelegateExp)arg; if (de.func.isNested()) er.byexp.push(de); } else escapeByValue(arg, er); } } } } // If 'this' is returned by ref, check it too if (e.e1.op == TOK.dotVariable && t1.ty == Tfunction) { DotVarExp dve = cast(DotVarExp)e.e1; if (dve.var.storage_class & STC.return_ || tf.isreturn) { if (dve.var.storage_class & STC.scope_ || tf.isscope) escapeByValue(dve.e1, er); else if (dve.var.storage_class & STC.ref_ || tf.isref) dve.e1.accept(this); } // If it's also a nested function that is 'return ref' FuncDeclaration fd = dve.var.isFuncDeclaration(); if (fd && fd.isNested()) { if (tf.isreturn) er.byexp.push(e); } } // If it's a delegate, check it too if (e.e1.op == TOK.variable && t1.ty == Tdelegate) { escapeByValue(e.e1, er); } /* If it's a nested function that is 'return ref' */ if (e.e1.op == TOK.variable) { VarExp ve = cast(VarExp)e.e1; FuncDeclaration fd = ve.var.isFuncDeclaration(); if (fd && fd.isNested()) { if (tf.isreturn) er.byexp.push(e); } } } else er.byexp.push(e); } } scope EscapeRefVisitor v = new EscapeRefVisitor(er); e.accept(v); } /************************************ * Aggregate the data collected by the escapeBy??() functions. */ private struct EscapeByResults { VarDeclarations byref; // array into which variables being returned by ref are inserted VarDeclarations byvalue; // array into which variables with values containing pointers are inserted FuncDeclarations byfunc; // nested functions that are turned into delegates Expressions byexp; // array into which temporaries being returned by ref are inserted } /************************* * Find all variables accessed by this delegate that are * in functions enclosing it. * Params: * fd = function * vars = array to append found variables to */ void findAllOuterAccessedVariables(FuncDeclaration fd, VarDeclarations* vars) { //printf("findAllOuterAccessedVariables(fd: %s)\n", fd.toChars()); for (auto p = fd.parent; p; p = p.parent) { auto fdp = p.isFuncDeclaration(); if (fdp) { foreach (v; fdp.closureVars) { foreach (const fdv; v.nestedrefs) { if (fdv == fd) { //printf("accessed: %s, type %s\n", v.toChars(), v.type.toChars()); vars.push(v); } } } } } } /*********************************** * Turn off STC.maybescope for variable `v`. * This exists in order to find where STC.maybescope is getting turned off. * Params: * v = variable */ version (none) { void notMaybeScope(string file = __FILE__, int line = __LINE__)(VarDeclaration v) { printf("%.*s(%d): notMaybeScope('%s')\n", cast(int)file.length, file.ptr, line, v.toChars()); v.storage_class &= ~STC.maybescope; } } else { void notMaybeScope(VarDeclaration v) { v.storage_class &= ~STC.maybescope; } } /********************************************** * Have some variables that are maybescopes that were * assigned values from other maybescope variables. * Now that semantic analysis of the function is * complete, we can finalize this by turning off * maybescope for array elements that cannot be scope. * * `va` `v` => `va` `v` * maybe maybe => scope scope * scope scope => scope scope * scope maybe => scope scope * maybe scope => scope scope * - - => - - * - maybe => - - * - scope => error * maybe - => scope - * scope - => scope - * Params: * array = array of variables that were assigned to from maybescope variables */ void eliminateMaybeScopes(VarDeclaration[] array) { enum log = false; if (log) printf("eliminateMaybeScopes()\n"); bool changes; do { changes = false; foreach (va; array) { if (log) printf(" va = %s\n", va.toChars()); if (!(va.storage_class & (STC.maybescope | STC.scope_))) { if (va.maybes) { foreach (v; *va.maybes) { if (log) printf(" v = %s\n", v.toChars()); if (v.storage_class & STC.maybescope) { // v cannot be scope since it is assigned to a non-scope va notMaybeScope(v); if (!(v.storage_class & (STC.ref_ | STC.out_))) v.storage_class &= ~(STC.return_ | STC.returninferred); changes = true; } } } } } } while (changes); }
D
/Users/jcastells/Projects/Rust/i_04_3_variable_bindings_declare_first/target/debug/deps/i_04_3_variable_bindings_declare_first-993b60225ed8e184: src/main.rs /Users/jcastells/Projects/Rust/i_04_3_variable_bindings_declare_first/target/debug/deps/i_04_3_variable_bindings_declare_first-993b60225ed8e184.d: src/main.rs src/main.rs:
D
/** SASL authentication functions Copyright: © 2012-2016 Nicolas Gurrola License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Nicolas Gurrola */ module vibe.db.mongo.sasl; import std.algorithm; import std.base64; import std.conv; import std.digest.hmac; import std.digest.sha; import std.exception; import std.format; import std.string; import std.utf; import vibe.crypto.cryptorand; @safe: private SHA1HashMixerRNG g_rng; package struct ScramState { @safe: private string m_firstMessageBare; private string m_nonce; private DigestType!SHA1 m_saltedPassword; private string m_authMessage; string createInitialRequest(string user) { ubyte[18] randomBytes; g_rng.read(randomBytes[]); m_nonce = Base64.encode(randomBytes); m_firstMessageBare = format("n=%s,r=%s", escapeUsername(user), m_nonce); return format("n,,%s", m_firstMessageBare); } string update(string password, string challenge) { string serverFirstMessage = challenge; string next = challenge.find(','); if (challenge.length < 2 || challenge[0 .. 2] != "r=" || next.length < 3 || next[1 .. 3] != "s=") throw new Exception("Invalid server challenge format"); string serverNonce = challenge[2 .. $ - next.length]; challenge = next[3 .. $]; next = challenge.find(','); ubyte[] salt = Base64.decode(challenge[0 .. $ - next.length]); if (next.length < 3 || next[1 .. 3] != "i=") throw new Exception("Invalid server challenge format"); int iterations = next[3 .. $].to!int(); if (serverNonce[0 .. m_nonce.length] != m_nonce) throw new Exception("Invalid server nonce received"); string finalMessage = format("c=biws,r=%s", serverNonce); m_saltedPassword = pbkdf2(password.representation, salt, iterations); m_authMessage = format("%s,%s,%s", m_firstMessageBare, serverFirstMessage, finalMessage); auto proof = getClientProof(m_saltedPassword, m_authMessage); return format("%s,p=%s", finalMessage, Base64.encode(proof)); } string finalize(string challenge) { if (challenge.length < 2 || challenge[0 .. 2] != "v=") { throw new Exception("Invalid server signature format"); } if (!verifyServerSignature(Base64.decode(challenge[2 .. $]), m_saltedPassword, m_authMessage)) { throw new Exception("Invalid server signature"); } return null; } private static string escapeUsername(string user) { char[] buffer; foreach (i, dchar ch; user) { if (ch == ',' || ch == '=') { if (!buffer) { buffer.reserve(user.length + 2); buffer ~= user[0 .. i]; } if (ch == ',') buffer ~= "=2C"; else buffer ~= "=3D"; } else if (buffer) encode(buffer, ch); } return buffer ? () @trusted { return assumeUnique(buffer); } () : user; } unittest { string user = "user"; assert(escapeUsername(user) == user); assert(escapeUsername(user) is user); assert(escapeUsername("user,1") == "user=2C1"); assert(escapeUsername("user=1") == "user=3D1"); assert(escapeUsername("u,=ser1") == "u=2C=3Dser1"); assert(escapeUsername("u=se=r1") == "u=3Dse=3Dr1"); } private static auto getClientProof(DigestType!SHA1 saltedPassword, string authMessage) { auto clientKey = () @trusted { return hmac!SHA1("Client Key".representation, saltedPassword); } (); auto storedKey = sha1Of(clientKey); auto clientSignature = () @trusted { return hmac!SHA1(authMessage.representation, storedKey); } (); foreach (i; 0 .. clientKey.length) { clientKey[i] = clientKey[i] ^ clientSignature[i]; } return clientKey; } private static bool verifyServerSignature(ubyte[] signature, DigestType!SHA1 saltedPassword, string authMessage) @trusted { auto serverKey = hmac!SHA1("Server Key".representation, saltedPassword); auto serverSignature = hmac!SHA1(authMessage.representation, serverKey); return serverSignature == signature; } } private DigestType!SHA1 pbkdf2(const ubyte[] password, const ubyte[] salt, int iterations) { import std.bitmanip; ubyte[4] intBytes = [0, 0, 0, 1]; auto last = () @trusted { return hmac!SHA1(salt, intBytes[], password); } (); auto current = last; foreach (i; 1 .. iterations) { last = () @trusted { return hmac!SHA1(last[], password); } (); foreach (j; 0 .. current.length) { current[j] = current[j] ^ last[j]; } } return current; } static this() { g_rng = new SHA1HashMixerRNG(); }
D
module uhd.capi; public import uhd.capi.config; public import uhd.capi.error; public import uhd.capi.types.metadata; public import uhd.capi.types.ranges; public import uhd.capi.types.sensors; public import uhd.capi.types.string_vector; public import uhd.capi.types.tune_request; public import uhd.capi.types.tune_result; public import uhd.capi.types.usrp_info; public import uhd.capi.usrp.dboard_eeprom; public import uhd.capi.usrp.mboard_eeprom; public import uhd.capi.usrp.subdev_spec; public import uhd.capi.usrp.usrp; public import uhd.capi.usrp_clock.usrp_clock; public import uhd.capi.utils.thread_priority;
D
/Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/Data/URLEncodedFormParser.swift.o : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormDecoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormParser.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormSerializer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/URLEncodedFormError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/Data/URLEncodedFormParser~partial.swiftmodule : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormDecoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormParser.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormSerializer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/URLEncodedFormError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/Data/URLEncodedFormParser~partial.swiftdoc : /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormData.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormDataConvertible.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormDecoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Codable/URLEncodedFormEncoder.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormParser.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Data/URLEncodedFormSerializer.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/URLEncodedFormError.swift /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/url-encoded-form/Sources/URLEncodedForm/Utilities/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/Jorge/Desktop/Projects/Web/Swift/kisiBootcamp/.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
extern(C) int printf(const char* fmt, ...); template TypeTuple(T...){ alias T TypeTuple; } template Id( T){ alias T Id; } template Id(alias A){ alias A Id; } /***************************************************/ // 1680 struct S1680 { ulong _y; ulong blah1() { return _y; } static S1680 blah1(ulong n) { return S1680(n); } static S1680 blah2(ulong n) { return S1680(n); } static S1680 blah2(char[] n) { return S1680(n.length); } } class C1680 { ulong _y; this(ulong n){} ulong blah1() { return _y; } static C1680 blah1(ulong n) { return new C1680(n); } static C1680 blah2(ulong n) { return new C1680(n); } static C1680 blah2(char[] n) { return new C1680(n.length); } } void test1680() { // OK S1680 s = S1680.blah1(5); void fs() { S1680 s1 = S1680.blah2(5); // OK S1680 s2 = S1680.blah2("hello".dup); // OK S1680 s3 = S1680.blah1(5); // Error: 'this' is only allowed in non-static member functions, not f } C1680 c = C1680.blah1(5); void fc() { C1680 c1 = C1680.blah2(5); C1680 c2 = C1680.blah2("hello".dup); C1680 c3 = C1680.blah1(5); } } /***************************************************/ // 7418 int foo7418(uint a) { return 1; } int foo7418(char[] a) { return 2; } alias foo7418 foo7418a; template foo7418b(T = void) { alias foo7418 foo7418b; } void test7418() { assert(foo7418a(1U) == 1); assert(foo7418a("a".dup) == 2); assert(foo7418b!()(1U) == 1); assert(foo7418b!()("a".dup) == 2); } /***************************************************/ // 7552 struct S7552 { static void foo(){} static void foo(int){} } struct T7552 { alias TypeTuple!(__traits(getOverloads, S7552, "foo")) FooInS; alias FooInS[0] foo; // should be S7552.foo() static void foo(string){} } struct U7552 { alias TypeTuple!(__traits(getOverloads, S7552, "foo")) FooInS; alias FooInS[1] foo; // should be S7552.foo(int) static void foo(string){} } void test7552() { alias TypeTuple!(__traits(getOverloads, S7552, "foo")) FooInS; static assert(FooInS.length == 2); FooInS[0](); static assert(!__traits(compiles, FooInS[0](0))); static assert(!__traits(compiles, FooInS[1]())); FooInS[1](0); Id!(FooInS[0])(); static assert(!__traits(compiles, Id!(FooInS[0])(0))); static assert(!__traits(compiles, Id!(FooInS[1])())); Id!(FooInS[1])(0); alias TypeTuple!(__traits(getOverloads, T7552, "foo")) FooInT; static assert(FooInT.length == 2); // fail FooInT[0](); static assert(!__traits(compiles, FooInT[0](0))); static assert(!__traits(compiles, FooInT[0](""))); static assert(!__traits(compiles, FooInT[1]())); static assert(!__traits(compiles, FooInT[1](0))); // fail FooInT[1](""); // fail alias TypeTuple!(__traits(getOverloads, U7552, "foo")) FooInU; static assert(FooInU.length == 2); static assert(!__traits(compiles, FooInU[0]())); FooInU[0](0); static assert(!__traits(compiles, FooInU[0](""))); static assert(!__traits(compiles, FooInU[1]())); static assert(!__traits(compiles, FooInU[1](0))); FooInU[1](""); } /***************************************************/ // 8668 import imports.m8668a; import imports.m8668c; //replace with m8668b to make it work void test8668() { split8668("abc"); split8668(123); } /***************************************************/ // 8943 void test8943() { struct S { void foo(); } alias TypeTuple!(__traits(getOverloads, S, "foo")) Overloads; alias TypeTuple!(__traits(parent, Overloads[0])) P; // fail static assert(is(P[0] == S)); } /***************************************************/ // 9410 struct S {} int foo(float f, ref S s) { return 1; } int foo(float f, S s) { return 2; } void test9410() { S s; assert(foo(1, s ) == 1); // works fine. Print: ref assert(foo(1, S()) == 2); // Fails with: Error: S() is not an lvalue } /***************************************************/ int main() { test1680(); test7418(); test7552(); test8668(); test8943(); test9410(); printf("Success\n"); return 0; }
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void get(Args...)(ref Args args) { import std.traits, std.meta, std.typecons; static if (Args.length == 1) { alias Arg = Args[0]; static if (isArray!Arg) { static if (isSomeChar!(ElementType!Arg)) { args[0] = readln.chomp.to!Arg; } else { args[0] = readln.split.to!Arg; } } else static if (isTuple!Arg) { auto input = readln.split; static foreach (i; 0..Fields!Arg.length) { args[0][i] = input[i].to!(Fields!Arg[i]); } } else { args[0] = readln.chomp.to!Arg; } } else { auto input = readln.split; assert(input.length == Args.length); static foreach (i; 0..Args.length) { args[i] = input[i].to!(Args[i]); } } } void get_lines(Args...)(size_t N, ref Args args) { import std.traits, std.range; static foreach (i; 0..Args.length) { static assert(isArray!(Args[i])); args[i].length = N; } foreach (i; 0..N) { static if (Args.length == 1) { get(args[0][i]); } else { auto input = readln.split; static foreach (j; 0..Args.length) { args[j][i] = input[j].to!(ElementType!(Args[j])); } } } } alias P = Tuple!(int, "i", int, "r"); void main() { int N; get(N); P[] ps; foreach (i, a; readln.split.to!(int[])) ps ~= P(i.to!int + 1, a); while (ps.length > 2) { P[] pps; for (size_t i; i < ps.length; i += 2) { auto p = ps[i]; auto q = ps[i+1]; pps ~= p.r > q.r ? p : q; } ps = pps; } auto p = ps[0]; auto q = ps[1]; writeln(p.r > q.r ? q.i : p.i); }
D
func string B_BuildLearnString(var string text,var int kosten) { var string concatText; concatText = ConcatStrings(text,PRINT_Kosten); concatText = ConcatStrings(concatText,IntToString(kosten)); if(kosten == 1) { concatText = ConcatStrings(concatText,PRINT_1LP); } else if((kosten > 1) && (kosten < 5)) { concatText = ConcatStrings(concatText,PRINT_2LP); } else { concatText = ConcatStrings(concatText,PRINT_LP); }; return concatText; }; func string B_BuildPriceString(var string text,var int price) { var string concatText; concatText = ConcatStrings(text," ("); concatText = ConcatStrings(concatText,IntToString(price)); concatText = ConcatStrings(concatText," золотых)"); return concatText; };
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM ROCKTYPE 286.899994 29.7000008 4.69999981 270.899994 112 125 16.7999992 81.1999969 3402 4.9000001 6.80000019 sediments, redbeds
D
/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Port to the D programming language: * Frank Benoit <benoit@tionex.de> *******************************************************************************/ module dwt.custom.CTabFolder; import dwt.DWT; import dwt.DWTException; import dwt.accessibility.ACC; import dwt.accessibility.Accessible; import dwt.accessibility.AccessibleAdapter; import dwt.accessibility.AccessibleControlAdapter; import dwt.accessibility.AccessibleControlEvent; import dwt.accessibility.AccessibleEvent; import dwt.events.SelectionAdapter; import dwt.events.SelectionEvent; import dwt.events.SelectionListener; import dwt.graphics.Color; import dwt.graphics.Font; import dwt.graphics.FontData; import dwt.graphics.GC; import dwt.graphics.Image; import dwt.graphics.Point; import dwt.graphics.RGB; import dwt.graphics.Rectangle; import dwt.graphics.Region; import dwt.widgets.Composite; import dwt.widgets.Control; import dwt.widgets.Display; import dwt.widgets.Event; import dwt.widgets.Layout; import dwt.widgets.Listener; import dwt.widgets.Menu; import dwt.widgets.MenuItem; import dwt.widgets.TypedListener; import dwt.custom.CTabItem; import dwt.custom.CTabFolder2Listener; import dwt.custom.CTabFolderListener; import dwt.custom.CTabFolderLayout; import dwt.custom.CTabFolderEvent; import dwt.dwthelper.utils; import tango.util.Convert; static import tango.text.convert.Utf; /** * * Instances of this class implement the notebook user interface * metaphor. It allows the user to select a notebook page from * set of pages. * <p> * The item children that may be added to instances of this class * must be of type <code>CTabItem</code>. * <code>Control</code> children are created and then set into a * tab item using <code>CTabItem#setControl</code>. * </p><p> * Note that although this class is a subclass of <code>Composite</code>, * it does not make sense to set a layout on it. * </p><p> * <dl> * <dt><b>Styles:</b></dt> * <dd>CLOSE, TOP, BOTTOM, FLAT, BORDER, SINGLE, MULTI</dd> * <dt><b>Events:</b></dt> * <dd>Selection</dd> * <dd>"CTabFolder2"</dd> * </dl> * <p> * Note: Only one of the styles TOP and BOTTOM * may be specified. * </p><p> * IMPORTANT: This class is <em>not</em> intended to be subclassed. * </p> * * @see <a href="http://www.eclipse.org/swt/snippets/#ctabfolder">CTabFolder, CTabItem snippets</a> * @see <a href="http://www.eclipse.org/swt/examples.php">DWT Example: CustomControlExample</a> * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> */ public class CTabFolder : Composite { /** * marginWidth specifies the number of pixels of horizontal margin * that will be placed along the left and right edges of the form. * * The default value is 0. */ public int marginWidth = 0; /** * marginHeight specifies the number of pixels of vertical margin * that will be placed along the top and bottom edges of the form. * * The default value is 0. */ public int marginHeight = 0; /** * A multiple of the tab height that specifies the minimum width to which a tab * will be compressed before scrolling arrows are used to navigate the tabs. * * NOTE This field is badly named and can not be fixed for backwards compatibility. * It should not be capitalized. * * @deprecated This field is no longer used. See setMinimumCharacters(int) */ public int MIN_TAB_WIDTH = 4; /** * Color of innermost line of drop shadow border. * * NOTE This field is badly named and can not be fixed for backwards compatibility. * It should be capitalized. * * @deprecated drop shadow border is no longer drawn in 3.0 */ public static RGB borderInsideRGB; /** * Color of middle line of drop shadow border. * * NOTE This field is badly named and can not be fixed for backwards compatibility. * It should be capitalized. * * @deprecated drop shadow border is no longer drawn in 3.0 */ public static RGB borderMiddleRGB; /** * Color of outermost line of drop shadow border. * * NOTE This field is badly named and can not be fixed for backwards compatibility. * It should be capitalized. * * @deprecated drop shadow border is no longer drawn in 3.0 */ public static RGB borderOutsideRGB; /* sizing, positioning */ int xClient, yClient; bool onBottom = false; bool single = false; bool simple = true; int fixedTabHeight = DWT.DEFAULT; int tabHeight; int minChars = 20; /* item management */ CTabItem items[]; int firstIndex = -1; // index of the left most visible tab. int selectedIndex = -1; int[] priority; bool mru = false; Listener listener; /* External Listener management */ CTabFolder2Listener[] folderListeners; // support for deprecated listener mechanism CTabFolderListener[] tabListeners; /* Selected item appearance */ Image selectionBgImage; Color[] selectionGradientColors; int[] selectionGradientPercents; bool selectionGradientVertical; Color selectionForeground; Color selectionBackground; //selection fade end Color selectionFadeStart; Color selectionHighlightGradientBegin = null; //null is no highlight //Although we are given new colours all the time to show different states (active, etc), //some of which may have a highlight and some not, we'd like to retain the highlight colours //as a cache so that we can reuse them if we're again told to show the highlight. //We are relying on the fact that only one tab state usually gets a highlight, so only //a single cache is required. If that happens to not be true, cache simply becomes less effective, //but we don't leak colours. Color[] selectionHighlightGradientColorsCache = null; //null is a legal value, check on access /* Unselected item appearance */ Image bgImage; Color[] gradientColors; int[] gradientPercents; bool gradientVertical; bool showUnselectedImage = true; static Color borderColor; // close, min/max and chevron buttons bool showClose = false; bool showUnselectedClose = true; Rectangle chevronRect; int chevronImageState = NORMAL; bool showChevron = false; Menu showMenu; bool showMin = false; Rectangle minRect; bool minimized = false; int minImageState = NORMAL; bool showMax = false; Rectangle maxRect; bool maximized = false; int maxImageState = NORMAL; Control topRight; Rectangle topRightRect; int topRightAlignment = DWT.RIGHT; // borders and shapes int borderLeft = 0; int borderRight = 0; int borderTop = 0; int borderBottom = 0; int highlight_margin = 0; int highlight_header = 0; int[] curve; int[] topCurveHighlightStart; int[] topCurveHighlightEnd; int curveWidth = 0; int curveIndent = 0; // when disposing CTabFolder, don't try to layout the items or // change the selection as each child is destroyed. bool inDispose = false; // keep track of size changes in order to redraw only affected area // on Resize Point oldSize; Font oldFont; // internal constants static const int DEFAULT_WIDTH = 64; static const int DEFAULT_HEIGHT = 64; static const int BUTTON_SIZE = 18; static const int[] TOP_LEFT_CORNER = [0,6, 1,5, 1,4, 4,1, 5,1, 6,0]; //TOP_LEFT_CORNER_HILITE is laid out in reverse (ie. top to bottom) //so can fade in same direction as right swoop curve static const int[] TOP_LEFT_CORNER_HILITE = [5,2, 4,2, 3,3, 2,4, 2,5, 1,6]; static const int[] TOP_RIGHT_CORNER = [-6,0, -5,1, -4,1, -1,4, -1,5, 0,6]; static const int[] BOTTOM_LEFT_CORNER = [0,-6, 1,-5, 1,-4, 4,-1, 5,-1, 6,0]; static const int[] BOTTOM_RIGHT_CORNER = [-6,0, -5,-1, -4,-1, -1,-4, -1,-5, 0,-6]; static const int[] SIMPLE_TOP_LEFT_CORNER = [0,2, 1,1, 2,0]; static const int[] SIMPLE_TOP_RIGHT_CORNER = [-2,0, -1,1, 0,2]; static const int[] SIMPLE_BOTTOM_LEFT_CORNER = [0,-2, 1,-1, 2,0]; static const int[] SIMPLE_BOTTOM_RIGHT_CORNER = [-2,0, -1,-1, 0,-2]; static const int[] SIMPLE_UNSELECTED_INNER_CORNER = [0,0]; static const int[] TOP_LEFT_CORNER_BORDERLESS = [0,6, 1,5, 1,4, 4,1, 5,1, 6,0]; static const int[] TOP_RIGHT_CORNER_BORDERLESS = [-7,0, -6,1, -5,1, -2,4, -2,5, -1,6]; static const int[] BOTTOM_LEFT_CORNER_BORDERLESS = [0,-6, 1,-6, 1,-5, 2,-4, 4,-2, 5,-1, 6,-1, 6,0]; static const int[] BOTTOM_RIGHT_CORNER_BORDERLESS = [-7,0, -7,-1, -6,-1, -5,-2, -3,-4, -2,-5, -2,-6, -1,-6]; static const int[] SIMPLE_TOP_LEFT_CORNER_BORDERLESS = [0,2, 1,1, 2,0]; static const int[] SIMPLE_TOP_RIGHT_CORNER_BORDERLESS= [-3,0, -2,1, -1,2]; static const int[] SIMPLE_BOTTOM_LEFT_CORNER_BORDERLESS = [0,-3, 1,-2, 2,-1, 3,0]; static const int[] SIMPLE_BOTTOM_RIGHT_CORNER_BORDERLESS = [-4,0, -3,-1, -2,-2, -1,-3]; static const int SELECTION_FOREGROUND = DWT.COLOR_LIST_FOREGROUND; static const int SELECTION_BACKGROUND = DWT.COLOR_LIST_BACKGROUND; static const int BORDER1_COLOR = DWT.COLOR_WIDGET_NORMAL_SHADOW; static const int FOREGROUND = DWT.COLOR_WIDGET_FOREGROUND; static const int BACKGROUND = DWT.COLOR_WIDGET_BACKGROUND; static const int BUTTON_BORDER = DWT.COLOR_WIDGET_DARK_SHADOW; static const int BUTTON_FILL = DWT.COLOR_LIST_BACKGROUND; static const int NONE = 0; static const int NORMAL = 1; static const int HOT = 2; static const int SELECTED = 3; static const RGB CLOSE_FILL; static const int CHEVRON_CHILD_ID = 0; static const int MINIMIZE_CHILD_ID = 1; static const int MAXIMIZE_CHILD_ID = 2; static const int EXTRA_CHILD_ID_COUNT = 3; static this() { borderInsideRGB = new RGB (132, 130, 132); borderMiddleRGB = new RGB (143, 141, 138); borderOutsideRGB = new RGB (171, 168, 165); CLOSE_FILL = new RGB(252, 160, 160); } /** * Constructs a new instance of this class given its parent * and a style value describing its behavior and appearance. * <p> * The style value is either one of the style constants defined in * class <code>DWT</code> which is applicable to instances of this * class, or must be built by <em>bitwise OR</em>'ing together * (that is, using the <code>int</code> "|" operator) two or more * of those <code>DWT</code> style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. * </p> * * @param parent a widget which will be the parent of the new instance (cannot be null) * @param style the style of widget to construct * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> * </ul> * * @see DWT#TOP * @see DWT#BOTTOM * @see DWT#FLAT * @see DWT#BORDER * @see DWT#SINGLE * @see DWT#MULTI * @see #getStyle() */ public this(Composite parent, int style) { chevronRect = new Rectangle(0, 0, 0, 0); minRect = new Rectangle(0, 0, 0, 0); maxRect = new Rectangle(0, 0, 0, 0); topRightRect = new Rectangle(0, 0, 0, 0); super(parent, checkStyle (parent, style)); super.setLayout(new CTabFolderLayout()); int style2 = super.getStyle(); oldFont = getFont(); onBottom = (style2 & DWT.BOTTOM) !is 0; showClose = (style2 & DWT.CLOSE) !is 0; // showMin = (style2 & DWT.MIN) !is 0; - conflicts with DWT.TOP // showMax = (style2 & DWT.MAX) !is 0; - conflicts with DWT.BOTTOM single = (style2 & DWT.SINGLE) !is 0; borderLeft = borderRight = (style & DWT.BORDER) !is 0 ? 1 : 0; borderTop = onBottom ? borderLeft : 0; borderBottom = onBottom ? 0 : borderLeft; highlight_header = (style & DWT.FLAT) !is 0 ? 1 : 3; highlight_margin = (style & DWT.FLAT) !is 0 ? 0 : 2; //set up default colors Display display = getDisplay(); selectionForeground = display.getSystemColor(SELECTION_FOREGROUND); selectionBackground = display.getSystemColor(SELECTION_BACKGROUND); borderColor = display.getSystemColor(BORDER1_COLOR); updateTabHeight(false); initAccessible(); // Add all listeners listener = new class() Listener { public void handleEvent(Event event) { switch (event.type) { case DWT.Dispose: onDispose(event); break; case DWT.DragDetect: onDragDetect(event); break; case DWT.FocusIn: onFocus(event); break; case DWT.FocusOut: onFocus(event); break; case DWT.KeyDown: onKeyDown(event); break; case DWT.MouseDoubleClick: onMouseDoubleClick(event); break; case DWT.MouseDown: onMouse(event); break; case DWT.MouseEnter: onMouse(event); break; case DWT.MouseExit: onMouse(event); break; case DWT.MouseMove: onMouse(event); break; case DWT.MouseUp: onMouse(event); break; case DWT.Paint: onPaint(event); break; case DWT.Resize: onResize(); break; case DWT.Traverse: onTraverse(event); break; default: } } }; int[] folderEvents = [ DWT.Dispose, DWT.DragDetect, DWT.FocusIn, DWT.FocusOut, DWT.KeyDown, DWT.MouseDoubleClick, DWT.MouseDown, DWT.MouseEnter, DWT.MouseExit, DWT.MouseMove, DWT.MouseUp, DWT.Paint, DWT.Resize, DWT.Traverse, ]; for (int i = 0; i < folderEvents.length; i++) { addListener(folderEvents[i], listener); } } static int checkStyle (Composite parent, int style) { int mask = DWT.CLOSE | DWT.TOP | DWT.BOTTOM | DWT.FLAT | DWT.LEFT_TO_RIGHT | DWT.RIGHT_TO_LEFT | DWT.SINGLE | DWT.MULTI; style = style & mask; // TOP and BOTTOM are mutually exclusive. // TOP is the default if ((style & DWT.TOP) !is 0) style = style & ~DWT.BOTTOM; // SINGLE and MULTI are mutually exclusive. // MULTI is the default if ((style & DWT.MULTI) !is 0) style = style & ~DWT.SINGLE; // reduce the flash by not redrawing the entire area on a Resize event style |= DWT.NO_REDRAW_RESIZE; //TEMPORARY CODE /* * The default background on carbon and some GTK themes is not a solid color * but a texture. To show the correct default background, we must allow * the operating system to draw it and therefore, we can not use the * NO_BACKGROUND style. The NO_BACKGROUND style is not required on platforms * that use double buffering which is true in both of these cases. */ String platform = DWT.getPlatform(); if ("carbon"==platform || "gtk"==platform) return style; //$NON-NLS-1$ //$NON-NLS-2$ //TEMPORARY CODE /* * In Right To Left orientation on Windows, all GC calls that use a brush are drawing * offset by one pixel. This results in some parts of the CTabFolder not drawing correctly. * To alleviate some of the appearance problems, allow the OS to draw the background. * This does not draw correctly but the result is less obviously wrong. */ if ((style & DWT.RIGHT_TO_LEFT) !is 0) return style; if ((parent.getStyle() & DWT.MIRRORED) !is 0 && (style & DWT.LEFT_TO_RIGHT) is 0) return style; return style | DWT.NO_BACKGROUND; } static void fillRegion(GC gc, Region region) { // NOTE: region passed in to this function will be modified Region clipping = new Region(); gc.getClipping(clipping); region.intersect(clipping); gc.setClipping(region); gc.fillRectangle(region.getBounds()); gc.setClipping(clipping); clipping.dispose(); } /** * * Adds the listener to the collection of listeners who will * be notified when a tab item is closed, minimized, maximized, * restored, or to show the list of items that are not * currently visible. * * @param listener the listener which should be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @see CTabFolder2Listener * @see #removeCTabFolder2Listener(CTabFolder2Listener) * * @since 3.0 */ public void addCTabFolder2Listener(CTabFolder2Listener listener) { checkWidget(); if (listener is null) DWT.error (DWT.ERROR_NULL_ARGUMENT); // add to array CTabFolder2Listener[] newListeners = new CTabFolder2Listener[folderListeners.length + 1]; SimpleType!(CTabFolder2Listener).arraycopy(folderListeners, 0, newListeners, 0, folderListeners.length); folderListeners = newListeners; folderListeners[folderListeners.length - 1] = listener; } /** * Adds the listener to the collection of listeners who will * be notified when a tab item is closed. * * @param listener the listener which should be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @see CTabFolderListener * @see #removeCTabFolderListener(CTabFolderListener) * * @deprecated use addCTabFolder2Listener(CTabFolder2Listener) */ public void addCTabFolderListener(CTabFolderListener listener) { checkWidget(); if (listener is null) DWT.error (DWT.ERROR_NULL_ARGUMENT); // add to array CTabFolderListener[] newTabListeners = new CTabFolderListener[tabListeners.length + 1]; SimpleType!(CTabFolderListener).arraycopy(tabListeners, 0, newTabListeners, 0, tabListeners.length); tabListeners = newTabListeners; tabListeners[tabListeners.length - 1] = listener; // display close button to be backwards compatible if (!showClose) { showClose = true; updateItems(); redraw(); } } /** * Adds the listener to the collection of listeners who will * be notified when the user changes the receiver's selection, by sending * it one of the messages defined in the <code>SelectionListener</code> * interface. * <p> * <code>widgetSelected</code> is called when the user changes the selected tab. * <code>widgetDefaultSelected</code> is not called. * </p> * * @param listener the listener which should be notified when the user changes the receiver's selection * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see SelectionListener * @see #removeSelectionListener * @see SelectionEvent */ public void addSelectionListener(SelectionListener listener) { checkWidget(); if (listener is null) { DWT.error(DWT.ERROR_NULL_ARGUMENT); } TypedListener typedListener = new TypedListener(listener); addListener(DWT.Selection, typedListener); addListener(DWT.DefaultSelection, typedListener); } void antialias (int[] shape, RGB lineRGB, RGB innerRGB, RGB outerRGB, GC gc) { // Don't perform anti-aliasing on Mac and WPF because the platform // already does it. The simple style also does not require anti-aliasing. if (simple || "carbon".equals(DWT.getPlatform()) || "wpf".equals(DWT.getPlatform())) return; //$NON-NLS-1$ // Don't perform anti-aliasing on low resolution displays if (getDisplay().getDepth() < 15) return; if (outerRGB !is null) { int index = 0; bool left = true; int oldY = onBottom ? 0 : getSize().y; int[] outer = new int[shape.length]; for (int i = 0; i < shape.length/2; i++) { if (left && (index + 3 < shape.length)) { left = onBottom ? oldY <= shape[index+3] : oldY >= shape[index+3]; oldY = shape[index+1]; } outer[index] = shape[index] + (left ? -1 : +1); index++; outer[index] = shape[index]; index++; } RGB from = lineRGB; RGB to = outerRGB; int red = from.red + 2*(to.red - from.red)/3; int green = from.green + 2*(to.green - from.green)/3; int blue = from.blue + 2*(to.blue - from.blue)/3; Color color = new Color(getDisplay(), red, green, blue); gc.setForeground(color); gc.drawPolyline(outer); color.dispose(); } if (innerRGB !is null) { int[] inner = new int[shape.length]; int index = 0; bool left = true; int oldY = onBottom ? 0 : getSize().y; for (int i = 0; i < shape.length/2; i++) { if (left && (index + 3 < shape.length)) { left = onBottom ? oldY <= shape[index+3] : oldY >= shape[index+3]; oldY = shape[index+1]; } inner[index] = shape[index] + (left ? +1 : -1); index++; inner[index] = shape[index]; index++; } RGB from = lineRGB; RGB to = innerRGB; int red = from.red + 2*(to.red - from.red)/3; int green = from.green + 2*(to.green - from.green)/3; int blue = from.blue + 2*(to.blue - from.blue)/3; Color color = new Color(getDisplay(), red, green, blue); gc.setForeground(color); gc.drawPolyline(inner); color.dispose(); } } public override Rectangle computeTrim (int x, int y, int width, int height) { checkWidget(); int trimX = x - marginWidth - highlight_margin - borderLeft; int trimWidth = width + borderLeft + borderRight + 2*marginWidth + 2*highlight_margin; if (minimized) { int trimY = onBottom ? y - borderTop : y - highlight_header - tabHeight - borderTop; int trimHeight = borderTop + borderBottom + tabHeight + highlight_header; return new Rectangle (trimX, trimY, trimWidth, trimHeight); } else { int trimY = onBottom ? y - marginHeight - highlight_margin - borderTop: y - marginHeight - highlight_header - tabHeight - borderTop; int trimHeight = height + borderTop + borderBottom + 2*marginHeight + tabHeight + highlight_header + highlight_margin; return new Rectangle (trimX, trimY, trimWidth, trimHeight); } } void createItem (CTabItem item, int index) { if (0 > index || index > getItemCount ())DWT.error (DWT.ERROR_INVALID_RANGE); item.parent = this; CTabItem[] newItems = new CTabItem [items.length + 1]; System.arraycopy(items, 0, newItems, 0, index); newItems[index] = item; System.arraycopy(items, index, newItems, index + 1, items.length - index); items = newItems; if (selectedIndex >= index) selectedIndex ++; int[] newPriority = new int[priority.length + 1]; int next = 0, priorityIndex = priority.length; for (int i = 0; i < priority.length; i++) { if (!mru && priority[i] is index) { priorityIndex = next++; } newPriority[next++] = priority[i] >= index ? priority[i] + 1 : priority[i]; } newPriority[priorityIndex] = index; priority = newPriority; if (items.length is 1) { if (!updateTabHeight(false)) updateItems(); redraw(); } else { updateItems(); redrawTabs(); } } void destroyItem (CTabItem item) { if (inDispose) return; int index = indexOf(item); if (index is -1) return; if (items.length is 1) { items = new CTabItem[0]; priority = new int[0]; firstIndex = -1; selectedIndex = -1; Control control = item.getControl(); if (control !is null && !control.isDisposed()) { control.setVisible(false); } setToolTipText(null); setButtonBounds(); redraw(); return; } CTabItem[] newItems = new CTabItem [items.length - 1]; System.arraycopy(items, 0, newItems, 0, index); System.arraycopy(items, index + 1, newItems, index, items.length - index - 1); items = newItems; int[] newPriority = new int[priority.length - 1]; int next = 0; for (int i = 0; i < priority.length; i++) { if (priority [i] is index) continue; newPriority[next++] = priority[i] > index ? priority[i] - 1 : priority [i]; } priority = newPriority; // move the selection if this item is selected if (selectedIndex is index) { Control control = item.getControl(); selectedIndex = -1; int nextSelection = mru ? priority[0] : Math.max(0, index - 1); setSelection(nextSelection, true); if (control !is null && !control.isDisposed()) { control.setVisible(false); } } else if (selectedIndex > index) { selectedIndex --; } updateItems(); redrawTabs(); } void drawBackground(GC gc, int[] shape, bool selected) { Color defaultBackground = selected ? selectionBackground : getBackground(); Image image = selected ? selectionBgImage : bgImage; Color[] colors = selected ? selectionGradientColors : gradientColors; int[] percents = selected ? selectionGradientPercents : gradientPercents; bool vertical = selected ? selectionGradientVertical : gradientVertical; Point size = getSize(); int width = size.x; int height = tabHeight + highlight_header; int x = 0; if (borderLeft > 0) { x += 1; width -= 2; } int y = onBottom ? size.y - borderBottom - height : borderTop; drawBackground(gc, shape, x, y, width, height, defaultBackground, image, colors, percents, vertical); } void drawBackground(GC gc, int[] shape, int x, int y, int width, int height, Color defaultBackground, Image image, Color[] colors, int[] percents, bool vertical) { Region clipping = new Region(); gc.getClipping(clipping); Region region = new Region(); region.add(shape); region.intersect(clipping); gc.setClipping(region); if (image !is null) { // draw the background image in shape gc.setBackground(defaultBackground); gc.fillRectangle(x, y, width, height); Rectangle imageRect = image.getBounds(); gc.drawImage(image, imageRect.x, imageRect.y, imageRect.width, imageRect.height, x, y, width, height); } else if (colors !is null) { // draw gradient if (colors.length is 1) { Color background = colors[0] !is null ? colors[0] : defaultBackground; gc.setBackground(background); gc.fillRectangle(x, y, width, height); } else { if (vertical) { if (onBottom) { int pos = 0; if (percents[percents.length - 1] < 100) { pos = percents[percents.length - 1] * height / 100; gc.setBackground(defaultBackground); gc.fillRectangle(x, y, width, pos); } Color lastColor = colors[colors.length-1]; if (lastColor is null) lastColor = defaultBackground; for (int i = percents.length-1; i >= 0; i--) { gc.setForeground(lastColor); lastColor = colors[i]; if (lastColor is null) lastColor = defaultBackground; gc.setBackground(lastColor); int gradientHeight = percents[i] * height / 100; gc.fillGradientRectangle(x, y+pos, width, gradientHeight, true); pos += gradientHeight; } } else { Color lastColor = colors[0]; if (lastColor is null) lastColor = defaultBackground; int pos = 0; for (int i = 0; i < percents.length; i++) { gc.setForeground(lastColor); lastColor = colors[i + 1]; if (lastColor is null) lastColor = defaultBackground; gc.setBackground(lastColor); int gradientHeight = percents[i] * height / 100; gc.fillGradientRectangle(x, y+pos, width, gradientHeight, true); pos += gradientHeight; } if (pos < height) { gc.setBackground(defaultBackground); gc.fillRectangle(x, pos, width, height-pos+1); } } } else //horizontal gradient { y = 0; height = getSize().y; Color lastColor = colors[0]; if (lastColor is null) lastColor = defaultBackground; int pos = 0; for (int i = 0; i < percents.length; ++i) { gc.setForeground(lastColor); lastColor = colors[i + 1]; if (lastColor is null) lastColor = defaultBackground; gc.setBackground(lastColor); int gradientWidth = (percents[i] * width / 100) - pos; gc.fillGradientRectangle(x+pos, y, gradientWidth, height, false); pos += gradientWidth; } if (pos < width) { gc.setBackground(defaultBackground); gc.fillRectangle(x+pos, y, width-pos, height); } } } } else { // draw a solid background using default background in shape if ((getStyle() & DWT.NO_BACKGROUND) !is 0 || defaultBackground!=getBackground()) { gc.setBackground(defaultBackground); gc.fillRectangle(x, y, width, height); } } gc.setClipping(clipping); clipping.dispose(); region.dispose(); } void drawBody(Event event) { GC gc = event.gc; Point size = getSize(); // fill in body if (!minimized) { int width = size.x - borderLeft - borderRight - 2*highlight_margin; int height = size.y - borderTop - borderBottom - tabHeight - highlight_header - highlight_margin; // Draw highlight margin if (highlight_margin > 0) { int[] shape = null; if (onBottom) { int x1 = borderLeft; int y1 = borderTop; int x2 = size.x - borderRight; int y2 = size.y - borderBottom - tabHeight - highlight_header; shape = [x1,y1, x2,y1, x2,y2, x2-highlight_margin,y2, x2-highlight_margin, y1+highlight_margin, x1+highlight_margin,y1+highlight_margin, x1+highlight_margin,y2, x1,y2]; } else { int x1 = borderLeft; int y1 = borderTop + tabHeight + highlight_header; int x2 = size.x - borderRight; int y2 = size.y - borderBottom; shape = [x1,y1, x1+highlight_margin,y1, x1+highlight_margin,y2-highlight_margin, x2-highlight_margin,y2-highlight_margin, x2-highlight_margin,y1, x2,y1, x2,y2, x1,y2]; } // If horizontal gradient, show gradient across the whole area if (selectedIndex !is -1 && selectionGradientColors !is null && selectionGradientColors.length > 1 && !selectionGradientVertical) { drawBackground(gc, shape, true); } else if (selectedIndex is -1 && gradientColors !is null && gradientColors.length > 1 && !gradientVertical) { drawBackground(gc, shape, false); } else { gc.setBackground(selectedIndex is -1 ? getBackground() : selectionBackground); gc.fillPolygon(shape); } } //Draw client area if ((getStyle() & DWT.NO_BACKGROUND) !is 0) { gc.setBackground(getBackground()); gc.fillRectangle(xClient - marginWidth, yClient - marginHeight, width, height); } } else { if ((getStyle() & DWT.NO_BACKGROUND) !is 0) { int height = borderTop + tabHeight + highlight_header + borderBottom; if (size.y > height) { gc.setBackground(getParent().getBackground()); gc.fillRectangle(0, height, size.x, size.y - height); } } } //draw 1 pixel border around outside if (borderLeft > 0) { gc.setForeground(borderColor); int x1 = borderLeft - 1; int x2 = size.x - borderRight; int y1 = onBottom ? borderTop - 1 : borderTop + tabHeight; int y2 = onBottom ? size.y - tabHeight - borderBottom - 1 : size.y - borderBottom; gc.drawLine(x1, y1, x1, y2); // left gc.drawLine(x2, y1, x2, y2); // right if (onBottom) { gc.drawLine(x1, y1, x2, y1); // top } else { gc.drawLine(x1, y2, x2, y2); // bottom } } } void drawChevron(GC gc) { if (chevronRect.width is 0 || chevronRect.height is 0) return; // draw chevron (10x7) Display display = getDisplay(); Point dpi = display.getDPI(); int fontHeight = 72 * 10 / dpi.y; FontData fd = getFont().getFontData()[0]; fd.setHeight(fontHeight); Font f = new Font(display, fd); int fHeight = f.getFontData()[0].getHeight() * dpi.y / 72; int indent = Math.max(2, (chevronRect.height - fHeight - 4) /2); int x = chevronRect.x + 2; int y = chevronRect.y + indent; int count; if (single) { count = selectedIndex is -1 ? items.length : items.length - 1; } else { int showCount = 0; while (showCount < priority.length && items[priority[showCount]].showing) { showCount++; } count = items.length - showCount; } String chevronString = count > 99 ? "99+" : to!(String)(count); //$NON-NLS-1$ switch (chevronImageState) { case NORMAL: { Color chevronBorder = single ? getSelectionForeground() : getForeground(); gc.setForeground(chevronBorder); gc.setFont(f); gc.drawLine(x,y, x+2,y+2); gc.drawLine(x+2,y+2, x,y+4); gc.drawLine(x+1,y, x+3,y+2); gc.drawLine(x+3,y+2, x+1,y+4); gc.drawLine(x+4,y, x+6,y+2); gc.drawLine(x+6,y+2, x+5,y+4); gc.drawLine(x+5,y, x+7,y+2); gc.drawLine(x+7,y+2, x+4,y+4); gc.drawString(chevronString, x+7, y+3, true); break; } case HOT: { gc.setForeground(display.getSystemColor(BUTTON_BORDER)); gc.setBackground(display.getSystemColor(BUTTON_FILL)); gc.setFont(f); gc.fillRoundRectangle(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, 6, 6); gc.drawRoundRectangle(chevronRect.x, chevronRect.y, chevronRect.width - 1, chevronRect.height - 1, 6, 6); gc.drawLine(x,y, x+2,y+2); gc.drawLine(x+2,y+2, x,y+4); gc.drawLine(x+1,y, x+3,y+2); gc.drawLine(x+3,y+2, x+1,y+4); gc.drawLine(x+4,y, x+6,y+2); gc.drawLine(x+6,y+2, x+5,y+4); gc.drawLine(x+5,y, x+7,y+2); gc.drawLine(x+7,y+2, x+4,y+4); gc.drawString(chevronString, x+7, y+3, true); break; } case SELECTED: { gc.setForeground(display.getSystemColor(BUTTON_BORDER)); gc.setBackground(display.getSystemColor(BUTTON_FILL)); gc.setFont(f); gc.fillRoundRectangle(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, 6, 6); gc.drawRoundRectangle(chevronRect.x, chevronRect.y, chevronRect.width - 1, chevronRect.height - 1, 6, 6); gc.drawLine(x+1,y+1, x+3,y+3); gc.drawLine(x+3,y+3, x+1,y+5); gc.drawLine(x+2,y+1, x+4,y+3); gc.drawLine(x+4,y+3, x+2,y+5); gc.drawLine(x+5,y+1, x+7,y+3); gc.drawLine(x+7,y+3, x+6,y+5); gc.drawLine(x+6,y+1, x+8,y+3); gc.drawLine(x+8,y+3, x+5,y+5); gc.drawString(chevronString, x+8, y+4, true); break; } default: } f.dispose(); } void drawMaximize(GC gc) { if (maxRect.width is 0 || maxRect.height is 0) return; Display display = getDisplay(); // 5x4 or 7x9 int x = maxRect.x + (CTabFolder.BUTTON_SIZE - 10)/2; int y = maxRect.y + 3; gc.setForeground(display.getSystemColor(BUTTON_BORDER)); gc.setBackground(display.getSystemColor(BUTTON_FILL)); switch (maxImageState) { case NORMAL: { if (!maximized) { gc.fillRectangle(x, y, 9, 9); gc.drawRectangle(x, y, 9, 9); gc.drawLine(x+1, y+2, x+8, y+2); } else { gc.fillRectangle(x, y+3, 5, 4); gc.fillRectangle(x+2, y, 5, 4); gc.drawRectangle(x, y+3, 5, 4); gc.drawRectangle(x+2, y, 5, 4); gc.drawLine(x+3, y+1, x+6, y+1); gc.drawLine(x+1, y+4, x+4, y+4); } break; } case HOT: { gc.fillRoundRectangle(maxRect.x, maxRect.y, maxRect.width, maxRect.height, 6, 6); gc.drawRoundRectangle(maxRect.x, maxRect.y, maxRect.width - 1, maxRect.height - 1, 6, 6); if (!maximized) { gc.fillRectangle(x, y, 9, 9); gc.drawRectangle(x, y, 9, 9); gc.drawLine(x+1, y+2, x+8, y+2); } else { gc.fillRectangle(x, y+3, 5, 4); gc.fillRectangle(x+2, y, 5, 4); gc.drawRectangle(x, y+3, 5, 4); gc.drawRectangle(x+2, y, 5, 4); gc.drawLine(x+3, y+1, x+6, y+1); gc.drawLine(x+1, y+4, x+4, y+4); } break; } case SELECTED: { gc.fillRoundRectangle(maxRect.x, maxRect.y, maxRect.width, maxRect.height, 6, 6); gc.drawRoundRectangle(maxRect.x, maxRect.y, maxRect.width - 1, maxRect.height - 1, 6, 6); if (!maximized) { gc.fillRectangle(x+1, y+1, 9, 9); gc.drawRectangle(x+1, y+1, 9, 9); gc.drawLine(x+2, y+3, x+9, y+3); } else { gc.fillRectangle(x+1, y+4, 5, 4); gc.fillRectangle(x+3, y+1, 5, 4); gc.drawRectangle(x+1, y+4, 5, 4); gc.drawRectangle(x+3, y+1, 5, 4); gc.drawLine(x+4, y+2, x+7, y+2); gc.drawLine(x+2, y+5, x+5, y+5); } break; } default: } } void drawMinimize(GC gc) { if (minRect.width is 0 || minRect.height is 0) return; Display display = getDisplay(); // 5x4 or 9x3 int x = minRect.x + (BUTTON_SIZE - 10)/2; int y = minRect.y + 3; gc.setForeground(display.getSystemColor(BUTTON_BORDER)); gc.setBackground(display.getSystemColor(BUTTON_FILL)); switch (minImageState) { case NORMAL: { if (!minimized) { gc.fillRectangle(x, y, 9, 3); gc.drawRectangle(x, y, 9, 3); } else { gc.fillRectangle(x, y+3, 5, 4); gc.fillRectangle(x+2, y, 5, 4); gc.drawRectangle(x, y+3, 5, 4); gc.drawRectangle(x+2, y, 5, 4); gc.drawLine(x+3, y+1, x+6, y+1); gc.drawLine(x+1, y+4, x+4, y+4); } break; } case HOT: { gc.fillRoundRectangle(minRect.x, minRect.y, minRect.width, minRect.height, 6, 6); gc.drawRoundRectangle(minRect.x, minRect.y, minRect.width - 1, minRect.height - 1, 6, 6); if (!minimized) { gc.fillRectangle(x, y, 9, 3); gc.drawRectangle(x, y, 9, 3); } else { gc.fillRectangle(x, y+3, 5, 4); gc.fillRectangle(x+2, y, 5, 4); gc.drawRectangle(x, y+3, 5, 4); gc.drawRectangle(x+2, y, 5, 4); gc.drawLine(x+3, y+1, x+6, y+1); gc.drawLine(x+1, y+4, x+4, y+4); } break; } case SELECTED: { gc.fillRoundRectangle(minRect.x, minRect.y, minRect.width, minRect.height, 6, 6); gc.drawRoundRectangle(minRect.x, minRect.y, minRect.width - 1, minRect.height - 1, 6, 6); if (!minimized) { gc.fillRectangle(x+1, y+1, 9, 3); gc.drawRectangle(x+1, y+1, 9, 3); } else { gc.fillRectangle(x+1, y+4, 5, 4); gc.fillRectangle(x+3, y+1, 5, 4); gc.drawRectangle(x+1, y+4, 5, 4); gc.drawRectangle(x+3, y+1, 5, 4); gc.drawLine(x+4, y+2, x+7, y+2); gc.drawLine(x+2, y+5, x+5, y+5); } break; } default: } } void drawTabArea(Event event) { GC gc = event.gc; Point size = getSize(); int[] shape = null; if (tabHeight is 0) { int style = getStyle(); if ((style & DWT.FLAT) !is 0 && (style & DWT.BORDER) is 0) return; int x1 = borderLeft - 1; int x2 = size.x - borderRight; int y1 = onBottom ? size.y - borderBottom - highlight_header - 1 : borderTop + highlight_header; int y2 = onBottom ? size.y - borderBottom : borderTop; if (borderLeft > 0 && onBottom) y2 -= 1; shape = [x1, y1, x1,y2, x2,y2, x2,y1]; // If horizontal gradient, show gradient across the whole area if (selectedIndex !is -1 && selectionGradientColors !is null && selectionGradientColors.length > 1 && !selectionGradientVertical) { drawBackground(gc, shape, true); } else if (selectedIndex is -1 && gradientColors !is null && gradientColors.length > 1 && !gradientVertical) { drawBackground(gc, shape, false); } else { gc.setBackground(selectedIndex is -1 ? getBackground() : selectionBackground); gc.fillPolygon(shape); } //draw 1 pixel border if (borderLeft > 0) { gc.setForeground(borderColor); gc.drawPolyline(shape); } return; } int x = Math.max(0, borderLeft - 1); int y = onBottom ? size.y - borderBottom - tabHeight : borderTop; int width = size.x - borderLeft - borderRight + 1; int height = tabHeight - 1; // Draw Tab Header if (onBottom) { int[] left, right; if ((getStyle() & DWT.BORDER) !is 0) { left = simple ? SIMPLE_BOTTOM_LEFT_CORNER : BOTTOM_LEFT_CORNER; right = simple ? SIMPLE_BOTTOM_RIGHT_CORNER : BOTTOM_RIGHT_CORNER; } else { left = simple ? SIMPLE_BOTTOM_LEFT_CORNER_BORDERLESS : BOTTOM_LEFT_CORNER_BORDERLESS; right = simple ? SIMPLE_BOTTOM_RIGHT_CORNER_BORDERLESS : BOTTOM_RIGHT_CORNER_BORDERLESS; } shape = new int[left.length + right.length + 4]; int index = 0; shape[index++] = x; shape[index++] = y-highlight_header; for (int i = 0; i < left.length/2; i++) { shape[index++] = x+left[2*i]; shape[index++] = y+height+left[2*i+1]; if (borderLeft is 0) shape[index-1] += 1; } for (int i = 0; i < right.length/2; i++) { shape[index++] = x+width+right[2*i]; shape[index++] = y+height+right[2*i+1]; if (borderLeft is 0) shape[index-1] += 1; } shape[index++] = x+width; shape[index++] = y-highlight_header; } else { int[] left, right; if ((getStyle() & DWT.BORDER) !is 0) { left = simple ? SIMPLE_TOP_LEFT_CORNER : TOP_LEFT_CORNER; right = simple ? SIMPLE_TOP_RIGHT_CORNER : TOP_RIGHT_CORNER; } else { left = simple ? SIMPLE_TOP_LEFT_CORNER_BORDERLESS : TOP_LEFT_CORNER_BORDERLESS; right = simple ? SIMPLE_TOP_RIGHT_CORNER_BORDERLESS : TOP_RIGHT_CORNER_BORDERLESS; } shape = new int[left.length + right.length + 4]; int index = 0; shape[index++] = x; shape[index++] = y+height+highlight_header + 1; for (int i = 0; i < left.length/2; i++) { shape[index++] = x+left[2*i]; shape[index++] = y+left[2*i+1]; } for (int i = 0; i < right.length/2; i++) { shape[index++] = x+width+right[2*i]; shape[index++] = y+right[2*i+1]; } shape[index++] = x+width; shape[index++] = y+height+highlight_header + 1; } // Fill in background bool bkSelected = single && selectedIndex !is -1; drawBackground(gc, shape, bkSelected); // Fill in parent background for non-rectangular shape Region r = new Region(); r.add(new Rectangle(x, y, width + 1, height + 1)); r.subtract(shape); gc.setBackground(getParent().getBackground()); fillRegion(gc, r); r.dispose(); // Draw the unselected tabs. if (!single) { for (int i=0; i < items.length; i++) { if (i !is selectedIndex && event.getBounds().intersects(items[i].getBounds())) { items[i].onPaint(gc, false); } } } // Draw selected tab if (selectedIndex !is -1) { CTabItem item = items[selectedIndex]; item.onPaint(gc, true); } else { // if no selected tab - draw line across bottom of all tabs int x1 = borderLeft; int y1 = (onBottom) ? size.y - borderBottom - tabHeight - 1 : borderTop + tabHeight; int x2 = size.x - borderRight; gc.setForeground(borderColor); gc.drawLine(x1, y1, x2, y1); } // Draw Buttons drawChevron(gc); drawMinimize(gc); drawMaximize(gc); // Draw border line if (borderLeft > 0) { RGB outside = getParent().getBackground().getRGB(); antialias(shape, borderColor.getRGB(), null, outside, gc); gc.setForeground(borderColor); gc.drawPolyline(shape); } } /** * Returns <code>true</code> if the receiver's border is visible. * * @return the receiver's border visibility state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public bool getBorderVisible() { checkWidget(); return borderLeft is 1; } public override Rectangle getClientArea() { checkWidget(); if (minimized) return new Rectangle(xClient, yClient, 0, 0); Point size = getSize(); int width = size.x - borderLeft - borderRight - 2*marginWidth - 2*highlight_margin; int height = size.y - borderTop - borderBottom - 2*marginHeight - highlight_margin - highlight_header; height -= tabHeight; return new Rectangle(xClient, yClient, width, height); } /** * Return the tab that is located at the specified index. * * @param index the index of the tab item * @return the item at the specified index * * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_RANGE - if the index is out of range</li> * </ul> * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public CTabItem getItem (int index) { //checkWidget(); if (index < 0 || index >= items.length) DWT.error(DWT.ERROR_INVALID_RANGE); return items [index]; } /** * Gets the item at a point in the widget. * * @param pt the point in coordinates relative to the CTabFolder * @return the item at a point or null * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public CTabItem getItem (Point pt) { //checkWidget(); if (items.length is 0) return null; Point size = getSize(); if (size.x <= borderLeft + borderRight) return null; if (showChevron && chevronRect.contains(pt)) return null; for (int i = 0; i < priority.length; i++) { CTabItem item = items[priority[i]]; Rectangle rect = item.getBounds(); if (rect.contains(pt)) return item; } return null; } /** * Return the number of tabs in the folder. * * @return the number of tabs in the folder * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public int getItemCount() { //checkWidget(); return items.length; } /** * Return the tab items. * * @return the tab items * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public CTabItem [] getItems() { //checkWidget(); CTabItem[] tabItems = new CTabItem [items.length]; System.arraycopy(items, 0, tabItems, 0, items.length); return tabItems; } /* * Return the lowercase of the first non-'&' character following * an '&' character in the given string. If there are no '&' * characters in the given string, return '\0'. */ dchar _findMnemonic (String string) { if (string is null) return '\0'; int index = 0; int length_ = string.length; do { while (index < length_ && string[index] !is '&') index++; if (++index >= length_) return '\0'; if (string[index] !is '&') return CharacterFirstToLower(string[index..$]); index++; } while (index < length_); return '\0'; } String stripMnemonic (String string) { int index = 0; int length_ = string.length; do { while ((index < length_) && (string[index] !is '&')) index++; if (++index >= length_) return string; if (string[index] !is '&') { return string.substring(0, index-1) ~ string.substring(index, length_); } index++; } while (index < length_); return string; } /** * Returns <code>true</code> if the receiver is minimized. * * @return the receiver's minimized state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public bool getMinimized() { checkWidget(); return minimized; } /** * Returns <code>true</code> if the minimize button * is visible. * * @return the visibility of the minimized button * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public bool getMinimizeVisible() { checkWidget(); return showMin; } /** * Returns the number of characters that will * appear in a fully compressed tab. * * @return number of characters that will appear in a fully compressed tab * * @since 3.0 */ public int getMinimumCharacters() { checkWidget(); return minChars; } /** * Returns <code>true</code> if the receiver is maximized. * <p> * * @return the receiver's maximized state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public bool getMaximized() { checkWidget(); return maximized; } /** * Returns <code>true</code> if the maximize button * is visible. * * @return the visibility of the maximized button * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public bool getMaximizeVisible() { checkWidget(); return showMax; } /** * Returns <code>true</code> if the receiver displays most * recently used tabs and <code>false</code> otherwise. * <p> * When there is not enough horizontal space to show all the tabs, * by default, tabs are shown sequentially from left to right in * order of their index. When the MRU visibility is turned on, * the tabs that are visible will be the tabs most recently selected. * Tabs will still maintain their left to right order based on index * but only the most recently selected tabs are visible. * <p> * For example, consider a CTabFolder that contains "Tab 1", "Tab 2", * "Tab 3" and "Tab 4" (in order by index). The user selects * "Tab 1" and then "Tab 3". If the CTabFolder is now * compressed so that only two tabs are visible, by default, * "Tab 2" and "Tab 3" will be shown ("Tab 3" since it is currently * selected and "Tab 2" because it is the previous item in index order). * If MRU visibility is enabled, the two visible tabs will be "Tab 1" * and "Tab 3" (in that order from left to right).</p> * * @return the receiver's header's visibility state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.1 */ public bool getMRUVisible() { checkWidget(); return mru; } int getRightItemEdge () { int x = getSize().x - borderRight - 3; if (showMin) x -= BUTTON_SIZE; if (showMax) x -= BUTTON_SIZE; if (showChevron) x -= 3*BUTTON_SIZE/2; if (topRight !is null && topRightAlignment !is DWT.FILL) { Point rightSize = topRight.computeSize(DWT.DEFAULT, DWT.DEFAULT); x -= rightSize.x + 3; } return Math.max(0, x); } /** * Return the selected tab item, or null if there is no selection. * * @return the selected tab item, or null if none has been selected * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public CTabItem getSelection() { //checkWidget(); if (selectedIndex is -1) return null; return items[selectedIndex]; } /** * Returns the receiver's selection background color. * * @return the selection background color of the receiver * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public Color getSelectionBackground() { checkWidget(); return selectionBackground; } /** * Returns the receiver's selection foreground color. * * @return the selection foreground color of the receiver * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public Color getSelectionForeground() { checkWidget(); return selectionForeground; } /** * Return the index of the selected tab item, or -1 if there * is no selection. * * @return the index of the selected tab item or -1 * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public int getSelectionIndex() { //checkWidget(); return selectedIndex; } /** * Returns <code>true</code> if the CTabFolder is rendered * with a simple, traditional shape. * * @return <code>true</code> if the CTabFolder is rendered with a simple shape * * @since 3.0 */ public bool getSimple() { checkWidget(); return simple; } /** * Returns <code>true</code> if the CTabFolder only displays the selected tab * and <code>false</code> if the CTabFolder displays multiple tabs. * * @return <code>true</code> if the CTabFolder only displays the selected tab and <code>false</code> if the CTabFolder displays multiple tabs * * @since 3.0 */ public bool getSingle() { checkWidget(); return single; } public override int getStyle() { int style = super.getStyle(); style &= ~(DWT.TOP | DWT.BOTTOM); style |= onBottom ? DWT.BOTTOM : DWT.TOP; style &= ~(DWT.SINGLE | DWT.MULTI); style |= single ? DWT.SINGLE : DWT.MULTI; if (borderLeft !is 0) style |= DWT.BORDER; style &= ~DWT.CLOSE; if (showClose) style |= DWT.CLOSE; return style; } /** * Returns the height of the tab * * @return the height of the tab * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public int getTabHeight() { checkWidget(); if (fixedTabHeight !is DWT.DEFAULT) return fixedTabHeight; return tabHeight - 1; // -1 for line drawn across top of tab } /** * Returns the position of the tab. Possible values are DWT.TOP or DWT.BOTTOM. * * @return the position of the tab * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public int getTabPosition() { checkWidget(); return onBottom ? DWT.BOTTOM : DWT.TOP; } /** * Returns the control in the top right corner of the tab folder. * Typically this is a close button or a composite with a menu and close button. * * @return the control in the top right corner of the tab folder or null * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @since 2.1 */ public Control getTopRight() { checkWidget(); return topRight; } /** * Returns <code>true</code> if the close button appears * when the user hovers over an unselected tabs. * * @return <code>true</code> if the close button appears on unselected tabs * * @since 3.0 */ public bool getUnselectedCloseVisible() { checkWidget(); return showUnselectedClose; } /** * Returns <code>true</code> if an image appears * in unselected tabs. * * @return <code>true</code> if an image appears in unselected tabs * * @since 3.0 */ public bool getUnselectedImageVisible() { checkWidget(); return showUnselectedImage; } /** * Return the index of the specified tab or -1 if the tab is not * in the receiver. * * @param item the tab item for which the index is required * * @return the index of the specified tab item or -1 * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public int indexOf(CTabItem item) { checkWidget(); if (item is null) { DWT.error(DWT.ERROR_NULL_ARGUMENT); } for (int i = 0; i < items.length; i++) { if (items[i] is item) return i; } return -1; } void initAccessible() { Accessible accessible = getAccessible(); accessible.addAccessibleListener(new class() AccessibleAdapter { public void getName(AccessibleEvent e) { String name = null; int childID = e.childID; if (childID >= 0 && childID < items.length) { name = stripMnemonic(items[childID].getText()); } else if (childID is items.length + CHEVRON_CHILD_ID) { name = DWT.getMessage("SWT_ShowList"); //$NON-NLS-1$ } else if (childID is items.length + MINIMIZE_CHILD_ID) { name = minimized ? DWT.getMessage("SWT_Restore") : DWT.getMessage("SWT_Minimize"); //$NON-NLS-1$ //$NON-NLS-2$ } else if (childID is items.length + MAXIMIZE_CHILD_ID) { name = maximized ? DWT.getMessage("SWT_Restore") : DWT.getMessage("SWT_Maximize"); //$NON-NLS-1$ //$NON-NLS-2$ } e.result = name; } public void getHelp(AccessibleEvent e) { String help = null; int childID = e.childID; if (childID is ACC.CHILDID_SELF) { help = getToolTipText(); } else if (childID >= 0 && childID < items.length) { help = items[childID].getToolTipText(); } e.result = help; } public void getKeyboardShortcut(AccessibleEvent e) { String shortcut = null; int childID = e.childID; if (childID >= 0 && childID < items.length) { String text = items[childID].getText(); if (text !is null) { dchar mnemonic = _findMnemonic(text); if (mnemonic !is '\0') { shortcut = "Alt+"~tango.text.convert.Utf.toString([mnemonic]); //$NON-NLS-1$ } } } e.result = shortcut; } }); accessible.addAccessibleControlListener(new class() AccessibleControlAdapter { public void getChildAtPoint(AccessibleControlEvent e) { Point testPoint = toControl(e.x, e.y); int childID = ACC.CHILDID_NONE; for (int i = 0; i < items.length; i++) { if (items[i].getBounds().contains(testPoint)) { childID = i; break; } } if (childID is ACC.CHILDID_NONE) { if (showChevron && chevronRect.contains(testPoint)) { childID = items.length + CHEVRON_CHILD_ID; } else if (showMin && minRect.contains(testPoint)) { childID = items.length + MINIMIZE_CHILD_ID; } else if (showMax && maxRect.contains(testPoint)) { childID = items.length + MAXIMIZE_CHILD_ID; } else { Rectangle location = getBounds(); location.height = location.height - getClientArea().height; if (location.contains(testPoint)) { childID = ACC.CHILDID_SELF; } } } e.childID = childID; } public void getLocation(AccessibleControlEvent e) { Rectangle location = null; Point pt = null; int childID = e.childID; if (childID is ACC.CHILDID_SELF) { location = getBounds(); pt = getParent().toDisplay(location.x, location.y); } else { if (childID >= 0 && childID < items.length && items[childID].isShowing()) { location = items[childID].getBounds(); } else if (showChevron && childID is items.length + CHEVRON_CHILD_ID) { location = chevronRect; } else if (showMin && childID is items.length + MINIMIZE_CHILD_ID) { location = minRect; } else if (showMax && childID is items.length + MAXIMIZE_CHILD_ID) { location = maxRect; } if (location !is null) { pt = toDisplay(location.x, location.y); } } if (location !is null && pt !is null) { e.x = pt.x; e.y = pt.y; e.width = location.width; e.height = location.height; } } public void getChildCount(AccessibleControlEvent e) { e.detail = items.length + EXTRA_CHILD_ID_COUNT; } public void getDefaultAction(AccessibleControlEvent e) { String action = null; int childID = e.childID; if (childID >= 0 && childID < items.length) { action = DWT.getMessage ("SWT_Switch"); //$NON-NLS-1$ } if (childID >= items.length && childID < items.length + EXTRA_CHILD_ID_COUNT) { action = DWT.getMessage ("SWT_Press"); //$NON-NLS-1$ } e.result = action; } public void getFocus(AccessibleControlEvent e) { int childID = ACC.CHILDID_NONE; if (isFocusControl()) { if (selectedIndex is -1) { childID = ACC.CHILDID_SELF; } else { childID = selectedIndex; } } e.childID = childID; } public void getRole(AccessibleControlEvent e) { int role = 0; int childID = e.childID; if (childID is ACC.CHILDID_SELF) { role = ACC.ROLE_TABFOLDER; } else if (childID >= 0 && childID < items.length) { role = ACC.ROLE_TABITEM; } else if (childID >= items.length && childID < items.length + EXTRA_CHILD_ID_COUNT) { role = ACC.ROLE_PUSHBUTTON; } e.detail = role; } public void getSelection(AccessibleControlEvent e) { e.childID = (selectedIndex is -1) ? ACC.CHILDID_NONE : selectedIndex; } public void getState(AccessibleControlEvent e) { int state = 0; int childID = e.childID; if (childID is ACC.CHILDID_SELF) { state = ACC.STATE_NORMAL; } else if (childID >= 0 && childID < items.length) { state = ACC.STATE_SELECTABLE; if (isFocusControl()) { state |= ACC.STATE_FOCUSABLE; } if (selectedIndex is childID) { state |= ACC.STATE_SELECTED; if (isFocusControl()) { state |= ACC.STATE_FOCUSED; } } } else if (childID is items.length + CHEVRON_CHILD_ID) { state = showChevron ? ACC.STATE_NORMAL : ACC.STATE_INVISIBLE; } else if (childID is items.length + MINIMIZE_CHILD_ID) { state = showMin ? ACC.STATE_NORMAL : ACC.STATE_INVISIBLE; } else if (childID is items.length + MAXIMIZE_CHILD_ID) { state = showMax ? ACC.STATE_NORMAL : ACC.STATE_INVISIBLE; } e.detail = state; } public void getChildren(AccessibleControlEvent e) { int childIdCount = items.length + EXTRA_CHILD_ID_COUNT; Object[] children = new Object[childIdCount]; for (int i = 0; i < childIdCount; i++) { children[i] = new Integer(i); } e.children = children; } }); addListener(DWT.Selection, new class(accessible) Listener { Accessible acc; this( Accessible a ) { this.acc = a; } public void handleEvent(Event event) { if (isFocusControl()) { if (selectedIndex is -1) { acc.setFocus(ACC.CHILDID_SELF); } else { acc.setFocus(selectedIndex); } } } }); addListener(DWT.FocusIn, new class(accessible) Listener { Accessible acc; this( Accessible a ) { this.acc = a; } public void handleEvent(Event event) { if (selectedIndex is -1) { acc.setFocus(ACC.CHILDID_SELF); } else { acc.setFocus(selectedIndex); } } }); } void onKeyDown (Event event) { switch (event.keyCode) { case DWT.ARROW_LEFT: case DWT.ARROW_RIGHT: int count = items.length; if (count is 0) return; if (selectedIndex is -1) return; int leadKey = (getStyle() & DWT.RIGHT_TO_LEFT) !is 0 ? DWT.ARROW_RIGHT : DWT.ARROW_LEFT; int offset = event.keyCode is leadKey ? -1 : 1; int index; if (!mru) { index = selectedIndex + offset; } else { int[] visible = new int[items.length]; int idx = 0; int current = -1; for (int i = 0; i < items.length; i++) { if (items[i].showing) { if (i is selectedIndex) current = idx; visible [idx++] = i; } } if (current + offset >= 0 && current + offset < idx) { index = visible [current + offset]; } else { if (showChevron) { CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; e.x = chevronRect.x; e.y = chevronRect.y; e.width = chevronRect.width; e.height = chevronRect.height; e.doit = true; for (int i = 0; i < folderListeners.length; i++) { folderListeners[i].showList(e); } if (e.doit && !isDisposed()) { showList(chevronRect); } } return; } } if (index < 0 || index >= count) return; setSelection (index, true); forceFocus(); default: } } void onDispose(Event event) { removeListener(DWT.Dispose, listener); notifyListeners(DWT.Dispose, event); event.type = DWT.None; /* * Usually when an item is disposed, destroyItem will change the size of the items array, * reset the bounds of all the tabs and manage the widget associated with the tab. * Since the whole folder is being disposed, this is not necessary. For speed * the inDispose flag is used to skip over this part of the item dispose. */ inDispose = true; if (showMenu !is null && !showMenu.isDisposed()) { showMenu.dispose(); showMenu = null; } int length = items.length; for (int i = 0; i < length; i++) { if (items[i] !is null) { items[i].dispose(); } } selectionGradientColors = null; selectionGradientPercents = null; selectionBgImage = null; selectionBackground = null; selectionForeground = null; disposeSelectionHighlightGradientColors(); } void onDragDetect(Event event) { bool consume = false; if (chevronRect.contains(event.x, event.y) || minRect.contains(event.x, event.y) || maxRect.contains(event.x, event.y)) { consume = true; } else { for (int i = 0; i < items.length; i++) { if (items[i].closeRect.contains(event.x, event.y)) { consume = true; break; } } } if (consume) { event.type = DWT.None; } } void onFocus(Event event) { checkWidget(); if (selectedIndex >= 0) { redraw(); } else { setSelection(0, true); } } bool onMnemonic (Event event) { auto key = event.character; for (int i = 0; i < items.length; i++) { if (items[i] !is null) { auto mnemonic = _findMnemonic (items[i].getText ()); if (mnemonic !is '\0') { if ( CharacterToLower(key) is mnemonic) { setSelection(i, true); return true; } } } } return false; } void onMouseDoubleClick(Event event) { if (event.button !is 1 || (event.stateMask & DWT.BUTTON2) !is 0 || (event.stateMask & DWT.BUTTON3) !is 0) return; Event e = new Event(); e.item = getItem(new Point(event.x, event.y)); if (e.item !is null) { notifyListeners(DWT.DefaultSelection, e); } } void onMouse(Event event) { int x = event.x, y = event.y; switch (event.type) { case DWT.MouseEnter: { setToolTipText(null); break; } case DWT.MouseExit: { if (minImageState !is NORMAL) { minImageState = NORMAL; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); } if (maxImageState !is NORMAL) { maxImageState = NORMAL; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); } if (chevronImageState !is NORMAL) { chevronImageState = NORMAL; redraw(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, false); } for (int i=0; i<items.length; i++) { CTabItem item = items[i]; if (i !is selectedIndex && item.closeImageState !is NONE) { item.closeImageState = NONE; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } if (i is selectedIndex && item.closeImageState !is NORMAL) { item.closeImageState = NORMAL; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } } break; } case DWT.MouseDown: { if (minRect.contains(x, y)) { if (event.button !is 1) return; minImageState = SELECTED; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); update(); return; } if (maxRect.contains(x, y)) { if (event.button !is 1) return; maxImageState = SELECTED; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); update(); return; } if (chevronRect.contains(x, y)) { if (event.button !is 1) return; if (chevronImageState !is HOT) { chevronImageState = HOT; } else { chevronImageState = SELECTED; } redraw(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, false); update(); return; } CTabItem item = null; if (single) { if (selectedIndex !is -1) { Rectangle bounds = items[selectedIndex].getBounds(); if (bounds.contains(x, y)) { item = items[selectedIndex]; } } } else { for (int i=0; i<items.length; i++) { Rectangle bounds = items[i].getBounds(); if (bounds.contains(x, y)) { item = items[i]; } } } if (item !is null) { if (item.closeRect.contains(x,y)) { if (event.button !is 1) return; item.closeImageState = SELECTED; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); update(); return; } int index = indexOf(item); if (item.showing) { setSelection(index, true); } return; } break; } case DWT.MouseMove: { _setToolTipText(event.x, event.y); bool close = false, minimize = false, maximize = false, chevron = false; if (minRect.contains(x, y)) { minimize = true; if (minImageState !is SELECTED && minImageState !is HOT) { minImageState = HOT; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); } } if (maxRect.contains(x, y)) { maximize = true; if (maxImageState !is SELECTED && maxImageState !is HOT) { maxImageState = HOT; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); } } if (chevronRect.contains(x, y)) { chevron = true; if (chevronImageState !is SELECTED && chevronImageState !is HOT) { chevronImageState = HOT; redraw(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, false); } } if (minImageState !is NORMAL && !minimize) { minImageState = NORMAL; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); } if (maxImageState !is NORMAL && !maximize) { maxImageState = NORMAL; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); } if (chevronImageState !is NORMAL && !chevron) { chevronImageState = NORMAL; redraw(chevronRect.x, chevronRect.y, chevronRect.width, chevronRect.height, false); } for (int i=0; i<items.length; i++) { CTabItem item = items[i]; close = false; if (item.getBounds().contains(x, y)) { close = true; if (item.closeRect.contains(x, y)) { if (item.closeImageState !is SELECTED && item.closeImageState !is HOT) { item.closeImageState = HOT; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } } else { if (item.closeImageState !is NORMAL) { item.closeImageState = NORMAL; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } } } if (i !is selectedIndex && item.closeImageState !is NONE && !close) { item.closeImageState = NONE; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } if (i is selectedIndex && item.closeImageState !is NORMAL && !close) { item.closeImageState = NORMAL; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); } } break; } case DWT.MouseUp: { if (event.button !is 1) return; if (chevronRect.contains(x, y)) { bool selected = chevronImageState is SELECTED; if (!selected) return; CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; e.x = chevronRect.x; e.y = chevronRect.y; e.width = chevronRect.width; e.height = chevronRect.height; e.doit = true; for (int i = 0; i < folderListeners.length; i++) { folderListeners[i].showList(e); } if (e.doit && !isDisposed()) { showList(chevronRect); } return; } if (minRect.contains(x, y)) { bool selected = minImageState is SELECTED; minImageState = HOT; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); if (!selected) return; CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; for (int i = 0; i < folderListeners.length; i++) { if (minimized) { folderListeners[i].restore(e); } else { folderListeners[i].minimize(e); } } return; } if (maxRect.contains(x, y)) { bool selected = maxImageState is SELECTED; maxImageState = HOT; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); if (!selected) return; CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; for (int i = 0; i < folderListeners.length; i++) { if (maximized) { folderListeners[i].restore(e); } else { folderListeners[i].maximize(e); } } return; } CTabItem item = null; if (single) { if (selectedIndex !is -1) { Rectangle bounds = items[selectedIndex].getBounds(); if (bounds.contains(x, y)) { item = items[selectedIndex]; } } } else { for (int i=0; i<items.length; i++) { Rectangle bounds = items[i].getBounds(); if (bounds.contains(x, y)) { item = items[i]; } } } if (item !is null) { if (item.closeRect.contains(x,y)) { bool selected = item.closeImageState is SELECTED; item.closeImageState = HOT; redraw(item.closeRect.x, item.closeRect.y, item.closeRect.width, item.closeRect.height, false); if (!selected) return; CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; e.item = item; e.doit = true; for (int j = 0; j < folderListeners.length; j++) { CTabFolder2Listener listener = folderListeners[j]; listener.close(e); } for (int j = 0; j < tabListeners.length; j++) { CTabFolderListener listener = tabListeners[j]; listener.itemClosed(e); } if (e.doit) item.dispose(); if (!isDisposed() && item.isDisposed()) { Display display = getDisplay(); Point pt = display.getCursorLocation(); pt = display.map(null, this, pt.x, pt.y); CTabItem nextItem = getItem(pt); if (nextItem !is null) { if (nextItem.closeRect.contains(pt)) { if (nextItem.closeImageState !is SELECTED && nextItem.closeImageState !is HOT) { nextItem.closeImageState = HOT; redraw(nextItem.closeRect.x, nextItem.closeRect.y, nextItem.closeRect.width, nextItem.closeRect.height, false); } } else { if (nextItem.closeImageState !is NORMAL) { nextItem.closeImageState = NORMAL; redraw(nextItem.closeRect.x, nextItem.closeRect.y, nextItem.closeRect.width, nextItem.closeRect.height, false); } } } } return; } } default: } } } bool onPageTraversal(Event event) { int count = items.length; if (count is 0) return false; int index = selectedIndex; if (index is -1) { index = 0; } else { int offset = (event.detail is DWT.TRAVERSE_PAGE_NEXT) ? 1 : -1; if (!mru) { index = (selectedIndex + offset + count) % count; } else { int[] visible = new int[items.length]; int idx = 0; int current = -1; for (int i = 0; i < items.length; i++) { if (items[i].showing) { if (i is selectedIndex) current = idx; visible [idx++] = i; } } if (current + offset >= 0 && current + offset < idx) { index = visible [current + offset]; } else { if (showChevron) { CTabFolderEvent e = new CTabFolderEvent(this); e.widget = this; e.time = event.time; e.x = chevronRect.x; e.y = chevronRect.y; e.width = chevronRect.width; e.height = chevronRect.height; e.doit = true; for (int i = 0; i < folderListeners.length; i++) { folderListeners[i].showList(e); } if (e.doit && !isDisposed()) { showList(chevronRect); } } return true; } } } setSelection (index, true); return true; } void onPaint(Event event) { if (inDispose) return; Font font = getFont(); if (oldFont is null || oldFont!=font) { // handle case where default font changes oldFont = font; if (!updateTabHeight(false)) { updateItems(); redraw(); return; } } GC gc = event.gc; Font gcFont = gc.getFont(); Color gcBackground = gc.getBackground(); Color gcForeground = gc.getForeground(); // Useful for debugging paint problems //{ //Point size = getSize(); //gc.setBackground(getDisplay().getSystemColor(DWT.COLOR_GREEN)); //gc.fillRectangle(-10, -10, size.x + 20, size.y+20); //} drawBody(event); gc.setFont(gcFont); gc.setForeground(gcForeground); gc.setBackground(gcBackground); drawTabArea(event); gc.setFont(gcFont); gc.setForeground(gcForeground); gc.setBackground(gcBackground); } void onResize() { if (updateItems()) redrawTabs(); Point size = getSize(); if (oldSize is null) { redraw(); } else { if (onBottom && size.y !is oldSize.y) { redraw(); } else { int x1 = Math.min(size.x, oldSize.x); if (size.x !is oldSize.x) x1 -= borderRight + highlight_margin + 2; if (!simple) x1 -= 5; // rounded top right corner int y1 = Math.min(size.y, oldSize.y); if (size.y !is oldSize.y) y1 -= borderBottom + highlight_margin; int x2 = Math.max(size.x, oldSize.x); int y2 = Math.max(size.y, oldSize.y); redraw(0, y1, x2, y2 - y1, false); redraw(x1, 0, x2 - x1, y2, false); } } oldSize = size; } void onTraverse (Event event) { switch (event.detail) { case DWT.TRAVERSE_ESCAPE: case DWT.TRAVERSE_RETURN: case DWT.TRAVERSE_TAB_NEXT: case DWT.TRAVERSE_TAB_PREVIOUS: Control focusControl = getDisplay().getFocusControl(); if (focusControl is this) event.doit = true; break; case DWT.TRAVERSE_MNEMONIC: event.doit = onMnemonic(event); if (event.doit) event.detail = DWT.TRAVERSE_NONE; break; case DWT.TRAVERSE_PAGE_NEXT: case DWT.TRAVERSE_PAGE_PREVIOUS: event.doit = onPageTraversal(event); event.detail = DWT.TRAVERSE_NONE; break; default: } } void redrawTabs() { Point size = getSize(); if (onBottom) { redraw(0, size.y - borderBottom - tabHeight - highlight_header - 1, size.x, borderBottom + tabHeight + highlight_header + 1, false); } else { redraw(0, 0, size.x, borderTop + tabHeight + highlight_header + 1, false); } } /** * Removes the listener. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @see #addCTabFolder2Listener(CTabFolder2Listener) * * @since 3.0 */ public void removeCTabFolder2Listener(CTabFolder2Listener listener) { checkWidget(); if (listener is null) DWT.error (DWT.ERROR_NULL_ARGUMENT); if (folderListeners.length is 0) return; int index = -1; for (int i = 0; i < folderListeners.length; i++) { if (listener is folderListeners[i]) { index = i; break; } } if (index is -1) return; if (folderListeners.length is 1) { folderListeners = new CTabFolder2Listener[0]; return; } CTabFolder2Listener[] newTabListeners = new CTabFolder2Listener[folderListeners.length - 1]; SimpleType!(CTabFolder2Listener).arraycopy(folderListeners, 0, newTabListeners, 0, index); SimpleType!(CTabFolder2Listener).arraycopy(folderListeners, index + 1, newTabListeners, index, folderListeners.length - index - 1); folderListeners = newTabListeners; } /** * Removes the listener. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @deprecated see removeCTabFolderCloseListener(CTabFolderListener) */ public void removeCTabFolderListener(CTabFolderListener listener) { checkWidget(); if (listener is null) DWT.error (DWT.ERROR_NULL_ARGUMENT); if (tabListeners.length is 0) return; int index = -1; for (int i = 0; i < tabListeners.length; i++) { if (listener is tabListeners[i]) { index = i; break; } } if (index is -1) return; if (tabListeners.length is 1) { tabListeners = new CTabFolderListener[0]; return; } CTabFolderListener[] newTabListeners = new CTabFolderListener[tabListeners.length - 1]; SimpleType!(CTabFolderListener).arraycopy(tabListeners, 0, newTabListeners, 0, index); SimpleType!(CTabFolderListener).arraycopy(tabListeners, index + 1, newTabListeners, index, tabListeners.length - index - 1); tabListeners = newTabListeners; } /** * Removes the listener from the collection of listeners who will * be notified when the user changes the receiver's selection. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see SelectionListener * @see #addSelectionListener */ public void removeSelectionListener(SelectionListener listener) { checkWidget(); if (listener is null) { DWT.error(DWT.ERROR_NULL_ARGUMENT); } removeListener(DWT.Selection, listener); removeListener(DWT.DefaultSelection, listener); } public override void setBackground (Color color) { super.setBackground(color); redraw(); } /** * Specify a gradient of colours to be drawn in the background of the unselected tabs. * For example to draw a gradient that varies from dark blue to blue and then to * white, use the following call to setBackground: * <pre> * cfolder.setBackground(new Color[]{display.getSystemColor(DWT.COLOR_DARK_BLUE), * display.getSystemColor(DWT.COLOR_BLUE), * display.getSystemColor(DWT.COLOR_WHITE), * display.getSystemColor(DWT.COLOR_WHITE)}, * new int[] {25, 50, 100}); * </pre> * * @param colors an array of Color that specifies the colors to appear in the gradient * in order of appearance left to right. The value <code>null</code> clears the * background gradient. The value <code>null</code> can be used inside the array of * Color to specify the background color. * @param percents an array of integers between 0 and 100 specifying the percent of the width * of the widget at which the color should change. The size of the percents array must be one * less than the size of the colors array. * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @since 3.0 */ void setBackground(Color[] colors, int[] percents) { setBackground(colors, percents, false); } /** * Specify a gradient of colours to be drawn in the background of the unselected tab. * For example to draw a vertical gradient that varies from dark blue to blue and then to * white, use the following call to setBackground: * <pre> * cfolder.setBackground(new Color[]{display.getSystemColor(DWT.COLOR_DARK_BLUE), * display.getSystemColor(DWT.COLOR_BLUE), * display.getSystemColor(DWT.COLOR_WHITE), * display.getSystemColor(DWT.COLOR_WHITE)}, * new int[] {25, 50, 100}, true); * </pre> * * @param colors an array of Color that specifies the colors to appear in the gradient * in order of appearance left to right. The value <code>null</code> clears the * background gradient. The value <code>null</code> can be used inside the array of * Color to specify the background color. * @param percents an array of integers between 0 and 100 specifying the percent of the width * of the widget at which the color should change. The size of the percents array must be one * less than the size of the colors array. * * @param vertical indicate the direction of the gradient. True is vertical and false is horizontal. * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @since 3.0 */ void setBackground(Color[] colors, int[] percents, bool vertical) { checkWidget(); if (colors !is null) { if (percents is null || percents.length !is colors.length - 1) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } for (int i = 0; i < percents.length; i++) { if (percents[i] < 0 || percents[i] > 100) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } if (i > 0 && percents[i] < percents[i-1]) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } } if (getDisplay().getDepth() < 15) { // Don't use gradients on low color displays colors = [colors[colors.length - 1]]; percents = null; } } // Are these settings the same as before? if (bgImage is null) { if ((gradientColors !is null) && (colors !is null) && (gradientColors.length is colors.length)) { bool same = false; for (int i = 0; i < gradientColors.length; i++) { if (gradientColors[i] is null) { same = colors[i] is null; } else { same = cast(bool)(gradientColors[i]==colors[i]); } if (!same) break; } if (same) { for (int i = 0; i < gradientPercents.length; i++) { same = gradientPercents[i] is percents[i]; if (!same) break; } } if (same && this.gradientVertical is vertical) return; } } else { bgImage = null; } // Store the new settings if (colors is null) { gradientColors = null; gradientPercents = null; gradientVertical = false; setBackground(cast(Color)null); } else { gradientColors = new Color[colors.length]; for (int i = 0; i < colors.length; ++i) { gradientColors[i] = colors[i]; } gradientPercents = new int[percents.length]; for (int i = 0; i < percents.length; ++i) { gradientPercents[i] = percents[i]; } gradientVertical = vertical; setBackground(gradientColors[gradientColors.length-1]); } // Refresh with the new settings redraw(); } /** * Set the image to be drawn in the background of the unselected tab. Image * is stretched or compressed to cover entire unselected tab area. * * @param image the image to be drawn in the background * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ void setBackground(Image image) { checkWidget(); if (image is bgImage) return; if (image !is null) { gradientColors = null; gradientPercents = null; } bgImage = image; redraw(); } /** * Toggle the visibility of the border * * @param show true if the border should be displayed * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setBorderVisible(bool show) { checkWidget(); if ((borderLeft is 1) is show) return; borderLeft = borderRight = show ? 1 : 0; borderTop = onBottom ? borderLeft : 0; borderBottom = onBottom ? 0 : borderLeft; Rectangle rectBefore = getClientArea(); updateItems(); Rectangle rectAfter = getClientArea(); if (rectBefore!=rectAfter) { notifyListeners(DWT.Resize, new Event()); } redraw(); } void setButtonBounds() { Point size = getSize(); int oldX, oldY, oldWidth, oldHeight; // max button oldX = maxRect.x; oldY = maxRect.y; oldWidth = maxRect.width; oldHeight = maxRect.height; maxRect.x = maxRect.y = maxRect.width = maxRect.height = 0; if (showMax) { maxRect.x = size.x - borderRight - BUTTON_SIZE - 3; if (borderRight > 0) maxRect.x += 1; maxRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - BUTTON_SIZE)/2: borderTop + (tabHeight - BUTTON_SIZE)/2; maxRect.width = BUTTON_SIZE; maxRect.height = BUTTON_SIZE; } if (oldX !is maxRect.x || oldWidth !is maxRect.width || oldY !is maxRect.y || oldHeight !is maxRect.height) { int left = Math.min(oldX, maxRect.x); int right = Math.max(oldX + oldWidth, maxRect.x + maxRect.width); int top = onBottom ? size.y - borderBottom - tabHeight: borderTop + 1; redraw(left, top, right - left, tabHeight, false); } // min button oldX = minRect.x; oldY = minRect.y; oldWidth = minRect.width; oldHeight = minRect.height; minRect.x = minRect.y = minRect.width = minRect.height = 0; if (showMin) { minRect.x = size.x - borderRight - maxRect.width - BUTTON_SIZE - 3; if (borderRight > 0) minRect.x += 1; minRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - BUTTON_SIZE)/2: borderTop + (tabHeight - BUTTON_SIZE)/2; minRect.width = BUTTON_SIZE; minRect.height = BUTTON_SIZE; } if (oldX !is minRect.x || oldWidth !is minRect.width || oldY !is minRect.y || oldHeight !is minRect.height) { int left = Math.min(oldX, minRect.x); int right = Math.max(oldX + oldWidth, minRect.x + minRect.width); int top = onBottom ? size.y - borderBottom - tabHeight: borderTop + 1; redraw(left, top, right - left, tabHeight, false); } // top right control oldX = topRightRect.x; oldY = topRightRect.y; oldWidth = topRightRect.width; oldHeight = topRightRect.height; topRightRect.x = topRightRect.y = topRightRect.width = topRightRect.height = 0; if (topRight !is null) { switch (topRightAlignment) { case DWT.FILL: { int rightEdge = size.x - borderRight - 3 - maxRect.width - minRect.width; if (!simple && borderRight > 0 && !showMax && !showMin) rightEdge -= 2; if (single) { if (items.length is 0 || selectedIndex is -1) { topRightRect.x = borderLeft + 3; topRightRect.width = rightEdge - topRightRect.x; } else { // fill size is 0 if item compressed CTabItem item = items[selectedIndex]; if (item.x + item.width + 7 + 3*BUTTON_SIZE/2 >= rightEdge) break; topRightRect.x = item.x + item.width + 7 + 3*BUTTON_SIZE/2; topRightRect.width = rightEdge - topRightRect.x; } } else { // fill size is 0 if chevron showing if (showChevron) break; if (items.length is 0) { topRightRect.x = borderLeft + 3; } else { CTabItem item = items[items.length - 1]; topRightRect.x = item.x + item.width; if (!simple && items.length - 1 is selectedIndex) topRightRect.x += curveWidth - curveIndent; } topRightRect.width = Math.max(0, rightEdge - topRightRect.x); } topRightRect.y = onBottom ? size.y - borderBottom - tabHeight: borderTop + 1; topRightRect.height = tabHeight - 1; break; } case DWT.RIGHT: { Point topRightSize = topRight.computeSize(DWT.DEFAULT, tabHeight, false); int rightEdge = size.x - borderRight - 3 - maxRect.width - minRect.width; if (!simple && borderRight > 0 && !showMax && !showMin) rightEdge -= 2; topRightRect.x = rightEdge - topRightSize.x; topRightRect.width = topRightSize.x; topRightRect.y = onBottom ? size.y - borderBottom - tabHeight: borderTop + 1; topRightRect.height = tabHeight - 1; } default: } topRight.setBounds(topRightRect); } if (oldX !is topRightRect.x || oldWidth !is topRightRect.width || oldY !is topRightRect.y || oldHeight !is topRightRect.height) { int left = Math.min(oldX, topRightRect.x); int right = Math.max(oldX + oldWidth, topRightRect.x + topRightRect.width); int top = onBottom ? size.y - borderBottom - tabHeight : borderTop + 1; redraw(left, top, right - left, tabHeight, false); } // chevron button oldX = chevronRect.x; oldY = chevronRect.y; oldWidth = chevronRect.width; oldHeight = chevronRect.height; chevronRect.x = chevronRect.y = chevronRect.height = chevronRect.width = 0; if (single) { if (selectedIndex is -1 || items.length > 1) { chevronRect.width = 3*BUTTON_SIZE/2; chevronRect.height = BUTTON_SIZE; chevronRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - chevronRect.height)/2 : borderTop + (tabHeight - chevronRect.height)/2; if (selectedIndex is -1) { chevronRect.x = size.x - borderRight - 3 - minRect.width - maxRect.width - topRightRect.width - chevronRect.width; } else { CTabItem item = items[selectedIndex]; int w = size.x - borderRight - 3 - minRect.width - maxRect.width - chevronRect.width; if (topRightRect.width > 0) w -= topRightRect.width + 3; chevronRect.x = Math.min(item.x + item.width + 3, w); } if (borderRight > 0) chevronRect.x += 1; } } else { if (showChevron) { chevronRect.width = 3*BUTTON_SIZE/2; chevronRect.height = BUTTON_SIZE; int i = 0, lastIndex = -1; while (i < priority.length && items[priority[i]].showing) { lastIndex = Math.max(lastIndex, priority[i++]); } if (lastIndex is -1) lastIndex = firstIndex; CTabItem lastItem = items[lastIndex]; int w = lastItem.x + lastItem.width + 3; if (!simple && lastIndex is selectedIndex) w += curveWidth - 2*curveIndent; chevronRect.x = Math.min(w, getRightItemEdge()); chevronRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - chevronRect.height)/2 : borderTop + (tabHeight - chevronRect.height)/2; } } if (oldX !is chevronRect.x || oldWidth !is chevronRect.width || oldY !is chevronRect.y || oldHeight !is chevronRect.height) { int left = Math.min(oldX, chevronRect.x); int right = Math.max(oldX + oldWidth, chevronRect.x + chevronRect.width); int top = onBottom ? size.y - borderBottom - tabHeight: borderTop + 1; redraw(left, top, right - left, tabHeight, false); } } public override void setFont(Font font) { checkWidget(); if (font !is null && font==getFont()) return; super.setFont(font); oldFont = getFont(); if (!updateTabHeight(false)) { updateItems(); redraw(); } } public override void setForeground (Color color) { super.setForeground(color); redraw(); } /** * Display an insert marker before or after the specified tab item. * * A value of null will clear the mark. * * @param item the item with which the mark is associated or null * * @param after true if the mark should be displayed after the specified item * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setInsertMark(CTabItem item, bool after) { checkWidget(); } /** * Display an insert marker before or after the specified tab item. * * A value of -1 will clear the mark. * * @param index the index of the item with which the mark is associated or null * * @param after true if the mark should be displayed after the specified item * * @exception IllegalArgumentException<ul> * </ul> * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setInsertMark(int index, bool after) { checkWidget(); if (index < -1 || index >= getItemCount()) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } } bool setItemLocation() { bool changed = false; if (items.length is 0) return false; Point size = getSize(); int y = onBottom ? Math.max(borderBottom, size.y - borderBottom - tabHeight) : borderTop; if (single) { int defaultX = getDisplay().getBounds().width + 10; // off screen for (int i = 0; i < items.length; i++) { CTabItem item = items[i]; if (i is selectedIndex) { firstIndex = selectedIndex; int oldX = item.x, oldY = item.y; item.x = borderLeft; item.y = y; item.showing = true; if (showClose || item.showClose) { item.closeRect.x = borderLeft + CTabItem.LEFT_MARGIN; item.closeRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - BUTTON_SIZE)/2: borderTop + (tabHeight - BUTTON_SIZE)/2; } if (item.x !is oldX || item.y !is oldY) changed = true; } else { item.x = defaultX; item.showing = false; } } } else { int rightItemEdge = getRightItemEdge(); int maxWidth = rightItemEdge - borderLeft; int width = 0; for (int i = 0; i < priority.length; i++) { CTabItem item = items[priority[i]]; width += item.width; item.showing = i is 0 ? true : item.width > 0 && width <= maxWidth; if (!simple && priority[i] is selectedIndex) width += curveWidth - 2*curveIndent; } int x = 0; int defaultX = getDisplay().getBounds().width + 10; // off screen firstIndex = items.length - 1; for (int i = 0; i < items.length; i++) { CTabItem item = items[i]; if (!item.showing) { if (item.x !is defaultX) changed = true; item.x = defaultX; } else { firstIndex = Math.min(firstIndex, i); if (item.x !is x || item.y !is y) changed = true; item.x = x; item.y = y; if (i is selectedIndex) { int edge = Math.min(item.x + item.width, rightItemEdge); item.closeRect.x = edge - CTabItem.RIGHT_MARGIN - BUTTON_SIZE; } else { item.closeRect.x = item.x + item.width - CTabItem.RIGHT_MARGIN - BUTTON_SIZE; } item.closeRect.y = onBottom ? size.y - borderBottom - tabHeight + (tabHeight - BUTTON_SIZE)/2: borderTop + (tabHeight - BUTTON_SIZE)/2; x = x + item.width; if (!simple && i is selectedIndex) x += curveWidth - 2*curveIndent; } } } return changed; } bool setItemSize() { bool changed = false; if (isDisposed()) return changed; Point size = getSize(); if (size.x <= 0 || size.y <= 0) return changed; xClient = borderLeft + marginWidth + highlight_margin; if (onBottom) { yClient = borderTop + highlight_margin + marginHeight; } else { yClient = borderTop + tabHeight + highlight_header + marginHeight; } showChevron = false; if (single) { showChevron = true; if (selectedIndex !is -1) { CTabItem tab = items[selectedIndex]; GC gc = new GC(this); int width = tab.preferredWidth(gc, true, false); gc.dispose(); width = Math.min(width, getRightItemEdge() - borderLeft); if (tab.height !is tabHeight || tab.width !is width) { changed = true; tab.shortenedText = null; tab.shortenedTextWidth = 0; tab.height = tabHeight; tab.width = width; tab.closeRect.width = tab.closeRect.height = 0; if (showClose || tab.showClose) { tab.closeRect.width = BUTTON_SIZE; tab.closeRect.height = BUTTON_SIZE; } } } return changed; } if (items.length is 0) return changed; int[] widths; GC gc = new GC(this); int tabAreaWidth = size.x - borderLeft - borderRight - 3; if (showMin) tabAreaWidth -= BUTTON_SIZE; if (showMax) tabAreaWidth -= BUTTON_SIZE; if (topRightAlignment is DWT.RIGHT && topRight !is null) { Point rightSize = topRight.computeSize(DWT.DEFAULT, DWT.DEFAULT, false); tabAreaWidth -= rightSize.x + 3; } if (!simple) tabAreaWidth -= curveWidth - 2*curveIndent; tabAreaWidth = Math.max(0, tabAreaWidth); // First, try the minimum tab size at full compression. int minWidth = 0; int[] minWidths = new int[items.length]; for (int i = 0; i < priority.length; i++) { int index = priority[i]; minWidths[index] = items[index].preferredWidth(gc, index is selectedIndex, true); minWidth += minWidths[index]; if (minWidth > tabAreaWidth) break; } if (minWidth > tabAreaWidth) { // full compression required and a chevron showChevron = items.length > 1; if (showChevron) tabAreaWidth -= 3*BUTTON_SIZE/2; widths = minWidths; int index = selectedIndex !is -1 ? selectedIndex : 0; if (tabAreaWidth < widths[index]) { widths[index] = Math.max(0, tabAreaWidth); } } else { int maxWidth = 0; int[] maxWidths = new int[items.length]; for (int i = 0; i < items.length; i++) { maxWidths[i] = items[i].preferredWidth(gc, i is selectedIndex, false); maxWidth += maxWidths[i]; } if (maxWidth <= tabAreaWidth) { // no compression required widths = maxWidths; } else { // determine compression for each item int extra = (tabAreaWidth - minWidth) / items.length; while (true) { int large = 0, totalWidth = 0; for (int i = 0 ; i < items.length; i++) { if (maxWidths[i] > minWidths[i] + extra) { totalWidth += minWidths[i] + extra; large++; } else { totalWidth += maxWidths[i]; } } if (totalWidth >= tabAreaWidth) { extra--; break; } if (large is 0 || tabAreaWidth - totalWidth < large) break; extra++; } widths = new int[items.length]; for (int i = 0; i < items.length; i++) { widths[i] = Math.min(maxWidths[i], minWidths[i] + extra); } } } gc.dispose(); for (int i = 0; i < items.length; i++) { CTabItem tab = items[i]; int width = widths[i]; if (tab.height !is tabHeight || tab.width !is width) { changed = true; tab.shortenedText = null; tab.shortenedTextWidth = 0; tab.height = tabHeight; tab.width = width; tab.closeRect.width = tab.closeRect.height = 0; if (showClose || tab.showClose) { if (i is selectedIndex || showUnselectedClose) { tab.closeRect.width = BUTTON_SIZE; tab.closeRect.height = BUTTON_SIZE; } } } } return changed; } /** * Marks the receiver's maximize button as visible if the argument is <code>true</code>, * and marks it invisible otherwise. * * @param visible the new visibility state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setMaximizeVisible(bool visible) { checkWidget(); if (showMax is visible) return; // display maximize button showMax = visible; updateItems(); redraw(); } /** * Sets the layout which is associated with the receiver to be * the argument which may be null. * <p> * Note: No Layout can be set on this Control because it already * manages the size and position of its children. * </p> * * @param layout the receiver's new layout or null * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public override void setLayout (Layout layout) { checkWidget(); return; } /** * Sets the maximized state of the receiver. * * @param maximize the new maximized state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setMaximized(bool maximize) { checkWidget (); if (this.maximized is maximize) return; if (maximize && this.minimized) setMinimized(false); this.maximized = maximize; redraw(maxRect.x, maxRect.y, maxRect.width, maxRect.height, false); } /** * Marks the receiver's minimize button as visible if the argument is <code>true</code>, * and marks it invisible otherwise. * * @param visible the new visibility state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setMinimizeVisible(bool visible) { checkWidget(); if (showMin is visible) return; // display minimize button showMin = visible; updateItems(); redraw(); } /** * Sets the minimized state of the receiver. * * @param minimize the new minimized state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setMinimized(bool minimize) { checkWidget (); if (this.minimized is minimize) return; if (minimize && this.maximized) setMaximized(false); this.minimized = minimize; redraw(minRect.x, minRect.y, minRect.width, minRect.height, false); } /** * Sets the minimum number of characters that will * be displayed in a fully compressed tab. * * @param count the minimum number of characters that will be displayed in a fully compressed tab * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * <li>ERROR_INVALID_RANGE - if the count is less than zero</li> * </ul> * * @since 3.0 */ public void setMinimumCharacters(int count) { checkWidget (); if (count < 0) DWT.error(DWT.ERROR_INVALID_RANGE); if (minChars is count) return; minChars = count; if (updateItems()) redrawTabs(); } /** * When there is not enough horizontal space to show all the tabs, * by default, tabs are shown sequentially from left to right in * order of their index. When the MRU visibility is turned on, * the tabs that are visible will be the tabs most recently selected. * Tabs will still maintain their left to right order based on index * but only the most recently selected tabs are visible. * <p> * For example, consider a CTabFolder that contains "Tab 1", "Tab 2", * "Tab 3" and "Tab 4" (in order by index). The user selects * "Tab 1" and then "Tab 3". If the CTabFolder is now * compressed so that only two tabs are visible, by default, * "Tab 2" and "Tab 3" will be shown ("Tab 3" since it is currently * selected and "Tab 2" because it is the previous item in index order). * If MRU visibility is enabled, the two visible tabs will be "Tab 1" * and "Tab 3" (in that order from left to right).</p> * * @param show the new visibility state * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.1 */ public void setMRUVisible(bool show) { checkWidget(); if (mru is show) return; mru = show; if (!mru) { int idx = firstIndex; int next = 0; for (int i = firstIndex; i < items.length; i++) { priority[next++] = i; } for (int i = 0; i < idx; i++) { priority[next++] = i; } if (updateItems()) redrawTabs(); } } /** * Set the selection to the tab at the specified item. * * @param item the tab item to be selected * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the item is null</li> * </ul> * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public void setSelection(CTabItem item) { checkWidget(); if (item is null) DWT.error(DWT.ERROR_NULL_ARGUMENT); int index = indexOf(item); setSelection(index); } /** * Set the selection to the tab at the specified index. * * @param index the index of the tab item to be selected * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setSelection(int index) { checkWidget(); if (index < 0 || index >= items.length) return; CTabItem selection = items[index]; if (selectedIndex is index) { showItem(selection); return; } int oldIndex = selectedIndex; selectedIndex = index; if (oldIndex !is -1) { items[oldIndex].closeImageState = NONE; } selection.closeImageState = NORMAL; selection.showing = false; Control newControl = selection.control; Control oldControl = null; if (oldIndex !is -1) { oldControl = items[oldIndex].control; } if (newControl !is oldControl) { if (newControl !is null && !newControl.isDisposed()) { newControl.setBounds(getClientArea()); newControl.setVisible(true); } if (oldControl !is null && !oldControl.isDisposed()) { oldControl.setVisible(false); } } showItem(selection); redraw(); } void setSelection(int index, bool notify) { int oldSelectedIndex = selectedIndex; setSelection(index); if (notify && selectedIndex !is oldSelectedIndex && selectedIndex !is -1) { Event event = new Event(); event.item = getItem(selectedIndex); notifyListeners(DWT.Selection, event); } } /** * Sets the receiver's selection background color to the color specified * by the argument, or to the default system color for the control * if the argument is null. * * @param color the new color (or null) * * @exception IllegalArgumentException <ul> * <li>ERROR_INVALID_ARGUMENT - if the argument has been disposed</li> * </ul> * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setSelectionBackground (Color color) { checkWidget(); setSelectionHighlightGradientColor(null); if (selectionBackground is color) return; if (color is null) color = getDisplay().getSystemColor(SELECTION_BACKGROUND); selectionBackground = color; if (selectedIndex > -1) redraw(); } /** * Specify a gradient of colours to be draw in the background of the selected tab. * For example to draw a gradient that varies from dark blue to blue and then to * white, use the following call to setBackground: * <pre> * cfolder.setBackground(new Color[]{display.getSystemColor(DWT.COLOR_DARK_BLUE), * display.getSystemColor(DWT.COLOR_BLUE), * display.getSystemColor(DWT.COLOR_WHITE), * display.getSystemColor(DWT.COLOR_WHITE)}, * new int[] {25, 50, 100}); * </pre> * * @param colors an array of Color that specifies the colors to appear in the gradient * in order of appearance left to right. The value <code>null</code> clears the * background gradient. The value <code>null</code> can be used inside the array of * Color to specify the background color. * @param percents an array of integers between 0 and 100 specifying the percent of the width * of the widget at which the color should change. The size of the percents array must be one * less than the size of the colors array. * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> */ public void setSelectionBackground(Color[] colors, int[] percents) { setSelectionBackground(colors, percents, false); } /** * Specify a gradient of colours to be draw in the background of the selected tab. * For example to draw a vertical gradient that varies from dark blue to blue and then to * white, use the following call to setBackground: * <pre> * cfolder.setBackground(new Color[]{display.getSystemColor(DWT.COLOR_DARK_BLUE), * display.getSystemColor(DWT.COLOR_BLUE), * display.getSystemColor(DWT.COLOR_WHITE), * display.getSystemColor(DWT.COLOR_WHITE)}, * new int[] {25, 50, 100}, true); * </pre> * * @param colors an array of Color that specifies the colors to appear in the gradient * in order of appearance left to right. The value <code>null</code> clears the * background gradient. The value <code>null</code> can be used inside the array of * Color to specify the background color. * @param percents an array of integers between 0 and 100 specifying the percent of the width * of the widget at which the color should change. The size of the percents array must be one * less than the size of the colors array. * * @param vertical indicate the direction of the gradient. True is vertical and false is horizontal. * * @exception DWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS when called from the wrong thread</li> * <li>ERROR_WIDGET_DISPOSED when the widget has been disposed</li> * </ul> * * @since 3.0 */ public void setSelectionBackground(Color[] colors, int[] percents, bool vertical) { checkWidget(); int colorsLength; Color highlightBeginColor = null; //null is no highlight if (colors !is null) { //The colors array can optionally have an extra entry which describes the highlight top color //Thus its either one or two larger than the percents array if (percents is null || ! ((percents.length is colors.length - 1) || (percents.length is colors.length - 2))) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } for (int i = 0; i < percents.length; i++) { if (percents[i] < 0 || percents[i] > 100) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } if (i > 0 && percents[i] < percents[i-1]) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } } //If the colors is exactly two more than percents then last is highlight //Keep track of *real* colorsLength (minus the highlight) if(percents.length is colors.length - 2) { highlightBeginColor = colors[colors.length - 1]; colorsLength = colors.length - 1; } else { colorsLength = colors.length; } if (getDisplay().getDepth() < 15) { // Don't use gradients on low color displays colors = [colors[colorsLength - 1]]; colorsLength = colors.length; percents = null; } } else { colorsLength = 0; } // Are these settings the same as before? if (selectionBgImage is null) { if ((selectionGradientColors !is null) && (colors !is null) && (selectionGradientColors.length is colorsLength)) { bool same = false; for (int i = 0; i < selectionGradientColors.length; i++) { if (selectionGradientColors[i] is null) { same = colors[i] is null; } else { same = cast(bool)(selectionGradientColors[i]==colors[i]); } if (!same) break; } if (same) { for (int i = 0; i < selectionGradientPercents.length; i++) { same = selectionGradientPercents[i] is percents[i]; if (!same) break; } } if (same && this.selectionGradientVertical is vertical) return; } } else { selectionBgImage = null; } // Store the new settings if (colors is null) { selectionGradientColors = null; selectionGradientPercents = null; selectionGradientVertical = false; setSelectionBackground(cast(Color)null); setSelectionHighlightGradientColor(null); } else { selectionGradientColors = new Color[colorsLength]; for (int i = 0; i < colorsLength; ++i) { selectionGradientColors[i] = colors[i]; } selectionGradientPercents = new int[percents.length]; for (int i = 0; i < percents.length; ++i) { selectionGradientPercents[i] = percents[i]; } selectionGradientVertical = vertical; setSelectionBackground(selectionGradientColors[selectionGradientColors.length-1]); setSelectionHighlightGradientColor(highlightBeginColor); } // Refresh with the new settings if (selectedIndex > -1) redraw(); } /* * Set the color for the highlight start for selected tabs. * Update the cache of highlight gradient colors if required. */ void setSelectionHighlightGradientColor(Color start) { //Set to null to match all the early return cases. //For early returns, don't realloc the cache, we may get a cache hit next time we're given the highlight selectionHighlightGradientBegin = null; if(start is null) return; //don't bother on low colour if (getDisplay().getDepth() < 15) return; //don't bother if we don't have a background gradient if(selectionGradientColors.length < 2) return; //OK we know its a valid gradient now selectionHighlightGradientBegin = start; if(! isSelectionHighlightColorsCacheHit(start)) createSelectionHighlightGradientColors(start); //if no cache hit then compute new ones } /* * Return true if given start color, the cache of highlight colors we have * would match the highlight colors we'd compute. */ bool isSelectionHighlightColorsCacheHit(Color start) { if(selectionHighlightGradientColorsCache is null) return false; //this case should never happen but check to be safe before accessing array indexes if(selectionHighlightGradientColorsCache.length < 2) return false; Color highlightBegin = selectionHighlightGradientColorsCache[0]; Color highlightEnd = selectionHighlightGradientColorsCache[selectionHighlightGradientColorsCache.length - 1]; if( highlightBegin!=start) return false; //Compare number of colours we have vs. we'd compute if(selectionHighlightGradientColorsCache.length !is tabHeight) return false; //Compare existing highlight end to what it would be (selectionBackground) if( highlightEnd!=selectionBackground) return false; return true; } /** * Set the image to be drawn in the background of the selected tab. Image * is stretched or compressed to cover entire selection tab area. * * @param image the image to be drawn in the background * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setSelectionBackground(Image image) { checkWidget(); setSelectionHighlightGradientColor(null); if (image is selectionBgImage) return; if (image !is null) { selectionGradientColors = null; selectionGradientPercents = null; disposeSelectionHighlightGradientColors(); } selectionBgImage = image; if (selectedIndex > -1) redraw(); } /** * Set the foreground color of the selected tab. * * @param color the color of the text displayed in the selected tab * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setSelectionForeground (Color color) { checkWidget(); if (selectionForeground is color) return; if (color is null) color = getDisplay().getSystemColor(SELECTION_FOREGROUND); selectionForeground = color; if (selectedIndex > -1) redraw(); } /* * Allocate colors for the highlight line. * Colours will be a gradual blend ranging from to. * Blend length will be tab height. * Recompute this if tab height changes. * Could remain null if there'd be no gradient (start=end or low colour display) */ void createSelectionHighlightGradientColors(Color start) { disposeSelectionHighlightGradientColors(); //dispose if existing if(start is null) //shouldn't happen but just to be safe return; //alloc colours for entire height to ensure it matches wherever we stop drawing int fadeGradientSize = tabHeight; RGB from = start.getRGB(); RGB to = selectionBackground.getRGB(); selectionHighlightGradientColorsCache = new Color[fadeGradientSize]; int denom = fadeGradientSize - 1; for (int i = 0; i < fadeGradientSize; i++) { int propFrom = denom - i; int propTo = i; int red = (to.red * propTo + from.red * propFrom) / denom; int green = (to.green * propTo + from.green * propFrom) / denom; int blue = (to.blue * propTo + from.blue * propFrom) / denom; selectionHighlightGradientColorsCache[i] = new Color(getDisplay(), red, green, blue); } } void disposeSelectionHighlightGradientColors() { if(selectionHighlightGradientColorsCache is null) return; for (int i = 0; i < selectionHighlightGradientColorsCache.length; i++) { selectionHighlightGradientColorsCache[i].dispose(); } selectionHighlightGradientColorsCache = null; } /* * Return the gradient start color for selected tabs, which is the start of the tab fade * (end is selectionBackground). */ Color getSelectionBackgroundGradientBegin() { if (selectionGradientColors is null) return getSelectionBackground(); if (selectionGradientColors.length is 0) return getSelectionBackground(); return selectionGradientColors[0]; } /** * Sets the shape that the CTabFolder will use to render itself. * * @param simple <code>true</code> if the CTabFolder should render itself in a simple, traditional style * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setSimple(bool simple) { checkWidget(); if (this.simple !is simple) { this.simple = simple; Rectangle rectBefore = getClientArea(); updateItems(); Rectangle rectAfter = getClientArea(); if (rectBefore!=rectAfter) { notifyListeners(DWT.Resize, new Event()); } redraw(); } } /** * Sets the number of tabs that the CTabFolder should display * * @param single <code>true</code> if only the selected tab should be displayed otherwise, multiple tabs will be shown. * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setSingle(bool single) { checkWidget(); if (this.single !is single) { this.single = single; if (!single) { for (int i = 0; i < items.length; i++) { if (i !is selectedIndex && items[i].closeImageState is NORMAL) { items[i].closeImageState = NONE; } } } Rectangle rectBefore = getClientArea(); updateItems(); Rectangle rectAfter = getClientArea(); if (rectBefore!=rectAfter) { notifyListeners(DWT.Resize, new Event()); } redraw(); } } /** * Specify a fixed height for the tab items. If no height is specified, * the default height is the height of the text or the image, whichever * is greater. Specifying a height of -1 will revert to the default height. * * @param height the pixel value of the height or -1 * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * <li>ERROR_INVALID_ARGUMENT - if called with a height of less than 0</li> * </ul> */ public void setTabHeight(int height) { checkWidget(); if (height < -1) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } fixedTabHeight = height; updateTabHeight(false); } /** * Specify whether the tabs should appear along the top of the folder * or along the bottom of the folder. * * @param position <code>DWT.TOP</code> for tabs along the top or <code>DWT.BOTTOM</code> for tabs along the bottom * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * <li>ERROR_INVALID_ARGUMENT - if the position value is not either DWT.TOP or DWT.BOTTOM</li> * </ul> * * @since 3.0 */ public void setTabPosition(int position) { checkWidget(); if (position !is DWT.TOP && position !is DWT.BOTTOM) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } if (onBottom !is (position is DWT.BOTTOM)) { onBottom = position is DWT.BOTTOM; borderTop = onBottom ? borderLeft : 0; borderBottom = onBottom ? 0 : borderRight; updateTabHeight(true); Rectangle rectBefore = getClientArea(); updateItems(); Rectangle rectAfter = getClientArea(); if (rectBefore!=rectAfter) { notifyListeners(DWT.Resize, new Event()); } redraw(); } } /** * Set the control that appears in the top right corner of the tab folder. * Typically this is a close button or a composite with a Menu and close button. * The topRight control is optional. Setting the top right control to null will * remove it from the tab folder. * * @param control the control to be displayed in the top right corner or null * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * <li>ERROR_INVALID_ARGUMENT - if the control is not a child of this CTabFolder</li> * </ul> * * @since 2.1 */ public void setTopRight(Control control) { setTopRight(control, DWT.RIGHT); } /** * Set the control that appears in the top right corner of the tab folder. * Typically this is a close button or a composite with a Menu and close button. * The topRight control is optional. Setting the top right control to null * will remove it from the tab folder. * <p> * The alignment parameter sets the layout of the control in the tab area. * <code>DWT.RIGHT</code> will cause the control to be positioned on the far * right of the folder and it will have its default size. <code>DWT.FILL</code> * will size the control to fill all the available space to the right of the * last tab. If there is no available space, the control will not be visible. * </p> * * @param control the control to be displayed in the top right corner or null * @param alignment <code>DWT.RIGHT</code> or <code>DWT.FILL</code> * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * <li>ERROR_INVALID_ARGUMENT - if the control is not a child of this CTabFolder</li> * </ul> * * @since 3.0 */ public void setTopRight(Control control, int alignment) { checkWidget(); if (alignment !is DWT.RIGHT && alignment !is DWT.FILL) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } if (control !is null && control.getParent() !is this) { DWT.error(DWT.ERROR_INVALID_ARGUMENT); } topRight = control; topRightAlignment = alignment; if (updateItems()) redraw(); } /** * Specify whether the close button appears * when the user hovers over an unselected tabs. * * @param visible <code>true</code> makes the close button appear * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setUnselectedCloseVisible(bool visible) { checkWidget(); if (showUnselectedClose is visible) return; // display close button when mouse hovers showUnselectedClose = visible; updateItems(); redraw(); } /** * Specify whether the image appears on unselected tabs. * * @param visible <code>true</code> makes the image appear * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @since 3.0 */ public void setUnselectedImageVisible(bool visible) { checkWidget(); if (showUnselectedImage is visible) return; // display image on unselected items showUnselectedImage = visible; updateItems(); redraw(); } /** * Shows the item. If the item is already showing in the receiver, * this method simply returns. Otherwise, the items are scrolled until * the item is visible. * * @param item the item to be shown * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the item is null</li> * <li>ERROR_INVALID_ARGUMENT - if the item has been disposed</li> * </ul> * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see CTabFolder#showSelection() * * @since 2.0 */ public void showItem (CTabItem item) { checkWidget(); if (item is null) DWT.error (DWT.ERROR_NULL_ARGUMENT); if (item.isDisposed()) DWT.error(DWT.ERROR_INVALID_ARGUMENT); int index = indexOf(item); if (index is -1) DWT.error(DWT.ERROR_INVALID_ARGUMENT); int idx = -1; for (int i = 0; i < priority.length; i++) { if (priority[i] is index) { idx = i; break; } } if (mru) { // move to front of mru order int[] newPriority = new int[priority.length]; System.arraycopy(priority, 0, newPriority, 1, idx); System.arraycopy(priority, idx+1, newPriority, idx+1, priority.length - idx - 1); newPriority[0] = index; priority = newPriority; } if (item.isShowing()) return; updateItems(index); redrawTabs(); } void showList (Rectangle rect) { if (items.length is 0 || !showChevron) return; if (showMenu is null || showMenu.isDisposed()) { showMenu = new Menu(this); } else { MenuItem[] items = showMenu.getItems(); for (int i = 0; i < items.length; i++) { items[i].dispose(); } } static const String id = "CTabFolder_showList_Index"; //$NON-NLS-1$ for (int i = 0; i < items.length; i++) { CTabItem tab = items[i]; if (tab.showing) continue; MenuItem item = new MenuItem(showMenu, DWT.NONE); item.setText(tab.getText()); item.setImage(tab.getImage()); item.setData(id, tab); item.addSelectionListener(new class() SelectionAdapter { public void widgetSelected(SelectionEvent e) { MenuItem menuItem = cast(MenuItem)e.widget; int index = indexOf(cast(CTabItem)menuItem.getData(id)); this.outer.setSelection(index, true); } }); } int x = rect.x; int y = rect.y + rect.height; Point location = getDisplay().map(this, null, x, y); showMenu.setLocation(location.x, location.y); showMenu.setVisible(true); } /** * Shows the selection. If the selection is already showing in the receiver, * this method simply returns. Otherwise, the items are scrolled until * the selection is visible. * * @exception DWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see CTabFolder#showItem(CTabItem) * * @since 2.0 */ public void showSelection () { checkWidget (); if (selectedIndex !is -1) { showItem(getSelection()); } } void _setToolTipText (int x, int y) { String oldTip = getToolTipText(); String newTip = _getToolTip(x, y); if (newTip is null || newTip!=oldTip) { setToolTipText(newTip); } } bool updateItems() { return updateItems(selectedIndex); } bool updateItems(int showIndex) { if (!single && !mru && showIndex !is -1) { // make sure selected item will be showing int firstIndex = showIndex; if (priority[0] < showIndex) { int maxWidth = getRightItemEdge() - borderLeft; if (!simple) maxWidth -= curveWidth - 2*curveIndent; int width = 0; int[] widths = new int[items.length]; GC gc = new GC(this); for (int i = priority[0]; i <= showIndex; i++) { widths[i] = items[i].preferredWidth(gc, i is selectedIndex, true); width += widths[i]; if (width > maxWidth) break; } if (width > maxWidth) { width = 0; for (int i = showIndex; i >= 0; i--) { if (widths[i] is 0) widths[i] = items[i].preferredWidth(gc, i is selectedIndex, true); width += widths[i]; if (width > maxWidth) break; firstIndex = i; } } else { firstIndex = priority[0]; for (int i = showIndex + 1; i < items.length; i++) { widths[i] = items[i].preferredWidth(gc, i is selectedIndex, true); width += widths[i]; if (width >= maxWidth) break; } if (width < maxWidth) { for (int i = priority[0] - 1; i >= 0; i--) { if (widths[i] is 0) widths[i] = items[i].preferredWidth(gc, i is selectedIndex, true); width += widths[i]; if (width > maxWidth) break; firstIndex = i; } } } gc.dispose(); } if (firstIndex !is priority[0]) { int index = 0; for (int i = firstIndex; i < items.length; i++) { priority[index++] = i; } for (int i = 0; i < firstIndex; i++) { priority[index++] = i; } } } bool oldShowChevron = showChevron; bool changed = setItemSize(); changed |= setItemLocation(); setButtonBounds(); changed |= showChevron !is oldShowChevron; if (changed && getToolTipText() !is null) { Point pt = getDisplay().getCursorLocation(); pt = toControl(pt); _setToolTipText(pt.x, pt.y); } return changed; } bool updateTabHeight(bool force) { int style = getStyle(); if (fixedTabHeight is 0 && (style & DWT.FLAT) !is 0 && (style & DWT.BORDER) is 0) highlight_header = 0; int oldHeight = tabHeight; if (fixedTabHeight !is DWT.DEFAULT) { tabHeight = fixedTabHeight is 0 ? 0 : fixedTabHeight + 1; // +1 for line drawn across top of tab } else { int tempHeight = 0; GC gc = new GC(this); if (items.length is 0) { tempHeight = gc.textExtent("Default", CTabItem.FLAGS).y + CTabItem.TOP_MARGIN + CTabItem.BOTTOM_MARGIN; //$NON-NLS-1$ } else { for (int i=0; i < items.length; i++) { tempHeight = Math.max(tempHeight, items[i].preferredHeight(gc)); } } gc.dispose(); tabHeight = tempHeight; } if (!force && tabHeight is oldHeight) return false; oldSize = null; if (onBottom) { int d = tabHeight - 12; curve = [0,13+d, 0,12+d, 2,12+d, 3,11+d, 5,11+d, 6,10+d, 7,10+d, 9,8+d, 10,8+d, 11,7+d, 11+d,7, 12+d,6, 13+d,6, 15+d,4, 16+d,4, 17+d,3, 19+d,3, 20+d,2, 22+d,2, 23+d,1]; curveWidth = 26+d; curveIndent = curveWidth/3; } else { int d = tabHeight - 12; curve = [0,0, 0,1, 2,1, 3,2, 5,2, 6,3, 7,3, 9,5, 10,5, 11,6, 11+d,6+d, 12+d,7+d, 13+d,7+d, 15+d,9+d, 16+d,9+d, 17+d,10+d, 19+d,10+d, 20+d,11+d, 22+d,11+d, 23+d,12+d]; curveWidth = 26+d; curveIndent = curveWidth/3; //this could be static but since values depend on curve, better to keep in one place topCurveHighlightStart = [ 0, 2, 1, 2, 2, 2, 3, 3, 4, 3, 5, 3, 6, 4, 7, 4, 8, 5, 9, 6, 10, 6]; //also, by adding in 'd' here we save some math cost when drawing the curve topCurveHighlightEnd = [ 10+d, 6+d, 11+d, 7+d, 12+d, 8+d, 13+d, 8+d, 14+d, 9+d, 15+d, 10+d, 16+d, 10+d, 17+d, 11+d, 18+d, 11+d, 19+d, 11+d, 20+d, 12+d, 21+d, 12+d, 22+d, 12+d ]; } notifyListeners(DWT.Resize, new Event()); return true; } String _getToolTip(int x, int y) { if (showMin && minRect.contains(x, y)) return minimized ? DWT.getMessage("SWT_Restore") : DWT.getMessage("SWT_Minimize"); //$NON-NLS-1$ //$NON-NLS-2$ if (showMax && maxRect.contains(x, y)) return maximized ? DWT.getMessage("SWT_Restore") : DWT.getMessage("SWT_Maximize"); //$NON-NLS-1$ //$NON-NLS-2$ if (showChevron && chevronRect.contains(x, y)) return DWT.getMessage("SWT_ShowList"); //$NON-NLS-1$ CTabItem item = getItem(new Point (x, y)); if (item is null) return null; if (!item.showing) return null; if ((showClose || item.showClose) && item.closeRect.contains(x, y)) { return DWT.getMessage("SWT_Close"); //$NON-NLS-1$ } return item.getToolTipText(); } }
D
/** Describes the input of the current state of the Engine */ module AOD.input; import derelict.sdl2.sdl; import AOD; static import AOD; @safe: // These represent SDL_ScanCodes. These are prefereable // to just calling R_Mouse_Left() or w/e b/c these are bindeable // from INI file /** These represent SDL_ScanCodes. These are preferable to just calling mouse functions because these are bindeable from the config INI */ enum MouseBind { Left = 300, Right = 301, Middle = 302, Wheelup = 303, Wheeldown = 304, /** (also known as "mouse4") */ X1 = 305, /** (also known as "mouse5") */ X2 = 306 }; /** The current state of the keyboard (and mouse). Use either Mouse_Bind or <a href="https://wiki.libsdl.org/SDL_Scancode">SDL_SCANCODE</a> for index. Example: --- if ( keystate [ SDL_SCANCODE_A ] ) Output("A pressed"); --- */ ubyte* keystate; // TODO: make this private auto RKeystate(size_t index) @trusted { return keystate[index]; } class InputEngine { static: private: uint mouse, last_frame_mouse; int mouse_x, mouse_y; static: public: void Refresh_Input() @trusted { last_frame_mouse = mouse; keystate = cast(ubyte*)(SDL_GetKeyboardState(null)); mouse = SDL_GetMouseState(&mouse_x, &mouse_y); keystate[ MouseBind.Left ] = cast(ubyte)R_Mouse_Left(); keystate[ MouseBind.Right ] = cast(ubyte)R_Mouse_Right(); keystate[ MouseBind.Middle ] = cast(ubyte)R_Mouse_Middle(); keystate[ MouseBind.X1 ] = cast(ubyte)R_Mouse_X1(); keystate[ MouseBind.X2 ] = cast(ubyte)R_Mouse_X2(); // Let AOD.D handle mouse wheel } } private alias IEngine = InputEngine; private uint MLEFT = SDL_BUTTON(SDL_BUTTON_LEFT), MRIGHT = SDL_BUTTON(SDL_BUTTON_RIGHT), MMIDDLE = SDL_BUTTON(SDL_BUTTON_MIDDLE), MX1 = SDL_BUTTON(SDL_BUTTON_X1), MX2 = SDL_BUTTON(SDL_BUTTON_X2); /** Returns: if the Left Mouse button is pressed */ bool R_Mouse_Left () { return cast(bool)(IEngine.mouse&MLEFT); } /** Returns: if the Right Mouse button is pressed */ bool R_Mouse_Right () { return cast(bool)(IEngine.mouse&MRIGHT); } /** Returns: if the Middle Mouse button is pressed */ bool R_Mouse_Middle () { return cast(bool)(IEngine.mouse&MMIDDLE); } /** Returns: if MouseX1 (mouse4) button is pressed */ bool R_Mouse_X1 () { return cast(bool)(IEngine.mouse&MX1); } /** Returns: if MouseX2 (mouse5) button is pressed */ bool R_Mouse_X2 () { return cast(bool)(IEngine.mouse&MX2); } /** Returns: if the Left Mouse button was clicked on this frame */ bool R_Mouse_Left_Frame() { return R_Mouse_Left && !cast(bool)(IEngine.last_frame_mouse&MLEFT); } /** Returns: if the Right Mouse button was clicked on this frame */ bool R_Mouse_Right_Frame() { return R_Mouse_Right && !cast(bool)(IEngine.last_frame_mouse&MRIGHT); } /** Returns: if the Middle Mouse button was clicked on this frame */ bool R_Mouse_Middle_Frame() { return R_Mouse_Middle && !cast(bool)(IEngine.last_frame_mouse&MMIDDLE); } /** Returns: if MouseX1 (mouse4) button was clicked on this frame */ bool R_Mouse_X1_Frame() { return R_Mouse_X1 && !cast(bool)(IEngine.last_frame_mouse&MX1); } /** Returns: if MouseX2 (mouse5) button was clicked on this frame */ bool R_Mouse_X2_Frame() { return R_Mouse_X2 && !cast(bool)(IEngine.last_frame_mouse&MX2); } /** Params: camoffset = Whether to offset the position of the mouse with the camera Returns: The position of the mouse on the x-axis */ float R_Mouse_X(bool camoffset) { return InputEngine.mouse_x + (camoffset ? R_Camera_Position.x : 0); } /** Params: camoffset = Whether to offset the position of the mouse with the camera Returns: The position of the mouse on the y-axis */ float R_Mouse_Y(bool camoffset) { return InputEngine.mouse_y + (camoffset ? R_Camera_Position.y : 0); } /** params: camoffset = Whether to offset the position of the mouse with the camera Returns: The position of the mouse on the x-axis */ AOD.Vector R_Mouse_Vector ( bool camoffset ) { return AOD.Vector ( R_Mouse_X(camoffset) , R_Mouse_Y(camoffset) ); } /** Converts an SDL_Keycode (SDL_SCANCODE) to a string, but the addition of using this over Scancode_To_String is that it includes the mousebinds */ string Key_To_String(SDL_Keycode k) @trusted { import std.conv : to; switch ( k ) { default: return to!string(SDL_GetKeyName(k)); case MouseBind.Left:return "mouseleft"; case MouseBind.Right:return "mouseright"; case MouseBind.Middle:return "mousemiddle"; case MouseBind.X1:return "mouse4"; case MouseBind.X2:return "mouse5"; case MouseBind.Wheelup:return "mwheelup"; case MouseBind.Wheeldown:return "mwheeldown"; case SDL_SCANCODE_0:return "0"; case SDL_SCANCODE_1:return "1"; case SDL_SCANCODE_2:return "2"; case SDL_SCANCODE_3:return "3"; case SDL_SCANCODE_4:return "4"; case SDL_SCANCODE_5:return "5"; case SDL_SCANCODE_6:return "6"; case SDL_SCANCODE_7:return "7"; case SDL_SCANCODE_8:return "8"; case SDL_SCANCODE_9:return "9"; case SDL_SCANCODE_A:return "a"; case SDL_SCANCODE_AC_BACK:return "acback"; case SDL_SCANCODE_AC_BOOKMARKS:return "acbookmarks"; case SDL_SCANCODE_AC_FORWARD:return "acforward"; case SDL_SCANCODE_AC_HOME:return "achome"; case SDL_SCANCODE_AC_REFRESH:return "acrefresh"; case SDL_SCANCODE_AC_SEARCH:return "acsearch"; case SDL_SCANCODE_AC_STOP:return "acstop"; case SDL_SCANCODE_AGAIN:return "again"; case SDL_SCANCODE_ALTERASE:return "alterase"; case SDL_SCANCODE_APOSTROPHE:return "singlequote"; case SDL_SCANCODE_APPLICATION:return "application"; case SDL_SCANCODE_AUDIOMUTE:return "audiomute"; case SDL_SCANCODE_AUDIONEXT:return "audionext"; case SDL_SCANCODE_AUDIOPLAY:return "audioplay"; case SDL_SCANCODE_AUDIOPREV:return "audioprev"; case SDL_SCANCODE_AUDIOSTOP:return "audiostop"; case SDL_SCANCODE_B:return "b"; case SDL_SCANCODE_BACKSLASH:return "backslash"; case SDL_SCANCODE_BACKSPACE:return "backspace"; case SDL_SCANCODE_BRIGHTNESSDOWN:return "brightnessdown"; case SDL_SCANCODE_BRIGHTNESSUP:return "brightnessup"; case SDL_SCANCODE_C:return "c"; case SDL_SCANCODE_CALCULATOR:return "calculator"; case SDL_SCANCODE_CANCEL:return "cancel"; case SDL_SCANCODE_CAPSLOCK:return "capslock"; case SDL_SCANCODE_CLEAR:return "clear"; case SDL_SCANCODE_CLEARAGAIN:return "clear/again"; case SDL_SCANCODE_COMMA:return "comma"; case SDL_SCANCODE_COMPUTER:return "computer"; case SDL_SCANCODE_COPY:return "copy"; case SDL_SCANCODE_CRSEL:return "crsel"; case SDL_SCANCODE_CURRENCYSUBUNIT:return "currencysubunit"; case SDL_SCANCODE_CURRENCYUNIT:return "currencyunit"; case SDL_SCANCODE_CUT:return "cut"; case SDL_SCANCODE_D:return "d"; case SDL_SCANCODE_DECIMALSEPARATOR:return "decimalseparator"; case SDL_SCANCODE_DELETE:return "delete"; case SDL_SCANCODE_DISPLAYSWITCH:return "displayswitch"; case SDL_SCANCODE_DOWN:return "down"; case SDL_SCANCODE_E:return "e"; case SDL_SCANCODE_EJECT:return "eject"; case SDL_SCANCODE_END:return "end"; case SDL_SCANCODE_EQUALS:return "equals"; case SDL_SCANCODE_ESCAPE:return "escape"; case SDL_SCANCODE_EXECUTE:return "execute"; case SDL_SCANCODE_EXSEL:return "exsel"; case SDL_SCANCODE_F:return "f"; case SDL_SCANCODE_F1:return "f1"; case SDL_SCANCODE_F10:return "f10"; case SDL_SCANCODE_F11:return "f11"; case SDL_SCANCODE_F12:return "f12"; case SDL_SCANCODE_F13:return "f13"; case SDL_SCANCODE_F14:return "f14"; case SDL_SCANCODE_F15:return "f15"; case SDL_SCANCODE_F16:return "f16"; case SDL_SCANCODE_F17:return "f17"; case SDL_SCANCODE_F18:return "f18"; case SDL_SCANCODE_F19:return "f19"; case SDL_SCANCODE_F2:return "f2"; case SDL_SCANCODE_F20:return "f20"; case SDL_SCANCODE_F21:return "f21"; case SDL_SCANCODE_F22:return "f22"; case SDL_SCANCODE_F23:return "f23"; case SDL_SCANCODE_F24:return "f24"; case SDL_SCANCODE_F3:return "f3"; case SDL_SCANCODE_F4:return "f4"; case SDL_SCANCODE_F5:return "f5"; case SDL_SCANCODE_F6:return "f6"; case SDL_SCANCODE_F7:return "f7"; case SDL_SCANCODE_F8:return "f8"; case SDL_SCANCODE_F9:return "f9"; case SDL_SCANCODE_FIND:return "find"; case SDL_SCANCODE_G:return "g"; case SDL_SCANCODE_GRAVE:return "grave"; case SDL_SCANCODE_H:return "h"; case SDL_SCANCODE_HELP:return "help"; case SDL_SCANCODE_HOME:return "home"; case SDL_SCANCODE_I:return "i"; case SDL_SCANCODE_INSERT:return "insert"; case SDL_SCANCODE_J:return "j"; case SDL_SCANCODE_K:return "k"; case SDL_SCANCODE_KBDILLUMDOWN:return "kbdillumdown"; case SDL_SCANCODE_KBDILLUMTOGGLE:return "kbdillumtoggle"; case SDL_SCANCODE_KBDILLUMUP:return "kbdillumup"; case SDL_SCANCODE_KP_0:return "kp0"; case SDL_SCANCODE_KP_00:return "kp00"; case SDL_SCANCODE_KP_000:return "kp000"; case SDL_SCANCODE_KP_1:return "kp1"; case SDL_SCANCODE_KP_2:return "kp2"; case SDL_SCANCODE_KP_3:return "kp3"; case SDL_SCANCODE_KP_4:return "kp4"; case SDL_SCANCODE_KP_5:return "kp5"; case SDL_SCANCODE_KP_6:return "kp6"; case SDL_SCANCODE_KP_7:return "kp7"; case SDL_SCANCODE_KP_8:return "kp8"; case SDL_SCANCODE_KP_9:return "kp9"; case SDL_SCANCODE_KP_A:return "kpa"; case SDL_SCANCODE_KP_AMPERSAND:return "kpamprsand"; case SDL_SCANCODE_KP_AT:return "kpat"; case SDL_SCANCODE_KP_B:return "kpb"; case SDL_SCANCODE_KP_BACKSPACE:return "kpbackspace"; case SDL_SCANCODE_KP_BINARY:return "kpbinary"; case SDL_SCANCODE_KP_C:return "kpc"; case SDL_SCANCODE_KP_CLEAR:return "kpclear"; case SDL_SCANCODE_KP_CLEARENTRY:return "kpclearentry"; case SDL_SCANCODE_KP_COLON:return "kpcolon"; case SDL_SCANCODE_KP_COMMA:return "kpcomma"; case SDL_SCANCODE_KP_D:return "kpd"; case SDL_SCANCODE_KP_DBLAMPERSAND:return "kpand"; case SDL_SCANCODE_KP_DBLVERTICALBAR:return "kpor"; case SDL_SCANCODE_KP_DECIMAL:return "kpdecimal"; case SDL_SCANCODE_KP_DIVIDE:return "kpslash"; case SDL_SCANCODE_KP_E:return "kpe"; case SDL_SCANCODE_KP_ENTER:return "kpenter"; case SDL_SCANCODE_KP_EQUALS:return "kpequals"; case SDL_SCANCODE_KP_EQUALSAS400:return "kpequals2"; case SDL_SCANCODE_KP_EXCLAM:return "kpexclamation"; case SDL_SCANCODE_KP_F:return "kpf"; case SDL_SCANCODE_KP_GREATER:return "kplessthan"; case SDL_SCANCODE_KP_HASH:return "kppound"; case SDL_SCANCODE_KP_HEXADECIMAL:return "kphexadecimal"; case SDL_SCANCODE_KP_LEFTBRACE:return "kpcurlyst"; case SDL_SCANCODE_KP_LEFTPAREN:return "kp"; case SDL_SCANCODE_KP_LESS:return "kpgreaterthan"; case SDL_SCANCODE_KP_MEMADD:return "kpmemadd"; case SDL_SCANCODE_KP_MEMCLEAR:return "kpmemclear"; case SDL_SCANCODE_KP_MEMDIVIDE:return "kpmemdivide"; case SDL_SCANCODE_KP_MEMMULTIPLY:return "kpmemmultiply"; case SDL_SCANCODE_KP_MEMRECALL:return "kpmemrecall"; case SDL_SCANCODE_KP_MEMSTORE:return "kpmemstore"; case SDL_SCANCODE_KP_MEMSUBTRACT:return "kpmemsubtract"; case SDL_SCANCODE_KP_MINUS:return "kpminus"; case SDL_SCANCODE_KP_MULTIPLY:return "kpmultiply"; case SDL_SCANCODE_KP_OCTAL:return "kpoctal"; case SDL_SCANCODE_KP_PERCENT:return "kpmodulo"; case SDL_SCANCODE_KP_PERIOD:return "kpdot"; case SDL_SCANCODE_KP_PLUS:return "kpplus"; case SDL_SCANCODE_KP_PLUSMINUS:return "kpplusorminus"; case SDL_SCANCODE_KP_POWER:return "kpcaret"; case SDL_SCANCODE_KP_RIGHTBRACE:return "kpcurlyend"; case SDL_SCANCODE_KP_RIGHTPAREN:return "kpparenend"; case SDL_SCANCODE_KP_SPACE:return "kpspace"; case SDL_SCANCODE_KP_TAB:return "kptab"; case SDL_SCANCODE_KP_VERTICALBAR:return "kpbitwiseor"; case SDL_SCANCODE_KP_XOR:return "kpxor"; case SDL_SCANCODE_L:return "l"; case SDL_SCANCODE_LALT:return "leftalt"; case SDL_SCANCODE_LCTRL:return "leftctrl"; case SDL_SCANCODE_LEFT:return "left"; case SDL_SCANCODE_LEFTBRACKET:return "squarestart"; case SDL_SCANCODE_LGUI:return "leftgui"; case SDL_SCANCODE_LSHIFT:return "lshift"; case SDL_SCANCODE_M:return "m"; case SDL_SCANCODE_MAIL:return "mail"; case SDL_SCANCODE_MEDIASELECT:return "mediaselect"; case SDL_SCANCODE_MENU:return "menu"; case SDL_SCANCODE_MINUS:return "minus"; case SDL_SCANCODE_MODE:return "modeswitch"; case SDL_SCANCODE_MUTE:return "mute"; case SDL_SCANCODE_N:return "n"; case SDL_SCANCODE_NUMLOCKCLEAR:return "numlock"; case SDL_SCANCODE_O:return "o"; case SDL_SCANCODE_OPER:return "oper"; case SDL_SCANCODE_OUT:return "out"; case SDL_SCANCODE_P:return "p"; case SDL_SCANCODE_PAGEDOWN:return "pagedown"; case SDL_SCANCODE_PAGEUP:return "pageup"; case SDL_SCANCODE_PASTE:return "paste"; case SDL_SCANCODE_PAUSE:return "pause"; case SDL_SCANCODE_PERIOD:return "dot"; case SDL_SCANCODE_POWER:return "power"; case SDL_SCANCODE_PRINTSCREEN:return "printscreen"; case SDL_SCANCODE_PRIOR:return "prior"; case SDL_SCANCODE_Q:return "q"; case SDL_SCANCODE_R:return "r"; case SDL_SCANCODE_RALT:return "rightalt"; case SDL_SCANCODE_RCTRL:return "rightctrl"; case SDL_SCANCODE_RETURN:return "return"; case SDL_SCANCODE_RETURN2:return "return2"; case SDL_SCANCODE_RGUI:return "rightgui"; case SDL_SCANCODE_RIGHT:return "right"; case SDL_SCANCODE_RIGHTBRACKET:return "squarebracketend"; case SDL_SCANCODE_RSHIFT:return "rshift"; case SDL_SCANCODE_S:return "s"; case SDL_SCANCODE_SCROLLLOCK:return "scrolllock"; case SDL_SCANCODE_SELECT:return "select"; case SDL_SCANCODE_SEMICOLON:return "semicolon"; case SDL_SCANCODE_SEPARATOR:return "separator"; case SDL_SCANCODE_SLASH:return "slash"; case SDL_SCANCODE_SLEEP:return "sleep"; case SDL_SCANCODE_SPACE:return "space"; case SDL_SCANCODE_STOP:return "stop"; case SDL_SCANCODE_SYSREQ:return "sysreq"; case SDL_SCANCODE_T:return "t"; case SDL_SCANCODE_TAB:return "tab"; case SDL_SCANCODE_THOUSANDSSEPARATOR:return "thousandsseparator"; case SDL_SCANCODE_U:return "u"; case SDL_SCANCODE_UNDO:return "undo"; case SDL_SCANCODE_UP:return "up"; case SDL_SCANCODE_V:return "v"; case SDL_SCANCODE_VOLUMEDOWN:return "volumedown"; case SDL_SCANCODE_VOLUMEUP:return "volumeup"; case SDL_SCANCODE_W:return "w"; case SDL_SCANCODE_WWW:return "www"; case SDL_SCANCODE_X:return "x"; case SDL_SCANCODE_Y:return "y"; case SDL_SCANCODE_Z:return "z"; } }
D
/** This is the `mergeMasks` command of DENTIST. Command_Summary: --- Merge several masks into a single one with non-overlapping intervals. This can also be used to merge overlapping intervals in a single mask. --- Copyright: © 2018 Arne Ludwig <arne.ludwig@posteo.de> License: Subject to the terms of the MIT license, as written in the included LICENSE file. Authors: Arne Ludwig <arne.ludwig@posteo.de> */ module dentist.commands.mergeMasks; package(dentist) enum summary = " Merge several masks into a single one with non-overlapping intervals. This can also be used to merge overlapping intervals in a single mask. "; import dentist.commandline : OptionsFor; import dentist.common : ReferenceInterval, ReferenceRegion; import dentist.common.alignments : coord_t, id_t, FlatLocalAlignment; import dentist.common.commands : DentistCommand; import dentist.util.log; import dentist.dazzler : readMask, writeMask; /// Options for the `mergeMasks` command. alias Options = OptionsFor!(DentistCommand.mergeMasks); /// Execute the `mergeMasks` command with `options`. void execute(in Options options) { mixin(traceExecution); ReferenceRegion outMask; foreach (inMask; options.inMasks) outMask |= ReferenceRegion(readMask!ReferenceInterval( options.refDb, inMask, )); writeMask(options.refDb, options.outMask, outMask.intervals); }
D
module deadcode.gui.controls.treeview; import deadcode.gui.widget; class TreeView : Widget { }
D
/+ https://github.com/dlang/dmd/pull/7870#discussion_r168174068 proposal: use Dstring instead of char* in dmd compiler sources for extern(C++) apis. eg: `extern (C++) int fp(void* param, const(char)* str)` advantages: * no loss of length informtion * easier to convert back and forth from char[] to char* +/ import std.conv:to; extern(C++) struct Darray(T){ size_t length; T* ptr; extern(D) this(T[]a){ this.length=a.length; this.ptr=a.ptr; } extern(D) T[] toNative() { // TODO: could even use a raw cast since ABI is same return ptr[0..length]; } /+ TODO:DMD:BUG? why not picked up by input.to!(char[]) ? extern(D) T2 opCast(T2)() if(is(T2==T[])) { return ptr[0..length]; } +/ } version (dmd_native_string){ // eg:DigitalMars alias Dstring=char[]; // TODO: toNative and fromNative } else { alias Dstring=Darray!char; } extern(C++) void d_initialize(){ import core.runtime; Runtime.initialize; } extern(C++) Dstring funLib(Dstring input){ import std.string:toUpper; return input.toNative.toUpper.to!Dstring; }
D
/mnt/e/myrcore/lab_code/lab4_code1/os/target/riscv64imac-unknown-none-elf/debug/deps/bit_field-9ff05a08d9f94071.rmeta: /home/xushanpu123/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bit_field-0.10.0/src/lib.rs /mnt/e/myrcore/lab_code/lab4_code1/os/target/riscv64imac-unknown-none-elf/debug/deps/libbit_field-9ff05a08d9f94071.rlib: /home/xushanpu123/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bit_field-0.10.0/src/lib.rs /mnt/e/myrcore/lab_code/lab4_code1/os/target/riscv64imac-unknown-none-elf/debug/deps/bit_field-9ff05a08d9f94071.d: /home/xushanpu123/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bit_field-0.10.0/src/lib.rs /home/xushanpu123/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bit_field-0.10.0/src/lib.rs:
D
/** * Copyright © DiamondMVC 2018 * License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module diamond.unittesting.request; import diamond.core.apptype; static if (isWeb && isTesting) { import std.conv : to; import vibe.d : HTTPClientRequest, HTTPClientResponse, requestHTTP, HTTPMethod, Json; public import diamond.http.method; public import diamond.http.status; /// Wrapper around a http unittet result. final class HttpUnitTestResult { private: /// The response. HTTPClientResponse _response; /// The body data. string _bodyData; /** * Creates a new http unittest result. * Params: * response = The response. */ this(HTTPClientResponse response) { _response = response; } public: final: @property { /// Gets the raw vibe.d response. HTTPClientResponse rawResponse() { return _response; } /// Gets the raw vibe.d response stream. auto responseStream() { return _response.bodyReader; } /// Gets the status code. HttpStatus statusCode() { return cast(HttpStatus)_response.statusCode; } /// Gets the content type. string contentType() { return _response.contentType; } /// Gets the json. auto json() { return _response.readJson(); } /// Gets the body data. auto bodyData() { import vibe.stream.operations : readAllUTF8; if (!_bodyData) { _bodyData = _response.bodyReader.readAllUTF8(); } return _bodyData; } } /** * Gets a cookie. * Params: * name = The name of the cookie. * defaultValue = The default value. * Returns: * The value of the cookie if present, default value otherwise. */ string getCookie(string name, lazy string defaultValue = null) { if (name !in _response.cookies) { return defaultValue; } return _response.cookies[name].value; } /** * Checks whether a cookie is present or not. * Params: * name = The name of the cookie. * Returns: * True if the cookie is present, false otherwise. */ bool hasCookie(string name) { return cast(bool)(name in _response.cookies); } /** * Gets a header. * Params: * name = The name of the header. * defaultValue = The default value. * Returns: * The value if present, default value otherwise. */ string getHeader(string name, lazy string defaultValue) { return _response.headers.get(name, defaultValue); } /** * Checks whether a header is present or not. * Params: * name = The name of the header. * Returns: * True if the header is present, false otherwise. */ bool hasHeader(string name) { return getHeader(name, null) !is null; } /// Gets a model from the response's json. T getModelFromJson(T, CTORARGS...)(CTORARGS args) { import vibe.data.json; static if (is(T == struct)) { T value; value.deserializeJson(json); return value; } else static if (is(T == class)) { auto value = new T(args); value.deserializeJson(json); return value; } else { static assert(0); } } } /** * Creates an internal test request. * Params: * route = The route (not URL!) to call. * method = The method to use for thr request. * responder = The handler for the unittest result. * requester = Custom handler for the raw vibe.d request. Can be used to setup the request data etc. */ void testRequest ( string route, HttpMethod method, scope void delegate(scope HttpUnitTestResult) responder, scope void delegate(scope HTTPClientRequest) requester = null, ) { import diamond.errors.checks; enforce(responder !is null, "No responder defined."); import diamond.core.webconfig; auto address = webConfig.addresses[0]; if (route[0] != '/') { route = "/" ~ route; } auto ipAddress = address.ipAddresses[0]; if (ipAddress == "::1") { ipAddress = "127.0.0.1"; } auto url = "http://" ~ ipAddress ~ ":" ~ to!string(address.port) ~ route; requestHTTP ( url, (scope request) { request.method = cast(HTTPMethod)method; if (requester !is null) { requester(request); } }, (scope response) { responder(new HttpUnitTestResult(response)); } ); } }
D
/Users/oslo/code/swift_vapor_server/.build/debug/Leaf.build/Tag/Tag.swift.o : /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Argument.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Byte+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Constants.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Context.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/HTMLEscape.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafComponent.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafError.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Link.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/List.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Node+Rendered.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/NSData+File.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Parameter.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Render.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Spawn.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/BufferProtocol.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/BasicTag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Tag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/TagTemplate.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Else.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Embed.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Equal.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Export.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Extend.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/If.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Import.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Index.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Loop.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Raw.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Uppercased.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Variable.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Core.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/ObjectiveC.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/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/libc.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Node.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/PathIndexable.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Polymorphic.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Leaf.build/Tag~partial.swiftmodule : /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Argument.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Byte+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Constants.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Context.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/HTMLEscape.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafComponent.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafError.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Link.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/List.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Node+Rendered.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/NSData+File.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Parameter.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Render.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Spawn.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/BufferProtocol.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/BasicTag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Tag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/TagTemplate.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Else.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Embed.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Equal.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Export.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Extend.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/If.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Import.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Index.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Loop.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Raw.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Uppercased.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Variable.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Core.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/ObjectiveC.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/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/libc.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Node.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/PathIndexable.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Polymorphic.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Leaf.build/Tag~partial.swiftdoc : /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Argument.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Byte+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Constants.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Context.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/HTMLEscape.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafComponent.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/LeafError.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Link.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/List.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Node+Rendered.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/NSData+File.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Parameter.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Render.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem+Spawn.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Stem.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer+Leaf.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/Buffer.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Buffer/BufferProtocol.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/BasicTag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Tag.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/TagTemplate.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Else.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Embed.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Equal.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Export.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Extend.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/If.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Import.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Index.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Loop.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Raw.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Uppercased.swift /Users/oslo/code/swift_vapor_server/Packages/Leaf-1.0.6/Sources/Leaf/Tag/Models/Variable.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Core.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/ObjectiveC.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/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/libc.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Node.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/PathIndexable.swiftmodule /Users/oslo/code/swift_vapor_server/.build/debug/Polymorphic.swiftmodule
D
/* * $Id: bulletactorpool.d,v 1.4 2005/01/02 05:49:31 kenta Exp $ * * Copyright 2004 Kenta Cho. Some rights reserved. */ module abagames.tt.bulletactorpool; private import std.math; private import bulletml; private import abagames.util.actor; private import abagames.util.vector; private import abagames.util.bulletml.bullet; private import abagames.util.bulletml.bulletsmanager; private import abagames.util.sdl.luminous; private import abagames.tt.bulletactor; private import abagames.tt.bulletimpl; private import abagames.tt.bullettarget; private import abagames.tt.tunnel; private import abagames.tt.ship; private import abagames.tt.shot; private import abagames.tt.enemy; private import abagames.tt.shape; /** * Bullet actor pool that works as BulletsManager. */ public class BulletActorPool: ActorPool!(BulletActor), BulletsManager { private: int cnt; public this(int n, Object[] args) { super(n, args); Bullet.setBulletsManager(this); cnt = 0; } public void addBullet(float deg, float speed) { //if ((cast(BulletImpl) Bullet.now).rootBullet.rootRank <= 0) //return; BulletActor rb = (cast(BulletImpl) Bullet.now).rootBullet; if (rb) if (rb.rootRank <= 0) return; BulletActor ba = cast(BulletActor) getInstance(); if (!ba) return; BulletImpl nbi = ba.bullet; nbi.setParam(cast(BulletImpl) Bullet.now); if (nbi.gotoNextParser()) { BulletMLRunner *runner = BulletMLRunner_new_parser(nbi.getParser()); BulletActorPool.registFunctions(runner); ba.set(runner, Bullet.now.pos.x, Bullet.now.pos.y, deg, speed); ba.setMorphSeed(); } else { ba.set(Bullet.now.pos.x, Bullet.now.pos.y, deg, speed); } } public void addBullet(BulletMLState *state, float deg, float speed) { //if ((cast(BulletImpl) Bullet.now).rootBullet.rootRank <= 0) //return; BulletActor rb = (cast(BulletImpl) Bullet.now).rootBullet; if (rb) if (rb.rootRank <= 0) return; BulletActor ba = cast(BulletActor) getInstance(); if (!ba) return; BulletMLRunner* runner = BulletMLRunner_new_state(state); registFunctions(runner); BulletImpl nbi = ba.bullet; nbi.setParam(cast(BulletImpl) Bullet.now); ba.set(runner, Bullet.now.pos.x, Bullet.now.pos.y, deg, speed); } public BulletActor addTopBullet(ParserParam[] parserParam, float x, float y, float deg, float speed, Drawable shape, Drawable disapShape, float xReverse, float yReverse, bool longRange, BulletTarget target, int prevWait, int postWait) { BulletActor ba = getInstance(); if (!ba) return null; BulletImpl nbi = ba.bullet; nbi.setParamFirst(parserParam, shape, disapShape, xReverse, yReverse, longRange, target, ba); BulletMLRunner *runner = BulletMLRunner_new_parser(nbi.getParser()); BulletActorPool.registFunctions(runner); ba.set(runner, x, y, deg, speed); ba.setWait(prevWait, postWait); ba.setTop(); return ba; } public BulletActor addMoveBullet(BulletMLParser *parser, float speed, float x, float y, float deg, BulletTarget target) { BulletActor ba = getInstance(); if (!ba) return null; BulletImpl bi = ba.bullet; bi.setParamFirst(null, null, null, 1, 1, false, target, ba); BulletMLRunner *runner = BulletMLRunner_new_parser(parser); BulletActorPool.registFunctions(runner); ba.set(runner, x, y, deg, speed); ba.setInvisible(); return ba; } public override void move() { super.move(); cnt++; } public void draw() { foreach (BulletActor ba; actor) if (ba.exists) ba.draw(); } public int getTurn() { return cnt; } public void killMe(Bullet bullet) { assert((cast(BulletActor) actor[bullet.id]).bullet.id == bullet.id); (cast(BulletActor) actor[bullet.id]).remove(); } public override void clear() { foreach (BulletActor ba; actor) if (ba.exists) ba.removeForced(); actorIdx = 0; cnt = 0; } public void clearVisible() { foreach (BulletActor ba; actor) if (ba.exists) ba.startDisappear(); } public void checkShotHit(Vector pos, Collidable shape, Shot shot) { foreach (BulletActor ba; actor) if (ba.exists) ba.checkShotHit(pos, shape, shot); } public static void registFunctions(BulletMLRunner* runner) { BulletMLRunner_set_getBulletDirection(runner, &getBulletDirection_); BulletMLRunner_set_getAimDirection(runner, &getAimDirectionWithRev_); BulletMLRunner_set_getBulletSpeed(runner, &getBulletSpeed_); BulletMLRunner_set_getDefaultSpeed(runner, &getDefaultSpeed_); BulletMLRunner_set_getRank(runner, &getRank_); BulletMLRunner_set_createSimpleBullet(runner, &createSimpleBullet_); BulletMLRunner_set_createBullet(runner, &createBullet_); BulletMLRunner_set_getTurn(runner, &getTurn_); BulletMLRunner_set_doVanish(runner, &doVanish_); BulletMLRunner_set_doChangeDirection(runner, &doChangeDirection_); BulletMLRunner_set_doChangeSpeed(runner, &doChangeSpeed_); BulletMLRunner_set_doAccelX(runner, &doAccelX_); BulletMLRunner_set_doAccelY(runner, &doAccelY_); BulletMLRunner_set_getBulletSpeedX(runner, &getBulletSpeedX_); BulletMLRunner_set_getBulletSpeedY(runner, &getBulletSpeedY_); BulletMLRunner_set_getRand(runner, &getRand_); } } extern (C) { double getAimDirectionWithRev_(BulletMLRunner* r) { Vector b = Bullet.now.pos; Vector t = Bullet.target; float xrev = (cast(BulletImpl) Bullet.now).xReverse; float yrev = (cast(BulletImpl) Bullet.now).yReverse; float ox = t.x - b.x; if (ox > PI) ox -= PI * 2; else if (ox < -PI) ox += PI * 2; return rtod((atan2(ox, t.y - b.y) * xrev + PI / 2) * yrev - PI / 2); } }
D
module hunt.http.server.HttpSession; import hunt.collection.HashMap; import hunt.collection.Map; import hunt.util.DateTime; import hunt.Exceptions; import std.datetime; /** * */ class HttpSession { private string id; private long creationTime; private long lastAccessedTime; private int maxInactiveInterval; private Map!(string, Object) attributes; private bool newSession; string getId() { return id; } void setId(string id) { this.id = id; } long getCreationTime() { return creationTime; } void setCreationTime(long creationTime) { this.creationTime = creationTime; } long getLastAccessedTime() { return lastAccessedTime; } void setLastAccessedTime(long lastAccessedTime) { this.lastAccessedTime = lastAccessedTime; } /** * Get the max inactive interval. The time unit is second. * * @return The max inactive interval. */ int getMaxInactiveInterval() { return maxInactiveInterval; } /** * Set the max inactive interval. The time unit is second. * * @param maxInactiveInterval The max inactive interval. */ void setMaxInactiveInterval(int maxInactiveInterval) { this.maxInactiveInterval = maxInactiveInterval; } Map!(string, Object) getAttributes() { return attributes; } void setAttributes(Map!(string, Object) attributes) { this.attributes = attributes; } bool isNewSession() { return newSession; } void setNewSession(bool newSession) { this.newSession = newSession; } bool isInvalid() { long currentTime = convert!(TimeUnit.HectoNanosecond, TimeUnit.Millisecond)(Clock.currStdTime); return (currentTime - lastAccessedTime) > (maxInactiveInterval * 1000); } static HttpSession create(string id, int maxInactiveInterval) { long currentTime = convert!(TimeUnit.HectoNanosecond, TimeUnit.Millisecond)(Clock.currStdTime); HttpSession session = new HttpSession(); session.setId(id); session.setMaxInactiveInterval(maxInactiveInterval); session.setCreationTime(currentTime); session.setLastAccessedTime(session.getCreationTime()); session.setAttributes(new HashMap!(string, Object)()); session.setNewSession(true); return session; } override bool opEquals(Object o) { if (this is o) return true; HttpSession that = cast(HttpSession) o; if(that is null) return false; return id == that.id; } override size_t toHash() @trusted nothrow { return hashOf(id); } } /** * */ class SessionInvalidException : RuntimeException { this() { super(""); } this(string msg) { super(msg); } } /** * */ class SessionNotFound : RuntimeException { this() { super(""); } this(string msg) { super(msg); } }
D
/** * D header file for WASI. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Alex Rønne Petersn * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean Kelly 2005 - 2009. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE or copy at * http://www.boost.org/LICENSE_1_0.txt) */ module core.sys.wasi.dirent; private import core.sys.wasi.config; public import core.sys.wasi.sys.types; // for ino_t version (WebAssembly): extern (C): nothrow: @nogc: // // Required // /* DIR struct dirent { char[] d_name; } int closedir(DIR*); DIR* opendir(const scope char*); dirent* readdir(DIR*); void rewinddir(DIR*); */ enum { DT_UNKNOWN = 0, DT_FIFO = 1, DT_CHR = 2, DT_DIR = 4, DT_BLK = 6, DT_REG = 8, DT_LNK = 10, DT_SOCK = 12, DT_WHT = 14 } struct dirent { ino_t d_ino; ubyte d_type; char[256] d_name = 0; } struct DIR { } int closedir(DIR*); DIR* opendir(const scope char*); //dirent* readdir(DIR*); void rewinddir(DIR*); static if ( __USE_FILE_OFFSET64 ) { dirent* readdir64(DIR*); alias readdir64 readdir; } else { dirent* readdir(DIR*); } int readdir_r(DIR*, dirent*, dirent**); void seekdir(DIR*, c_long); c_long telldir(DIR*);
D
/** * ... * * Copyright: Copyright Benjamin Thaut 2010 - 2011. * License: Distributed under the * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Benjamin Thaut, Sean Kelly * Source: $(DRUNTIMESRC core/sys/windows/_stacktrace.d) */ module core.sys.windows.dbghelp; version (Windows): import core.sys.windows.winbase /+: FreeLibrary, GetProcAddress, LoadLibraryA+/; import core.sys.windows.windef; public import core.sys.windows.dbghelp_types; extern(Windows) { alias BOOL function(HANDLE hProcess, DWORD64 lpBaseAddress, PVOID lpBuffer, DWORD nSize, LPDWORD lpNumberOfBytesRead) ReadProcessMemoryProc64; alias PVOID function(HANDLE hProcess, DWORD64 AddrBase) FunctionTableAccessProc64; alias DWORD64 function(HANDLE hProcess, DWORD64 Address) GetModuleBaseProc64; alias DWORD64 function(HANDLE hProcess, HANDLE hThread, ADDRESS64 *lpaddr) TranslateAddressProc64; alias BOOL function(HANDLE hProcess, PCSTR UserSearchPath, bool fInvadeProcess) SymInitializeFunc; alias BOOL function(HANDLE hProcess) SymCleanupFunc; alias DWORD function(DWORD SymOptions) SymSetOptionsFunc; alias DWORD function() SymGetOptionsFunc; alias PVOID function(HANDLE hProcess, DWORD64 AddrBase) SymFunctionTableAccess64Func; alias BOOL function(DWORD MachineType, HANDLE hProcess, HANDLE hThread, STACKFRAME64 *StackFrame, PVOID ContextRecord, ReadProcessMemoryProc64 ReadMemoryRoutine, FunctionTableAccessProc64 FunctoinTableAccess, GetModuleBaseProc64 GetModuleBaseRoutine, TranslateAddressProc64 TranslateAddress) StackWalk64Func; alias BOOL function(HANDLE hProcess, DWORD64 dwAddr, PDWORD pdwDisplacement, IMAGEHLP_LINEA64 *line) SymGetLineFromAddr64Func; alias DWORD64 function(HANDLE hProcess, DWORD64 dwAddr) SymGetModuleBase64Func; alias BOOL function(HANDLE hProcess, DWORD64 dwAddr, IMAGEHLP_MODULEA64 *ModuleInfo) SymGetModuleInfo64Func; alias BOOL function(HANDLE hProcess, DWORD64 Address, DWORD64 *Displacement, IMAGEHLP_SYMBOLA64 *Symbol) SymGetSymFromAddr64Func; alias DWORD function(PCSTR DecoratedName, PSTR UnDecoratedName, DWORD UndecoratedLength, DWORD Flags) UnDecorateSymbolNameFunc; alias DWORD64 function(HANDLE hProcess, HANDLE hFile, PCSTR ImageName, PCSTR ModuleName, DWORD64 BaseOfDll, DWORD SizeOfDll) SymLoadModule64Func; alias BOOL function(HANDLE hProcess, PSTR SearchPath, DWORD SearchPathLength) SymGetSearchPathFunc; alias BOOL function(HANDLE hProcess, PCSTR SearchPath) SymSetSearchPathFunc; alias BOOL function(HANDLE hProcess, DWORD64 Address) SymUnloadModule64Func; alias BOOL function(HANDLE hProcess, ULONG ActionCode, ulong CallbackContext, ulong UserContext) PSYMBOL_REGISTERED_CALLBACK64; alias BOOL function(HANDLE hProcess, PSYMBOL_REGISTERED_CALLBACK64 CallbackFunction, ulong UserContext) SymRegisterCallback64Func; alias API_VERSION* function() ImagehlpApiVersionFunc; } struct DbgHelp { SymInitializeFunc SymInitialize; SymCleanupFunc SymCleanup; StackWalk64Func StackWalk64; SymGetOptionsFunc SymGetOptions; SymSetOptionsFunc SymSetOptions; SymFunctionTableAccess64Func SymFunctionTableAccess64; SymGetLineFromAddr64Func SymGetLineFromAddr64; SymGetModuleBase64Func SymGetModuleBase64; SymGetModuleInfo64Func SymGetModuleInfo64; SymGetSymFromAddr64Func SymGetSymFromAddr64; UnDecorateSymbolNameFunc UnDecorateSymbolName; SymLoadModule64Func SymLoadModule64; SymGetSearchPathFunc SymGetSearchPath; SymSetSearchPathFunc SymSetSearchPath; SymUnloadModule64Func SymUnloadModule64; SymRegisterCallback64Func SymRegisterCallback64; ImagehlpApiVersionFunc ImagehlpApiVersion; static DbgHelp* get() { if ( sm_hndl != sm_hndl.init ) return &sm_inst; if ( (sm_hndl = LoadLibraryA( "dbghelp.dll" )) != sm_hndl.init ) { sm_inst.SymInitialize = cast(SymInitializeFunc) GetProcAddress(sm_hndl,"SymInitialize"); sm_inst.SymCleanup = cast(SymCleanupFunc) GetProcAddress(sm_hndl,"SymCleanup"); sm_inst.StackWalk64 = cast(StackWalk64Func) GetProcAddress(sm_hndl,"StackWalk64"); sm_inst.SymGetOptions = cast(SymGetOptionsFunc) GetProcAddress(sm_hndl,"SymGetOptions"); sm_inst.SymSetOptions = cast(SymSetOptionsFunc) GetProcAddress(sm_hndl,"SymSetOptions"); sm_inst.SymFunctionTableAccess64 = cast(SymFunctionTableAccess64Func) GetProcAddress(sm_hndl,"SymFunctionTableAccess64"); sm_inst.SymGetLineFromAddr64 = cast(SymGetLineFromAddr64Func) GetProcAddress(sm_hndl,"SymGetLineFromAddr64"); sm_inst.SymGetModuleBase64 = cast(SymGetModuleBase64Func) GetProcAddress(sm_hndl,"SymGetModuleBase64"); sm_inst.SymGetModuleInfo64 = cast(SymGetModuleInfo64Func) GetProcAddress(sm_hndl,"SymGetModuleInfo64"); sm_inst.SymGetSymFromAddr64 = cast(SymGetSymFromAddr64Func) GetProcAddress(sm_hndl,"SymGetSymFromAddr64"); sm_inst.UnDecorateSymbolName = cast(UnDecorateSymbolNameFunc) GetProcAddress(sm_hndl,"UnDecorateSymbolName"); sm_inst.SymLoadModule64 = cast(SymLoadModule64Func) GetProcAddress(sm_hndl,"SymLoadModule64"); sm_inst.SymGetSearchPath = cast(SymGetSearchPathFunc) GetProcAddress(sm_hndl,"SymGetSearchPath"); sm_inst.SymSetSearchPath = cast(SymSetSearchPathFunc) GetProcAddress(sm_hndl,"SymSetSearchPath"); sm_inst.SymUnloadModule64 = cast(SymUnloadModule64Func) GetProcAddress(sm_hndl,"SymUnloadModule64"); sm_inst.SymRegisterCallback64 = cast(SymRegisterCallback64Func) GetProcAddress(sm_hndl, "SymRegisterCallback64"); sm_inst.ImagehlpApiVersion = cast(ImagehlpApiVersionFunc) GetProcAddress(sm_hndl, "ImagehlpApiVersion"); assert( sm_inst.SymInitialize && sm_inst.SymCleanup && sm_inst.StackWalk64 && sm_inst.SymGetOptions && sm_inst.SymSetOptions && sm_inst.SymFunctionTableAccess64 && sm_inst.SymGetLineFromAddr64 && sm_inst.SymGetModuleBase64 && sm_inst.SymGetModuleInfo64 && sm_inst.SymGetSymFromAddr64 && sm_inst.UnDecorateSymbolName && sm_inst.SymLoadModule64 && sm_inst.SymGetSearchPath && sm_inst.SymSetSearchPath && sm_inst.SymUnloadModule64 && sm_inst.SymRegisterCallback64 && sm_inst.ImagehlpApiVersion); return &sm_inst; } return null; } shared static ~this() { if ( sm_hndl != sm_hndl.init ) FreeLibrary( sm_hndl ); } private: __gshared DbgHelp sm_inst; __gshared HANDLE sm_hndl; }
D
/+ Copyright (c) 2006 Eric Anderton 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. +/ abstract class AggregateDeclaration{ } class Struct : AggregateDeclaration{ public this(String name,Declaration[] decls){ } } class Union : AggregateDeclaration{ public this(String name,Declaration[] decls){ } }
D
module drunmeta.expressions.arraykeys; import drunmeta.expression; import drunmeta.common; import drunmeta.value; import drunmeta.exceptions; import std.conv; class ArrayKeysExpression : Expression { this(Value[] expression ...) { this.expression = expression; this.type = ValueType.Array; expressionType_ = ExpressionType.ArrayKeys; } void handle(Code code) in { if (expression.length != 1) { throw new InvalidNumberOfValuesException(debugInfo); } } body { if (expression[0].type == ValueType.Array) { Value[string] ret; foreach(i, v; expression[0].a.keys) { ret[to!string(i)] = new Value(v); } this.a = ret; } } } unittest { import drunmeta.statements.output; /* * $0 = [0 : "bye", 1 : "hi"].keys */ Code code = new Code(); code.statements ~= new Output(new ArrayKeysExpression(new Value(["0" : new Value("bye"), "1" : new Value("hi")])), "0"); code.execute(); assert(code.variables["0"].s == "[0 : 0, 1 : 1]"); }
D
import std.stdio, std.path, std.array, std.string, std.algorithm; import file=std.file; import lexer, parser, expression, declaration, error, util; import scope_, semantic_; string getActualPath(string path){ // TODO: search path auto ext = path.extension; if(ext=="") path = path.setExtension("bayonet"); //return file.getcwd().canFind("/test")?path:"test/"~path; return path; } string readCode(File f){ // TODO: use memory-mapped file with 4 padding zero bytes auto app=mallocAppender!(char[])(); foreach(r;f.byChunk(1024)){app.put(cast(char[])r);} app.put("\0\0\0\0"); // insert 4 padding zero bytes return cast(string)app.data; } string readCode(string path){ return readCode(File(path)); } int run(string path){ path = getActualPath(path); auto ext = path.extension; if(ext != ".bayonet"){ stderr.writeln(path~": unrecognized extension: "~ext); return 1; } string code; try code=readCode(path); catch(Exception){ if(!file.exists(path)) stderr.writeln(path ~ ": no such file"); else stderr.writeln(path ~ ": error reading file"); return 1; } auto src=new Source(path, code); auto err=new FormattingErrorHandler(); auto program=parseFile(src,err); program=semantic(src,program,new TopScope(err)); //writeln(program); if(!err.nerrors){ import translate_; writeln(translate(program,new Builder())); } return !!err.nerrors; } int main(string[] args){ //import core.memory; GC.disable(); version(TEST) test(); if(args.length<2){ stderr.writeln("error: no input files"); return 1; } args.popFront(); args.sort!((a,b)=>a.startsWith("--")>b.startsWith("--")); foreach(x;args){ if(auto r=run(x)) return r; } return 0; }
D
/home/teng/CLionProjects/linux_design/ex/grpc_ex/target/debug/deps/grpc-c23d55297f53eb31.rmeta: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/lib.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/misc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_request_to_grpc_frames_typed.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames_typed.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/req_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client_stub.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/http_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/ctx.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/method.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler_unary.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_single.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_stream.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink_untyped.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_unary_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame_parser.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_status.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/headers.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/metadata.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/assert_types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/chars.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/arc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/string.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/req.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/resp.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/result.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/stream_item.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/error.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/futures_grpc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/marshall.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/method.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/prelude.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/rt.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/for_test.rs /home/teng/CLionProjects/linux_design/ex/grpc_ex/target/debug/deps/grpc-c23d55297f53eb31.d: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/lib.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/misc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_request_to_grpc_frames_typed.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames_typed.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/req_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client_stub.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/http_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/ctx.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/method.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler_unary.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_single.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_stream.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink_untyped.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_unary_sink.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame_parser.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_status.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/headers.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/metadata.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/assert_types.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/chars.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/mod.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/arc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/string.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/req.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/resp.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/result.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/stream_item.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/error.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/futures_grpc.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/marshall.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/method.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/prelude.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/rt.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/for_test.rs /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/lib.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/misc.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/mod.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_request_to_grpc_frames_typed.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/http_response_to_grpc_frames_typed.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/req_sink.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client/types.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/client_stub.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/mod.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/http_sink.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/sink.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/common/types.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/mod.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/ctx.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/method.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_handler_unary.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_single.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/req_stream.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_sink_untyped.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/resp_unary_sink.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/server/types.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/mod.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_frame_parser.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/grpc_status.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/headers.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/proto/metadata.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/assert_types.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/chars.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/mod.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/arc.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/or_static/string.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/req.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/resp.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/result.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/stream_item.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/error.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/futures_grpc.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/marshall.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/method.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/prelude.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/rt.rs: /home/teng/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/grpc-0.7.1/src/for_test.rs:
D
module dcompute.driver.cuda.program; import dcompute.driver.cuda; import std.string; struct Program { void* raw; Kernel!void getKernelByName(immutable(char)* name) { Kernel!void ret; status = cast(Status)cuModuleGetFunction(&ret.raw,this.raw,name); checkErrors(); return ret; } Kernel!(typeof(k)) getKernel(alias k)() { return cast(typeof(return)) getKernelByName(k.mangleof.ptr); } // TODO: Support globals & images. Requires competent compiler. //cuModuleGetGlobal //cuModuleGetTexRef //cuModuleGetSurfRef static Program fromFile(string name) { Program ret; status = cast(Status)cuModuleLoad(&ret.raw,name.toStringz); checkErrors(); return ret; } static Program fromString(string name) { Program ret; status = cast(Status)cuModuleLoadData(&ret.raw,name.toStringz); checkErrors(); return ret; } __gshared static Program globalProgram; //cuModuleLoadDataEx //cuModuleLoadFatBinary void unload() { status = cast(Status)cuModuleUnload(raw); checkErrors(); } //TODO: linkstate }
D
module android.java.javax.crypto.AEADBadTagException_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import1 = android.java.java.io.PrintStream_d_interface; import import4 = android.java.java.lang.Class_d_interface; import import3 = android.java.java.lang.StackTraceElement_d_interface; import import2 = android.java.java.io.PrintWriter_d_interface; import import0 = android.java.java.lang.JavaThrowable_d_interface; final class AEADBadTagException : IJavaObject { static immutable string[] _d_canCastTo = [ ]; @Import this(arsd.jni.Default); @Import this(string); @Import string getMessage(); @Import string getLocalizedMessage(); @Import import0.JavaThrowable getCause(); @Import import0.JavaThrowable initCause(import0.JavaThrowable); @Import @JavaName("toString") string toString_(); override string toString() { return arsd.jni.javaObjectToString(this); } @Import void printStackTrace(); @Import void printStackTrace(import1.PrintStream); @Import void printStackTrace(import2.PrintWriter); @Import import0.JavaThrowable fillInStackTrace(); @Import import3.StackTraceElement[] getStackTrace(); @Import void setStackTrace(import3.StackTraceElement[]); @Import void addSuppressed(import0.JavaThrowable); @Import import0.JavaThrowable[] getSuppressed(); @Import import4.Class getClass(); @Import int hashCode(); @Import bool equals(IJavaObject); @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 = "Ljavax/crypto/AEADBadTagException;"; }
D
/******************************************************************//** * \file src/game/server/clientcommand.d * \brief Client command functions by the gameserver * * <i>Copyright (c) 2012</i> Danny Arends<br> * Last modified May, 2012<br> * First written May, 2011<br> * Written in the D Programming Language (http://www.digitalmars.com/d) **********************************************************************/ module game.server.clientcommand; import core.stdinc, core.typedefs.types, core.typedefs.location; import core.terminal, game.tilemap, game.server.gameserver; import game.server.clienthandler; mixin(GenOutput!("CLN", "Green")); void processSync(GameServer server, ClientHandler handler, string command){ } void displayHelp(ClientHandler handler){ handler.send(NetEvent.CHAT ~ "Server v0.1"); handler.send(NetEvent.CHAT ~ "#help Shows this help"); if(handler.loggedin){ handler.send(NetEvent.CHAT ~ "#save Ask the server to save your user"); handler.send(NetEvent.CHAT ~ "#stats Print some server statistics"); handler.send(NetEvent.CHAT ~ "#chpass <old> <new> <new> Changes your password"); handler.send(NetEvent.CHAT ~ "#chname <new> <pass> Changes your username"); handler.send(NetEvent.CHAT ~ "#logout Logout from the game"); }else{ handler.send(NetEvent.CHAT ~ "#create <name> <pass> Create a new user"); handler.send(NetEvent.CHAT ~ "#login <name> <pass> Login as existing user"); } } void processChpass(GameServer server, ClientHandler handler, string[] params){ if(handler.loggedin){ if(params.length != 4){ handler.send(NetEvent.CHAT ~ "Usage: #chpass <old> <new> <new>"); }else{ if(server.validatePass(handler.username, params[1])){ if(params[2] == params[3]){ server.updateUser!string(handler.username, params[2], "pass"); handler.send(NetEvent.CHAT ~ "Password changed"); }else{ handler.send(NetEvent.CHAT ~ "Error: Confusion about your new password (no match)"); } }else{ handler.send(NetEvent.CHAT ~ "Error: Invalid old password provided"); } } }else{ handler.send(NetEvent.CHAT ~ "You must be logged in to change your password"); } } void processChname(GameServer server, ClientHandler handler, string[] params){ if(handler.loggedin){ if(params.length != 3){ handler.send(NetEvent.CHAT ~ "Usage: #chname <new> <pass>"); }else{ if(server.validatePass(handler.username, params[2])){ if(!server.userExists(params[1])){ server.updateUser!string(handler.username, params[1], "name"); handler.send(NetEvent.CHAT ~ "You are from now on known as: '" ~ params[1] ~ "'"); handleLogin(server, handler, params[1]); }else{ handler.send(NetEvent.CHAT ~ "Error: Name '" ~ params[1] ~ "' not available"); } }else{ handler.send(NetEvent.CHAT ~ "Error: Invalid password provided"); } } }else{ handler.send(NetEvent.CHAT ~ "You must be logged in to change your name"); } } void processCreate(GameServer server, ClientHandler handler, string[] params){ if(!handler.loggedin){ if(params.length != 3){ handler.send(NetEvent.CHAT ~ "Usage: #create <name> <pass>"); }else{ if(server.createUser(params[1],params[2])){ handler.send(NetEvent.CHAT ~ "Created, you are known as '" ~ params[1] ~ "'"); handleLogin(server, handler, params[1]); }else{ handler.send(NetEvent.CHAT ~ "Unable to create user"); } } }else{ handler.send(NetEvent.CHAT ~ "Already logged in"); } } void processLogin(GameServer server, ClientHandler handler, string[] params){ if(!handler.loggedin){ if(params.length != 3){ handler.send(NetEvent.CHAT ~ "Usage: #login <name> <pass>"); }else{ if(!server.userExists(params[1])){ handler.send(NetEvent.CHAT ~ "No such user '"~params[1]~"'"); }else{ if(server.validatePass(params[1],params[2])){ handler.send(NetEvent.CHAT ~ "Welcome back '" ~ params[1] ~ "'"); handleLogin(server, handler, params[1]); }else{ handler.send(NetEvent.CHAT ~ "Invalid password"); } } } }else{ handler.send(NetEvent.CHAT ~ "Already logged in"); } } void handleDelete(GameServer server, ClientHandler handler){ if(handler.loggedin){ if(handler.firsttimedelete){ handler.send(NetEvent.CHAT ~ "Are you sure? if so #delete_me"); handler.firsttimedelete = false; }else{ server.deleteUser(handler.username); handler.logout(); } }else{ handler.send(NetEvent.CHAT ~ "This command makes no sense if you're not logged in"); } } void handleLogin(GameServer server, ClientHandler handler, string name){ handler.username(name); server.updateUser!string(name, "", "lastloggedin"); wCLN("Sending map & Location"); sendLocation(server, handler, true); wCLN("Sending user data"); sendUserData(server, handler); } void processClientCommand(GameServer server, ClientHandler handler, string command){ if(command.length > 0){ auto plist = split(command," "); wCLN("Command: %s",plist[0]); if(plist.length > 1) wCLN("Command arguments: %s",plist[1..$]); switch(toLower(plist[0])){ case "create": processCreate(server,handler,plist); break; case "login" : processLogin(server,handler,plist); break; case "logout": if(handler.loggedin) handler.logout(); break; case "stats" : if(handler.loggedin) handler.send(NetEvent.CHAT ~ "Not implemented yet"); break; case "chname": processChname(server,handler,plist); break; case "chpass": processChpass(server,handler,plist); break; case "delete_me": handleDelete(server,handler); break; case "save" : if(handler.loggedin) handler.save(); break; case "help" : displayHelp(handler); break; default: handler.send(NetEvent.CHAT ~ "Unkown command '" ~ command ~ "'"); break; } if(toLower(plist[0]) != "delete_me") handler.firsttimedelete = true; } } void sendMapData(GameServer server, ClientHandler handler){ if(handler.loggedin){ TileMap map = handler.getGameUser().map; handler.send(NetEvent.OBJECT ~ "Map:" ~ map.asString()); }else{ handler.send(NetEvent.CHAT ~ "Unauthorized request"); } } void sendLocation(GameServer server, ClientHandler handler, bool mapChange = false){ if(handler.loggedin){ if(mapChange) sendMapData(server,handler); handler.send(NetEvent.MOVEMENT ~ handler.getGameUser().map.name ~ "-" ~ to!string(handler.getGameUser().location)); }else{ handler.send(NetEvent.CHAT ~ "Unauthorized request"); } } void sendUserData(GameServer server, ClientHandler handler){ if(handler.loggedin){ handler.send(NetEvent.OBJECT ~ "User:" ~ handler.getPlayer("").asString()); }else{ handler.send(NetEvent.CHAT ~ "Unauthorized request"); } } void log(GameServer server, string msg, string log="server"){ string logfilename = log ~ server.serverday ~ ".SAVE"; auto f = new File(logfilename,"a"); f.writeln("[" ~ server.servertime ~ "] " ~ msg); f.close(); } void processMovement(GameServer server, ClientHandler handler, string command){ if(handler.loggedin){ handler.firsttimedelete = true; Location l = new Location(command); wCLN("Movement request from client: %s", l); handler.setReqLocation(l); } } void processChat(GameServer server, ClientHandler handler, string command){ if(handler.loggedin) handler.firsttimedelete = true; handler.send(NetEvent.GAME ~ server.serverstamp ~ ":" ~ handler.username ~": " ~ command); }
D
// Written in the D programming language. /** * Contains the elementary mathematical functions (powers, roots, * and trigonometric functions), and low-level floating-point operations. * Mathematical special functions are available in $(D std.mathspecial). * $(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE , $(TR $(TH Category) $(TH Members) ) $(TR $(TDNW Constants) $(TD $(MYREF E) $(MYREF PI) $(MYREF PI_2) $(MYREF PI_4) $(MYREF M_1_PI) $(MYREF M_2_PI) $(MYREF M_2_SQRTPI) $(MYREF LN10) $(MYREF LN2) $(MYREF LOG2) $(MYREF LOG2E) $(MYREF LOG2T) $(MYREF LOG10E) $(MYREF SQRT2) $(MYREF SQRT1_2) )) $(TR $(TDNW Classics) $(TD $(MYREF abs) $(MYREF fabs) $(MYREF sqrt) $(MYREF cbrt) $(MYREF hypot) $(MYREF poly) )) $(TR $(TDNW Trigonometry) $(TD $(MYREF sin) $(MYREF cos) $(MYREF tan) $(MYREF asin) $(MYREF acos) $(MYREF atan) $(MYREF atan2) $(MYREF sinh) $(MYREF cosh) $(MYREF tanh) $(MYREF asinh) $(MYREF acosh) $(MYREF atanh) $(MYREF expi) )) $(TR $(TDNW Rounding) $(TD $(MYREF ceil) $(MYREF floor) $(MYREF round) $(MYREF lround) $(MYREF trunc) $(MYREF rint) $(MYREF lrint) $(MYREF nearbyint) $(MYREF rndtol) )) $(TR $(TDNW Exponentiation & Logarithms) $(TD $(MYREF pow) $(MYREF exp) $(MYREF exp2) $(MYREF expm1) $(MYREF ldexp) $(MYREF frexp) $(MYREF log) $(MYREF log2) $(MYREF log10) $(MYREF logb) $(MYREF ilogb) $(MYREF log1p) $(MYREF scalbn) )) $(TR $(TDNW Modulus) $(TD $(MYREF fmod) $(MYREF modf) $(MYREF remainder) )) $(TR $(TDNW Floating-point operations) $(TD $(MYREF approxEqual) $(MYREF feqrel) $(MYREF fdim) $(MYREF fmax) $(MYREF fmin) $(MYREF fma) $(MYREF nextDown) $(MYREF nextUp) $(MYREF nextafter) $(MYREF NaN) $(MYREF getNaNPayload) $(MYREF cmp) )) $(TR $(TDNW Introspection) $(TD $(MYREF isFinite) $(MYREF isIdentical) $(MYREF isInfinity) $(MYREF isNaN) $(MYREF isNormal) $(MYREF isSubnormal) $(MYREF signbit) $(MYREF sgn) $(MYREF copysign) )) $(TR $(TDNW Complex Numbers) $(TD $(MYREF abs) $(MYREF conj) $(MYREF sin) $(MYREF cos) $(MYREF expi) )) $(TR $(TDNW Hardware Control) $(TD $(MYREF IeeeFlags) $(MYREF FloatingPointControl) )) ) ) * The functionality closely follows the IEEE754-2008 standard for * floating-point arithmetic, including the use of camelCase names rather * than C99-style lower case names. All of these functions behave correctly * when presented with an infinity or NaN. * * The following IEEE 'real' formats are currently supported: * $(UL * $(LI 64 bit Big-endian 'double' (eg PowerPC)) * $(LI 128 bit Big-endian 'quadruple' (eg SPARC)) * $(LI 64 bit Little-endian 'double' (eg x86-SSE2)) * $(LI 80 bit Little-endian, with implied bit 'real80' (eg x87, Itanium)) * $(LI 128 bit Little-endian 'quadruple' (not implemented on any known processor!)) * $(LI Non-IEEE 128 bit Big-endian 'doubledouble' (eg PowerPC) has partial support) * ) * Unlike C, there is no global 'errno' variable. Consequently, almost all of * these functions are pure nothrow. * * Status: * The semantics and names of feqrel and approxEqual will be revised. * * Macros: * WIKI = Phobos/StdMath * * TABLE_SV = <table border=1 cellpadding=4 cellspacing=0> * <caption>Special Values</caption> * $0</table> * SVH = $(TR $(TH $1) $(TH $2)) * SV = $(TR $(TD $1) $(TD $2)) * TH3 = $(TR $(TH $1) $(TH $2) $(TH $3)) * TD3 = $(TR $(TD $1) $(TD $2) $(TD $3)) * * NAN = $(RED NAN) * SUP = <span style="vertical-align:super;font-size:smaller">$0</span> * GAMMA = &#915; * THETA = &theta; * INTEGRAL = &#8747; * INTEGRATE = $(BIG &#8747;<sub>$(SMALL $1)</sub><sup>$2</sup>) * POWER = $1<sup>$2</sup> * SUB = $1<sub>$2</sub> * BIGSUM = $(BIG &Sigma; <sup>$2</sup><sub>$(SMALL $1)</sub>) * CHOOSE = $(BIG &#40;) <sup>$(SMALL $1)</sup><sub>$(SMALL $2)</sub> $(BIG &#41;) * PLUSMN = &plusmn; * INFIN = &infin; * PLUSMNINF = &plusmn;&infin; * PI = &pi; * LT = &lt; * GT = &gt; * SQRT = &radic; * HALF = &frac12; * * Copyright: Copyright Digital Mars 2000 - 2011. * D implementations of tan, atan, atan2, exp, expm1, exp2, log, log10, log1p, * log2, floor, ceil and lrint functions are based on the CEPHES math library, * which is Copyright (C) 2001 Stephen L. Moshier <steve@moshier.net> * and are incorporated herein by permission of the author. The author * reserves the right to distribute this material elsewhere under different * copying permissions. These modifications are distributed here under * the following terms: * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: $(WEB digitalmars.com, Walter Bright), Don Clugston, * Conversion of CEPHES math library to D by Iain Buclaw * Source: $(PHOBOSSRC std/_math.d) */ module std.math; version (Win64) { version (D_InlineAsm_X86_64) version = Win64_DMD_InlineAsm; } import core.math; import core.stdc.math; import std.traits; version(LDC) { import ldc.intrinsics; } version(DigitalMars) { version = INLINE_YL2X; // x87 has opcodes for these } version (X86) version = X86_Any; version (X86_64) version = X86_Any; version (PPC) version = PPC_Any; version (PPC64) version = PPC_Any; version(D_InlineAsm_X86) { version = InlineAsm_X86_Any; } else version(D_InlineAsm_X86_64) { version = InlineAsm_X86_Any; } version(unittest) { import core.stdc.stdio; static if(real.sizeof > double.sizeof) enum uint useDigits = 16; else enum uint useDigits = 15; /****************************************** * Compare floating point numbers to n decimal digits of precision. * Returns: * 1 match * 0 nomatch */ private bool equalsDigit(real x, real y, uint ndigits) { if (signbit(x) != signbit(y)) return 0; if (isInfinity(x) && isInfinity(y)) return 1; if (isInfinity(x) || isInfinity(y)) return 0; if (isNaN(x) && isNaN(y)) return 1; if (isNaN(x) || isNaN(y)) return 0; char[30] bufx; char[30] bufy; assert(ndigits < bufx.length); int ix; int iy; version(CRuntime_Microsoft) alias real_t = double; else alias real_t = real; ix = sprintf(bufx.ptr, "%.*Lg", ndigits, cast(real_t) x); iy = sprintf(bufy.ptr, "%.*Lg", ndigits, cast(real_t) y); assert(ix < bufx.length && ix > 0); assert(ix < bufy.length && ix > 0); return bufx[0 .. ix] == bufy[0 .. iy]; } } package: // The following IEEE 'real' formats are currently supported. version(LittleEndian) { static assert(real.mant_dig == 53 || real.mant_dig == 64 || real.mant_dig == 113, "Only 64-bit, 80-bit, and 128-bit reals"~ " are supported for LittleEndian CPUs"); } else { static assert(real.mant_dig == 53 || real.mant_dig == 106 || real.mant_dig == 113, "Only 64-bit and 128-bit reals are supported for BigEndian CPUs."~ " double-double reals have partial support"); } // Underlying format exposed through floatTraits enum RealFormat { ieeeHalf, ieeeSingle, ieeeDouble, ieeeExtended, // x87 80-bit real ieeeExtended53, // x87 real rounded to precision of double. ibmExtended, // IBM 128-bit extended ieeeQuadruple, } // Constants used for extracting the components of the representation. // They supplement the built-in floating point properties. template floatTraits(T) { // EXPMASK is a ushort mask to select the exponent portion (without sign) // EXPSHIFT is the number of bits the exponent is left-shifted by in its ushort // EXPPOS_SHORT is the index of the exponent when represented as a ushort array. // SIGNPOS_BYTE is the index of the sign when represented as a ubyte array. // RECIP_EPSILON is the value such that (smallest_subnormal) * RECIP_EPSILON == T.min_normal enum T RECIP_EPSILON = (1/T.epsilon); static if (T.mant_dig == 24) { // Single precision float enum ushort EXPMASK = 0x7F80; enum ushort EXPSHIFT = 7; enum ushort EXPBIAS = 0x3F00; enum uint EXPMASK_INT = 0x7F80_0000; enum uint MANTISSAMASK_INT = 0x007F_FFFF; enum realFormat = RealFormat.ieeeSingle; version(LittleEndian) { enum EXPPOS_SHORT = 1; enum SIGNPOS_BYTE = 3; } else { enum EXPPOS_SHORT = 0; enum SIGNPOS_BYTE = 0; } } else static if (T.mant_dig == 53) { static if (T.sizeof == 8) { // Double precision float, or real == double enum ushort EXPMASK = 0x7FF0; enum ushort EXPSHIFT = 4; enum ushort EXPBIAS = 0x3FE0; enum uint EXPMASK_INT = 0x7FF0_0000; enum uint MANTISSAMASK_INT = 0x000F_FFFF; // for the MSB only enum realFormat = RealFormat.ieeeDouble; version(LittleEndian) { enum EXPPOS_SHORT = 3; enum SIGNPOS_BYTE = 7; } else { enum EXPPOS_SHORT = 0; enum SIGNPOS_BYTE = 0; } } else static if (T.sizeof == 12) { // Intel extended real80 rounded to double enum ushort EXPMASK = 0x7FFF; enum ushort EXPSHIFT = 0; enum ushort EXPBIAS = 0x3FFE; enum realFormat = RealFormat.ieeeExtended53; version(LittleEndian) { enum EXPPOS_SHORT = 4; enum SIGNPOS_BYTE = 9; } else { enum EXPPOS_SHORT = 0; enum SIGNPOS_BYTE = 0; } } else static assert(false, "No traits support for " ~ T.stringof); } else static if (T.mant_dig == 64) { // Intel extended real80 enum ushort EXPMASK = 0x7FFF; enum ushort EXPSHIFT = 0; enum ushort EXPBIAS = 0x3FFE; enum realFormat = RealFormat.ieeeExtended; version(LittleEndian) { enum EXPPOS_SHORT = 4; enum SIGNPOS_BYTE = 9; } else { enum EXPPOS_SHORT = 0; enum SIGNPOS_BYTE = 0; } } else static if (T.mant_dig == 113) { // Quadruple precision float enum ushort EXPMASK = 0x7FFF; enum ushort EXPSHIFT = 0; enum ushort EXPBIAS = 0x3FFF; enum realFormat = RealFormat.ieeeQuadruple; version(LittleEndian) { enum EXPPOS_SHORT = 7; enum SIGNPOS_BYTE = 15; } else { enum EXPPOS_SHORT = 0; enum SIGNPOS_BYTE = 0; } } else static if (T.mant_dig == 106) { // IBM Extended doubledouble enum ushort EXPMASK = 0x7FF0; enum ushort EXPSHIFT = 4; enum realFormat = RealFormat.ibmExtended; // the exponent byte is not unique version(LittleEndian) { enum EXPPOS_SHORT = 7; // [3] is also an exp short enum SIGNPOS_BYTE = 15; } else { enum EXPPOS_SHORT = 0; // [4] is also an exp short enum SIGNPOS_BYTE = 0; } } else static assert(false, "No traits support for " ~ T.stringof); } // These apply to all floating-point types version(LittleEndian) { enum MANTISSA_LSB = 0; enum MANTISSA_MSB = 1; } else { enum MANTISSA_LSB = 1; enum MANTISSA_MSB = 0; } // Common code for math implementations. // Helper for floor/ceil T floorImpl(T)(const T x) @trusted pure nothrow @nogc { alias F = floatTraits!(T); // Take care not to trigger library calls from the compiler, // while ensuring that we don't get defeated by some optimizers. union floatBits { T rv; ushort[T.sizeof/2] vu; } floatBits y = void; y.rv = x; // Find the exponent (power of 2) static if (F.realFormat == RealFormat.ieeeSingle) { int exp = ((y.vu[F.EXPPOS_SHORT] >> 7) & 0xff) - 0x7f; version (LittleEndian) int pos = 0; else int pos = 3; } else static if (F.realFormat == RealFormat.ieeeDouble) { int exp = ((y.vu[F.EXPPOS_SHORT] >> 4) & 0x7ff) - 0x3ff; version (LittleEndian) int pos = 0; else int pos = 3; } else static if (F.realFormat == RealFormat.ieeeExtended) { int exp = (y.vu[F.EXPPOS_SHORT] & 0x7fff) - 0x3fff; version (LittleEndian) int pos = 0; else int pos = 4; } else static if (F.realFormat == RealFormat.ieeeQuadruple) { int exp = (y.vu[F.EXPPOS_SHORT] & 0x7fff) - 0x3fff; version (LittleEndian) int pos = 0; else int pos = 7; } else static assert(false, "Not implemented for this architecture"); if (exp < 0) { if (x < 0.0) return -1.0; else return 0.0; } exp = (T.mant_dig - 1) - exp; // Zero 16 bits at a time. while (exp >= 16) { version (LittleEndian) y.vu[pos++] = 0; else y.vu[pos--] = 0; exp -= 16; } // Clear the remaining bits. if (exp > 0) y.vu[pos] &= 0xffff ^ ((1 << exp) - 1); if ((x < 0.0) && (x != y.rv)) y.rv -= 1.0; return y.rv; } public: // Values obtained from Wolfram Alpha. 116 bits ought to be enough for anybody. // Wolfram Alpha LLC. 2011. Wolfram|Alpha. http://www.wolframalpha.com/input/?i=e+in+base+16 (access July 6, 2011). enum real E = 0x1.5bf0a8b1457695355fb8ac404e7a8p+1L; /** e = 2.718281... */ enum real LOG2T = 0x1.a934f0979a3715fc9257edfe9b5fbp+1L; /** $(SUB log, 2)10 = 3.321928... */ enum real LOG2E = 0x1.71547652b82fe1777d0ffda0d23a8p+0L; /** $(SUB log, 2)e = 1.442695... */ enum real LOG2 = 0x1.34413509f79fef311f12b35816f92p-2L; /** $(SUB log, 10)2 = 0.301029... */ enum real LOG10E = 0x1.bcb7b1526e50e32a6ab7555f5a67cp-2L; /** $(SUB log, 10)e = 0.434294... */ enum real LN2 = 0x1.62e42fefa39ef35793c7673007e5fp-1L; /** ln 2 = 0.693147... */ enum real LN10 = 0x1.26bb1bbb5551582dd4adac5705a61p+1L; /** ln 10 = 2.302585... */ enum real PI = 0x1.921fb54442d18469898cc51701b84p+1L; /** $(_PI) = 3.141592... */ enum real PI_2 = PI/2; /** $(PI) / 2 = 1.570796... */ enum real PI_4 = PI/4; /** $(PI) / 4 = 0.785398... */ enum real M_1_PI = 0x1.45f306dc9c882a53f84eafa3ea69cp-2L; /** 1 / $(PI) = 0.318309... */ enum real M_2_PI = 2*M_1_PI; /** 2 / $(PI) = 0.636619... */ enum real M_2_SQRTPI = 0x1.20dd750429b6d11ae3a914fed7fd8p+0L; /** 2 / $(SQRT)$(PI) = 1.128379... */ enum real SQRT2 = 0x1.6a09e667f3bcc908b2fb1366ea958p+0L; /** $(SQRT)2 = 1.414213... */ enum real SQRT1_2 = SQRT2/2; /** $(SQRT)$(HALF) = 0.707106... */ // Note: Make sure the magic numbers in compiler backend for x87 match these. /*********************************** * Calculates the absolute value of a number * * Params: * Num = (template parameter) type of number * x = real number value * z = complex number value * y = imaginary number value * * Returns: * The absolute value of the number. If floating-point or integral, * the return type will be the same as the input; if complex or * imaginary, the returned value will be the corresponding floating * point type. * * For complex numbers, abs(z) = sqrt( $(POWER z.re, 2) + $(POWER z.im, 2) ) * = hypot(z.re, z.im). */ Num abs(Num)(Num x) @safe pure nothrow if (is(typeof(Num.init >= 0)) && is(typeof(-Num.init)) && !(is(Num* : const(ifloat*)) || is(Num* : const(idouble*)) || is(Num* : const(ireal*)))) { static if (isFloatingPoint!(Num)) return fabs(x); else return x>=0 ? x : -x; } /// ditto auto abs(Num)(Num z) @safe pure nothrow @nogc if (is(Num* : const(cfloat*)) || is(Num* : const(cdouble*)) || is(Num* : const(creal*))) { return hypot(z.re, z.im); } /// ditto auto abs(Num)(Num y) @safe pure nothrow @nogc if (is(Num* : const(ifloat*)) || is(Num* : const(idouble*)) || is(Num* : const(ireal*))) { return fabs(y.im); } /// ditto @safe pure nothrow @nogc unittest { assert(isIdentical(abs(-0.0L), 0.0L)); assert(isNaN(abs(real.nan))); assert(abs(-real.infinity) == real.infinity); assert(abs(-3.2Li) == 3.2L); assert(abs(71.6Li) == 71.6L); assert(abs(-56) == 56); assert(abs(2321312L) == 2321312L); assert(abs(-1L+1i) == sqrt(2.0L)); } @safe pure nothrow @nogc unittest { import std.typetuple; foreach (T; TypeTuple!(float, double, real)) { T f = 3; assert(abs(f) == f); assert(abs(-f) == f); } foreach (T; TypeTuple!(cfloat, cdouble, creal)) { T f = -12+3i; assert(abs(f) == hypot(f.re, f.im)); assert(abs(-f) == hypot(f.re, f.im)); } } /*********************************** * Complex conjugate * * conj(x + iy) = x - iy * * Note that z * conj(z) = $(POWER z.re, 2) - $(POWER z.im, 2) * is always a real number */ auto conj(Num)(Num z) @safe pure nothrow @nogc if (is(Num* : const(cfloat*)) || is(Num* : const(cdouble*)) || is(Num* : const(creal*))) { //FIXME //Issue 14206 static if(is(Num* : const(cdouble*))) return cast(cdouble) conj(cast(creal)z); else return z.re - z.im*1fi; } /** ditto */ auto conj(Num)(Num y) @safe pure nothrow @nogc if (is(Num* : const(ifloat*)) || is(Num* : const(idouble*)) || is(Num* : const(ireal*))) { return -y; } /// @safe pure nothrow @nogc unittest { creal c = 7 + 3Li; assert(conj(c) == 7-3Li); ireal z = -3.2Li; assert(conj(z) == -z); } //Issue 14206 @safe pure nothrow @nogc unittest { cdouble c = 7 + 3i; assert(conj(c) == 7-3i); idouble z = -3.2i; assert(conj(z) == -z); } //Issue 14206 @safe pure nothrow @nogc unittest { cfloat c = 7f + 3fi; assert(conj(c) == 7f-3fi); ifloat z = -3.2fi; assert(conj(z) == -z); } /*********************************** * Returns cosine of x. x is in radians. * * $(TABLE_SV * $(TR $(TH x) $(TH cos(x)) $(TH invalid?)) * $(TR $(TD $(NAN)) $(TD $(NAN)) $(TD yes) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(NAN)) $(TD yes) ) * ) * Bugs: * Results are undefined if |x| >= $(POWER 2,64). */ real cos(real x) @safe pure nothrow @nogc { pragma(inline, true); return core.math.cos(x); } //FIXME ///ditto double cos(double x) @safe pure nothrow @nogc { return cos(cast(real)x); } //FIXME ///ditto float cos(float x) @safe pure nothrow @nogc { return cos(cast(real)x); } unittest { real function(real) pcos = &cos; assert(pcos != null); } /*********************************** * Returns $(WEB en.wikipedia.org/wiki/Sine, sine) of x. x is in $(WEB en.wikipedia.org/wiki/Radian, radians). * * $(TABLE_SV * $(TH3 x , sin(x) , invalid?) * $(TD3 $(NAN) , $(NAN) , yes ) * $(TD3 $(PLUSMN)0.0, $(PLUSMN)0.0, no ) * $(TD3 $(PLUSMNINF), $(NAN) , yes ) * ) * * Params: * x = angle in radians (not degrees) * Returns: * sine of x * See_Also: * $(MYREF cos), $(MYREF tan), $(MYREF asin) * Bugs: * Results are undefined if |x| >= $(POWER 2,64). */ real sin(real x) @safe pure nothrow @nogc { pragma(inline, true); return core.math.sin(x); } //FIXME ///ditto double sin(double x) @safe pure nothrow @nogc { return sin(cast(real)x); } //FIXME ///ditto float sin(float x) @safe pure nothrow @nogc { return sin(cast(real)x); } /// unittest { import std.math : sin, PI; import std.stdio : writefln; void someFunc() { real x = 30.0; auto result = sin(x * (PI / 180)); // convert degrees to radians writefln("The sine of %s degrees is %s", x, result); } } unittest { real function(real) psin = &sin; assert(psin != null); } /*********************************** * Returns sine for complex and imaginary arguments. * * sin(z) = sin(z.re)*cosh(z.im) + cos(z.re)*sinh(z.im)i * * If both sin($(THETA)) and cos($(THETA)) are required, * it is most efficient to use expi($(THETA)). */ creal sin(creal z) @safe pure nothrow @nogc { creal cs = expi(z.re); creal csh = coshisinh(z.im); return cs.im * csh.re + cs.re * csh.im * 1i; } /** ditto */ ireal sin(ireal y) @safe pure nothrow @nogc { return cosh(y.im)*1i; } /// @safe pure nothrow @nogc unittest { assert(sin(0.0+0.0i) == 0.0); assert(sin(2.0+0.0i) == sin(2.0L) ); } /*********************************** * cosine, complex and imaginary * * cos(z) = cos(z.re)*cosh(z.im) - sin(z.re)*sinh(z.im)i */ creal cos(creal z) @safe pure nothrow @nogc { creal cs = expi(z.re); creal csh = coshisinh(z.im); return cs.re * csh.re - cs.im * csh.im * 1i; } /** ditto */ real cos(ireal y) @safe pure nothrow @nogc { return cosh(y.im); } /// @safe pure nothrow @nogc unittest { assert(cos(0.0+0.0i)==1.0); assert(cos(1.3L+0.0i)==cos(1.3L)); assert(cos(5.2Li)== cosh(5.2L)); } /**************************************************************************** * Returns tangent of x. x is in radians. * * $(TABLE_SV * $(TR $(TH x) $(TH tan(x)) $(TH invalid?)) * $(TR $(TD $(NAN)) $(TD $(NAN)) $(TD yes)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no)) * $(TR $(TD $(PLUSMNINF)) $(TD $(NAN)) $(TD yes)) * ) */ real tan(real x) @trusted pure nothrow @nogc { version(D_InlineAsm_X86) { asm pure nothrow @nogc { fld x[EBP] ; // load theta fxam ; // test for oddball values fstsw AX ; sahf ; jc trigerr ; // x is NAN, infinity, or empty // 387's can handle subnormals SC18: fptan ; fstp ST(0) ; // dump X, which is always 1 fstsw AX ; sahf ; jnp Lret ; // C2 = 1 (x is out of range) // Do argument reduction to bring x into range fldpi ; fxch ; SC17: fprem1 ; fstsw AX ; sahf ; jp SC17 ; fstp ST(1) ; // remove pi from stack jmp SC18 ; trigerr: jnp Lret ; // if theta is NAN, return theta fstp ST(0) ; // dump theta } return real.nan; Lret: {} } else version(D_InlineAsm_X86_64) { version (Win64) { asm pure nothrow @nogc { fld real ptr [RCX] ; // load theta } } else { asm pure nothrow @nogc { fld x[RBP] ; // load theta } } asm pure nothrow @nogc { fxam ; // test for oddball values fstsw AX ; test AH,1 ; jnz trigerr ; // x is NAN, infinity, or empty // 387's can handle subnormals SC18: fptan ; fstp ST(0) ; // dump X, which is always 1 fstsw AX ; test AH,4 ; jz Lret ; // C2 = 1 (x is out of range) // Do argument reduction to bring x into range fldpi ; fxch ; SC17: fprem1 ; fstsw AX ; test AH,4 ; jnz SC17 ; fstp ST(1) ; // remove pi from stack jmp SC18 ; trigerr: test AH,4 ; jz Lret ; // if theta is NAN, return theta fstp ST(0) ; // dump theta } return real.nan; Lret: {} } else { // Coefficients for tan(x) static immutable real[3] P = [ -1.7956525197648487798769E7L, 1.1535166483858741613983E6L, -1.3093693918138377764608E4L, ]; static immutable real[5] Q = [ -5.3869575592945462988123E7L, 2.5008380182335791583922E7L, -1.3208923444021096744731E6L, 1.3681296347069295467845E4L, 1.0000000000000000000000E0L, ]; // PI/4 split into three parts. enum real P1 = 7.853981554508209228515625E-1L; enum real P2 = 7.946627356147928367136046290398E-9L; enum real P3 = 3.061616997868382943065164830688E-17L; // Special cases. if (x == 0.0 || isNaN(x)) return x; if (isInfinity(x)) return real.nan; // Make argument positive but save the sign. bool sign = false; if (signbit(x)) { sign = true; x = -x; } // Compute x mod PI/4. real y = floor(x / PI_4); // Strip high bits of integer part. real z = ldexp(y, -4); // Compute y - 16 * (y / 16). z = y - ldexp(floor(z), 4); // Integer and fraction part modulo one octant. int j = cast(int)(z); // Map zeros and singularities to origin. if (j & 1) { j += 1; y += 1.0; } z = ((x - y * P1) - y * P2) - y * P3; real zz = z * z; if (zz > 1.0e-20L) y = z + z * (zz * poly(zz, P) / poly(zz, Q)); else y = z; if (j & 2) y = -1.0 / y; return (sign) ? -y : y; } } @safe nothrow @nogc unittest { static real[2][] vals = // angle,tan [ [ 0, 0], [ .5, .5463024898], [ 1, 1.557407725], [ 1.5, 14.10141995], [ 2, -2.185039863], [ 2.5,-.7470222972], [ 3, -.1425465431], [ 3.5, .3745856402], [ 4, 1.157821282], [ 4.5, 4.637332055], [ 5, -3.380515006], [ 5.5,-.9955840522], [ 6, -.2910061914], [ 6.5, .2202772003], [ 10, .6483608275], // special angles [ PI_4, 1], //[ PI_2, real.infinity], // PI_2 is not _exactly_ pi/2. [ 3*PI_4, -1], [ PI, 0], [ 5*PI_4, 1], //[ 3*PI_2, -real.infinity], [ 7*PI_4, -1], [ 2*PI, 0], ]; int i; for (i = 0; i < vals.length; i++) { real x = vals[i][0]; real r = vals[i][1]; real t = tan(x); //printf("tan(%Lg) = %Lg, should be %Lg\n", x, t, r); if (!isIdentical(r, t)) assert(fabs(r-t) <= .0000001); x = -x; r = -r; t = tan(x); //printf("tan(%Lg) = %Lg, should be %Lg\n", x, t, r); if (!isIdentical(r, t) && !(r!=r && t!=t)) assert(fabs(r-t) <= .0000001); } // overflow assert(isNaN(tan(real.infinity))); assert(isNaN(tan(-real.infinity))); // NaN propagation assert(isIdentical( tan(NaN(0x0123L)), NaN(0x0123L) )); } unittest { assert(equalsDigit(tan(PI / 3), std.math.sqrt(3.0), useDigits)); } /*************** * Calculates the arc cosine of x, * returning a value ranging from 0 to $(PI). * * $(TABLE_SV * $(TR $(TH x) $(TH acos(x)) $(TH invalid?)) * $(TR $(TD $(GT)1.0) $(TD $(NAN)) $(TD yes)) * $(TR $(TD $(LT)-1.0) $(TD $(NAN)) $(TD yes)) * $(TR $(TD $(NAN)) $(TD $(NAN)) $(TD yes)) * ) */ real acos(real x) @safe pure nothrow @nogc { return atan2(sqrt(1-x*x), x); } /// ditto double acos(double x) @safe pure nothrow @nogc { return acos(cast(real)x); } /// ditto float acos(float x) @safe pure nothrow @nogc { return acos(cast(real)x); } unittest { assert(equalsDigit(acos(0.5), std.math.PI / 3, useDigits)); } /*************** * Calculates the arc sine of x, * returning a value ranging from -$(PI)/2 to $(PI)/2. * * $(TABLE_SV * $(TR $(TH x) $(TH asin(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no)) * $(TR $(TD $(GT)1.0) $(TD $(NAN)) $(TD yes)) * $(TR $(TD $(LT)-1.0) $(TD $(NAN)) $(TD yes)) * ) */ real asin(real x) @safe pure nothrow @nogc { return atan2(x, sqrt(1-x*x)); } /// ditto double asin(double x) @safe pure nothrow @nogc { return asin(cast(real)x); } /// ditto float asin(float x) @safe pure nothrow @nogc { return asin(cast(real)x); } unittest { assert(equalsDigit(asin(0.5), PI / 6, useDigits)); } /*************** * Calculates the arc tangent of x, * returning a value ranging from -$(PI)/2 to $(PI)/2. * * $(TABLE_SV * $(TR $(TH x) $(TH atan(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no)) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(NAN)) $(TD yes)) * ) */ real atan(real x) @safe pure nothrow @nogc { version(InlineAsm_X86_Any) { return atan2(x, 1.0L); } else { // Coefficients for atan(x) static immutable real[5] P = [ -5.0894116899623603312185E1L, -9.9988763777265819915721E1L, -6.3976888655834347413154E1L, -1.4683508633175792446076E1L, -8.6863818178092187535440E-1L, ]; static immutable real[6] Q = [ 1.5268235069887081006606E2L, 3.9157570175111990631099E2L, 3.6144079386152023162701E2L, 1.4399096122250781605352E2L, 2.2981886733594175366172E1L, 1.0000000000000000000000E0L, ]; // tan(PI/8) enum real TAN_PI_8 = 4.1421356237309504880169e-1L; // tan(3 * PI/8) enum real TAN3_PI_8 = 2.41421356237309504880169L; // Special cases. if (x == 0.0) return x; if (isInfinity(x)) return copysign(PI_2, x); // Make argument positive but save the sign. bool sign = false; if (signbit(x)) { sign = true; x = -x; } // Range reduction. real y; if (x > TAN3_PI_8) { y = PI_2; x = -(1.0 / x); } else if (x > TAN_PI_8) { y = PI_4; x = (x - 1.0)/(x + 1.0); } else y = 0.0; // Rational form in x^^2. real z = x * x; y = y + (poly(z, P) / poly(z, Q)) * z * x + x; return (sign) ? -y : y; } } /// ditto double atan(double x) @safe pure nothrow @nogc { return atan(cast(real)x); } /// ditto float atan(float x) @safe pure nothrow @nogc { return atan(cast(real)x); } unittest { assert(equalsDigit(atan(std.math.sqrt(3.0)), PI / 3, useDigits)); } /*************** * Calculates the arc tangent of y / x, * returning a value ranging from -$(PI) to $(PI). * * $(TABLE_SV * $(TR $(TH y) $(TH x) $(TH atan(y, x))) * $(TR $(TD $(NAN)) $(TD anything) $(TD $(NAN)) ) * $(TR $(TD anything) $(TD $(NAN)) $(TD $(NAN)) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(GT)0.0) $(TD $(PLUSMN)0.0) ) * $(TR $(TD $(PLUSMN)0.0) $(TD +0.0) $(TD $(PLUSMN)0.0) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(LT)0.0) $(TD $(PLUSMN)$(PI))) * $(TR $(TD $(PLUSMN)0.0) $(TD -0.0) $(TD $(PLUSMN)$(PI))) * $(TR $(TD $(GT)0.0) $(TD $(PLUSMN)0.0) $(TD $(PI)/2) ) * $(TR $(TD $(LT)0.0) $(TD $(PLUSMN)0.0) $(TD -$(PI)/2) ) * $(TR $(TD $(GT)0.0) $(TD $(INFIN)) $(TD $(PLUSMN)0.0) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD anything) $(TD $(PLUSMN)$(PI)/2)) * $(TR $(TD $(GT)0.0) $(TD -$(INFIN)) $(TD $(PLUSMN)$(PI)) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(INFIN)) $(TD $(PLUSMN)$(PI)/4)) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD -$(INFIN)) $(TD $(PLUSMN)3$(PI)/4)) * ) */ real atan2(real y, real x) @trusted pure nothrow @nogc { version(InlineAsm_X86_Any) { version (Win64) { asm pure nothrow @nogc { naked; fld real ptr [RDX]; // y fld real ptr [RCX]; // x fpatan; ret; } } else { asm pure nothrow @nogc { fld y; fld x; fpatan; } } } else { // Special cases. if (isNaN(x) || isNaN(y)) return real.nan; if (y == 0.0) { if (x >= 0 && !signbit(x)) return copysign(0, y); else return copysign(PI, y); } if (x == 0.0) return copysign(PI_2, y); if (isInfinity(x)) { if (signbit(x)) { if (isInfinity(y)) return copysign(3*PI_4, y); else return copysign(PI, y); } else { if (isInfinity(y)) return copysign(PI_4, y); else return copysign(0.0, y); } } if (isInfinity(y)) return copysign(PI_2, y); // Call atan and determine the quadrant. real z = atan(y / x); if (signbit(x)) { if (signbit(y)) z = z - PI; else z = z + PI; } if (z == 0.0) return copysign(z, y); return z; } } /// ditto double atan2(double y, double x) @safe pure nothrow @nogc { return atan2(cast(real)y, cast(real)x); } /// ditto float atan2(float y, float x) @safe pure nothrow @nogc { return atan2(cast(real)y, cast(real)x); } unittest { assert(equalsDigit(atan2(1.0L, std.math.sqrt(3.0L)), PI / 6, useDigits)); } /*********************************** * Calculates the hyperbolic cosine of x. * * $(TABLE_SV * $(TR $(TH x) $(TH cosh(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(PLUSMN)0.0) $(TD no) ) * ) */ real cosh(real x) @safe pure nothrow @nogc { // cosh = (exp(x)+exp(-x))/2. // The naive implementation works correctly. real y = exp(x); return (y + 1.0/y) * 0.5; } /// ditto double cosh(double x) @safe pure nothrow @nogc { return cosh(cast(real)x); } /// ditto float cosh(float x) @safe pure nothrow @nogc { return cosh(cast(real)x); } unittest { assert(equalsDigit(cosh(1.0), (E + 1.0 / E) / 2, useDigits)); } /*********************************** * Calculates the hyperbolic sine of x. * * $(TABLE_SV * $(TR $(TH x) $(TH sinh(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no)) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(PLUSMN)$(INFIN)) $(TD no)) * ) */ real sinh(real x) @safe pure nothrow @nogc { // sinh(x) = (exp(x)-exp(-x))/2; // Very large arguments could cause an overflow, but // the maximum value of x for which exp(x) + exp(-x)) != exp(x) // is x = 0.5 * (real.mant_dig) * LN2. // = 22.1807 for real80. if (fabs(x) > real.mant_dig * LN2) { return copysign(0.5 * exp(fabs(x)), x); } real y = expm1(x); return 0.5 * y / (y+1) * (y+2); } /// ditto double sinh(double x) @safe pure nothrow @nogc { return sinh(cast(real)x); } /// ditto float sinh(float x) @safe pure nothrow @nogc { return sinh(cast(real)x); } unittest { assert(equalsDigit(sinh(1.0), (E - 1.0 / E) / 2, useDigits)); } /*********************************** * Calculates the hyperbolic tangent of x. * * $(TABLE_SV * $(TR $(TH x) $(TH tanh(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(PLUSMN)1.0) $(TD no)) * ) */ real tanh(real x) @safe pure nothrow @nogc { // tanh(x) = (exp(x) - exp(-x))/(exp(x)+exp(-x)) if (fabs(x) > real.mant_dig * LN2) { return copysign(1, x); } real y = expm1(2*x); return y / (y + 2); } /// ditto double tanh(double x) @safe pure nothrow @nogc { return tanh(cast(real)x); } /// ditto float tanh(float x) @safe pure nothrow @nogc { return tanh(cast(real)x); } unittest { assert(equalsDigit(tanh(1.0), sinh(1.0) / cosh(1.0), 15)); } package: /* Returns cosh(x) + I * sinh(x) * Only one call to exp() is performed. */ creal coshisinh(real x) @safe pure nothrow @nogc { // See comments for cosh, sinh. if (fabs(x) > real.mant_dig * LN2) { real y = exp(fabs(x)); return y * 0.5 + 0.5i * copysign(y, x); } else { real y = expm1(x); return (y + 1.0 + 1.0/(y + 1.0)) * 0.5 + 0.5i * y / (y+1) * (y+2); } } @safe pure nothrow @nogc unittest { creal c = coshisinh(3.0L); assert(c.re == cosh(3.0L)); assert(c.im == sinh(3.0L)); } public: /*********************************** * Calculates the inverse hyperbolic cosine of x. * * Mathematically, acosh(x) = log(x + sqrt( x*x - 1)) * * $(TABLE_DOMRG * $(DOMAIN 1..$(INFIN)) * $(RANGE 1..log(real.max), $(INFIN)) ) * $(TABLE_SV * $(SVH x, acosh(x) ) * $(SV $(NAN), $(NAN) ) * $(SV $(LT)1, $(NAN) ) * $(SV 1, 0 ) * $(SV +$(INFIN),+$(INFIN)) * ) */ real acosh(real x) @safe pure nothrow @nogc { if (x > 1/real.epsilon) return LN2 + log(x); else return log(x + sqrt(x*x - 1)); } /// ditto double acosh(double x) @safe pure nothrow @nogc { return acosh(cast(real)x); } /// ditto float acosh(float x) @safe pure nothrow @nogc { return acosh(cast(real)x); } unittest { assert(isNaN(acosh(0.9))); assert(isNaN(acosh(real.nan))); assert(acosh(1.0)==0.0); assert(acosh(real.infinity) == real.infinity); assert(isNaN(acosh(0.5))); assert(equalsDigit(acosh(cosh(3.0)), 3, useDigits)); } /*********************************** * Calculates the inverse hyperbolic sine of x. * * Mathematically, * --------------- * asinh(x) = log( x + sqrt( x*x + 1 )) // if x >= +0 * asinh(x) = -log(-x + sqrt( x*x + 1 )) // if x <= -0 * ------------- * * $(TABLE_SV * $(SVH x, asinh(x) ) * $(SV $(NAN), $(NAN) ) * $(SV $(PLUSMN)0, $(PLUSMN)0 ) * $(SV $(PLUSMN)$(INFIN),$(PLUSMN)$(INFIN)) * ) */ real asinh(real x) @safe pure nothrow @nogc { return (fabs(x) > 1 / real.epsilon) // beyond this point, x*x + 1 == x*x ? copysign(LN2 + log(fabs(x)), x) // sqrt(x*x + 1) == 1 + x * x / ( 1 + sqrt(x*x + 1) ) : copysign(log1p(fabs(x) + x*x / (1 + sqrt(x*x + 1)) ), x); } /// ditto double asinh(double x) @safe pure nothrow @nogc { return asinh(cast(real)x); } /// ditto float asinh(float x) @safe pure nothrow @nogc { return asinh(cast(real)x); } unittest { assert(isIdentical(asinh(0.0), 0.0)); assert(isIdentical(asinh(-0.0), -0.0)); assert(asinh(real.infinity) == real.infinity); assert(asinh(-real.infinity) == -real.infinity); assert(isNaN(asinh(real.nan))); assert(equalsDigit(asinh(sinh(3.0)), 3, useDigits)); } /*********************************** * Calculates the inverse hyperbolic tangent of x, * returning a value from ranging from -1 to 1. * * Mathematically, atanh(x) = log( (1+x)/(1-x) ) / 2 * * * $(TABLE_DOMRG * $(DOMAIN -$(INFIN)..$(INFIN)) * $(RANGE -1..1) ) * $(TABLE_SV * $(SVH x, acosh(x) ) * $(SV $(NAN), $(NAN) ) * $(SV $(PLUSMN)0, $(PLUSMN)0) * $(SV -$(INFIN), -0) * ) */ real atanh(real x) @safe pure nothrow @nogc { // log( (1+x)/(1-x) ) == log ( 1 + (2*x)/(1-x) ) return 0.5 * log1p( 2 * x / (1 - x) ); } /// ditto double atanh(double x) @safe pure nothrow @nogc { return atanh(cast(real)x); } /// ditto float atanh(float x) @safe pure nothrow @nogc { return atanh(cast(real)x); } unittest { assert(isIdentical(atanh(0.0), 0.0)); assert(isIdentical(atanh(-0.0),-0.0)); assert(isNaN(atanh(real.nan))); assert(isNaN(atanh(-real.infinity))); assert(atanh(0.0) == 0); assert(equalsDigit(atanh(tanh(0.5L)), 0.5, useDigits)); } /***************************************** * Returns x rounded to a long value using the current rounding mode. * If the integer value of x is * greater than long.max, the result is * indeterminate. */ long rndtol(real x) @nogc @safe pure nothrow { pragma(inline, true); return core.math.rndtol(x); } //FIXME ///ditto long rndtol(double x) @safe pure nothrow @nogc { return rndtol(cast(real)x); } //FIXME ///ditto long rndtol(float x) @safe pure nothrow @nogc { return rndtol(cast(real)x); } unittest { long function(real) prndtol = &rndtol; assert(prndtol != null); } /***************************************** * Returns x rounded to a long value using the FE_TONEAREST rounding mode. * If the integer value of x is * greater than long.max, the result is * indeterminate. */ extern (C) real rndtonl(real x); /*************************************** * Compute square root of x. * * $(TABLE_SV * $(TR $(TH x) $(TH sqrt(x)) $(TH invalid?)) * $(TR $(TD -0.0) $(TD -0.0) $(TD no)) * $(TR $(TD $(LT)0.0) $(TD $(NAN)) $(TD yes)) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) $(TD no)) * ) */ float sqrt(float x) @nogc @safe pure nothrow { pragma(inline, true); return core.math.sqrt(x); } /// ditto double sqrt(double x) @nogc @safe pure nothrow { pragma(inline, true); return core.math.sqrt(x); } /// ditto real sqrt(real x) @nogc @safe pure nothrow { pragma(inline, true); return core.math.sqrt(x); } @safe pure nothrow @nogc unittest { //ctfe enum ZX80 = sqrt(7.0f); enum ZX81 = sqrt(7.0); enum ZX82 = sqrt(7.0L); assert(isNaN(sqrt(-1.0f))); assert(isNaN(sqrt(-1.0))); assert(isNaN(sqrt(-1.0L))); } unittest { float function(float) psqrtf = &sqrt; assert(psqrtf != null); double function(double) psqrtd = &sqrt; assert(psqrtd != null); real function(real) psqrtr = &sqrt; assert(psqrtr != null); } creal sqrt(creal z) @nogc @safe pure nothrow { creal c; real x,y,w,r; if (z == 0) { c = 0 + 0i; } else { real z_re = z.re; real z_im = z.im; x = fabs(z_re); y = fabs(z_im); if (x >= y) { r = y / x; w = sqrt(x) * sqrt(0.5 * (1 + sqrt(1 + r * r))); } else { r = x / y; w = sqrt(y) * sqrt(0.5 * (r + sqrt(1 + r * r))); } if (z_re >= 0) { c = w + (z_im / (w + w)) * 1.0i; } else { if (z_im < 0) w = -w; c = z_im / (w + w) + w * 1.0i; } } return c; } /** * Calculates e$(SUPERSCRIPT x). * * $(TABLE_SV * $(TR $(TH x) $(TH e$(SUPERSCRIPT x)) ) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) ) * $(TR $(TD -$(INFIN)) $(TD +0.0) ) * $(TR $(TD $(NAN)) $(TD $(NAN)) ) * ) */ real exp(real x) @trusted pure nothrow @nogc { version(D_InlineAsm_X86) { // e^^x = 2^^(LOG2E*x) // (This is valid because the overflow & underflow limits for exp // and exp2 are so similar). return exp2(LOG2E*x); } else version(D_InlineAsm_X86_64) { // e^^x = 2^^(LOG2E*x) // (This is valid because the overflow & underflow limits for exp // and exp2 are so similar). return exp2(LOG2E*x); } else { alias F = floatTraits!real; static if (F.realFormat == RealFormat.ieeeDouble) { // Coefficients for exp(x) static immutable real[3] P = [ 9.99999999999999999910E-1L, 3.02994407707441961300E-2L, 1.26177193074810590878E-4L, ]; static immutable real[4] Q = [ 2.00000000000000000009E0L, 2.27265548208155028766E-1L, 2.52448340349684104192E-3L, 3.00198505138664455042E-6L, ]; // C1 + C2 = LN2. enum real C1 = 6.93145751953125E-1; enum real C2 = 1.42860682030941723212E-6; // Overflow and Underflow limits. enum real OF = 7.09782712893383996732E2; // ln((1-2^-53) * 2^1024) enum real UF = -7.451332191019412076235E2; // ln(2^-1075) } else static if (F.realFormat == RealFormat.ieeeExtended) { // Coefficients for exp(x) static immutable real[3] P = [ 9.9999999999999999991025E-1L, 3.0299440770744196129956E-2L, 1.2617719307481059087798E-4L, ]; static immutable real[4] Q = [ 2.0000000000000000000897E0L, 2.2726554820815502876593E-1L, 2.5244834034968410419224E-3L, 3.0019850513866445504159E-6L, ]; // C1 + C2 = LN2. enum real C1 = 6.9314575195312500000000E-1L; enum real C2 = 1.4286068203094172321215E-6L; // Overflow and Underflow limits. enum real OF = 1.1356523406294143949492E4L; // ln((1-2^-64) * 2^16384) enum real UF = -1.13994985314888605586758E4L; // ln(2^-16446) } else static assert(0, "Not implemented for this architecture"); // Special cases. // FIXME: set IEEE flags accordingly if (isNaN(x)) return x; if (x > OF) return real.infinity; if (x < UF) return 0.0; // Express: e^^x = e^^g * 2^^n // = e^^g * e^^(n * LOG2E) // = e^^(g + n * LOG2E) int n = cast(int)floor(LOG2E * x + 0.5); x -= n * C1; x -= n * C2; // Rational approximation for exponential of the fractional part: // e^^x = 1 + 2x P(x^^2) / (Q(x^^2) - P(x^^2)) real xx = x * x; real px = x * poly(xx, P); x = px / (poly(xx, Q) - px); x = 1.0 + ldexp(x, 1); // Scale by power of 2. x = ldexp(x, n); return x; } } /// ditto double exp(double x) @safe pure nothrow @nogc { return exp(cast(real)x); } /// ditto float exp(float x) @safe pure nothrow @nogc { return exp(cast(real)x); } unittest { assert(equalsDigit(exp(3.0L), E * E * E, useDigits)); } /** * Calculates the value of the natural logarithm base (e) * raised to the power of x, minus 1. * * For very small x, expm1(x) is more accurate * than exp(x)-1. * * $(TABLE_SV * $(TR $(TH x) $(TH e$(SUPERSCRIPT x)-1) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) ) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) ) * $(TR $(TD -$(INFIN)) $(TD -1.0) ) * $(TR $(TD $(NAN)) $(TD $(NAN)) ) * ) */ real expm1(real x) @trusted pure nothrow @nogc { version(D_InlineAsm_X86) { enum PARAMSIZE = (real.sizeof+3)&(0xFFFF_FFFC); // always a multiple of 4 asm pure nothrow @nogc { /* expm1() for x87 80-bit reals, IEEE754-2008 conformant. * Author: Don Clugston. * * expm1(x) = 2^^(rndint(y))* 2^^(y-rndint(y)) - 1 where y = LN2*x. * = 2rndy * 2ym1 + 2rndy - 1, where 2rndy = 2^^(rndint(y)) * and 2ym1 = (2^^(y-rndint(y))-1). * If 2rndy < 0.5*real.epsilon, result is -1. * Implementation is otherwise the same as for exp2() */ naked; fld real ptr [ESP+4] ; // x mov AX, [ESP+4+8]; // AX = exponent and sign sub ESP, 12+8; // Create scratch space on the stack // [ESP,ESP+2] = scratchint // [ESP+4..+6, +8..+10, +10] = scratchreal // set scratchreal mantissa = 1.0 mov dword ptr [ESP+8], 0; mov dword ptr [ESP+8+4], 0x80000000; and AX, 0x7FFF; // drop sign bit cmp AX, 0x401D; // avoid InvalidException in fist jae L_extreme; fldl2e; fmulp ST(1), ST; // y = x*log2(e) fist dword ptr [ESP]; // scratchint = rndint(y) fisub dword ptr [ESP]; // y - rndint(y) // and now set scratchreal exponent mov EAX, [ESP]; add EAX, 0x3fff; jle short L_largenegative; cmp EAX,0x8000; jge short L_largepositive; mov [ESP+8+8],AX; f2xm1; // 2ym1 = 2^^(y-rndint(y)) -1 fld real ptr [ESP+8] ; // 2rndy = 2^^rndint(y) fmul ST(1), ST; // ST=2rndy, ST(1)=2rndy*2ym1 fld1; fsubp ST(1), ST; // ST = 2rndy-1, ST(1) = 2rndy * 2ym1 - 1 faddp ST(1), ST; // ST = 2rndy * 2ym1 + 2rndy - 1 add ESP,12+8; ret PARAMSIZE; L_extreme: // Extreme exponent. X is very large positive, very // large negative, infinity, or NaN. fxam; fstsw AX; test AX, 0x0400; // NaN_or_zero, but we already know x!=0 jz L_was_nan; // if x is NaN, returns x test AX, 0x0200; jnz L_largenegative; L_largepositive: // Set scratchreal = real.max. // squaring it will create infinity, and set overflow flag. mov word ptr [ESP+8+8], 0x7FFE; fstp ST(0); fld real ptr [ESP+8]; // load scratchreal fmul ST(0), ST; // square it, to create havoc! L_was_nan: add ESP,12+8; ret PARAMSIZE; L_largenegative: fstp ST(0); fld1; fchs; // return -1. Underflow flag is not set. add ESP,12+8; ret PARAMSIZE; } } else version(D_InlineAsm_X86_64) { asm pure nothrow @nogc { naked; } version (Win64) { asm pure nothrow @nogc { fld real ptr [RCX]; // x mov AX,[RCX+8]; // AX = exponent and sign } } else { asm pure nothrow @nogc { fld real ptr [RSP+8]; // x mov AX,[RSP+8+8]; // AX = exponent and sign } } asm pure nothrow @nogc { /* expm1() for x87 80-bit reals, IEEE754-2008 conformant. * Author: Don Clugston. * * expm1(x) = 2^(rndint(y))* 2^(y-rndint(y)) - 1 where y = LN2*x. * = 2rndy * 2ym1 + 2rndy - 1, where 2rndy = 2^(rndint(y)) * and 2ym1 = (2^(y-rndint(y))-1). * If 2rndy < 0.5*real.epsilon, result is -1. * Implementation is otherwise the same as for exp2() */ sub RSP, 24; // Create scratch space on the stack // [RSP,RSP+2] = scratchint // [RSP+4..+6, +8..+10, +10] = scratchreal // set scratchreal mantissa = 1.0 mov dword ptr [RSP+8], 0; mov dword ptr [RSP+8+4], 0x80000000; and AX, 0x7FFF; // drop sign bit cmp AX, 0x401D; // avoid InvalidException in fist jae L_extreme; fldl2e; fmul ; // y = x*log2(e) fist dword ptr [RSP]; // scratchint = rndint(y) fisub dword ptr [RSP]; // y - rndint(y) // and now set scratchreal exponent mov EAX, [RSP]; add EAX, 0x3fff; jle short L_largenegative; cmp EAX,0x8000; jge short L_largepositive; mov [RSP+8+8],AX; f2xm1; // 2^(y-rndint(y)) -1 fld real ptr [RSP+8] ; // 2^rndint(y) fmul ST(1), ST; fld1; fsubp ST(1), ST; fadd; add RSP,24; ret; L_extreme: // Extreme exponent. X is very large positive, very // large negative, infinity, or NaN. fxam; fstsw AX; test AX, 0x0400; // NaN_or_zero, but we already know x!=0 jz L_was_nan; // if x is NaN, returns x test AX, 0x0200; jnz L_largenegative; L_largepositive: // Set scratchreal = real.max. // squaring it will create infinity, and set overflow flag. mov word ptr [RSP+8+8], 0x7FFE; fstp ST(0); fld real ptr [RSP+8]; // load scratchreal fmul ST(0), ST; // square it, to create havoc! L_was_nan: add RSP,24; ret; L_largenegative: fstp ST(0); fld1; fchs; // return -1. Underflow flag is not set. add RSP,24; ret; } } else { // Coefficients for exp(x) - 1 static immutable real[5] P = [ -1.586135578666346600772998894928250240826E4L, 2.642771505685952966904660652518429479531E3L, -3.423199068835684263987132888286791620673E2L, 1.800826371455042224581246202420972737840E1L, -5.238523121205561042771939008061958820811E-1L, ]; static immutable real[6] Q = [ -9.516813471998079611319047060563358064497E4L, 3.964866271411091674556850458227710004570E4L, -7.207678383830091850230366618190187434796E3L, 7.206038318724600171970199625081491823079E2L, -4.002027679107076077238836622982900945173E1L, 1.000000000000000000000000000000000000000E0L, ]; // C1 + C2 = LN2. enum real C1 = 6.9314575195312500000000E-1L; enum real C2 = 1.4286068203094172321215E-6L; // Overflow and Underflow limits. enum real OF = 1.1356523406294143949492E4L; enum real UF = -4.5054566736396445112120088E1L; // Special cases. if (x > OF) return real.infinity; if (x == 0.0) return x; if (x < UF) return -1.0; // Express x = LN2 (n + remainder), remainder not exceeding 1/2. int n = cast(int)floor(0.5 + x / LN2); x -= n * C1; x -= n * C2; // Rational approximation: // exp(x) - 1 = x + 0.5 x^^2 + x^^3 P(x) / Q(x) real px = x * poly(x, P); real qx = poly(x, Q); real xx = x * x; qx = x + (0.5 * xx + xx * px / qx); // We have qx = exp(remainder LN2) - 1, so: // exp(x) - 1 = 2^^n (qx + 1) - 1 = 2^^n qx + 2^^n - 1. px = ldexp(1.0, n); x = px * qx + (px - 1.0); return x; } } /** * Calculates 2$(SUPERSCRIPT x). * * $(TABLE_SV * $(TR $(TH x) $(TH exp2(x)) ) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) ) * $(TR $(TD -$(INFIN)) $(TD +0.0) ) * $(TR $(TD $(NAN)) $(TD $(NAN)) ) * ) */ real exp2(real x) @nogc @trusted pure nothrow { version(D_InlineAsm_X86) { enum PARAMSIZE = (real.sizeof+3)&(0xFFFF_FFFC); // always a multiple of 4 asm pure nothrow @nogc { /* exp2() for x87 80-bit reals, IEEE754-2008 conformant. * Author: Don Clugston. * * exp2(x) = 2^^(rndint(x))* 2^^(y-rndint(x)) * The trick for high performance is to avoid the fscale(28cycles on core2), * frndint(19 cycles), leaving f2xm1(19 cycles) as the only slow instruction. * * We can do frndint by using fist. BUT we can't use it for huge numbers, * because it will set the Invalid Operation flag if overflow or NaN occurs. * Fortunately, whenever this happens the result would be zero or infinity. * * We can perform fscale by directly poking into the exponent. BUT this doesn't * work for the (very rare) cases where the result is subnormal. So we fall back * to the slow method in that case. */ naked; fld real ptr [ESP+4] ; // x mov AX, [ESP+4+8]; // AX = exponent and sign sub ESP, 12+8; // Create scratch space on the stack // [ESP,ESP+2] = scratchint // [ESP+4..+6, +8..+10, +10] = scratchreal // set scratchreal mantissa = 1.0 mov dword ptr [ESP+8], 0; mov dword ptr [ESP+8+4], 0x80000000; and AX, 0x7FFF; // drop sign bit cmp AX, 0x401D; // avoid InvalidException in fist jae L_extreme; fist dword ptr [ESP]; // scratchint = rndint(x) fisub dword ptr [ESP]; // x - rndint(x) // and now set scratchreal exponent mov EAX, [ESP]; add EAX, 0x3fff; jle short L_subnormal; cmp EAX,0x8000; jge short L_overflow; mov [ESP+8+8],AX; L_normal: f2xm1; fld1; faddp ST(1), ST; // 2^^(x-rndint(x)) fld real ptr [ESP+8] ; // 2^^rndint(x) add ESP,12+8; fmulp ST(1), ST; ret PARAMSIZE; L_subnormal: // Result will be subnormal. // In this rare case, the simple poking method doesn't work. // The speed doesn't matter, so use the slow fscale method. fild dword ptr [ESP]; // scratchint fld1; fscale; fstp real ptr [ESP+8]; // scratchreal = 2^^scratchint fstp ST(0); // drop scratchint jmp L_normal; L_extreme: // Extreme exponent. X is very large positive, very // large negative, infinity, or NaN. fxam; fstsw AX; test AX, 0x0400; // NaN_or_zero, but we already know x!=0 jz L_was_nan; // if x is NaN, returns x // set scratchreal = real.min_normal // squaring it will return 0, setting underflow flag mov word ptr [ESP+8+8], 1; test AX, 0x0200; jnz L_waslargenegative; L_overflow: // Set scratchreal = real.max. // squaring it will create infinity, and set overflow flag. mov word ptr [ESP+8+8], 0x7FFE; L_waslargenegative: fstp ST(0); fld real ptr [ESP+8]; // load scratchreal fmul ST(0), ST; // square it, to create havoc! L_was_nan: add ESP,12+8; ret PARAMSIZE; } } else version(D_InlineAsm_X86_64) { asm pure nothrow @nogc { naked; } version (Win64) { asm pure nothrow @nogc { fld real ptr [RCX]; // x mov AX,[RCX+8]; // AX = exponent and sign } } else { asm pure nothrow @nogc { fld real ptr [RSP+8]; // x mov AX,[RSP+8+8]; // AX = exponent and sign } } asm pure nothrow @nogc { /* exp2() for x87 80-bit reals, IEEE754-2008 conformant. * Author: Don Clugston. * * exp2(x) = 2^(rndint(x))* 2^(y-rndint(x)) * The trick for high performance is to avoid the fscale(28cycles on core2), * frndint(19 cycles), leaving f2xm1(19 cycles) as the only slow instruction. * * We can do frndint by using fist. BUT we can't use it for huge numbers, * because it will set the Invalid Operation flag is overflow or NaN occurs. * Fortunately, whenever this happens the result would be zero or infinity. * * We can perform fscale by directly poking into the exponent. BUT this doesn't * work for the (very rare) cases where the result is subnormal. So we fall back * to the slow method in that case. */ sub RSP, 24; // Create scratch space on the stack // [RSP,RSP+2] = scratchint // [RSP+4..+6, +8..+10, +10] = scratchreal // set scratchreal mantissa = 1.0 mov dword ptr [RSP+8], 0; mov dword ptr [RSP+8+4], 0x80000000; and AX, 0x7FFF; // drop sign bit cmp AX, 0x401D; // avoid InvalidException in fist jae L_extreme; fist dword ptr [RSP]; // scratchint = rndint(x) fisub dword ptr [RSP]; // x - rndint(x) // and now set scratchreal exponent mov EAX, [RSP]; add EAX, 0x3fff; jle short L_subnormal; cmp EAX,0x8000; jge short L_overflow; mov [RSP+8+8],AX; L_normal: f2xm1; fld1; fadd; // 2^(x-rndint(x)) fld real ptr [RSP+8] ; // 2^rndint(x) add RSP,24; fmulp ST(1), ST; ret; L_subnormal: // Result will be subnormal. // In this rare case, the simple poking method doesn't work. // The speed doesn't matter, so use the slow fscale method. fild dword ptr [RSP]; // scratchint fld1; fscale; fstp real ptr [RSP+8]; // scratchreal = 2^scratchint fstp ST(0); // drop scratchint jmp L_normal; L_extreme: // Extreme exponent. X is very large positive, very // large negative, infinity, or NaN. fxam; fstsw AX; test AX, 0x0400; // NaN_or_zero, but we already know x!=0 jz L_was_nan; // if x is NaN, returns x // set scratchreal = real.min // squaring it will return 0, setting underflow flag mov word ptr [RSP+8+8], 1; test AX, 0x0200; jnz L_waslargenegative; L_overflow: // Set scratchreal = real.max. // squaring it will create infinity, and set overflow flag. mov word ptr [RSP+8+8], 0x7FFE; L_waslargenegative: fstp ST(0); fld real ptr [RSP+8]; // load scratchreal fmul ST(0), ST; // square it, to create havoc! L_was_nan: add RSP,24; ret; } } else { // Coefficients for exp2(x) static immutable real[3] P = [ 2.0803843631901852422887E6L, 3.0286971917562792508623E4L, 6.0614853552242266094567E1L, ]; static immutable real[4] Q = [ 6.0027204078348487957118E6L, 3.2772515434906797273099E5L, 1.7492876999891839021063E3L, 1.0000000000000000000000E0L, ]; // Overflow and Underflow limits. enum real OF = 16384.0L; enum real UF = -16382.0L; // Special cases. if (isNaN(x)) return x; if (x > OF) return real.infinity; if (x < UF) return 0.0; // Separate into integer and fractional parts. int n = cast(int)floor(x + 0.5); x -= n; // Rational approximation: // exp2(x) = 1.0 + 2x P(x^^2) / (Q(x^^2) - P(x^^2)) real xx = x * x; real px = x * poly(xx, P); x = px / (poly(xx, Q) - px); x = 1.0 + ldexp(x, 1); // Scale by power of 2. x = ldexp(x, n); return x; } } /// unittest { assert(feqrel(exp2(0.5L), SQRT2) >= real.mant_dig -1); assert(exp2(8.0L) == 256.0); assert(exp2(-9.0L)== 1.0L/512.0); } unittest { version(CRuntime_Microsoft) {} else // aexp2/exp2f/exp2l not implemented { assert( core.stdc.math.exp2f(0.0f) == 1 ); assert( core.stdc.math.exp2 (0.0) == 1 ); assert( core.stdc.math.exp2l(0.0L) == 1 ); } } unittest { FloatingPointControl ctrl; if(FloatingPointControl.hasExceptionTraps) ctrl.disableExceptions(FloatingPointControl.allExceptions); ctrl.rounding = FloatingPointControl.roundToNearest; static if (real.mant_dig == 64) // 80-bit reals { static immutable real[2][] exptestpoints = [ // x exp(x) [ 1.0L, E ], [ 0.5L, 0x1.a61298e1e069bc97p+0L ], [ 3.0L, E*E*E ], [ 0x1.1p+13L, 0x1.29aeffefc8ec645p+12557L ], // near overflow [ 0x1.7p+13L, real.infinity ], // close overflow [ 0x1p+80L, real.infinity ], // far overflow [ real.infinity, real.infinity ], [-0x1.18p+13L, 0x1.5e4bf54b4806db9p-12927L ], // near underflow [-0x1.625p+13L, 0x1.a6bd68a39d11f35cp-16358L ], // ditto [-0x1.62dafp+13L, 0x1.96c53d30277021dp-16383L ], // near underflow - subnormal [-0x1.643p+13L, 0x1p-16444L ], // ditto [-0x1.645p+13L, 0 ], // close underflow [-0x1p+30L, 0 ], // far underflow ]; } else static if (real.mant_dig == 53) // 64-bit reals { static immutable real[2][] exptestpoints = [ // x, exp(x) [ 1.0L, E ], [ 0.5L, 0x1.a61298e1e069cp+0L ], [ 3.0L, E*E*E ], [ 0x1.6p+9L, 0x1.93bf4ec282efbp+1015L ], // near overflow [ 0x1.7p+9L, real.infinity ], // close overflow [ 0x1p+80L, real.infinity ], // far overflow [ real.infinity, real.infinity ], [-0x1.6p+9L, 0x1.44a3824e5285fp-1016L ], // near underflow [-0x1.64p+9L, 0x0.06f84920bb2d3p-1022L ], // near underflow - subnormal [-0x1.743p+9L, 0x0.0000000000001p-1022L ], // ditto [-0x1.8p+9L, 0 ], // close underflow [-0x1p30L, 0 ], // far underflow ]; } else static assert(0, "No exp() tests for real type!"); const minEqualMantissaBits = real.mant_dig - 2; real x; IeeeFlags f; foreach (ref pair; exptestpoints) { resetIeeeFlags(); x = exp(pair[0]); f = ieeeFlags; assert(feqrel(x, pair[1]) >= minEqualMantissaBits); version (IeeeFlagsSupport) { // Check the overflow bit if (x == real.infinity) { // don't care about the overflow bit if input was inf // (e.g., the LLVM intrinsic doesn't set it on Linux x86_64) assert(pair[0] == real.infinity || f.overflow); } else assert(!f.overflow); // Check the underflow bit assert(f.underflow == (fabs(x) < real.min_normal)); // Invalid and div by zero shouldn't be affected. assert(!f.invalid); assert(!f.divByZero); } } // Ideally, exp(0) would not set the inexact flag. // Unfortunately, fldl2e sets it! // So it's not realistic to avoid setting it. assert(exp(0.0L) == 1.0); // NaN propagation. Doesn't set flags, bcos was already NaN. resetIeeeFlags(); x = exp(real.nan); f = ieeeFlags; assert(isIdentical(abs(x), real.nan)); assert(f.flags == 0); resetIeeeFlags(); x = exp(-real.nan); f = ieeeFlags; assert(isIdentical(abs(x), real.nan)); assert(f.flags == 0); x = exp(NaN(0x123)); assert(isIdentical(x, NaN(0x123))); // High resolution test assert(exp(0.5L) == 0x1.A612_98E1_E069_BC97_2DFE_FAB6D_33Fp+0L); } /** * Calculate cos(y) + i sin(y). * * On many CPUs (such as x86), this is a very efficient operation; * almost twice as fast as calculating sin(y) and cos(y) separately, * and is the preferred method when both are required. */ creal expi(real y) @trusted pure nothrow @nogc { version(InlineAsm_X86_Any) { version (Win64) { asm pure nothrow @nogc { naked; fld real ptr [ECX]; fsincos; fxch ST(1), ST(0); ret; } } else { asm pure nothrow @nogc { fld y; fsincos; fxch ST(1), ST(0); } } } else { return cos(y) + sin(y)*1i; } } /// @safe pure nothrow @nogc unittest { assert(expi(1.3e5L) == cos(1.3e5L) + sin(1.3e5L) * 1i); assert(expi(0.0L) == 1L + 0.0Li); } /********************************************************************* * Separate floating point value into significand and exponent. * * Returns: * Calculate and return $(I x) and $(I exp) such that * value =$(I x)*2$(SUPERSCRIPT exp) and * .5 $(LT)= |$(I x)| $(LT) 1.0 * * $(I x) has same sign as value. * * $(TABLE_SV * $(TR $(TH value) $(TH returns) $(TH exp)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD 0)) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) $(TD int.max)) * $(TR $(TD -$(INFIN)) $(TD -$(INFIN)) $(TD int.min)) * $(TR $(TD $(PLUSMN)$(NAN)) $(TD $(PLUSMN)$(NAN)) $(TD int.min)) * ) */ T frexp(T)(const T value, out int exp) @trusted pure nothrow @nogc if(isFloatingPoint!T) { Unqual!T vf = value; ushort* vu = cast(ushort*)&vf; static if(is(Unqual!T == float)) int* vi = cast(int*)&vf; else long* vl = cast(long*)&vf; int ex; alias F = floatTraits!T; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; static if (F.realFormat == RealFormat.ieeeExtended) { if (ex) { // If exponent is non-zero if (ex == F.EXPMASK) // infinity or NaN { if (*vl & 0x7FFF_FFFF_FFFF_FFFF) // NaN { *vl |= 0xC000_0000_0000_0000; // convert NaNS to NaNQ exp = int.min; } else if (vu[F.EXPPOS_SHORT] & 0x8000) // negative infinity exp = int.min; else // positive infinity exp = int.max; } else { exp = ex - F.EXPBIAS; vu[F.EXPPOS_SHORT] = (0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FFE; } } else if (!*vl) { // vf is +-0.0 exp = 0; } else { // subnormal vf *= F.RECIP_EPSILON; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; exp = ex - F.EXPBIAS - T.mant_dig + 1; vu[F.EXPPOS_SHORT] = (0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FFE; } return vf; } else static if (F.realFormat == RealFormat.ieeeQuadruple) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) { // infinity or NaN if (vl[MANTISSA_LSB] | ( vl[MANTISSA_MSB] & 0x0000_FFFF_FFFF_FFFF)) // NaN { // convert NaNS to NaNQ vl[MANTISSA_MSB] |= 0x0000_8000_0000_0000; exp = int.min; } else if (vu[F.EXPPOS_SHORT] & 0x8000) // negative infinity exp = int.min; else // positive infinity exp = int.max; } else { exp = ex - F.EXPBIAS; vu[F.EXPPOS_SHORT] = cast(ushort)((0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FFE); } } else if ((vl[MANTISSA_LSB] |(vl[MANTISSA_MSB] & 0x0000_FFFF_FFFF_FFFF)) == 0) { // vf is +-0.0 exp = 0; } else { // subnormal vf *= F.RECIP_EPSILON; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; exp = ex - F.EXPBIAS - T.mant_dig + 1; vu[F.EXPPOS_SHORT] = cast(ushort)((0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FFE); } return vf; } else static if (F.realFormat == RealFormat.ieeeDouble) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) // infinity or NaN { if (*vl == 0x7FF0_0000_0000_0000) // positive infinity { exp = int.max; } else if (*vl == 0xFFF0_0000_0000_0000) // negative infinity exp = int.min; else { // NaN *vl |= 0x0008_0000_0000_0000; // convert NaNS to NaNQ exp = int.min; } } else { exp = (ex - F.EXPBIAS) >> 4; vu[F.EXPPOS_SHORT] = cast(ushort)((0x800F & vu[F.EXPPOS_SHORT]) | 0x3FE0); } } else if (!(*vl & 0x7FFF_FFFF_FFFF_FFFF)) { // vf is +-0.0 exp = 0; } else { // subnormal vf *= F.RECIP_EPSILON; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; exp = ((ex - F.EXPBIAS) >> 4) - T.mant_dig + 1; vu[F.EXPPOS_SHORT] = cast(ushort)((0x8000 & vu[F.EXPPOS_SHORT]) | 0x3FE0); } return vf; } else static if (F.realFormat == RealFormat.ieeeSingle) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) // infinity or NaN { if (*vi == 0x7F80_0000) // positive infinity { exp = int.max; } else if (*vi == 0xFF80_0000) // negative infinity exp = int.min; else { // NaN *vi |= 0x0040_0000; // convert NaNS to NaNQ exp = int.min; } } else { exp = (ex - F.EXPBIAS) >> 7; vu[F.EXPPOS_SHORT] = cast(ushort)((0x807F & vu[F.EXPPOS_SHORT]) | 0x3F00); } } else if (!(*vi & 0x7FFF_FFFF)) { // vf is +-0.0 exp = 0; } else { // subnormal vf *= F.RECIP_EPSILON; ex = vu[F.EXPPOS_SHORT] & F.EXPMASK; exp = ((ex - F.EXPBIAS) >> 7) - T.mant_dig + 1; vu[F.EXPPOS_SHORT] = cast(ushort)((0x8000 & vu[F.EXPPOS_SHORT]) | 0x3F00); } return vf; } else // static if (F.realFormat == RealFormat.ibmExtended) { assert (0, "frexp not implemented"); } } /// unittest { int exp; real mantissa = frexp(123.456L, exp); // check if values are equal to 19 decimal digits of precision assert(equalsDigit(mantissa * pow(2.0L, cast(real)exp), 123.456L, 19)); assert(frexp(-real.nan, exp) && exp == int.min); assert(frexp(real.nan, exp) && exp == int.min); assert(frexp(-real.infinity, exp) == -real.infinity && exp == int.min); assert(frexp(real.infinity, exp) == real.infinity && exp == int.max); assert(frexp(-0.0, exp) == -0.0 && exp == 0); assert(frexp(0.0, exp) == 0.0 && exp == 0); } unittest { import std.typetuple, std.typecons; foreach (T; TypeTuple!(real, double, float)) { Tuple!(T, T, int)[] vals = // x,frexp,exp [ tuple(T(0.0), T( 0.0 ), 0), tuple(T(-0.0), T( -0.0), 0), tuple(T(1.0), T( .5 ), 1), tuple(T(-1.0), T( -.5 ), 1), tuple(T(2.0), T( .5 ), 2), tuple(T(float.min_normal/2.0f), T(.5), -126), tuple(T.infinity, T.infinity, int.max), tuple(-T.infinity, -T.infinity, int.min), tuple(T.nan, T.nan, int.min), tuple(-T.nan, -T.nan, int.min), ]; foreach(elem; vals) { T x = elem[0]; T e = elem[1]; int exp = elem[2]; int eptr; T v = frexp(x, eptr); assert(isIdentical(e, v)); assert(exp == eptr); } static if (floatTraits!(T).realFormat == RealFormat.ieeeExtended) { static T[3][] extendedvals = [ // x,frexp,exp [0x1.a5f1c2eb3fe4efp+73L, 0x1.A5F1C2EB3FE4EFp-1L, 74], // normal [0x1.fa01712e8f0471ap-1064L, 0x1.fa01712e8f0471ap-1L, -1063], [T.min_normal, .5, -16381], [T.min_normal/2.0L, .5, -16382] // subnormal ]; foreach(elem; extendedvals) { T x = elem[0]; T e = elem[1]; int exp = cast(int)elem[2]; int eptr; T v = frexp(x, eptr); assert(isIdentical(e, v)); assert(exp == eptr); } } } } unittest { import std.typetuple: TypeTuple; void foo() { foreach (T; TypeTuple!(real, double, float)) { int exp; const T a = 1; immutable T b = 2; auto c = frexp(a, exp); auto d = frexp(b, exp); } } } static import core.bitop; static if (size_t.sizeof == 4) { private int bsr_ulong(ulong x) @trusted pure nothrow @nogc { size_t msb = x >> 32; size_t lsb = cast(size_t) x; if (msb) return core.bitop.bsr(msb) + 32; else return core.bitop.bsr(lsb); } } else private alias bsr_ulong = core.bitop.bsr; /****************************************** * Extracts the exponent of x as a signed integral value. * * If x is not a special value, the result is the same as * $(D cast(int)logb(x)). * * $(TABLE_SV * $(TR $(TH x) $(TH ilogb(x)) $(TH Range error?)) * $(TR $(TD 0) $(TD FP_ILOGB0) $(TD yes)) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD int.max) $(TD no)) * $(TR $(TD $(NAN)) $(TD FP_ILOGBNAN) $(TD no)) * ) */ int ilogb(T)(const T x) @trusted pure nothrow @nogc if(isFloatingPoint!T) { alias F = floatTraits!T; union floatBits { T rv; ushort[T.sizeof/2] vu; uint[T.sizeof/4] vui; static if(T.sizeof >= 8) long[T.sizeof/8] vl; } floatBits y = void; y.rv = x; int ex = y.vu[F.EXPPOS_SHORT] & F.EXPMASK; static if (F.realFormat == RealFormat.ieeeExtended) { if (ex) { // If exponent is non-zero if (ex == F.EXPMASK) // infinity or NaN { if (y.vl[0] & 0x7FFF_FFFF_FFFF_FFFF) // NaN return FP_ILOGBNAN; else // +-infinity return int.max; } else { return ex - F.EXPBIAS - 1; } } else if (!y.vl[0]) { // vf is +-0.0 return FP_ILOGB0; } else { // subnormal uint msb = y.vui[MANTISSA_MSB]; uint lsb = y.vui[MANTISSA_LSB]; if (msb) return ex - F.EXPBIAS - T.mant_dig + 1 + 32 + core.bitop.bsr(msb); else return ex - F.EXPBIAS - T.mant_dig + 1 + core.bitop.bsr(lsb); } } else static if (F.realFormat == RealFormat.ieeeQuadruple) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) { // infinity or NaN if (y.vl[MANTISSA_LSB] | ( y.vl[MANTISSA_MSB] & 0x0000_FFFF_FFFF_FFFF)) // NaN return FP_ILOGBNAN; else // +- infinity return int.max; } else { return ex - F.EXPBIAS - 1; } } else if ((y.vl[MANTISSA_LSB] | (y.vl[MANTISSA_MSB] & 0x0000_FFFF_FFFF_FFFF)) == 0) { // vf is +-0.0 return FP_ILOGB0; } else { // subnormal ulong msb = y.vl[MANTISSA_MSB] & 0x0000_FFFF_FFFF_FFFF; ulong lsb = y.vl[MANTISSA_LSB]; if (msb) return ex - F.EXPBIAS - T.mant_dig + 1 + bsr_ulong(msb) + 64; else return ex - F.EXPBIAS - T.mant_dig + 1 + bsr_ulong(lsb); } } else static if (F.realFormat == RealFormat.ieeeDouble) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) // infinity or NaN { if ((y.vl[0] & 0x7FFF_FFFF_FFFF_FFFF) == 0x7FF0_0000_0000_0000) // +- infinity return int.max; else // NaN return FP_ILOGBNAN; } else { return ((ex - F.EXPBIAS) >> 4) - 1; } } else if (!(y.vl[0] & 0x7FFF_FFFF_FFFF_FFFF)) { // vf is +-0.0 return FP_ILOGB0; } else { // subnormal uint msb = y.vui[MANTISSA_MSB] & F.MANTISSAMASK_INT; uint lsb = y.vui[MANTISSA_LSB]; if (msb) return ((ex - F.EXPBIAS) >> 4) - T.mant_dig + 1 + core.bitop.bsr(msb) + 32; else return ((ex - F.EXPBIAS) >> 4) - T.mant_dig + 1 + core.bitop.bsr(lsb); } } else static if (F.realFormat == RealFormat.ieeeSingle) { if (ex) // If exponent is non-zero { if (ex == F.EXPMASK) // infinity or NaN { if ((y.vui[0] & 0x7FFF_FFFF) == 0x7F80_0000) // +- infinity return int.max; else // NaN return FP_ILOGBNAN; } else { return ((ex - F.EXPBIAS) >> 7) - 1; } } else if (!(y.vui[0] & 0x7FFF_FFFF)) { // vf is +-0.0 return FP_ILOGB0; } else { // subnormal uint mantissa = y.vui[0] & F.MANTISSAMASK_INT; return ((ex - F.EXPBIAS) >> 7) - T.mant_dig + 1 + core.bitop.bsr(mantissa); } } else // static if (F.realFormat == RealFormat.ibmExtended) { core.stdc.math.ilogbl(x); } } int ilogb(T)(const T x) @safe pure nothrow @nogc if(isIntegral!T && isUnsigned!T) { if (x == 0) return FP_ILOGB0; else { static if (T.sizeof <= size_t.sizeof) { return core.bitop.bsr(x); } else static if (T.sizeof == ulong.sizeof) { return bsr_ulong(x); } else { assert (false, "integer size too large for the current ilogb implementation"); } } } int ilogb(T)(const T x) @safe pure nothrow @nogc if(isIntegral!T && isSigned!T) { // Note: abs(x) can not be used because the return type is not Unsigned and // the return value would be wrong for x == int.min Unsigned!T absx = x>=0 ? x : -x; return ilogb(absx); } alias FP_ILOGB0 = core.stdc.math.FP_ILOGB0; alias FP_ILOGBNAN = core.stdc.math.FP_ILOGBNAN; @trusted nothrow @nogc unittest { import std.typetuple, std.typecons; foreach (F; TypeTuple!(float, double, real)) { alias T = Tuple!(F, int); T[13] vals = // x, ilogb(x) [ T( F.nan , FP_ILOGBNAN ), T( -F.nan , FP_ILOGBNAN ), T( F.infinity, int.max ), T( -F.infinity, int.max ), T( 0.0 , FP_ILOGB0 ), T( -0.0 , FP_ILOGB0 ), T( 2.0 , 1 ), T( 2.0001 , 1 ), T( 1.9999 , 0 ), T( 0.5 , -1 ), T( 123.123 , 6 ), T( -123.123 , 6 ), T( 0.123 , -4 ), ]; foreach(elem; vals) { assert(ilogb(elem[0]) == elem[1]); } } // min_normal and subnormals assert(ilogb(-float.min_normal) == -126); assert(ilogb(nextUp(-float.min_normal)) == -127); assert(ilogb(nextUp(-float(0.0))) == -149); assert(ilogb(-double.min_normal) == -1022); assert(ilogb(nextUp(-double.min_normal)) == -1023); assert(ilogb(nextUp(-double(0.0))) == -1074); static if (floatTraits!(real).realFormat == RealFormat.ieeeExtended) { assert(ilogb(-real.min_normal) == -16382); assert(ilogb(nextUp(-real.min_normal)) == -16383); assert(ilogb(nextUp(-real(0.0))) == -16445); } else static if (floatTraits!(real).realFormat == RealFormat.ieeeDouble) { assert(ilogb(-real.min_normal) == -1022); assert(ilogb(nextUp(-real.min_normal)) == -1023); assert(ilogb(nextUp(-real(0.0))) == -1074); } // test integer types assert(ilogb(0) == FP_ILOGB0); assert(ilogb(int.max) == 30); assert(ilogb(int.min) == 31); assert(ilogb(uint.max) == 31); assert(ilogb(long.max) == 62); assert(ilogb(long.min) == 63); assert(ilogb(ulong.max) == 63); } /******************************************* * Compute n * 2$(SUPERSCRIPT exp) * References: frexp */ real ldexp(real n, int exp) @nogc @safe pure nothrow { pragma(inline, true); return core.math.ldexp(n, exp); } //FIXME ///ditto double ldexp(double n, int exp) @safe pure nothrow @nogc { return ldexp(cast(real)n, exp); } //FIXME ///ditto float ldexp(float n, int exp) @safe pure nothrow @nogc { return ldexp(cast(real)n, exp); } /// @nogc @safe pure nothrow unittest { import std.typetuple; foreach(T; TypeTuple!(float, double, real)) { T r; r = ldexp(3.0L, 3); assert(r == 24); r = ldexp(cast(T)3.0, cast(int) 3); assert(r == 24); T n = 3.0; int exp = 3; r = ldexp(n, exp); assert(r == 24); } } @safe pure nothrow @nogc unittest { static if (floatTraits!(real).realFormat == RealFormat.ieeeExtended) { assert(ldexp(1.0L, -16384) == 0x1p-16384L); assert(ldexp(1.0L, -16382) == 0x1p-16382L); int x; real n = frexp(0x1p-16384L, x); assert(n==0.5L); assert(x==-16383); assert(ldexp(n, x)==0x1p-16384L); } else static if (floatTraits!(real).realFormat == RealFormat.ieeeDouble) { assert(ldexp(1.0L, -1024) == 0x1p-1024L); assert(ldexp(1.0L, -1022) == 0x1p-1022L); int x; real n = frexp(0x1p-1024L, x); assert(n==0.5L); assert(x==-1023); assert(ldexp(n, x)==0x1p-1024L); } else static assert(false, "Floating point type real not supported"); } /* workaround Issue 14718, float parsing depends on platform strtold typed_allocator.d @safe pure nothrow @nogc unittest { assert(ldexp(1.0, -1024) == 0x1p-1024); assert(ldexp(1.0, -1022) == 0x1p-1022); int x; double n = frexp(0x1p-1024, x); assert(n==0.5); assert(x==-1023); assert(ldexp(n, x)==0x1p-1024); } @safe pure nothrow @nogc unittest { assert(ldexp(1.0f, -128) == 0x1p-128f); assert(ldexp(1.0f, -126) == 0x1p-126f); int x; float n = frexp(0x1p-128f, x); assert(n==0.5f); assert(x==-127); assert(ldexp(n, x)==0x1p-128f); } */ unittest { static real[3][] vals = // value,exp,ldexp [ [ 0, 0, 0], [ 1, 0, 1], [ -1, 0, -1], [ 1, 1, 2], [ 123, 10, 125952], [ real.max, int.max, real.infinity], [ real.max, -int.max, 0], [ real.min_normal, -int.max, 0], ]; int i; for (i = 0; i < vals.length; i++) { real x = vals[i][0]; int exp = cast(int)vals[i][1]; real z = vals[i][2]; real l = ldexp(x, exp); assert(equalsDigit(z, l, 7)); } real function(real, int) pldexp = &ldexp; assert(pldexp != null); } /************************************** * Calculate the natural logarithm of x. * * $(TABLE_SV * $(TR $(TH x) $(TH log(x)) $(TH divide by 0?) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD -$(INFIN)) $(TD yes) $(TD no)) * $(TR $(TD $(LT)0.0) $(TD $(NAN)) $(TD no) $(TD yes)) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) $(TD no) $(TD no)) * ) */ real log(real x) @safe pure nothrow @nogc { version (INLINE_YL2X) return yl2x(x, LN2); else { // Coefficients for log(1 + x) static immutable real[7] P = [ 2.0039553499201281259648E1L, 5.7112963590585538103336E1L, 6.0949667980987787057556E1L, 2.9911919328553073277375E1L, 6.5787325942061044846969E0L, 4.9854102823193375972212E-1L, 4.5270000862445199635215E-5L, ]; static immutable real[7] Q = [ 6.0118660497603843919306E1L, 2.1642788614495947685003E2L, 3.0909872225312059774938E2L, 2.2176239823732856465394E2L, 8.3047565967967209469434E1L, 1.5062909083469192043167E1L, 1.0000000000000000000000E0L, ]; // Coefficients for log(x) static immutable real[4] R = [ -3.5717684488096787370998E1L, 1.0777257190312272158094E1L, -7.1990767473014147232598E-1L, 1.9757429581415468984296E-3L, ]; static immutable real[4] S = [ -4.2861221385716144629696E2L, 1.9361891836232102174846E2L, -2.6201045551331104417768E1L, 1.0000000000000000000000E0L, ]; // C1 + C2 = LN2. enum real C1 = 6.9314575195312500000000E-1L; enum real C2 = 1.4286068203094172321215E-6L; // Special cases. if (isNaN(x)) return x; if (isInfinity(x) && !signbit(x)) return x; if (x == 0.0) return -real.infinity; if (x < 0.0) return real.nan; // Separate mantissa from exponent. // Note, frexp is used so that denormal numbers will be handled properly. real y, z; int exp; x = frexp(x, exp); // Logarithm using log(x) = z + z^^3 P(z) / Q(z), // where z = 2(x - 1)/(x + 1) if((exp > 2) || (exp < -2)) { if(x < SQRT1_2) { // 2(2x - 1)/(2x + 1) exp -= 1; z = x - 0.5; y = 0.5 * z + 0.5; } else { // 2(x - 1)/(x + 1) z = x - 0.5; z -= 0.5; y = 0.5 * x + 0.5; } x = z / y; z = x * x; z = x * (z * poly(z, R) / poly(z, S)); z += exp * C2; z += x; z += exp * C1; return z; } // Logarithm using log(1 + x) = x - .5x^^2 + x^^3 P(x) / Q(x) if (x < SQRT1_2) { // 2x - 1 exp -= 1; x = ldexp(x, 1) - 1.0; } else { x = x - 1.0; } z = x * x; y = x * (z * poly(x, P) / poly(x, Q)); y += exp * C2; z = y - ldexp(z, -1); // Note, the sum of above terms does not exceed x/4, // so it contributes at most about 1/4 lsb to the error. z += x; z += exp * C1; return z; } } /// @safe pure nothrow @nogc unittest { assert(log(E) == 1); } /************************************** * Calculate the base-10 logarithm of x. * * $(TABLE_SV * $(TR $(TH x) $(TH log10(x)) $(TH divide by 0?) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD -$(INFIN)) $(TD yes) $(TD no)) * $(TR $(TD $(LT)0.0) $(TD $(NAN)) $(TD no) $(TD yes)) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) $(TD no) $(TD no)) * ) */ real log10(real x) @safe pure nothrow @nogc { version (INLINE_YL2X) return yl2x(x, LOG2); else { // Coefficients for log(1 + x) static immutable real[7] P = [ 2.0039553499201281259648E1L, 5.7112963590585538103336E1L, 6.0949667980987787057556E1L, 2.9911919328553073277375E1L, 6.5787325942061044846969E0L, 4.9854102823193375972212E-1L, 4.5270000862445199635215E-5L, ]; static immutable real[7] Q = [ 6.0118660497603843919306E1L, 2.1642788614495947685003E2L, 3.0909872225312059774938E2L, 2.2176239823732856465394E2L, 8.3047565967967209469434E1L, 1.5062909083469192043167E1L, 1.0000000000000000000000E0L, ]; // Coefficients for log(x) static immutable real[4] R = [ -3.5717684488096787370998E1L, 1.0777257190312272158094E1L, -7.1990767473014147232598E-1L, 1.9757429581415468984296E-3L, ]; static immutable real[4] S = [ -4.2861221385716144629696E2L, 1.9361891836232102174846E2L, -2.6201045551331104417768E1L, 1.0000000000000000000000E0L, ]; // log10(2) split into two parts. enum real L102A = 0.3125L; enum real L102B = -1.14700043360188047862611052755069732318101185E-2L; // log10(e) split into two parts. enum real L10EA = 0.5L; enum real L10EB = -6.570551809674817234887108108339491770560299E-2L; // Special cases are the same as for log. if (isNaN(x)) return x; if (isInfinity(x) && !signbit(x)) return x; if (x == 0.0) return -real.infinity; if (x < 0.0) return real.nan; // Separate mantissa from exponent. // Note, frexp is used so that denormal numbers will be handled properly. real y, z; int exp; x = frexp(x, exp); // Logarithm using log(x) = z + z^^3 P(z) / Q(z), // where z = 2(x - 1)/(x + 1) if((exp > 2) || (exp < -2)) { if(x < SQRT1_2) { // 2(2x - 1)/(2x + 1) exp -= 1; z = x - 0.5; y = 0.5 * z + 0.5; } else { // 2(x - 1)/(x + 1) z = x - 0.5; z -= 0.5; y = 0.5 * x + 0.5; } x = z / y; z = x * x; y = x * (z * poly(z, R) / poly(z, S)); goto Ldone; } // Logarithm using log(1 + x) = x - .5x^^2 + x^^3 P(x) / Q(x) if (x < SQRT1_2) { // 2x - 1 exp -= 1; x = ldexp(x, 1) - 1.0; } else x = x - 1.0; z = x * x; y = x * (z * poly(x, P) / poly(x, Q)); y = y - ldexp(z, -1); // Multiply log of fraction by log10(e) and base 2 exponent by log10(2). // This sequence of operations is critical and it may be horribly // defeated by some compiler optimizers. Ldone: z = y * L10EB; z += x * L10EB; z += exp * L102B; z += y * L10EA; z += x * L10EA; z += exp * L102A; return z; } } /// @safe pure nothrow @nogc unittest { assert(fabs(log10(1000) - 3) < .000001); } /****************************************** * Calculates the natural logarithm of 1 + x. * * For very small x, log1p(x) will be more accurate than * log(1 + x). * * $(TABLE_SV * $(TR $(TH x) $(TH log1p(x)) $(TH divide by 0?) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no) $(TD no)) * $(TR $(TD -1.0) $(TD -$(INFIN)) $(TD yes) $(TD no)) * $(TR $(TD $(LT)-1.0) $(TD $(NAN)) $(TD no) $(TD yes)) * $(TR $(TD +$(INFIN)) $(TD -$(INFIN)) $(TD no) $(TD no)) * ) */ real log1p(real x) @safe pure nothrow @nogc { version(INLINE_YL2X) { // On x87, yl2xp1 is valid if and only if -0.5 <= lg(x) <= 0.5, // ie if -0.29<=x<=0.414 return (fabs(x) <= 0.25) ? yl2xp1(x, LN2) : yl2x(x+1, LN2); } else { // Special cases. if (isNaN(x) || x == 0.0) return x; if (isInfinity(x) && !signbit(x)) return x; if (x == -1.0) return -real.infinity; if (x < -1.0) return real.nan; return log(x + 1.0); } } /*************************************** * Calculates the base-2 logarithm of x: * $(SUB log, 2)x * * $(TABLE_SV * $(TR $(TH x) $(TH log2(x)) $(TH divide by 0?) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD -$(INFIN)) $(TD yes) $(TD no) ) * $(TR $(TD $(LT)0.0) $(TD $(NAN)) $(TD no) $(TD yes) ) * $(TR $(TD +$(INFIN)) $(TD +$(INFIN)) $(TD no) $(TD no) ) * ) */ real log2(real x) @safe pure nothrow @nogc { version (INLINE_YL2X) return yl2x(x, 1); else { // Coefficients for log(1 + x) static immutable real[7] P = [ 2.0039553499201281259648E1L, 5.7112963590585538103336E1L, 6.0949667980987787057556E1L, 2.9911919328553073277375E1L, 6.5787325942061044846969E0L, 4.9854102823193375972212E-1L, 4.5270000862445199635215E-5L, ]; static immutable real[7] Q = [ 6.0118660497603843919306E1L, 2.1642788614495947685003E2L, 3.0909872225312059774938E2L, 2.2176239823732856465394E2L, 8.3047565967967209469434E1L, 1.5062909083469192043167E1L, 1.0000000000000000000000E0L, ]; // Coefficients for log(x) static immutable real[4] R = [ -3.5717684488096787370998E1L, 1.0777257190312272158094E1L, -7.1990767473014147232598E-1L, 1.9757429581415468984296E-3L, ]; static immutable real[4] S = [ -4.2861221385716144629696E2L, 1.9361891836232102174846E2L, -2.6201045551331104417768E1L, 1.0000000000000000000000E0L, ]; // Special cases are the same as for log. if (isNaN(x)) return x; if (isInfinity(x) && !signbit(x)) return x; if (x == 0.0) return -real.infinity; if (x < 0.0) return real.nan; // Separate mantissa from exponent. // Note, frexp is used so that denormal numbers will be handled properly. real y, z; int exp; x = frexp(x, exp); // Logarithm using log(x) = z + z^^3 P(z) / Q(z), // where z = 2(x - 1)/(x + 1) if((exp > 2) || (exp < -2)) { if(x < SQRT1_2) { // 2(2x - 1)/(2x + 1) exp -= 1; z = x - 0.5; y = 0.5 * z + 0.5; } else { // 2(x - 1)/(x + 1) z = x - 0.5; z -= 0.5; y = 0.5 * x + 0.5; } x = z / y; z = x * x; y = x * (z * poly(z, R) / poly(z, S)); goto Ldone; } // Logarithm using log(1 + x) = x - .5x^^2 + x^^3 P(x) / Q(x) if (x < SQRT1_2) { // 2x - 1 exp -= 1; x = ldexp(x, 1) - 1.0; } else x = x - 1.0; z = x * x; y = x * (z * poly(x, P) / poly(x, Q)); y = y - ldexp(z, -1); // Multiply log of fraction by log10(e) and base 2 exponent by log10(2). // This sequence of operations is critical and it may be horribly // defeated by some compiler optimizers. Ldone: z = y * (LOG2E - 1.0); z += x * (LOG2E - 1.0); z += y; z += x; z += exp; return z; } } /// unittest { // check if values are equal to 19 decimal digits of precision assert(equalsDigit(log2(1024.0L), 10, 19)); } /***************************************** * Extracts the exponent of x as a signed integral value. * * If x is subnormal, it is treated as if it were normalized. * For a positive, finite x: * * 1 $(LT)= $(I x) * FLT_RADIX$(SUPERSCRIPT -logb(x)) $(LT) FLT_RADIX * * $(TABLE_SV * $(TR $(TH x) $(TH logb(x)) $(TH divide by 0?) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD +$(INFIN)) $(TD no)) * $(TR $(TD $(PLUSMN)0.0) $(TD -$(INFIN)) $(TD yes) ) * ) */ real logb(real x) @trusted nothrow @nogc { version (Win64_DMD_InlineAsm) { asm pure nothrow @nogc { naked ; fld real ptr [RCX] ; fxtract ; fstp ST(0) ; ret ; } } else version (CRuntime_Microsoft) { asm pure nothrow @nogc { fld x ; fxtract ; fstp ST(0) ; } } else return core.stdc.math.logbl(x); } /************************************ * Calculates the remainder from the calculation x/y. * Returns: * The value of x - i * y, where i is the number of times that y can * be completely subtracted from x. The result has the same sign as x. * * $(TABLE_SV * $(TR $(TH x) $(TH y) $(TH fmod(x, y)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD not 0.0) $(TD $(PLUSMN)0.0) $(TD no)) * $(TR $(TD $(PLUSMNINF)) $(TD anything) $(TD $(NAN)) $(TD yes)) * $(TR $(TD anything) $(TD $(PLUSMN)0.0) $(TD $(NAN)) $(TD yes)) * $(TR $(TD !=$(PLUSMNINF)) $(TD $(PLUSMNINF)) $(TD x) $(TD no)) * ) */ real fmod(real x, real y) @trusted nothrow @nogc { version (CRuntime_Microsoft) { return x % y; } else return core.stdc.math.fmodl(x, y); } /************************************ * Breaks x into an integral part and a fractional part, each of which has * the same sign as x. The integral part is stored in i. * Returns: * The fractional part of x. * * $(TABLE_SV * $(TR $(TH x) $(TH i (on input)) $(TH modf(x, i)) $(TH i (on return))) * $(TR $(TD $(PLUSMNINF)) $(TD anything) $(TD $(PLUSMN)0.0) $(TD $(PLUSMNINF))) * ) */ real modf(real x, ref real i) @trusted nothrow @nogc { version (CRuntime_Microsoft) { i = trunc(x); return copysign(isInfinity(x) ? 0.0 : x - i, x); } else return core.stdc.math.modfl(x,&i); } /************************************* * Efficiently calculates x * 2$(SUPERSCRIPT n). * * scalbn handles underflow and overflow in * the same fashion as the basic arithmetic operators. * * $(TABLE_SV * $(TR $(TH x) $(TH scalb(x))) * $(TR $(TD $(PLUSMNINF)) $(TD $(PLUSMNINF)) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) ) * ) */ real scalbn(real x, int n) @trusted nothrow @nogc { version(InlineAsm_X86_Any) { // scalbnl is not supported on DMD-Windows, so use asm pure nothrow @nogc. version (Win64) { asm pure nothrow @nogc { naked ; mov 16[RSP],RCX ; fild word ptr 16[RSP] ; fld real ptr [RDX] ; fscale ; fstp ST(1) ; ret ; } } else { asm pure nothrow @nogc { fild n; fld x; fscale; fstp ST(1); } } } else { return core.stdc.math.scalbnl(x, n); } } /// @safe nothrow @nogc unittest { assert(scalbn(-real.infinity, 5) == -real.infinity); } /*************** * Calculates the cube root of x. * * $(TABLE_SV * $(TR $(TH $(I x)) $(TH cbrt(x)) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD $(PLUSMN)0.0) $(TD no) ) * $(TR $(TD $(NAN)) $(TD $(NAN)) $(TD yes) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD $(PLUSMN)$(INFIN)) $(TD no) ) * ) */ real cbrt(real x) @trusted nothrow @nogc { version (CRuntime_Microsoft) { version (INLINE_YL2X) return copysign(exp2(yl2x(fabs(x), 1.0L/3.0L)), x); else return core.stdc.math.cbrtl(x); } else return core.stdc.math.cbrtl(x); } /******************************* * Returns |x| * * $(TABLE_SV * $(TR $(TH x) $(TH fabs(x))) * $(TR $(TD $(PLUSMN)0.0) $(TD +0.0) ) * $(TR $(TD $(PLUSMN)$(INFIN)) $(TD +$(INFIN)) ) * ) */ real fabs(real x) @safe pure nothrow @nogc { pragma(inline, true); return core.math.fabs(x); } //FIXME ///ditto double fabs(double x) @safe pure nothrow @nogc { return fabs(cast(real)x); } //FIXME ///ditto float fabs(float x) @safe pure nothrow @nogc { return fabs(cast(real)x); } unittest { real function(real) pfabs = &fabs; assert(pfabs != null); } /*********************************************************************** * Calculates the length of the * hypotenuse of a right-angled triangle with sides of length x and y. * The hypotenuse is the value of the square root of * the sums of the squares of x and y: * * sqrt($(POWER x, 2) + $(POWER y, 2)) * * Note that hypot(x, y), hypot(y, x) and * hypot(x, -y) are equivalent. * * $(TABLE_SV * $(TR $(TH x) $(TH y) $(TH hypot(x, y)) $(TH invalid?)) * $(TR $(TD x) $(TD $(PLUSMN)0.0) $(TD |x|) $(TD no)) * $(TR $(TD $(PLUSMNINF)) $(TD y) $(TD +$(INFIN)) $(TD no)) * $(TR $(TD $(PLUSMNINF)) $(TD $(NAN)) $(TD +$(INFIN)) $(TD no)) * ) */ real hypot(real x, real y) @safe pure nothrow @nogc { // Scale x and y to avoid underflow and overflow. // If one is huge and the other tiny, return the larger. // If both are huge, avoid overflow by scaling by 1/sqrt(real.max/2). // If both are tiny, avoid underflow by scaling by sqrt(real.min_normal*real.epsilon). enum real SQRTMIN = 0.5 * sqrt(real.min_normal); // This is a power of 2. enum real SQRTMAX = 1.0L / SQRTMIN; // 2^^((max_exp)/2) = nextUp(sqrt(real.max)) static assert(2*(SQRTMAX/2)*(SQRTMAX/2) <= real.max); // Proves that sqrt(real.max) ~~ 0.5/sqrt(real.min_normal) static assert(real.min_normal*real.max > 2 && real.min_normal*real.max <= 4); real u = fabs(x); real v = fabs(y); if (!(u >= v)) // check for NaN as well. { v = u; u = fabs(y); if (u == real.infinity) return u; // hypot(inf, nan) == inf if (v == real.infinity) return v; // hypot(nan, inf) == inf } // Now u >= v, or else one is NaN. if (v >= SQRTMAX*0.5) { // hypot(huge, huge) -- avoid overflow u *= SQRTMIN*0.5; v *= SQRTMIN*0.5; return sqrt(u*u + v*v) * SQRTMAX * 2.0; } if (u <= SQRTMIN) { // hypot (tiny, tiny) -- avoid underflow // This is only necessary to avoid setting the underflow // flag. u *= SQRTMAX / real.epsilon; v *= SQRTMAX / real.epsilon; return sqrt(u*u + v*v) * SQRTMIN * real.epsilon; } if (u * real.epsilon > v) { // hypot (huge, tiny) = huge return u; } // both are in the normal range return sqrt(u*u + v*v); } unittest { static real[3][] vals = // x,y,hypot [ [ 0.0, 0.0, 0.0], [ 0.0, -0.0, 0.0], [ -0.0, -0.0, 0.0], [ 3.0, 4.0, 5.0], [ -300, -400, 500], [0.0, 7.0, 7.0], [9.0, 9*real.epsilon, 9.0], [88/(64*sqrt(real.min_normal)), 105/(64*sqrt(real.min_normal)), 137/(64*sqrt(real.min_normal))], [88/(128*sqrt(real.min_normal)), 105/(128*sqrt(real.min_normal)), 137/(128*sqrt(real.min_normal))], [3*real.min_normal*real.epsilon, 4*real.min_normal*real.epsilon, 5*real.min_normal*real.epsilon], [ real.min_normal, real.min_normal, sqrt(2.0L)*real.min_normal], [ real.max/sqrt(2.0L), real.max/sqrt(2.0L), real.max], [ real.infinity, real.nan, real.infinity], [ real.nan, real.infinity, real.infinity], [ real.nan, real.nan, real.nan], [ real.nan, real.max, real.nan], [ real.max, real.nan, real.nan], ]; for (int i = 0; i < vals.length; i++) { real x = vals[i][0]; real y = vals[i][1]; real z = vals[i][2]; real h = hypot(x, y); assert(isIdentical(z,h) || feqrel(z, h) >= real.mant_dig - 1); } } /************************************** * Returns the value of x rounded upward to the next integer * (toward positive infinity). */ real ceil(real x) @trusted pure nothrow @nogc { version (Win64_DMD_InlineAsm) { asm pure nothrow @nogc { naked ; fld real ptr [RCX] ; fstcw 8[RSP] ; mov AL,9[RSP] ; mov DL,AL ; and AL,0xC3 ; or AL,0x08 ; // round to +infinity mov 9[RSP],AL ; fldcw 8[RSP] ; frndint ; mov 9[RSP],DL ; fldcw 8[RSP] ; ret ; } } else version(CRuntime_Microsoft) { short cw; asm pure nothrow @nogc { fld x ; fstcw cw ; mov AL,byte ptr cw+1 ; mov DL,AL ; and AL,0xC3 ; or AL,0x08 ; // round to +infinity mov byte ptr cw+1,AL ; fldcw cw ; frndint ; mov byte ptr cw+1,DL ; fldcw cw ; } } else { // Special cases. if (isNaN(x) || isInfinity(x)) return x; real y = floorImpl(x); if (y < x) y += 1.0; return y; } } /// @safe pure nothrow @nogc unittest { assert(ceil(+123.456L) == +124); assert(ceil(-123.456L) == -123); assert(ceil(-1.234L) == -1); assert(ceil(-0.123L) == 0); assert(ceil(0.0L) == 0); assert(ceil(+0.123L) == 1); assert(ceil(+1.234L) == 2); assert(ceil(real.infinity) == real.infinity); assert(isNaN(ceil(real.nan))); assert(isNaN(ceil(real.init))); } // ditto double ceil(double x) @trusted pure nothrow @nogc { // Special cases. if (isNaN(x) || isInfinity(x)) return x; double y = floorImpl(x); if (y < x) y += 1.0; return y; } @safe pure nothrow @nogc unittest { assert(ceil(+123.456) == +124); assert(ceil(-123.456) == -123); assert(ceil(-1.234) == -1); assert(ceil(-0.123) == 0); assert(ceil(0.0) == 0); assert(ceil(+0.123) == 1); assert(ceil(+1.234) == 2); assert(ceil(double.infinity) == double.infinity); assert(isNaN(ceil(double.nan))); assert(isNaN(ceil(double.init))); } // ditto float ceil(float x) @trusted pure nothrow @nogc { // Special cases. if (isNaN(x) || isInfinity(x)) return x; float y = floorImpl(x); if (y < x) y += 1.0; return y; } @safe pure nothrow @nogc unittest { assert(ceil(+123.456f) == +124); assert(ceil(-123.456f) == -123); assert(ceil(-1.234f) == -1); assert(ceil(-0.123f) == 0); assert(ceil(0.0f) == 0); assert(ceil(+0.123f) == 1); assert(ceil(+1.234f) == 2); assert(ceil(float.infinity) == float.infinity); assert(isNaN(ceil(float.nan))); assert(isNaN(ceil(float.init))); } /************************************** * Returns the value of x rounded downward to the next integer * (toward negative infinity). */ real floor(real x) @trusted pure nothrow @nogc { version (Win64_DMD_InlineAsm) { asm pure nothrow @nogc { naked ; fld real ptr [RCX] ; fstcw 8[RSP] ; mov AL,9[RSP] ; mov DL,AL ; and AL,0xC3 ; or AL,0x04 ; // round to -infinity mov 9[RSP],AL ; fldcw 8[RSP] ; frndint ; mov 9[RSP],DL ; fldcw 8[RSP] ; ret ; } } else version(CRuntime_Microsoft) { short cw; asm pure nothrow @nogc { fld x ; fstcw cw ; mov AL,byte ptr cw+1 ; mov DL,AL ; and AL,0xC3 ; or AL,0x04 ; // round to -infinity mov byte ptr cw+1,AL ; fldcw cw ; frndint ; mov byte ptr cw+1,DL ; fldcw cw ; } } else { // Special cases. if (isNaN(x) || isInfinity(x) || x == 0.0) return x; return floorImpl(x); } } /// @safe pure nothrow @nogc unittest { assert(floor(+123.456L) == +123); assert(floor(-123.456L) == -124); assert(floor(-1.234L) == -2); assert(floor(-0.123L) == -1); assert(floor(0.0L) == 0); assert(floor(+0.123L) == 0); assert(floor(+1.234L) == 1); assert(floor(real.infinity) == real.infinity); assert(isNaN(floor(real.nan))); assert(isNaN(floor(real.init))); } // ditto double floor(double x) @trusted pure nothrow @nogc { // Special cases. if (isNaN(x) || isInfinity(x) || x == 0.0) return x; return floorImpl(x); } @safe pure nothrow @nogc unittest { assert(floor(+123.456) == +123); assert(floor(-123.456) == -124); assert(floor(-1.234) == -2); assert(floor(-0.123) == -1); assert(floor(0.0) == 0); assert(floor(+0.123) == 0); assert(floor(+1.234) == 1); assert(floor(double.infinity) == double.infinity); assert(isNaN(floor(double.nan))); assert(isNaN(floor(double.init))); } // ditto float floor(float x) @trusted pure nothrow @nogc { // Special cases. if (isNaN(x) || isInfinity(x) || x == 0.0) return x; return floorImpl(x); } @safe pure nothrow @nogc unittest { assert(floor(+123.456f) == +123); assert(floor(-123.456f) == -124); assert(floor(-1.234f) == -2); assert(floor(-0.123f) == -1); assert(floor(0.0f) == 0); assert(floor(+0.123f) == 0); assert(floor(+1.234f) == 1); assert(floor(float.infinity) == float.infinity); assert(isNaN(floor(float.nan))); assert(isNaN(floor(float.init))); } /****************************************** * Rounds x to the nearest integer value, using the current rounding * mode. * * Unlike the rint functions, nearbyint does not raise the * FE_INEXACT exception. */ real nearbyint(real x) @trusted nothrow @nogc { version (CRuntime_Microsoft) { assert(0); // not implemented in C library } else return core.stdc.math.nearbyintl(x); } /********************************** * Rounds x to the nearest integer value, using the current rounding * mode. * If the return value is not equal to x, the FE_INEXACT * exception is raised. * $(B nearbyint) performs * the same operation, but does not set the FE_INEXACT exception. */ real rint(real x) @safe pure nothrow @nogc { pragma(inline, true); return core.math.rint(x); } //FIXME ///ditto double rint(double x) @safe pure nothrow @nogc { return rint(cast(real)x); } //FIXME ///ditto float rint(float x) @safe pure nothrow @nogc { return rint(cast(real)x); } unittest { real function(real) print = &rint; assert(print != null); } /*************************************** * Rounds x to the nearest integer value, using the current rounding * mode. * * This is generally the fastest method to convert a floating-point number * to an integer. Note that the results from this function * depend on the rounding mode, if the fractional part of x is exactly 0.5. * If using the default rounding mode (ties round to even integers) * lrint(4.5) == 4, lrint(5.5)==6. */ long lrint(real x) @trusted pure nothrow @nogc { version(InlineAsm_X86_Any) { version (Win64) { asm pure nothrow @nogc { naked; fld real ptr [RCX]; fistp qword ptr 8[RSP]; mov RAX,8[RSP]; ret; } } else { long n; asm pure nothrow @nogc { fld x; fistp n; } return n; } } else { alias F = floatTraits!(real); static if (F.realFormat == RealFormat.ieeeDouble) { long result; // Rounding limit when casting from real(double) to ulong. enum real OF = 4.50359962737049600000E15L; uint* vi = cast(uint*)(&x); // Find the exponent and sign uint msb = vi[MANTISSA_MSB]; uint lsb = vi[MANTISSA_LSB]; int exp = ((msb >> 20) & 0x7ff) - 0x3ff; int sign = msb >> 31; msb &= 0xfffff; msb |= 0x100000; if (exp < 63) { if (exp >= 52) result = (cast(long) msb << (exp - 20)) | (lsb << (exp - 52)); else { // Adjust x and check result. real j = sign ? -OF : OF; x = (j + x) - j; msb = vi[MANTISSA_MSB]; lsb = vi[MANTISSA_LSB]; exp = ((msb >> 20) & 0x7ff) - 0x3ff; msb &= 0xfffff; msb |= 0x100000; if (exp < 0) result = 0; else if (exp < 20) result = cast(long) msb >> (20 - exp); else if (exp == 20) result = cast(long) msb; else result = (cast(long) msb << (exp - 20)) | (lsb >> (52 - exp)); } } else { // It is left implementation defined when the number is too large. return cast(long) x; } return sign ? -result : result; } else static if (F.realFormat == RealFormat.ieeeExtended) { long result; // Rounding limit when casting from real(80-bit) to ulong. enum real OF = 9.22337203685477580800E18L; ushort* vu = cast(ushort*)(&x); uint* vi = cast(uint*)(&x); // Find the exponent and sign int exp = (vu[F.EXPPOS_SHORT] & 0x7fff) - 0x3fff; int sign = (vu[F.EXPPOS_SHORT] >> 15) & 1; if (exp < 63) { // Adjust x and check result. real j = sign ? -OF : OF; x = (j + x) - j; exp = (vu[F.EXPPOS_SHORT] & 0x7fff) - 0x3fff; version (LittleEndian) { if (exp < 0) result = 0; else if (exp <= 31) result = vi[1] >> (31 - exp); else result = (cast(long) vi[1] << (exp - 31)) | (vi[0] >> (63 - exp)); } else { if (exp < 0) result = 0; else if (exp <= 31) result = vi[1] >> (31 - exp); else result = (cast(long) vi[1] << (exp - 31)) | (vi[2] >> (63 - exp)); } } else { // It is left implementation defined when the number is too large // to fit in a 64bit long. return cast(long) x; } return sign ? -result : result; } else { static assert(false, "Only 64-bit and 80-bit reals are supported by lrint()"); } } } /// @safe pure nothrow @nogc unittest { assert(lrint(4.5) == 4); assert(lrint(5.5) == 6); assert(lrint(-4.5) == -4); assert(lrint(-5.5) == -6); assert(lrint(int.max - 0.5) == 2147483646L); assert(lrint(int.max + 0.5) == 2147483648L); assert(lrint(int.min - 0.5) == -2147483648L); assert(lrint(int.min + 0.5) == -2147483648L); } /******************************************* * Return the value of x rounded to the nearest integer. * If the fractional part of x is exactly 0.5, the return value is rounded to * the even integer. */ real round(real x) @trusted nothrow @nogc { version (CRuntime_Microsoft) { auto old = FloatingPointControl.getControlState(); FloatingPointControl.setControlState((old & ~FloatingPointControl.ROUNDING_MASK) | FloatingPointControl.roundToZero); x = rint((x >= 0) ? x + 0.5 : x - 0.5); FloatingPointControl.setControlState(old); return x; } else return core.stdc.math.roundl(x); } /********************************************** * Return the value of x rounded to the nearest integer. * * If the fractional part of x is exactly 0.5, the return value is rounded * away from zero. */ long lround(real x) @trusted nothrow @nogc { version (Posix) return core.stdc.math.llroundl(x); else assert (0, "lround not implemented"); } version(Posix) { @safe nothrow @nogc unittest { assert(lround(0.49) == 0); assert(lround(0.5) == 1); assert(lround(1.5) == 2); } } /**************************************************** * Returns the integer portion of x, dropping the fractional portion. * * This is also known as "chop" rounding. */ real trunc(real x) @trusted nothrow @nogc { version (Win64_DMD_InlineAsm) { asm pure nothrow @nogc { naked ; fld real ptr [RCX] ; fstcw 8[RSP] ; mov AL,9[RSP] ; mov DL,AL ; and AL,0xC3 ; or AL,0x0C ; // round to 0 mov 9[RSP],AL ; fldcw 8[RSP] ; frndint ; mov 9[RSP],DL ; fldcw 8[RSP] ; ret ; } } else version(CRuntime_Microsoft) { short cw; asm pure nothrow @nogc { fld x ; fstcw cw ; mov AL,byte ptr cw+1 ; mov DL,AL ; and AL,0xC3 ; or AL,0x0C ; // round to 0 mov byte ptr cw+1,AL ; fldcw cw ; frndint ; mov byte ptr cw+1,DL ; fldcw cw ; } } else return core.stdc.math.truncl(x); } /**************************************************** * Calculate the remainder x REM y, following IEC 60559. * * REM is the value of x - y * n, where n is the integer nearest the exact * value of x / y. * If |n - x / y| == 0.5, n is even. * If the result is zero, it has the same sign as x. * Otherwise, the sign of the result is the sign of x / y. * Precision mode has no effect on the remainder functions. * * remquo returns n in the parameter n. * * $(TABLE_SV * $(TR $(TH x) $(TH y) $(TH remainder(x, y)) $(TH n) $(TH invalid?)) * $(TR $(TD $(PLUSMN)0.0) $(TD not 0.0) $(TD $(PLUSMN)0.0) $(TD 0.0) $(TD no)) * $(TR $(TD $(PLUSMNINF)) $(TD anything) $(TD $(NAN)) $(TD ?) $(TD yes)) * $(TR $(TD anything) $(TD $(PLUSMN)0.0) $(TD $(NAN)) $(TD ?) $(TD yes)) * $(TR $(TD != $(PLUSMNINF)) $(TD $(PLUSMNINF)) $(TD x) $(TD ?) $(TD no)) * ) * * Note: remquo not supported on windows */ real remainder(real x, real y) @trusted nothrow @nogc { version (CRuntime_Microsoft) { int n; return remquo(x, y, n); } else return core.stdc.math.remainderl(x, y); } real remquo(real x, real y, out int n) @trusted nothrow @nogc /// ditto { version (Posix) return core.stdc.math.remquol(x, y, &n); else assert (0, "remquo not implemented"); } /** IEEE exception status flags ('sticky bits') These flags indicate that an exceptional floating-point condition has occurred. They indicate that a NaN or an infinity has been generated, that a result is inexact, or that a signalling NaN has been encountered. If floating-point exceptions are enabled (unmasked), a hardware exception will be generated instead of setting these flags. */ struct IeeeFlags { private: // The x87 FPU status register is 16 bits. // The Pentium SSE2 status register is 32 bits. uint flags; version (X86_Any) { // Applies to both x87 status word (16 bits) and SSE2 status word(32 bits). enum : int { INEXACT_MASK = 0x20, UNDERFLOW_MASK = 0x10, OVERFLOW_MASK = 0x08, DIVBYZERO_MASK = 0x04, INVALID_MASK = 0x01 } // Don't bother about subnormals, they are not supported on most CPUs. // SUBNORMAL_MASK = 0x02; } else version (PPC_Any) { // PowerPC FPSCR is a 32-bit register. enum : int { INEXACT_MASK = 0x02000000, DIVBYZERO_MASK = 0x04000000, UNDERFLOW_MASK = 0x08000000, OVERFLOW_MASK = 0x10000000, INVALID_MASK = 0x20000000 // Summary as PowerPC has five types of invalid exceptions. } } else version (ARM) { // ARM FPSCR is a 32bit register enum : int { INEXACT_MASK = 0x10, UNDERFLOW_MASK = 0x08, OVERFLOW_MASK = 0x04, DIVBYZERO_MASK = 0x02, INVALID_MASK = 0x01 } } else version(SPARC) { // SPARC FSR is a 32bit register //(64 bits for Sparc 7 & 8, but high 32 bits are uninteresting). enum : int { INEXACT_MASK = 0x020, UNDERFLOW_MASK = 0x080, OVERFLOW_MASK = 0x100, DIVBYZERO_MASK = 0x040, INVALID_MASK = 0x200 } } else static assert(0, "Not implemented"); private: static uint getIeeeFlags() { version(D_InlineAsm_X86) { asm pure nothrow @nogc { fstsw AX; // NOTE: If compiler supports SSE2, need to OR the result with // the SSE2 status register. // Clear all irrelevant bits and EAX, 0x03D; } } else version(D_InlineAsm_X86_64) { asm pure nothrow @nogc { fstsw AX; // NOTE: If compiler supports SSE2, need to OR the result with // the SSE2 status register. // Clear all irrelevant bits and RAX, 0x03D; } } else version (SPARC) { /* int retval; asm pure nothrow @nogc { st %fsr, retval; } return retval; */ assert(0, "Not yet supported"); } else version (ARM) { assert(false, "Not yet supported."); } else assert(0, "Not yet supported"); } static void resetIeeeFlags() { version(InlineAsm_X86_Any) { asm pure nothrow @nogc { fnclex; } } else { /* SPARC: int tmpval; asm pure nothrow @nogc { st %fsr, tmpval; } tmpval &=0xFFFF_FC00; asm pure nothrow @nogc { ld tmpval, %fsr; } */ assert(0, "Not yet supported"); } } public: version (IeeeFlagsSupport) { /// The result cannot be represented exactly, so rounding occurred. /// (example: x = sin(0.1); ) @property bool inexact() { return (flags & INEXACT_MASK) != 0; } /// A zero was generated by underflow (example: x = real.min*real.epsilon/2;) @property bool underflow() { return (flags & UNDERFLOW_MASK) != 0; } /// An infinity was generated by overflow (example: x = real.max*2;) @property bool overflow() { return (flags & OVERFLOW_MASK) != 0; } /// An infinity was generated by division by zero (example: x = 3/0.0; ) @property bool divByZero() { return (flags & DIVBYZERO_MASK) != 0; } /// A machine NaN was generated. (example: x = real.infinity * 0.0; ) @property bool invalid() { return (flags & INVALID_MASK) != 0; } } } /// unittest { static void func() { int a = 10 * 10; } real a=3.5; // Set all the flags to zero resetIeeeFlags(); assert(!ieeeFlags.divByZero); // Perform a division by zero. a/=0.0L; assert(a==real.infinity); assert(ieeeFlags.divByZero); // Create a NaN a*=0.0L; assert(ieeeFlags.invalid); assert(isNaN(a)); // Check that calling func() has no effect on the // status flags. IeeeFlags f = ieeeFlags; func(); assert(ieeeFlags == f); } version(X86_Any) { version = IeeeFlagsSupport; } else version(ARM) { version = IeeeFlagsSupport; } /// Set all of the floating-point status flags to false. void resetIeeeFlags() { IeeeFlags.resetIeeeFlags(); } /// Return a snapshot of the current state of the floating-point status flags. @property IeeeFlags ieeeFlags() { return IeeeFlags(IeeeFlags.getIeeeFlags()); } /** Control the Floating point hardware Change the IEEE754 floating-point rounding mode and the floating-point hardware exceptions. By default, the rounding mode is roundToNearest and all hardware exceptions are disabled. For most applications, debugging is easier if the $(I division by zero), $(I overflow), and $(I invalid operation) exceptions are enabled. These three are combined into a $(I severeExceptions) value for convenience. Note in particular that if $(I invalidException) is enabled, a hardware trap will be generated whenever an uninitialized floating-point variable is used. All changes are temporary. The previous state is restored at the end of the scope. Example: ---- { FloatingPointControl fpctrl; // Enable hardware exceptions for division by zero, overflow to infinity, // invalid operations, and uninitialized floating-point variables. fpctrl.enableExceptions(FloatingPointControl.severeExceptions); // This will generate a hardware exception, if x is a // default-initialized floating point variable: real x; // Add `= 0` or even `= real.nan` to not throw the exception. real y = x * 3.0; // The exception is only thrown for default-uninitialized NaN-s. // NaN-s with other payload are valid: real z = y * real.nan; // ok // Changing the rounding mode: fpctrl.rounding = FloatingPointControl.roundUp; assert(rint(1.1) == 2); // The set hardware exceptions will be disabled when leaving this scope. // The original rounding mode will also be restored. } // Ensure previous values are returned: assert(!FloatingPointControl.enabledExceptions); assert(FloatingPointControl.rounding == FloatingPointControl.roundToNearest); assert(rint(1.1) == 1); ---- */ struct FloatingPointControl { alias RoundingMode = uint; /** IEEE rounding modes. * The default mode is roundToNearest. */ version(ARM) { enum : RoundingMode { roundToNearest = 0x000000, roundDown = 0x800000, roundUp = 0x400000, roundToZero = 0xC00000 } } else version(PPC_Any) { enum : RoundingMode { roundToNearest = 0x00000000, roundDown = 0x00000003, roundUp = 0x00000002, roundToZero = 0x00000001 } } else { enum : RoundingMode { roundToNearest = 0x0000, roundDown = 0x0400, roundUp = 0x0800, roundToZero = 0x0C00 } } /** IEEE hardware exceptions. * By default, all exceptions are masked (disabled). */ version(ARM) { enum : uint { subnormalException = 0x8000, inexactException = 0x1000, underflowException = 0x0800, overflowException = 0x0400, divByZeroException = 0x0200, invalidException = 0x0100, /// Severe = The overflow, division by zero, and invalid exceptions. severeExceptions = overflowException | divByZeroException | invalidException, allExceptions = severeExceptions | underflowException | inexactException | subnormalException, } } else version(PPC_Any) { enum : uint { inexactException = 0x0008, divByZeroException = 0x0010, underflowException = 0x0020, overflowException = 0x0040, invalidException = 0x0080, /// Severe = The overflow, division by zero, and invalid exceptions. severeExceptions = overflowException | divByZeroException | invalidException, allExceptions = severeExceptions | underflowException | inexactException, } } else { enum : uint { inexactException = 0x20, underflowException = 0x10, overflowException = 0x08, divByZeroException = 0x04, subnormalException = 0x02, invalidException = 0x01, /// Severe = The overflow, division by zero, and invalid exceptions. severeExceptions = overflowException | divByZeroException | invalidException, allExceptions = severeExceptions | underflowException | inexactException | subnormalException, } } private: version(ARM) { enum uint EXCEPTION_MASK = 0x9F00; enum uint ROUNDING_MASK = 0xC00000; } else version(PPC_Any) { enum uint EXCEPTION_MASK = 0x00F8; enum uint ROUNDING_MASK = 0x0003; } else version(X86) { enum ushort EXCEPTION_MASK = 0x3F; enum ushort ROUNDING_MASK = 0xC00; } else version(X86_64) { enum ushort EXCEPTION_MASK = 0x3F; enum ushort ROUNDING_MASK = 0xC00; } else static assert(false, "Architecture not supported"); public: /// Returns true if the current FPU supports exception trapping @property static bool hasExceptionTraps() @safe nothrow @nogc { version(X86_Any) return true; else version(PPC_Any) return true; else version(ARM) { auto oldState = getControlState(); // If exceptions are not supported, we set the bit but read it back as zero // https://sourceware.org/ml/libc-ports/2012-06/msg00091.html setControlState(oldState | (divByZeroException & EXCEPTION_MASK)); bool result = (getControlState() & EXCEPTION_MASK) != 0; setControlState(oldState); return result; } else static assert(false, "Not implemented for this architecture"); } /// Enable (unmask) specific hardware exceptions. Multiple exceptions may be ORed together. void enableExceptions(uint exceptions) @nogc { assert(hasExceptionTraps); initialize(); version(X86_Any) setControlState(getControlState() & ~(exceptions & EXCEPTION_MASK)); else setControlState(getControlState() | (exceptions & EXCEPTION_MASK)); } /// Disable (mask) specific hardware exceptions. Multiple exceptions may be ORed together. void disableExceptions(uint exceptions) @nogc { assert(hasExceptionTraps); initialize(); version(X86_Any) setControlState(getControlState() | (exceptions & EXCEPTION_MASK)); else setControlState(getControlState() & ~(exceptions & EXCEPTION_MASK)); } //// Change the floating-point hardware rounding mode @property void rounding(RoundingMode newMode) @nogc { initialize(); setControlState((getControlState() & ~ROUNDING_MASK) | (newMode & ROUNDING_MASK)); } /// Return the exceptions which are currently enabled (unmasked) @property static uint enabledExceptions() @nogc { assert(hasExceptionTraps); version(X86_Any) return (getControlState() & EXCEPTION_MASK) ^ EXCEPTION_MASK; else return (getControlState() & EXCEPTION_MASK); } /// Return the currently active rounding mode @property static RoundingMode rounding() @nogc { return cast(RoundingMode)(getControlState() & ROUNDING_MASK); } /// Clear all pending exceptions, then restore the original exception state and rounding mode. ~this() @nogc { clearExceptions(); if (initialized) setControlState(savedState); } private: ControlState savedState; bool initialized = false; version(ARM) { alias ControlState = uint; } else version(PPC_Any) { alias ControlState = uint; } else { alias ControlState = ushort; } void initialize() @nogc { // BUG: This works around the absence of this() constructors. if (initialized) return; clearExceptions(); savedState = getControlState(); initialized = true; } // Clear all pending exceptions static void clearExceptions() @nogc { version (InlineAsm_X86_Any) { asm nothrow @nogc { fclex; } } else assert(0, "Not yet supported"); } // Read from the control register static ControlState getControlState() @trusted nothrow @nogc { version (D_InlineAsm_X86) { short cont; asm nothrow @nogc { xor EAX, EAX; fstcw cont; } return cont; } else version (D_InlineAsm_X86_64) { short cont; asm nothrow @nogc { xor RAX, RAX; fstcw cont; } return cont; } else assert(0, "Not yet supported"); } // Set the control register static void setControlState(ControlState newState) @trusted nothrow @nogc { version (InlineAsm_X86_Any) { version (Win64) { asm nothrow @nogc { naked; mov 8[RSP],RCX; fclex; fldcw 8[RSP]; ret; } } else { asm nothrow @nogc { fclex; fldcw newState; } } } else assert(0, "Not yet supported"); } } unittest { void ensureDefaults() { assert(FloatingPointControl.rounding == FloatingPointControl.roundToNearest); if(FloatingPointControl.hasExceptionTraps) assert(FloatingPointControl.enabledExceptions == 0); } { FloatingPointControl ctrl; } ensureDefaults(); { FloatingPointControl ctrl; ctrl.rounding = FloatingPointControl.roundDown; assert(FloatingPointControl.rounding == FloatingPointControl.roundDown); } ensureDefaults(); if(FloatingPointControl.hasExceptionTraps) { FloatingPointControl ctrl; ctrl.enableExceptions(FloatingPointControl.divByZeroException | FloatingPointControl.overflowException); assert(ctrl.enabledExceptions == (FloatingPointControl.divByZeroException | FloatingPointControl.overflowException)); ctrl.rounding = FloatingPointControl.roundUp; assert(FloatingPointControl.rounding == FloatingPointControl.roundUp); } ensureDefaults(); } /********************************* * Determines if $(D_PARAM x) is NaN. * params: * x = a floating point number. * returns: * $(D true) if $(D_PARAM x) is Nan. */ bool isNaN(X)(X x) @nogc @trusted pure nothrow if (isFloatingPoint!(X)) { alias F = floatTraits!(X); static if (F.realFormat == RealFormat.ieeeSingle) { const uint p = *cast(uint *)&x; return ((p & 0x7F80_0000) == 0x7F80_0000) && p & 0x007F_FFFF; // not infinity } else static if (F.realFormat == RealFormat.ieeeDouble) { const ulong p = *cast(ulong *)&x; return ((p & 0x7FF0_0000_0000_0000) == 0x7FF0_0000_0000_0000) && p & 0x000F_FFFF_FFFF_FFFF; // not infinity } else static if (F.realFormat == RealFormat.ieeeExtended) { const ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; const ulong ps = *cast(ulong *)&x; return e == F.EXPMASK && ps & 0x7FFF_FFFF_FFFF_FFFF; // not infinity } else static if (F.realFormat == RealFormat.ieeeQuadruple) { const ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; const ulong psLsb = (cast(ulong *)&x)[MANTISSA_LSB]; const ulong psMsb = (cast(ulong *)&x)[MANTISSA_MSB]; return e == F.EXPMASK && (psLsb | (psMsb& 0x0000_FFFF_FFFF_FFFF)) != 0; } else { return x != x; } } /// @safe pure nothrow @nogc unittest { assert( isNaN(float.init)); assert( isNaN(-double.init)); assert( isNaN(real.nan)); assert( isNaN(-real.nan)); assert(!isNaN(cast(float)53.6)); assert(!isNaN(cast(real)-53.6)); } deprecated("isNaN is not defined for integer types") bool isNaN(X)(X x) @nogc @trusted pure nothrow if (isIntegral!(X)) { return isNaN(cast(float)x); } @safe pure nothrow @nogc unittest { import std.typetuple; foreach(T; TypeTuple!(float, double, real)) { // CTFE-able tests assert(isNaN(T.init)); assert(isNaN(-T.init)); assert(isNaN(T.nan)); assert(isNaN(-T.nan)); assert(!isNaN(T.infinity)); assert(!isNaN(-T.infinity)); assert(!isNaN(cast(T)53.6)); assert(!isNaN(cast(T)-53.6)); // Runtime tests shared T f; f = T.init; assert(isNaN(f)); assert(isNaN(-f)); f = T.nan; assert(isNaN(f)); assert(isNaN(-f)); f = T.infinity; assert(!isNaN(f)); assert(!isNaN(-f)); f = cast(T)53.6; assert(!isNaN(f)); assert(!isNaN(-f)); } } /********************************* * Determines if $(D_PARAM x) is finite. * params: * x = a floating point number. * returns: * $(D true) if $(D_PARAM x) is finite. */ bool isFinite(X)(X x) @trusted pure nothrow @nogc { alias F = floatTraits!(X); ushort* pe = cast(ushort *)&x; return (pe[F.EXPPOS_SHORT] & F.EXPMASK) != F.EXPMASK; } /// @safe pure nothrow @nogc unittest { assert( isFinite(1.23f)); assert( isFinite(float.max)); assert( isFinite(float.min_normal)); assert(!isFinite(float.nan)); assert(!isFinite(float.infinity)); } @safe pure nothrow @nogc unittest { assert(isFinite(1.23)); assert(isFinite(double.max)); assert(isFinite(double.min_normal)); assert(!isFinite(double.nan)); assert(!isFinite(double.infinity)); assert(isFinite(1.23L)); assert(isFinite(real.max)); assert(isFinite(real.min_normal)); assert(!isFinite(real.nan)); assert(!isFinite(real.infinity)); } deprecated("isFinite is not defined for integer types") int isFinite(X)(X x) @trusted pure nothrow @nogc if (isIntegral!(X)) { return isFinite(cast(float)x); } /********************************* * Determines if $(D_PARAM x) is normalized. * * A normalized number must not be zero, subnormal, infinite nor $(NAN). * * params: * x = a floating point number. * returns: * $(D true) if $(D_PARAM x) is normalized. */ /* Need one for each format because subnormal floats might * be converted to normal reals. */ bool isNormal(X)(X x) @trusted pure nothrow @nogc { alias F = floatTraits!(X); static if (F.realFormat == RealFormat.ibmExtended) { // doubledouble is normal if the least significant part is normal. return isNormal((cast(double*)&x)[MANTISSA_LSB]); } else { ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; return (e != F.EXPMASK && e != 0); } } /// @safe pure nothrow @nogc unittest { float f = 3; double d = 500; real e = 10e+48; assert(isNormal(f)); assert(isNormal(d)); assert(isNormal(e)); f = d = e = 0; assert(!isNormal(f)); assert(!isNormal(d)); assert(!isNormal(e)); assert(!isNormal(real.infinity)); assert(isNormal(-real.max)); assert(!isNormal(real.min_normal/4)); } /********************************* * Determines if $(D_PARAM x) is subnormal. * * Subnormals (also known as "denormal number"), have a 0 exponent * and a 0 most significant mantissa bit. * * params: * x = a floating point number. * returns: * $(D true) if $(D_PARAM x) is a denormal number. */ bool isSubnormal(X)(X x) @trusted pure nothrow @nogc { /* Need one for each format because subnormal floats might be converted to normal reals. */ alias F = floatTraits!(X); static if (F.realFormat == RealFormat.ieeeSingle) { uint *p = cast(uint *)&x; return (*p & F.EXPMASK_INT) == 0 && *p & F.MANTISSAMASK_INT; } else static if (F.realFormat == RealFormat.ieeeDouble) { uint *p = cast(uint *)&x; return (p[MANTISSA_MSB] & F.EXPMASK_INT) == 0 && (p[MANTISSA_LSB] || p[MANTISSA_MSB] & F.MANTISSAMASK_INT); } else static if (F.realFormat == RealFormat.ieeeQuadruple) { ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; long* ps = cast(long *)&x; return (e == 0 && (((ps[MANTISSA_LSB]|(ps[MANTISSA_MSB]& 0x0000_FFFF_FFFF_FFFF))) != 0)); } else static if (F.realFormat == RealFormat.ieeeExtended) { ushort* pe = cast(ushort *)&x; long* ps = cast(long *)&x; return (pe[F.EXPPOS_SHORT] & F.EXPMASK) == 0 && *ps > 0; } else static if (F.realFormat == RealFormat.ibmExtended) { return isSubnormal((cast(double*)&x)[MANTISSA_MSB]); } else { static assert(false, "Not implemented for this architecture"); } } /// @safe pure nothrow @nogc unittest { import std.typetuple; foreach (T; TypeTuple!(float, double, real)) { T f; for (f = 1.0; !isSubnormal(f); f /= 2) assert(f != 0); } } deprecated("isSubnormal is not defined for integer types") int isSubnormal(X)(X x) @trusted pure nothrow @nogc if (isIntegral!X) { return isSubnormal(cast(double)x); } /********************************* * Determines if $(D_PARAM x) is $(PLUSMN)$(INFIN). * params: * x = a floating point number. * returns: * $(D true) if $(D_PARAM x) is $(PLUSMN)$(INFIN). */ bool isInfinity(X)(X x) @nogc @trusted pure nothrow if (isFloatingPoint!(X)) { alias F = floatTraits!(X); static if (F.realFormat == RealFormat.ieeeSingle) { return ((*cast(uint *)&x) & 0x7FFF_FFFF) == 0x7F80_0000; } else static if (F.realFormat == RealFormat.ieeeDouble) { return ((*cast(ulong *)&x) & 0x7FFF_FFFF_FFFF_FFFF) == 0x7FF0_0000_0000_0000; } else static if (F.realFormat == RealFormat.ieeeExtended) { const ushort e = cast(ushort)(F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]); const ulong ps = *cast(ulong *)&x; // On Motorola 68K, infinity can have hidden bit = 1 or 0. On x86, it is always 1. return e == F.EXPMASK && (ps & 0x7FFF_FFFF_FFFF_FFFF) == 0; } else static if (F.realFormat == RealFormat.ibmExtended) { return (((cast(ulong *)&x)[MANTISSA_MSB]) & 0x7FFF_FFFF_FFFF_FFFF) == 0x7FF8_0000_0000_0000; } else static if (F.realFormat == RealFormat.ieeeQuadruple) { const long psLsb = (cast(long *)&x)[MANTISSA_LSB]; const long psMsb = (cast(long *)&x)[MANTISSA_MSB]; return (psLsb == 0) && (psMsb & 0x7FFF_FFFF_FFFF_FFFF) == 0x7FFF_0000_0000_0000; } else { return (x - 1) == x; } } /// @nogc @safe pure nothrow unittest { assert(!isInfinity(float.init)); assert(!isInfinity(-float.init)); assert(!isInfinity(float.nan)); assert(!isInfinity(-float.nan)); assert(isInfinity(float.infinity)); assert(isInfinity(-float.infinity)); assert(isInfinity(-1.0f / 0.0f)); } @safe pure nothrow @nogc unittest { // CTFE-able tests assert(!isInfinity(double.init)); assert(!isInfinity(-double.init)); assert(!isInfinity(double.nan)); assert(!isInfinity(-double.nan)); assert(isInfinity(double.infinity)); assert(isInfinity(-double.infinity)); assert(isInfinity(-1.0 / 0.0)); assert(!isInfinity(real.init)); assert(!isInfinity(-real.init)); assert(!isInfinity(real.nan)); assert(!isInfinity(-real.nan)); assert(isInfinity(real.infinity)); assert(isInfinity(-real.infinity)); assert(isInfinity(-1.0L / 0.0L)); // Runtime tests shared float f; f = float.init; assert(!isInfinity(f)); assert(!isInfinity(-f)); f = float.nan; assert(!isInfinity(f)); assert(!isInfinity(-f)); f = float.infinity; assert(isInfinity(f)); assert(isInfinity(-f)); f = (-1.0f / 0.0f); assert(isInfinity(f)); shared double d; d = double.init; assert(!isInfinity(d)); assert(!isInfinity(-d)); d = double.nan; assert(!isInfinity(d)); assert(!isInfinity(-d)); d = double.infinity; assert(isInfinity(d)); assert(isInfinity(-d)); d = (-1.0 / 0.0); assert(isInfinity(d)); shared real e; e = real.init; assert(!isInfinity(e)); assert(!isInfinity(-e)); e = real.nan; assert(!isInfinity(e)); assert(!isInfinity(-e)); e = real.infinity; assert(isInfinity(e)); assert(isInfinity(-e)); e = (-1.0L / 0.0L); assert(isInfinity(e)); } /********************************* * Is the binary representation of x identical to y? * * Same as ==, except that positive and negative zero are not identical, * and two $(NAN)s are identical if they have the same 'payload'. */ bool isIdentical(real x, real y) @trusted pure nothrow @nogc { // We're doing a bitwise comparison so the endianness is irrelevant. long* pxs = cast(long *)&x; long* pys = cast(long *)&y; alias F = floatTraits!(real); static if (F.realFormat == RealFormat.ieeeDouble) { return pxs[0] == pys[0]; } else static if (F.realFormat == RealFormat.ieeeQuadruple || F.realFormat == RealFormat.ibmExtended) { return pxs[0] == pys[0] && pxs[1] == pys[1]; } else { ushort* pxe = cast(ushort *)&x; ushort* pye = cast(ushort *)&y; return pxe[4] == pye[4] && pxs[0] == pys[0]; } } /********************************* * Return 1 if sign bit of e is set, 0 if not. */ int signbit(X)(X x) @nogc @trusted pure nothrow { alias F = floatTraits!(X); return ((cast(ubyte *)&x)[F.SIGNPOS_BYTE] & 0x80) != 0; } /// @nogc @safe pure nothrow unittest { debug (math) printf("math.signbit.unittest\n"); assert(!signbit(float.nan)); assert(signbit(-float.nan)); assert(!signbit(168.1234f)); assert(signbit(-168.1234f)); assert(!signbit(0.0f)); assert(signbit(-0.0f)); assert(signbit(-float.max)); assert(!signbit(float.max)); assert(!signbit(double.nan)); assert(signbit(-double.nan)); assert(!signbit(168.1234)); assert(signbit(-168.1234)); assert(!signbit(0.0)); assert(signbit(-0.0)); assert(signbit(-double.max)); assert(!signbit(double.max)); assert(!signbit(real.nan)); assert(signbit(-real.nan)); assert(!signbit(168.1234L)); assert(signbit(-168.1234L)); assert(!signbit(0.0L)); assert(signbit(-0.0L)); assert(signbit(-real.max)); assert(!signbit(real.max)); } deprecated("signbit is not defined for integer types") int signbit(X)(X x) @nogc @trusted pure nothrow if (isIntegral!X) { return signbit(cast(float)x); } /********************************* * Return a value composed of to with from's sign bit. */ R copysign(R, X)(R to, X from) @trusted pure nothrow @nogc if (isFloatingPoint!(R) && isFloatingPoint!(X)) { ubyte* pto = cast(ubyte *)&to; const ubyte* pfrom = cast(ubyte *)&from; alias T = floatTraits!(R); alias F = floatTraits!(X); pto[T.SIGNPOS_BYTE] &= 0x7F; pto[T.SIGNPOS_BYTE] |= pfrom[F.SIGNPOS_BYTE] & 0x80; return to; } // ditto R copysign(R, X)(X to, R from) @trusted pure nothrow @nogc if (isIntegral!(X) && isFloatingPoint!(R)) { return copysign(cast(R)to, from); } @safe pure nothrow @nogc unittest { import std.typetuple; foreach (X; TypeTuple!(float, double, real, int, long)) { foreach (Y; TypeTuple!(float, double, real)) (){ // avoid slow optimizations for large functions @@@BUG@@@ 2396 X x = 21; Y y = 23.8; Y e = void; e = copysign(x, y); assert(e == 21.0); e = copysign(-x, y); assert(e == 21.0); e = copysign(x, -y); assert(e == -21.0); e = copysign(-x, -y); assert(e == -21.0); static if (isFloatingPoint!X) { e = copysign(X.nan, y); assert(isNaN(e) && !signbit(e)); e = copysign(X.nan, -y); assert(isNaN(e) && signbit(e)); } }(); } } deprecated("copysign : from can't be of integer type") R copysign(R, X)(X to, R from) @trusted pure nothrow @nogc if (isIntegral!R) { return copysign(to, cast(float)from); } /********************************* Returns $(D -1) if $(D x < 0), $(D x) if $(D x == 0), $(D 1) if $(D x > 0), and $(NAN) if x==$(NAN). */ F sgn(F)(F x) @safe pure nothrow @nogc { // @@@TODO@@@: make this faster return x > 0 ? 1 : x < 0 ? -1 : x; } /// @safe pure nothrow @nogc unittest { assert(sgn(168.1234) == 1); assert(sgn(-168.1234) == -1); assert(sgn(0.0) == 0); assert(sgn(-0.0) == 0); } // Functions for NaN payloads /* * A 'payload' can be stored in the significand of a $(NAN). One bit is required * to distinguish between a quiet and a signalling $(NAN). This leaves 22 bits * of payload for a float; 51 bits for a double; 62 bits for an 80-bit real; * and 111 bits for a 128-bit quad. */ /** * Create a quiet $(NAN), storing an integer inside the payload. * * For floats, the largest possible payload is 0x3F_FFFF. * For doubles, it is 0x3_FFFF_FFFF_FFFF. * For 80-bit or 128-bit reals, it is 0x3FFF_FFFF_FFFF_FFFF. */ real NaN(ulong payload) @trusted pure nothrow @nogc { alias F = floatTraits!(real); static if (F.realFormat == RealFormat.ieeeExtended) { // real80 (in x86 real format, the implied bit is actually // not implied but a real bit which is stored in the real) ulong v = 3; // implied bit = 1, quiet bit = 1 } else { ulong v = 1; // no implied bit. quiet bit = 1 } ulong a = payload; // 22 Float bits ulong w = a & 0x3F_FFFF; a -= w; v <<=22; v |= w; a >>=22; // 29 Double bits v <<=29; w = a & 0xFFF_FFFF; v |= w; a -= w; a >>=29; static if (F.realFormat == RealFormat.ieeeDouble) { v |= 0x7FF0_0000_0000_0000; real x; * cast(ulong *)(&x) = v; return x; } else { v <<=11; a &= 0x7FF; v |= a; real x = real.nan; // Extended real bits static if (F.realFormat == RealFormat.ieeeQuadruple) { v <<= 1; // there's no implicit bit version(LittleEndian) { *cast(ulong*)(6+cast(ubyte*)(&x)) = v; } else { *cast(ulong*)(2+cast(ubyte*)(&x)) = v; } } else { *cast(ulong *)(&x) = v; } return x; } } @safe pure nothrow @nogc unittest { static if (floatTraits!(real).realFormat == RealFormat.ieeeDouble) { auto x = NaN(1); auto xl = *cast(ulong*)&x; assert(xl & 0x8_0000_0000_0000UL); //non-signaling bit, bit 52 assert((xl & 0x7FF0_0000_0000_0000UL) == 0x7FF0_0000_0000_0000UL); //all exp bits set } } /** * Extract an integral payload from a $(NAN). * * Returns: * the integer payload as a ulong. * * For floats, the largest possible payload is 0x3F_FFFF. * For doubles, it is 0x3_FFFF_FFFF_FFFF. * For 80-bit or 128-bit reals, it is 0x3FFF_FFFF_FFFF_FFFF. */ ulong getNaNPayload(real x) @trusted pure nothrow @nogc { // assert(isNaN(x)); alias F = floatTraits!(real); static if (F.realFormat == RealFormat.ieeeDouble) { ulong m = *cast(ulong *)(&x); // Make it look like an 80-bit significand. // Skip exponent, and quiet bit m &= 0x0007_FFFF_FFFF_FFFF; m <<= 10; } else static if (F.realFormat == RealFormat.ieeeQuadruple) { version(LittleEndian) { ulong m = *cast(ulong*)(6+cast(ubyte*)(&x)); } else { ulong m = *cast(ulong*)(2+cast(ubyte*)(&x)); } m >>= 1; // there's no implicit bit } else { ulong m = *cast(ulong *)(&x); } // ignore implicit bit and quiet bit ulong f = m & 0x3FFF_FF00_0000_0000L; ulong w = f >>> 40; w |= (m & 0x00FF_FFFF_F800L) << (22 - 11); w |= (m & 0x7FF) << 51; return w; } debug(UnitTest) { @safe pure nothrow @nogc unittest { real nan4 = NaN(0x789_ABCD_EF12_3456); static if (floatTraits!(real).realFormat == RealFormat.ieeeExtended || floatTraits!(real).realFormat == RealFormat.ieeeQuadruple) { assert (getNaNPayload(nan4) == 0x789_ABCD_EF12_3456); } else { assert (getNaNPayload(nan4) == 0x1_ABCD_EF12_3456); } double nan5 = nan4; assert (getNaNPayload(nan5) == 0x1_ABCD_EF12_3456); float nan6 = nan4; assert (getNaNPayload(nan6) == 0x12_3456); nan4 = NaN(0xFABCD); assert (getNaNPayload(nan4) == 0xFABCD); nan6 = nan4; assert (getNaNPayload(nan6) == 0xFABCD); nan5 = NaN(0x100_0000_0000_3456); assert(getNaNPayload(nan5) == 0x0000_0000_3456); } } /** * Calculate the next largest floating point value after x. * * Return the least number greater than x that is representable as a real; * thus, it gives the next point on the IEEE number line. * * $(TABLE_SV * $(SVH x, nextUp(x) ) * $(SV -$(INFIN), -real.max ) * $(SV $(PLUSMN)0.0, real.min_normal*real.epsilon ) * $(SV real.max, $(INFIN) ) * $(SV $(INFIN), $(INFIN) ) * $(SV $(NAN), $(NAN) ) * ) */ real nextUp(real x) @trusted pure nothrow @nogc { alias F = floatTraits!(real); static if (F.realFormat == RealFormat.ieeeDouble) { return nextUp(cast(double)x); } else static if (F.realFormat == RealFormat.ieeeQuadruple) { ushort e = F.EXPMASK & (cast(ushort *)&x)[F.EXPPOS_SHORT]; if (e == F.EXPMASK) { // NaN or Infinity if (x == -real.infinity) return -real.max; return x; // +Inf and NaN are unchanged. } ulong* ps = cast(ulong *)&e; if (ps[MANTISSA_LSB] & 0x8000_0000_0000_0000) { // Negative number if (ps[MANTISSA_LSB] == 0 && ps[MANTISSA_MSB] == 0x8000_0000_0000_0000) { // it was negative zero, change to smallest subnormal ps[MANTISSA_LSB] = 0x0000_0000_0000_0001; ps[MANTISSA_MSB] = 0; return x; } --*ps; if (ps[MANTISSA_LSB] == 0) --ps[MANTISSA_MSB]; } else { // Positive number ++ps[MANTISSA_LSB]; if (ps[MANTISSA_LSB] == 0) ++ps[MANTISSA_MSB]; } return x; } else static if (F.realFormat == RealFormat.ieeeExtended) { // For 80-bit reals, the "implied bit" is a nuisance... ushort *pe = cast(ushort *)&x; ulong *ps = cast(ulong *)&x; if ((pe[F.EXPPOS_SHORT] & F.EXPMASK) == F.EXPMASK) { // First, deal with NANs and infinity if (x == -real.infinity) return -real.max; return x; // +Inf and NaN are unchanged. } if (pe[F.EXPPOS_SHORT] & 0x8000) { // Negative number -- need to decrease the significand --*ps; // Need to mask with 0x7FFF... so subnormals are treated correctly. if ((*ps & 0x7FFF_FFFF_FFFF_FFFF) == 0x7FFF_FFFF_FFFF_FFFF) { if (pe[F.EXPPOS_SHORT] == 0x8000) // it was negative zero { *ps = 1; pe[F.EXPPOS_SHORT] = 0; // smallest subnormal. return x; } --pe[F.EXPPOS_SHORT]; if (pe[F.EXPPOS_SHORT] == 0x8000) return x; // it's become a subnormal, implied bit stays low. *ps = 0xFFFF_FFFF_FFFF_FFFF; // set the implied bit return x; } return x; } else { // Positive number -- need to increase the significand. // Works automatically for positive zero. ++*ps; if ((*ps & 0x7FFF_FFFF_FFFF_FFFF) == 0) { // change in exponent ++pe[F.EXPPOS_SHORT]; *ps = 0x8000_0000_0000_0000; // set the high bit } } return x; } else // static if (F.realFormat == RealFormat.ibmExtended) { assert (0, "nextUp not implemented"); } } /** ditto */ double nextUp(double x) @trusted pure nothrow @nogc { ulong *ps = cast(ulong *)&x; if ((*ps & 0x7FF0_0000_0000_0000) == 0x7FF0_0000_0000_0000) { // First, deal with NANs and infinity if (x == -x.infinity) return -x.max; return x; // +INF and NAN are unchanged. } if (*ps & 0x8000_0000_0000_0000) // Negative number { if (*ps == 0x8000_0000_0000_0000) // it was negative zero { *ps = 0x0000_0000_0000_0001; // change to smallest subnormal return x; } --*ps; } else { // Positive number ++*ps; } return x; } /** ditto */ float nextUp(float x) @trusted pure nothrow @nogc { uint *ps = cast(uint *)&x; if ((*ps & 0x7F80_0000) == 0x7F80_0000) { // First, deal with NANs and infinity if (x == -x.infinity) return -x.max; return x; // +INF and NAN are unchanged. } if (*ps & 0x8000_0000) // Negative number { if (*ps == 0x8000_0000) // it was negative zero { *ps = 0x0000_0001; // change to smallest subnormal return x; } --*ps; } else { // Positive number ++*ps; } return x; } /** * Calculate the next smallest floating point value before x. * * Return the greatest number less than x that is representable as a real; * thus, it gives the previous point on the IEEE number line. * * $(TABLE_SV * $(SVH x, nextDown(x) ) * $(SV $(INFIN), real.max ) * $(SV $(PLUSMN)0.0, -real.min_normal*real.epsilon ) * $(SV -real.max, -$(INFIN) ) * $(SV -$(INFIN), -$(INFIN) ) * $(SV $(NAN), $(NAN) ) * ) */ real nextDown(real x) @safe pure nothrow @nogc { return -nextUp(-x); } /** ditto */ double nextDown(double x) @safe pure nothrow @nogc { return -nextUp(-x); } /** ditto */ float nextDown(float x) @safe pure nothrow @nogc { return -nextUp(-x); } /// @safe pure nothrow @nogc unittest { assert( nextDown(1.0 + real.epsilon) == 1.0); } @safe pure nothrow @nogc unittest { static if (floatTraits!(real).realFormat == RealFormat.ieeeExtended) { // Tests for 80-bit reals assert(isIdentical(nextUp(NaN(0xABC)), NaN(0xABC))); // negative numbers assert( nextUp(-real.infinity) == -real.max ); assert( nextUp(-1.0L-real.epsilon) == -1.0 ); assert( nextUp(-2.0L) == -2.0 + real.epsilon); // subnormals and zero assert( nextUp(-real.min_normal) == -real.min_normal*(1-real.epsilon) ); assert( nextUp(-real.min_normal*(1-real.epsilon)) == -real.min_normal*(1-2*real.epsilon) ); assert( isIdentical(-0.0L, nextUp(-real.min_normal*real.epsilon)) ); assert( nextUp(-0.0L) == real.min_normal*real.epsilon ); assert( nextUp(0.0L) == real.min_normal*real.epsilon ); assert( nextUp(real.min_normal*(1-real.epsilon)) == real.min_normal ); assert( nextUp(real.min_normal) == real.min_normal*(1+real.epsilon) ); // positive numbers assert( nextUp(1.0L) == 1.0 + real.epsilon ); assert( nextUp(2.0L-real.epsilon) == 2.0 ); assert( nextUp(real.max) == real.infinity ); assert( nextUp(real.infinity)==real.infinity ); } double n = NaN(0xABC); assert(isIdentical(nextUp(n), n)); // negative numbers assert( nextUp(-double.infinity) == -double.max ); assert( nextUp(-1-double.epsilon) == -1.0 ); assert( nextUp(-2.0) == -2.0 + double.epsilon); // subnormals and zero assert( nextUp(-double.min_normal) == -double.min_normal*(1-double.epsilon) ); assert( nextUp(-double.min_normal*(1-double.epsilon)) == -double.min_normal*(1-2*double.epsilon) ); assert( isIdentical(-0.0, nextUp(-double.min_normal*double.epsilon)) ); assert( nextUp(0.0) == double.min_normal*double.epsilon ); assert( nextUp(-0.0) == double.min_normal*double.epsilon ); assert( nextUp(double.min_normal*(1-double.epsilon)) == double.min_normal ); assert( nextUp(double.min_normal) == double.min_normal*(1+double.epsilon) ); // positive numbers assert( nextUp(1.0) == 1.0 + double.epsilon ); assert( nextUp(2.0-double.epsilon) == 2.0 ); assert( nextUp(double.max) == double.infinity ); float fn = NaN(0xABC); assert(isIdentical(nextUp(fn), fn)); float f = -float.min_normal*(1-float.epsilon); float f1 = -float.min_normal; assert( nextUp(f1) == f); f = 1.0f+float.epsilon; f1 = 1.0f; assert( nextUp(f1) == f ); f1 = -0.0f; assert( nextUp(f1) == float.min_normal*float.epsilon); assert( nextUp(float.infinity)==float.infinity ); assert(nextDown(1.0L+real.epsilon)==1.0); assert(nextDown(1.0+double.epsilon)==1.0); f = 1.0f+float.epsilon; assert(nextDown(f)==1.0); assert(nextafter(1.0+real.epsilon, -real.infinity)==1.0); } /****************************************** * Calculates the next representable value after x in the direction of y. * * If y > x, the result will be the next largest floating-point value; * if y < x, the result will be the next smallest value. * If x == y, the result is y. * * Remarks: * This function is not generally very useful; it's almost always better to use * the faster functions nextUp() or nextDown() instead. * * The FE_INEXACT and FE_OVERFLOW exceptions will be raised if x is finite and * the function result is infinite. The FE_INEXACT and FE_UNDERFLOW * exceptions will be raised if the function value is subnormal, and x is * not equal to y. */ T nextafter(T)(const T x, const T y) @safe pure nothrow @nogc { if (x == y) return y; return ((y>x) ? nextUp(x) : nextDown(x)); } /// @safe pure nothrow @nogc unittest { float a = 1; assert(is(typeof(nextafter(a, a)) == float)); assert(nextafter(a, a.infinity) > a); double b = 2; assert(is(typeof(nextafter(b, b)) == double)); assert(nextafter(b, b.infinity) > b); real c = 3; assert(is(typeof(nextafter(c, c)) == real)); assert(nextafter(c, c.infinity) > c); } //real nexttoward(real x, real y) { return core.stdc.math.nexttowardl(x, y); } /******************************************* * Returns the positive difference between x and y. * Returns: * $(TABLE_SV * $(TR $(TH x, y) $(TH fdim(x, y))) * $(TR $(TD x $(GT) y) $(TD x - y)) * $(TR $(TD x $(LT)= y) $(TD +0.0)) * ) */ real fdim(real x, real y) @safe pure nothrow @nogc { return (x > y) ? x - y : +0.0; } /**************************************** * Returns the larger of x and y. */ real fmax(real x, real y) @safe pure nothrow @nogc { return x > y ? x : y; } /**************************************** * Returns the smaller of x and y. */ real fmin(real x, real y) @safe pure nothrow @nogc { return x < y ? x : y; } /************************************** * Returns (x * y) + z, rounding only once according to the * current rounding mode. * * BUGS: Not currently implemented - rounds twice. */ real fma(real x, real y, real z) @safe pure nothrow @nogc { return (x * y) + z; } /******************************************************************* * Compute the value of x $(SUPERSCRIPT n), where n is an integer */ Unqual!F pow(F, G)(F x, G n) @nogc @trusted pure nothrow if (isFloatingPoint!(F) && isIntegral!(G)) { real p = 1.0, v = void; Unsigned!(Unqual!G) m = n; if (n < 0) { switch (n) { case -1: return 1 / x; case -2: return 1 / (x * x); default: } m = -n; v = p / x; } else { switch (n) { case 0: return 1.0; case 1: return x; case 2: return x * x; default: } v = x; } while (1) { if (m & 1) p *= v; m >>= 1; if (!m) break; v *= v; } return p; } @safe pure nothrow @nogc unittest { // Make sure it instantiates and works properly on immutable values and // with various integer and float types. immutable real x = 46; immutable float xf = x; immutable double xd = x; immutable uint one = 1; immutable ushort two = 2; immutable ubyte three = 3; immutable ulong eight = 8; immutable int neg1 = -1; immutable short neg2 = -2; immutable byte neg3 = -3; immutable long neg8 = -8; assert(pow(x,0) == 1.0); assert(pow(xd,one) == x); assert(pow(xf,two) == x * x); assert(pow(x,three) == x * x * x); assert(pow(x,eight) == (x * x) * (x * x) * (x * x) * (x * x)); assert(pow(x, neg1) == 1 / x); version(X86_64) { pragma(msg, "test disabled on x86_64, see bug 5628"); } else version(ARM) { pragma(msg, "test disabled on ARM, see bug 5628"); } else { assert(pow(xd, neg2) == 1 / (x * x)); assert(pow(xf, neg8) == 1 / ((x * x) * (x * x) * (x * x) * (x * x))); } assert(feqrel(pow(x, neg3), 1 / (x * x * x)) >= real.mant_dig - 1); } unittest { assert(equalsDigit(pow(2.0L, 10.0L), 1024, 19)); } /** Compute the value of an integer x, raised to the power of a positive * integer n. * * If both x and n are 0, the result is 1. * If n is negative, an integer divide error will occur at runtime, * regardless of the value of x. */ typeof(Unqual!(F).init * Unqual!(G).init) pow(F, G)(F x, G n) @nogc @trusted pure nothrow if (isIntegral!(F) && isIntegral!(G)) { if (n<0) return x/0; // Only support positive powers typeof(return) p, v = void; Unqual!G m = n; switch (m) { case 0: p = 1; break; case 1: p = x; break; case 2: p = x * x; break; default: v = x; p = 1; while (1){ if (m & 1) p *= v; m >>= 1; if (!m) break; v *= v; } break; } return p; } /// @safe pure nothrow @nogc unittest { immutable int one = 1; immutable byte two = 2; immutable ubyte three = 3; immutable short four = 4; immutable long ten = 10; assert(pow(two, three) == 8); assert(pow(two, ten) == 1024); assert(pow(one, ten) == 1); assert(pow(ten, four) == 10_000); assert(pow(four, 10) == 1_048_576); assert(pow(three, four) == 81); } /**Computes integer to floating point powers.*/ real pow(I, F)(I x, F y) @nogc @trusted pure nothrow if(isIntegral!I && isFloatingPoint!F) { return pow(cast(real) x, cast(Unqual!F) y); } /********************************************* * Calculates x$(SUPERSCRIPT y). * * $(TABLE_SV * $(TR $(TH x) $(TH y) $(TH pow(x, y)) * $(TH div 0) $(TH invalid?)) * $(TR $(TD anything) $(TD $(PLUSMN)0.0) $(TD 1.0) * $(TD no) $(TD no) ) * $(TR $(TD |x| $(GT) 1) $(TD +$(INFIN)) $(TD +$(INFIN)) * $(TD no) $(TD no) ) * $(TR $(TD |x| $(LT) 1) $(TD +$(INFIN)) $(TD +0.0) * $(TD no) $(TD no) ) * $(TR $(TD |x| $(GT) 1) $(TD -$(INFIN)) $(TD +0.0) * $(TD no) $(TD no) ) * $(TR $(TD |x| $(LT) 1) $(TD -$(INFIN)) $(TD +$(INFIN)) * $(TD no) $(TD no) ) * $(TR $(TD +$(INFIN)) $(TD $(GT) 0.0) $(TD +$(INFIN)) * $(TD no) $(TD no) ) * $(TR $(TD +$(INFIN)) $(TD $(LT) 0.0) $(TD +0.0) * $(TD no) $(TD no) ) * $(TR $(TD -$(INFIN)) $(TD odd integer $(GT) 0.0) $(TD -$(INFIN)) * $(TD no) $(TD no) ) * $(TR $(TD -$(INFIN)) $(TD $(GT) 0.0, not odd integer) $(TD +$(INFIN)) * $(TD no) $(TD no)) * $(TR $(TD -$(INFIN)) $(TD odd integer $(LT) 0.0) $(TD -0.0) * $(TD no) $(TD no) ) * $(TR $(TD -$(INFIN)) $(TD $(LT) 0.0, not odd integer) $(TD +0.0) * $(TD no) $(TD no) ) * $(TR $(TD $(PLUSMN)1.0) $(TD $(PLUSMN)$(INFIN)) $(TD $(NAN)) * $(TD no) $(TD yes) ) * $(TR $(TD $(LT) 0.0) $(TD finite, nonintegral) $(TD $(NAN)) * $(TD no) $(TD yes)) * $(TR $(TD $(PLUSMN)0.0) $(TD odd integer $(LT) 0.0) $(TD $(PLUSMNINF)) * $(TD yes) $(TD no) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(LT) 0.0, not odd integer) $(TD +$(INFIN)) * $(TD yes) $(TD no)) * $(TR $(TD $(PLUSMN)0.0) $(TD odd integer $(GT) 0.0) $(TD $(PLUSMN)0.0) * $(TD no) $(TD no) ) * $(TR $(TD $(PLUSMN)0.0) $(TD $(GT) 0.0, not odd integer) $(TD +0.0) * $(TD no) $(TD no) ) * ) */ Unqual!(Largest!(F, G)) pow(F, G)(F x, G y) @nogc @trusted pure nothrow if (isFloatingPoint!(F) && isFloatingPoint!(G)) { alias Float = typeof(return); static real impl(real x, real y) @nogc pure nothrow { // Special cases. if (isNaN(y)) return y; if (isNaN(x) && y != 0.0) return x; // Even if x is NaN. if (y == 0.0) return 1.0; if (y == 1.0) return x; if (isInfinity(y)) { if (fabs(x) > 1) { if (signbit(y)) return +0.0; else return F.infinity; } else if (fabs(x) == 1) { return y * 0; // generate NaN. } else // < 1 { if (signbit(y)) return F.infinity; else return +0.0; } } if (isInfinity(x)) { if (signbit(x)) { long i = cast(long)y; if (y > 0.0) { if (i == y && i & 1) return -F.infinity; else return F.infinity; } else if (y < 0.0) { if (i == y && i & 1) return -0.0; else return +0.0; } } else { if (y > 0.0) return F.infinity; else if (y < 0.0) return +0.0; } } if (x == 0.0) { if (signbit(x)) { long i = cast(long)y; if (y > 0.0) { if (i == y && i & 1) return -0.0; else return +0.0; } else if (y < 0.0) { if (i == y && i & 1) return -F.infinity; else return F.infinity; } } else { if (y > 0.0) return +0.0; else if (y < 0.0) return F.infinity; } } if (x == 1.0) return 1.0; if (y >= F.max) { if ((x > 0.0 && x < 1.0) || (x > -1.0 && x < 0.0)) return 0.0; if (x > 1.0 || x < -1.0) return F.infinity; } if (y <= -F.max) { if ((x > 0.0 && x < 1.0) || (x > -1.0 && x < 0.0)) return F.infinity; if (x > 1.0 || x < -1.0) return 0.0; } if (x >= F.max) { if (y > 0.0) return F.infinity; else return 0.0; } if (x <= -F.max) { long i = cast(long)y; if (y > 0.0) { if (i == y && i & 1) return -F.infinity; else return F.infinity; } else if (y < 0.0) { if (i == y && i & 1) return -0.0; else return +0.0; } } // Integer power of x. long iy = cast(long)y; if (iy == y && fabs(y) < 32768.0) return pow(x, iy); double sign = 1.0; if (x < 0) { // Result is real only if y is an integer // Check for a non-zero fractional part if (y > -1.0 / real.epsilon && y < 1.0 / real.epsilon) { long w = cast(long)y; if (w != y) return sqrt(x); // Complex result -- create a NaN if (w & 1) sign = -1.0; } x = -x; } version(INLINE_YL2X) { // If x > 0, x ^^ y == 2 ^^ ( y * log2(x) ) // TODO: This is not accurate in practice. A fast and accurate // (though complicated) method is described in: // "An efficient rounding boundary test for pow(x, y) // in double precision", C.Q. Lauter and V. Lefèvre, INRIA (2007). return sign * exp2( yl2x(x, y) ); } else { // If x > 0, x ^^ y == 2 ^^ ( y * log2(x) ) // TODO: This is not accurate in practice. A fast and accurate // (though complicated) method is described in: // "An efficient rounding boundary test for pow(x, y) // in double precision", C.Q. Lauter and V. Lefèvre, INRIA (2007). Float w = exp2(y * log2(x)); return sign * w; } } return impl(x, y); } @safe pure nothrow @nogc unittest { // Test all the special values. These unittests can be run on Windows // by temporarily changing the version(linux) to version(all). immutable float zero = 0; immutable real one = 1; immutable double two = 2; immutable float three = 3; immutable float fnan = float.nan; immutable double dnan = double.nan; immutable real rnan = real.nan; immutable dinf = double.infinity; immutable rninf = -real.infinity; assert(pow(fnan, zero) == 1); assert(pow(dnan, zero) == 1); assert(pow(rnan, zero) == 1); assert(pow(two, dinf) == double.infinity); assert(isIdentical(pow(0.2f, dinf), +0.0)); assert(pow(0.99999999L, rninf) == real.infinity); assert(isIdentical(pow(1.000000001, rninf), +0.0)); assert(pow(dinf, 0.001) == dinf); assert(isIdentical(pow(dinf, -0.001), +0.0)); assert(pow(rninf, 3.0L) == rninf); assert(pow(rninf, 2.0L) == real.infinity); assert(isIdentical(pow(rninf, -3.0), -0.0)); assert(isIdentical(pow(rninf, -2.0), +0.0)); // @@@BUG@@@ somewhere version(OSX) {} else assert(isNaN(pow(one, dinf))); version(OSX) {} else assert(isNaN(pow(-one, dinf))); assert(isNaN(pow(-0.2, PI))); // boundary cases. Note that epsilon == 2^^-n for some n, // so 1/epsilon == 2^^n is always even. assert(pow(-1.0L, 1/real.epsilon - 1.0L) == -1.0L); assert(pow(-1.0L, 1/real.epsilon) == 1.0L); assert(isNaN(pow(-1.0L, 1/real.epsilon-0.5L))); assert(isNaN(pow(-1.0L, -1/real.epsilon+0.5L))); assert(pow(0.0, -3.0) == double.infinity); assert(pow(-0.0, -3.0) == -double.infinity); assert(pow(0.0, -PI) == double.infinity); assert(pow(-0.0, -PI) == double.infinity); assert(isIdentical(pow(0.0, 5.0), 0.0)); assert(isIdentical(pow(-0.0, 5.0), -0.0)); assert(isIdentical(pow(0.0, 6.0), 0.0)); assert(isIdentical(pow(-0.0, 6.0), 0.0)); // Now, actual numbers. assert(approxEqual(pow(two, three), 8.0)); assert(approxEqual(pow(two, -2.5), 0.1767767)); // Test integer to float power. immutable uint twoI = 2; assert(approxEqual(pow(twoI, three), 8.0)); } /************************************** * To what precision is x equal to y? * * Returns: the number of mantissa bits which are equal in x and y. * eg, 0x1.F8p+60 and 0x1.F1p+60 are equal to 5 bits of precision. * * $(TABLE_SV * $(TR $(TH x) $(TH y) $(TH feqrel(x, y))) * $(TR $(TD x) $(TD x) $(TD real.mant_dig)) * $(TR $(TD x) $(TD $(GT)= 2*x) $(TD 0)) * $(TR $(TD x) $(TD $(LT)= x/2) $(TD 0)) * $(TR $(TD $(NAN)) $(TD any) $(TD 0)) * $(TR $(TD any) $(TD $(NAN)) $(TD 0)) * ) */ int feqrel(X)(const X x, const X y) @trusted pure nothrow @nogc if (isFloatingPoint!(X)) { /* Public Domain. Author: Don Clugston, 18 Aug 2005. */ alias F = floatTraits!(X); static if (F.realFormat == RealFormat.ibmExtended) { if (cast(double*)(&x)[MANTISSA_MSB] == cast(double*)(&y)[MANTISSA_MSB]) { return double.mant_dig + feqrel(cast(double*)(&x)[MANTISSA_LSB], cast(double*)(&y)[MANTISSA_LSB]); } else { return feqrel(cast(double*)(&x)[MANTISSA_MSB], cast(double*)(&y)[MANTISSA_MSB]); } } else { static assert (F.realFormat == RealFormat.ieeeSingle || F.realFormat == RealFormat.ieeeDouble || F.realFormat == RealFormat.ieeeExtended || F.realFormat == RealFormat.ieeeQuadruple); if (x == y) return X.mant_dig; // ensure diff!=0, cope with INF. Unqual!X diff = fabs(x - y); ushort *pa = cast(ushort *)(&x); ushort *pb = cast(ushort *)(&y); ushort *pd = cast(ushort *)(&diff); // The difference in abs(exponent) between x or y and abs(x-y) // is equal to the number of significand bits of x which are // equal to y. If negative, x and y have different exponents. // If positive, x and y are equal to 'bitsdiff' bits. // AND with 0x7FFF to form the absolute value. // To avoid out-by-1 errors, we subtract 1 so it rounds down // if the exponents were different. This means 'bitsdiff' is // always 1 lower than we want, except that if bitsdiff==0, // they could have 0 or 1 bits in common. int bitsdiff = ((( (pa[F.EXPPOS_SHORT] & F.EXPMASK) + (pb[F.EXPPOS_SHORT] & F.EXPMASK) - (1 << F.EXPSHIFT)) >> 1) - (pd[F.EXPPOS_SHORT] & F.EXPMASK)) >> F.EXPSHIFT; if ( (pd[F.EXPPOS_SHORT] & F.EXPMASK) == 0) { // Difference is subnormal // For subnormals, we need to add the number of zeros that // lie at the start of diff's significand. // We do this by multiplying by 2^^real.mant_dig diff *= F.RECIP_EPSILON; return bitsdiff + X.mant_dig - ((pd[F.EXPPOS_SHORT] & F.EXPMASK) >> F.EXPSHIFT); } if (bitsdiff > 0) return bitsdiff + 1; // add the 1 we subtracted before // Avoid out-by-1 errors when factor is almost 2. if (bitsdiff == 0 && ((pa[F.EXPPOS_SHORT] ^ pb[F.EXPPOS_SHORT]) & F.EXPMASK) == 0) { return 1; } else return 0; } } @safe pure nothrow @nogc unittest { void testFeqrel(F)() { // Exact equality assert(feqrel(F.max, F.max) == F.mant_dig); assert(feqrel!(F)(0.0, 0.0) == F.mant_dig); assert(feqrel(F.infinity, F.infinity) == F.mant_dig); // a few bits away from exact equality F w=1; for (int i = 1; i < F.mant_dig - 1; ++i) { assert(feqrel!(F)(1.0 + w * F.epsilon, 1.0) == F.mant_dig-i); assert(feqrel!(F)(1.0 - w * F.epsilon, 1.0) == F.mant_dig-i); assert(feqrel!(F)(1.0, 1 + (w-1) * F.epsilon) == F.mant_dig - i + 1); w*=2; } assert(feqrel!(F)(1.5+F.epsilon, 1.5) == F.mant_dig-1); assert(feqrel!(F)(1.5-F.epsilon, 1.5) == F.mant_dig-1); assert(feqrel!(F)(1.5-F.epsilon, 1.5+F.epsilon) == F.mant_dig-2); // Numbers that are close assert(feqrel!(F)(0x1.Bp+84, 0x1.B8p+84) == 5); assert(feqrel!(F)(0x1.8p+10, 0x1.Cp+10) == 2); assert(feqrel!(F)(1.5 * (1 - F.epsilon), 1.0L) == 2); assert(feqrel!(F)(1.5, 1.0) == 1); assert(feqrel!(F)(2 * (1 - F.epsilon), 1.0L) == 1); // Factors of 2 assert(feqrel(F.max, F.infinity) == 0); assert(feqrel!(F)(2 * (1 - F.epsilon), 1.0L) == 1); assert(feqrel!(F)(1.0, 2.0) == 0); assert(feqrel!(F)(4.0, 1.0) == 0); // Extreme inequality assert(feqrel(F.nan, F.nan) == 0); assert(feqrel!(F)(0.0L, -F.nan) == 0); assert(feqrel(F.nan, F.infinity) == 0); assert(feqrel(F.infinity, -F.infinity) == 0); assert(feqrel(F.max, -F.max) == 0); assert(feqrel(F.min_normal / 8, F.min_normal / 17) == 3); const F Const = 2; immutable F Immutable = 2; auto Compiles = feqrel(Const, Immutable); } assert(feqrel(7.1824L, 7.1824L) == real.mant_dig); testFeqrel!(real)(); testFeqrel!(double)(); testFeqrel!(float)(); } package: // Not public yet /* Return the value that lies halfway between x and y on the IEEE number line. * * Formally, the result is the arithmetic mean of the binary significands of x * and y, multiplied by the geometric mean of the binary exponents of x and y. * x and y must have the same sign, and must not be NaN. * Note: this function is useful for ensuring O(log n) behaviour in algorithms * involving a 'binary chop'. * * Special cases: * If x and y are within a factor of 2, (ie, feqrel(x, y) > 0), the return value * is the arithmetic mean (x + y) / 2. * If x and y are even powers of 2, the return value is the geometric mean, * ieeeMean(x, y) = sqrt(x * y). * */ T ieeeMean(T)(const T x, const T y) @trusted pure nothrow @nogc in { // both x and y must have the same sign, and must not be NaN. assert(signbit(x) == signbit(y)); assert(x == x && y == y); } body { // Runtime behaviour for contract violation: // If signs are opposite, or one is a NaN, return 0. if (!((x>=0 && y>=0) || (x<=0 && y<=0))) return 0.0; // The implementation is simple: cast x and y to integers, // average them (avoiding overflow), and cast the result back to a floating-point number. alias F = floatTraits!(T); T u; static if (F.realFormat == RealFormat.ieeeExtended) { // There's slight additional complexity because they are actually // 79-bit reals... ushort *ue = cast(ushort *)&u; ulong *ul = cast(ulong *)&u; ushort *xe = cast(ushort *)&x; ulong *xl = cast(ulong *)&x; ushort *ye = cast(ushort *)&y; ulong *yl = cast(ulong *)&y; // Ignore the useless implicit bit. (Bonus: this prevents overflows) ulong m = ((*xl) & 0x7FFF_FFFF_FFFF_FFFFL) + ((*yl) & 0x7FFF_FFFF_FFFF_FFFFL); // @@@ BUG? @@@ // Cast shouldn't be here ushort e = cast(ushort) ((xe[F.EXPPOS_SHORT] & F.EXPMASK) + (ye[F.EXPPOS_SHORT] & F.EXPMASK)); if (m & 0x8000_0000_0000_0000L) { ++e; m &= 0x7FFF_FFFF_FFFF_FFFFL; } // Now do a multi-byte right shift uint c = e & 1; // carry e >>= 1; m >>>= 1; if (c) m |= 0x4000_0000_0000_0000L; // shift carry into significand if (e) *ul = m | 0x8000_0000_0000_0000L; // set implicit bit... else *ul = m; // ... unless exponent is 0 (subnormal or zero). ue[4]= e | (xe[F.EXPPOS_SHORT]& 0x8000); // restore sign bit } else static if (F.realFormat == RealFormat.ieeeQuadruple) { // This would be trivial if 'ucent' were implemented... ulong *ul = cast(ulong *)&u; ulong *xl = cast(ulong *)&x; ulong *yl = cast(ulong *)&y; // Multi-byte add, then multi-byte right shift. ulong mh = ((xl[MANTISSA_MSB] & 0x7FFF_FFFF_FFFF_FFFFL) + (yl[MANTISSA_MSB] & 0x7FFF_FFFF_FFFF_FFFFL)); // Discard the lowest bit (to avoid overflow) ulong ml = (xl[MANTISSA_LSB]>>>1) + (yl[MANTISSA_LSB]>>>1); // add the lowest bit back in, if necessary. if (xl[MANTISSA_LSB] & yl[MANTISSA_LSB] & 1) { ++ml; if (ml == 0) ++mh; } mh >>>=1; ul[MANTISSA_MSB] = mh | (xl[MANTISSA_MSB] & 0x8000_0000_0000_0000); ul[MANTISSA_LSB] = ml; } else static if (F.realFormat == RealFormat.ieeeDouble) { ulong *ul = cast(ulong *)&u; ulong *xl = cast(ulong *)&x; ulong *yl = cast(ulong *)&y; ulong m = (((*xl) & 0x7FFF_FFFF_FFFF_FFFFL) + ((*yl) & 0x7FFF_FFFF_FFFF_FFFFL)) >>> 1; m |= ((*xl) & 0x8000_0000_0000_0000L); *ul = m; } else static if (F.realFormat == RealFormat.ieeeSingle) { uint *ul = cast(uint *)&u; uint *xl = cast(uint *)&x; uint *yl = cast(uint *)&y; uint m = (((*xl) & 0x7FFF_FFFF) + ((*yl) & 0x7FFF_FFFF)) >>> 1; m |= ((*xl) & 0x8000_0000); *ul = m; } else { assert(0, "Not implemented"); } return u; } @safe pure nothrow @nogc unittest { assert(ieeeMean(-0.0,-1e-20)<0); assert(ieeeMean(0.0,1e-20)>0); assert(ieeeMean(1.0L,4.0L)==2L); assert(ieeeMean(2.0*1.013,8.0*1.013)==4*1.013); assert(ieeeMean(-1.0L,-4.0L)==-2L); assert(ieeeMean(-1.0,-4.0)==-2); assert(ieeeMean(-1.0f,-4.0f)==-2f); assert(ieeeMean(-1.0,-2.0)==-1.5); assert(ieeeMean(-1*(1+8*real.epsilon),-2*(1+8*real.epsilon)) ==-1.5*(1+5*real.epsilon)); assert(ieeeMean(0x1p60,0x1p-10)==0x1p25); static if (floatTraits!(real).realFormat == RealFormat.ieeeExtended) { assert(ieeeMean(1.0L,real.infinity)==0x1p8192L); assert(ieeeMean(0.0L,real.infinity)==1.5); } assert(ieeeMean(0.5*real.min_normal*(1-4*real.epsilon),0.5*real.min_normal) == 0.5*real.min_normal*(1-2*real.epsilon)); } public: /*********************************** * Evaluate polynomial A(x) = $(SUB a, 0) + $(SUB a, 1)x + $(SUB a, 2)$(POWER x,2) * + $(SUB a,3)$(POWER x,3); ... * * Uses Horner's rule A(x) = $(SUB a, 0) + x($(SUB a, 1) + x($(SUB a, 2) * + x($(SUB a, 3) + ...))) * Params: * x = the value to evaluate. * A = array of coefficients $(SUB a, 0), $(SUB a, 1), etc. */ Unqual!(CommonType!(T1, T2)) poly(T1, T2)(T1 x, in T2[] A) @trusted pure nothrow @nogc if (isFloatingPoint!T1 && isFloatingPoint!T2) in { assert(A.length > 0); } body { static if(is(Unqual!T2 == real)) { return polyImpl(x, A); } else { return polyImplBase(x, A); } } /// @safe nothrow @nogc unittest { double x = 3.1; static real[] pp = [56.1, 32.7, 6]; assert(poly(x, pp) == (56.1L + (32.7L + 6.0L * x) * x)); } @safe nothrow @nogc unittest { double x = 3.1; static double[] pp = [56.1, 32.7, 6]; double y = x; y *= 6.0; y += 32.7; y *= x; y += 56.1; assert(poly(x, pp) == y); } unittest { static assert(poly(3.0, [1.0, 2.0, 3.0]) == 34); } private Unqual!(CommonType!(T1, T2)) polyImplBase(T1, T2)(T1 x, in T2[] A) @trusted pure nothrow @nogc if (isFloatingPoint!T1 && isFloatingPoint!T2) { ptrdiff_t i = A.length - 1; typeof(return) r = A[i]; while (--i >= 0) { r *= x; r += A[i]; } return r; } private real polyImpl(real x, in real[] A) @trusted pure nothrow @nogc { version (D_InlineAsm_X86) { if(__ctfe) { return polyImplBase(x, A); } version (Windows) { // BUG: This code assumes a frame pointer in EBP. asm pure nothrow @nogc // assembler by W. Bright { // EDX = (A.length - 1) * real.sizeof mov ECX,A[EBP] ; // ECX = A.length dec ECX ; lea EDX,[ECX][ECX*8] ; add EDX,ECX ; add EDX,A+4[EBP] ; fld real ptr [EDX] ; // ST0 = coeff[ECX] jecxz return_ST ; fld x[EBP] ; // ST0 = x fxch ST(1) ; // ST1 = x, ST0 = r align 4 ; L2: fmul ST,ST(1) ; // r *= x fld real ptr -10[EDX] ; sub EDX,10 ; // deg-- faddp ST(1),ST ; dec ECX ; jne L2 ; fxch ST(1) ; // ST1 = r, ST0 = x fstp ST(0) ; // dump x align 4 ; return_ST: ; ; } } else version (linux) { asm pure nothrow @nogc // assembler by W. Bright { // EDX = (A.length - 1) * real.sizeof mov ECX,A[EBP] ; // ECX = A.length dec ECX ; lea EDX,[ECX*8] ; lea EDX,[EDX][ECX*4] ; add EDX,A+4[EBP] ; fld real ptr [EDX] ; // ST0 = coeff[ECX] jecxz return_ST ; fld x[EBP] ; // ST0 = x fxch ST(1) ; // ST1 = x, ST0 = r align 4 ; L2: fmul ST,ST(1) ; // r *= x fld real ptr -12[EDX] ; sub EDX,12 ; // deg-- faddp ST(1),ST ; dec ECX ; jne L2 ; fxch ST(1) ; // ST1 = r, ST0 = x fstp ST(0) ; // dump x align 4 ; return_ST: ; ; } } else version (OSX) { asm pure nothrow @nogc // assembler by W. Bright { // EDX = (A.length - 1) * real.sizeof mov ECX,A[EBP] ; // ECX = A.length dec ECX ; lea EDX,[ECX*8] ; add EDX,EDX ; add EDX,A+4[EBP] ; fld real ptr [EDX] ; // ST0 = coeff[ECX] jecxz return_ST ; fld x[EBP] ; // ST0 = x fxch ST(1) ; // ST1 = x, ST0 = r align 4 ; L2: fmul ST,ST(1) ; // r *= x fld real ptr -16[EDX] ; sub EDX,16 ; // deg-- faddp ST(1),ST ; dec ECX ; jne L2 ; fxch ST(1) ; // ST1 = r, ST0 = x fstp ST(0) ; // dump x align 4 ; return_ST: ; ; } } else version (FreeBSD) { asm pure nothrow @nogc // assembler by W. Bright { // EDX = (A.length - 1) * real.sizeof mov ECX,A[EBP] ; // ECX = A.length dec ECX ; lea EDX,[ECX*8] ; lea EDX,[EDX][ECX*4] ; add EDX,A+4[EBP] ; fld real ptr [EDX] ; // ST0 = coeff[ECX] jecxz return_ST ; fld x[EBP] ; // ST0 = x fxch ST(1) ; // ST1 = x, ST0 = r align 4 ; L2: fmul ST,ST(1) ; // r *= x fld real ptr -12[EDX] ; sub EDX,12 ; // deg-- faddp ST(1),ST ; dec ECX ; jne L2 ; fxch ST(1) ; // ST1 = r, ST0 = x fstp ST(0) ; // dump x align 4 ; return_ST: ; ; } } else { static assert(0); } } else { return polyImplBase(x, A); } } /** Computes whether $(D lhs) is approximately equal to $(D rhs) admitting a maximum relative difference $(D maxRelDiff) and a maximum absolute difference $(D maxAbsDiff). If the two inputs are ranges, $(D approxEqual) returns true if and only if the ranges have the same number of elements and if $(D approxEqual) evaluates to $(D true) for each pair of elements. */ bool approxEqual(T, U, V)(T lhs, U rhs, V maxRelDiff, V maxAbsDiff = 1e-5) { import std.range; static if (isInputRange!T) { static if (isInputRange!U) { // Two ranges for (;; lhs.popFront(), rhs.popFront()) { if (lhs.empty) return rhs.empty; if (rhs.empty) return lhs.empty; if (!approxEqual(lhs.front, rhs.front, maxRelDiff, maxAbsDiff)) return false; } } else static if (isIntegral!U) { // convert rhs to real return approxEqual(lhs, real(rhs), maxRelDiff, maxAbsDiff); } else { // lhs is range, rhs is number for (; !lhs.empty; lhs.popFront()) { if (!approxEqual(lhs.front, rhs, maxRelDiff, maxAbsDiff)) return false; } return true; } } else { static if (isInputRange!U) { // lhs is number, rhs is array return approxEqual(rhs, lhs, maxRelDiff, maxAbsDiff); } else static if (isIntegral!T || isIntegral!U) { // convert both lhs and rhs to real return approxEqual(real(lhs), real(rhs), maxRelDiff, maxAbsDiff); } else { // two numbers //static assert(is(T : real) && is(U : real)); if (rhs == 0) { return fabs(lhs) <= maxAbsDiff; } static if (is(typeof(lhs.infinity)) && is(typeof(rhs.infinity))) { if (lhs == lhs.infinity && rhs == rhs.infinity || lhs == -lhs.infinity && rhs == -rhs.infinity) return true; } return fabs((lhs - rhs) / rhs) <= maxRelDiff || maxAbsDiff != 0 && fabs(lhs - rhs) <= maxAbsDiff; } } } /** Returns $(D approxEqual(lhs, rhs, 1e-2, 1e-5)). */ bool approxEqual(T, U)(T lhs, U rhs) { return approxEqual(lhs, rhs, 1e-2, 1e-5); } /// @safe pure nothrow unittest { assert(approxEqual(1.0, 1.0099)); assert(!approxEqual(1.0, 1.011)); float[] arr1 = [ 1.0, 2.0, 3.0 ]; double[] arr2 = [ 1.001, 1.999, 3 ]; assert(approxEqual(arr1, arr2)); real num = real.infinity; assert(num == real.infinity); // Passes. assert(approxEqual(num, real.infinity)); // Fails. num = -real.infinity; assert(num == -real.infinity); // Passes. assert(approxEqual(num, -real.infinity)); // Fails. assert(!approxEqual(3, 0)); assert(approxEqual(3, 3)); assert(approxEqual(3.0, 3)); assert(approxEqual([3, 3, 3], 3.0)); assert(approxEqual([3.0, 3.0, 3.0], 3)); int a = 10; assert(approxEqual(10, a)); } // Included for backwards compatibility with Phobos1 deprecated("Phobos1 math functions are deprecated, use isNaN") alias isnan = isNaN; deprecated("Phobos1 math functions are deprecated, use isFinite ") alias isfinite = isFinite; deprecated("Phobos1 math functions are deprecated, use isNormal ") alias isnormal = isNormal; deprecated("Phobos1 math functions are deprecated, use isSubnormal ") alias issubnormal = isSubnormal; deprecated("Phobos1 math functions are deprecated, use isInfinity ") alias isinf = isInfinity; /* ********************************** * Building block functions, they * translate to a single x87 instruction. */ real yl2x(real x, real y) @nogc @safe pure nothrow; // y * log2(x) real yl2xp1(real x, real y) @nogc @safe pure nothrow; // y * log2(x + 1) @safe pure nothrow @nogc unittest { version (INLINE_YL2X) { assert(yl2x(1024, 1) == 10); assert(yl2xp1(1023, 1) == 10); } } @safe pure nothrow @nogc unittest { real num = real.infinity; assert(num == real.infinity); // Passes. assert(approxEqual(num, real.infinity)); // Fails. } @safe pure nothrow @nogc unittest { float f = sqrt(2.0f); assert(fabs(f * f - 2.0f) < .00001); double d = sqrt(2.0); assert(fabs(d * d - 2.0) < .00001); real r = sqrt(2.0L); assert(fabs(r * r - 2.0) < .00001); } @safe pure nothrow @nogc unittest { float f = fabs(-2.0f); assert(f == 2); double d = fabs(-2.0); assert(d == 2); real r = fabs(-2.0L); assert(r == 2); } @safe pure nothrow @nogc unittest { float f = sin(-2.0f); assert(fabs(f - -0.909297f) < .00001); double d = sin(-2.0); assert(fabs(d - -0.909297f) < .00001); real r = sin(-2.0L); assert(fabs(r - -0.909297f) < .00001); } @safe pure nothrow @nogc unittest { float f = cos(-2.0f); assert(fabs(f - -0.416147f) < .00001); double d = cos(-2.0); assert(fabs(d - -0.416147f) < .00001); real r = cos(-2.0L); assert(fabs(r - -0.416147f) < .00001); } @safe pure nothrow @nogc unittest { float f = tan(-2.0f); assert(fabs(f - 2.18504f) < .00001); double d = tan(-2.0); assert(fabs(d - 2.18504f) < .00001); real r = tan(-2.0L); assert(fabs(r - 2.18504f) < .00001); } @safe pure nothrow unittest { // issue 6381: floor/ceil should be usable in pure function. auto x = floor(1.2); auto y = ceil(1.2); } /*********************************** * Defines a total order on all floating-point numbers. * * The order is defined as follows: * $(UL * $(LI All numbers in [-$(INFIN), +$(INFIN)] are ordered * the same way as by built-in comparison, with the exception of * -0.0, which is less than +0.0;) * $(LI If the sign bit is set (that is, it's 'negative'), $(NAN) is less * than any number; if the sign bit is not set (it is 'positive'), * $(NAN) is greater than any number;) * $(LI $(NAN)s of the same sign are ordered by the payload ('negative' * ones - in reverse order).) * ) * * Returns: * negative value if $(D x) precedes $(D y) in the order specified above; * 0 if $(D x) and $(D y) are identical, and positive value otherwise. * * See_Also: * $(MYREF isIdentical) * Standards: Conforms to IEEE 754-2008 */ int cmp(T)(const(T) x, const(T) y) @nogc @trusted pure nothrow if (isFloatingPoint!T) { alias F = floatTraits!T; static if (F.realFormat == RealFormat.ieeeSingle || F.realFormat == RealFormat.ieeeDouble) { static if (T.sizeof == 4) alias UInt = uint; else alias UInt = ulong; union Repainter { T number; UInt bits; } enum msb = ~(UInt.max >>> 1); import std.typecons : Tuple; Tuple!(Repainter, Repainter) vars = void; vars[0].number = x; vars[1].number = y; foreach (ref var; vars) if (var.bits & msb) var.bits = ~var.bits; else var.bits |= msb; if (vars[0].bits < vars[1].bits) return -1; else if (vars[0].bits > vars[1].bits) return 1; else return 0; } else static if (F.realFormat == RealFormat.ieeeExtended53 || F.realFormat == RealFormat.ieeeExtended || F.realFormat == RealFormat.ieeeQuadruple) { static if (F.realFormat == RealFormat.ieeeQuadruple) alias RemT = ulong; else alias RemT = ushort; struct Bits { ulong bulk; RemT rem; } union Repainter { T number; Bits bits; ubyte[T.sizeof] bytes; } import std.typecons : Tuple; Tuple!(Repainter, Repainter) vars = void; vars[0].number = x; vars[1].number = y; foreach (ref var; vars) if (var.bytes[F.SIGNPOS_BYTE] & 0x80) { var.bits.bulk = ~var.bits.bulk; var.bits.rem = ~var.bits.rem; } else { var.bytes[F.SIGNPOS_BYTE] |= 0x80; } version(LittleEndian) { if (vars[0].bits.rem < vars[1].bits.rem) return -1; else if (vars[0].bits.rem > vars[1].bits.rem) return 1; else if (vars[0].bits.bulk < vars[1].bits.bulk) return -1; else if (vars[0].bits.bulk > vars[1].bits.bulk) return 1; else return 0; } else { if (vars[0].bits.bulk < vars[1].bits.bulk) return -1; else if (vars[0].bits.bulk > vars[1].bits.bulk) return 1; else if (vars[0].bits.rem < vars[1].bits.rem) return -1; else if (vars[0].bits.rem > vars[1].bits.rem) return 1; else return 0; } } else { // IBM Extended doubledouble does not follow the general // sign-exponent-significand layout, so has to be handled generically int xSign = signbit(x), ySign = signbit(y); if (xSign == 1 && ySign == 1) return cmp(-y, -x); else if (xSign == 1) return -1; else if (ySign == 1) return 1; else if (x < y) return -1; else if (x == y) return 0; else if (x > y) return 1; else if (isNaN(x) && !isNaN(y)) return 1; else if (isNaN(y) && !isNaN(x)) return -1; else if (getNaNPayload(x) < getNaNPayload(y)) return -1; else if (getNaNPayload(x) > getNaNPayload(y)) return 1; else return 0; } } /// Most numbers are ordered naturally. unittest { assert(cmp(-double.infinity, -double.max) < 0); assert(cmp(-double.max, -100.0) < 0); assert(cmp(-100.0, -0.5) < 0); assert(cmp(-0.5, 0.0) < 0); assert(cmp(0.0, 0.5) < 0); assert(cmp(0.5, 100.0) < 0); assert(cmp(100.0, double.max) < 0); assert(cmp(double.max, double.infinity) < 0); assert(cmp(1.0, 1.0) == 0); } /// Positive and negative zeroes are distinct. unittest { assert(cmp(-0.0, +0.0) < 0); assert(cmp(+0.0, -0.0) > 0); } /// Depending on the sign, $(NAN)s go to either end of the spectrum. unittest { assert(cmp(-double.nan, -double.infinity) < 0); assert(cmp(double.infinity, double.nan) < 0); assert(cmp(-double.nan, double.nan) < 0); } /// $(NAN)s of the same sign are ordered by the payload. unittest { assert(cmp(NaN(10), NaN(20)) < 0); assert(cmp(-NaN(20), -NaN(10)) < 0); } unittest { import std.typetuple; foreach (T; TypeTuple!(float, double, real)) { T[] values = [-cast(T)NaN(20), -cast(T)NaN(10), -T.nan, -T.infinity, -T.max, -T.max / 2, T(-16.0), T(-1.0).nextDown, T(-1.0), T(-1.0).nextUp, T(-0.5), -T.min_normal, (-T.min_normal).nextUp, -2 * T.min_normal * T.epsilon, -T.min_normal * T.epsilon, T(-0.0), T(0.0), T.min_normal * T.epsilon, 2 * T.min_normal * T.epsilon, T.min_normal.nextDown, T.min_normal, T(0.5), T(1.0).nextDown, T(1.0), T(1.0).nextUp, T(16.0), T.max / 2, T.max, T.infinity, T.nan, cast(T)NaN(10), cast(T)NaN(20)]; foreach (i, x; values) { foreach (y; values[i + 1 .. $]) { assert(cmp(x, y) < 0); assert(cmp(y, x) > 0); } assert(cmp(x, x) == 0); } } }
D
instance SLD_761_SOELDNER(NPC_DEFAULT) { name[0] = NAME_SOELDNER; npctype = NPCTYPE_MINE_GUARD; guild = GIL_SLD; level = 18; voice = 3; id = 761; attribute[ATR_STRENGTH] = 90; attribute[ATR_DEXTERITY] = 70; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 256; attribute[ATR_HITPOINTS] = 256; Mdl_SetVisual(self,"HUMANS.MDS"); Mdl_ApplyOverlayMds(self,"Humans_Militia.mds"); Mdl_SetVisualBody(self,"hum_body_Naked0",0,1,"Hum_Head_Bald",107,1,sld_armor_h); b_scale(self); Mdl_SetModelFatness(self,0); fight_tactic = FAI_HUMAN_STRONG; Npc_SetTalentSkill(self,NPC_TALENT_1H,1); Npc_SetTalentSkill(self,NPC_TALENT_2H,1); Npc_SetTalentSkill(self,NPC_TALENT_BOW,1); EquipItem(self,itmw_1h_mace_war_03); EquipItem(self,itrw_bow_long_01); CreateInvItems(self,itamarrow,20); CreateInvItem(self,itmi_stuff_mug_01); daily_routine = rtn_fmcstart_761; }; func void rtn_fmcstart_761() { ta_guardpassage(1,0,13,0,"FMC_PATH27"); ta_guardpassage(13,0,1,0,"FMC_PATH27"); };
D
// REQUIRED_ARGS: -d // PERMUTE_ARGS: -dw import std.stdio; import core.stdc.stdlib; enum { T_char, T_wchar, T_dchar, T_bit, T_byte, T_ubyte, T_short, T_ushort, T_int, T_uint, T_long, T_ulong, } int dotype(char x) { return T_char; } int dotype(bool x) { return T_bit; } int dotype(byte x) { return T_byte; } int dotype(ubyte x) { return T_ubyte; } int dotype(wchar x) { return T_wchar; } int dotype(short x) { return T_short; } int dotype(ushort x) { return T_ushort; } int dotype(int x) { return T_int; } int dotype(uint x) { return T_uint; } int dotype(long x) { return T_long; } int dotype(ulong x) { return T_ulong; } void test1() { /* * 0x7FFF 077777 32767 * 0x8000 0100000 32768 * 0xFFFF 0177777 65535 * 0x10000 0200000 65536 * 0x7FFFFFFF 017777777777 2147483647 * 0x80000000 020000000000 2147483648 * 0xFFFFFFFF 037777777777 4294967295 * 0x100000000 040000000000 4294967296 * 0x7FFFFFFFFFFFFFFF 0777777777777777777777 9223372036854775807 * 0x8000000000000000 01000000000000000000000 9223372036854775808 * 0xFFFFFFFFFFFFFFFF 01777777777777777777777 18446744073709551615 */ assert(dotype(1) == T_int); /***************** Hexadecimal ***********************/ assert(dotype(0) == T_int); assert(dotype(0x7FFF) == T_int); assert(dotype(0x8000) == T_int); assert(dotype(0xFFFF) == T_int); assert(dotype(0x10000) == T_int); assert(dotype(0x7FFFFFFF) == T_int); assert(dotype(0x80000000) == T_uint); assert(dotype(0xFFFFFFFF) == T_uint); assert(dotype(0x100000000) == T_long); assert(dotype(0x7FFFFFFFFFFFFFFF) == T_long); assert(dotype(0x8000000000000000) == T_ulong); assert(dotype(0xFFFFFFFFFFFFFFFF) == T_ulong); assert(dotype(0u) == T_uint); assert(dotype(0x7FFFu) == T_uint); assert(dotype(0x8000u) == T_uint); assert(dotype(0xFFFFu) == T_uint); assert(dotype(0x10000u) == T_uint); assert(dotype(0x7FFFFFFFu) == T_uint); assert(dotype(0x80000000u) == T_uint); assert(dotype(0xFFFFFFFFu) == T_uint); assert(dotype(0x100000000u) == T_ulong); assert(dotype(0x7FFFFFFFFFFFFFFFu) == T_ulong); assert(dotype(0x8000000000000000u) == T_ulong); assert(dotype(0xFFFFFFFFFFFFFFFFu) == T_ulong); assert(dotype(0L) == T_long); assert(dotype(0x7FFFL) == T_long); assert(dotype(0x8000L) == T_long); assert(dotype(0xFFFFL) == T_long); assert(dotype(0x10000L) == T_long); assert(dotype(0x7FFFFFFFL) == T_long); assert(dotype(0x80000000L) == T_long); assert(dotype(0xFFFFFFFFL) == T_long); assert(dotype(0x100000000L) == T_long); assert(dotype(0x7FFFFFFFFFFFFFFFL) == T_long); assert(dotype(0x8000000000000000L) == T_ulong); assert(dotype(0xFFFFFFFFFFFFFFFFL) == T_ulong); assert(dotype(0uL) == T_ulong); assert(dotype(0x7FFFuL) == T_ulong); assert(dotype(0x8000uL) == T_ulong); assert(dotype(0xFFFFuL) == T_ulong); assert(dotype(0x10000uL) == T_ulong); assert(dotype(0x7FFFFFFFuL) == T_ulong); assert(dotype(0x80000000uL) == T_ulong); assert(dotype(0xFFFFFFFFuL) == T_ulong); assert(dotype(0x100000000uL) == T_ulong); assert(dotype(0x7FFFFFFFFFFFFFFFuL) == T_ulong); assert(dotype(0x8000000000000000uL) == T_ulong); assert(dotype(0xFFFFFFFFFFFFFFFFuL) == T_ulong); /***************** Decimal ***********************/ assert(dotype(0) == T_int); assert(dotype(32767) == T_int); assert(dotype(32768) == T_int); assert(dotype(65535) == T_int); assert(dotype(65536) == T_int); assert(dotype(2147483647) == T_int); assert(dotype(2147483648) == T_long); assert(dotype(4294967295) == T_long); assert(dotype(4294967296) == T_long); assert(dotype(9223372036854775807) == T_long); //assert(dotype(9223372036854775808) == T_long); //assert(dotype(18446744073709551615) == T_ulong); assert(dotype(0u) == T_uint); assert(dotype(32767u) == T_uint); assert(dotype(32768u) == T_uint); assert(dotype(65535u) == T_uint); assert(dotype(65536u) == T_uint); assert(dotype(2147483647u) == T_uint); assert(dotype(2147483648u) == T_uint); assert(dotype(4294967295u) == T_uint); assert(dotype(4294967296u) == T_ulong); assert(dotype(9223372036854775807u) == T_ulong); assert(dotype(9223372036854775808u) == T_ulong); assert(dotype(18446744073709551615u) == T_ulong); assert(dotype(0L) == T_long); assert(dotype(32767L) == T_long); assert(dotype(32768L) == T_long); assert(dotype(65535L) == T_long); assert(dotype(65536L) == T_long); assert(dotype(2147483647L) == T_long); assert(dotype(2147483648L) == T_long); assert(dotype(4294967295L) == T_long); assert(dotype(4294967296L) == T_long); assert(dotype(9223372036854775807L) == T_long); //assert(dotype(9223372036854775808L) == T_ulong); //assert(dotype(18446744073709551615L) == T_ulong); assert(dotype(0uL) == T_ulong); assert(dotype(32767uL) == T_ulong); assert(dotype(32768uL) == T_ulong); assert(dotype(65535uL) == T_ulong); assert(dotype(65536uL) == T_ulong); assert(dotype(2147483647uL) == T_ulong); assert(dotype(2147483648uL) == T_ulong); assert(dotype(4294967295uL) == T_ulong); assert(dotype(4294967296uL) == T_ulong); assert(dotype(9223372036854775807uL) == T_ulong); assert(dotype(9223372036854775808uL) == T_ulong); assert(dotype(18446744073709551615uL) == T_ulong); } void test2() { ulong[] a = [ 2_463_534_242UL ]; foreach(e; a) assert(e == 2_463_534_242UL); } int main() { test1(); test2(); printf("Success\n"); return 0; }
D
// 104 Foofunc f; typedef int Foo; alias int function(Foo) Foofunc;
D
/Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/Objects-normal/x86_64/Lexer.o : /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroCompatible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier+HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UIViewControllerTransitioningDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UINavigationControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UITabBarControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroViewControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Animate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransitionState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTargetState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Complete.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Interactive.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+CustomTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CG+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/DispatchQueue+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CAMediaTimingFunction+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIViewController+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CALayer+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIKit+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIView+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/Array+HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroProgressRunner.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Parser.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Lexer.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/SourcePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/CascadePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/BasePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/MatchPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/ConditionalPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/DefaultAnimationPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/IgnoreSubviewModifiersPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroDefaultAnimator.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Nodes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTypes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Start.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroCoreAnimationViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroAnimatorViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroViewPropertyViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugView.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Regex.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/ModelIO.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/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/MetalKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/benormos/Desktop/MyFutureBox/Pods/Target\ Support\ Files/Hero/Hero-umbrella.h /Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/ModelIO.framework/Headers/ModelIO.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/MetalKit.framework/Headers/MetalKit.apinotes /Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/Objects-normal/x86_64/Lexer~partial.swiftmodule : /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroCompatible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier+HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UIViewControllerTransitioningDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UINavigationControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UITabBarControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroViewControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Animate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransitionState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTargetState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Complete.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Interactive.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+CustomTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CG+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/DispatchQueue+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CAMediaTimingFunction+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIViewController+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CALayer+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIKit+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIView+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/Array+HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroProgressRunner.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Parser.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Lexer.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/SourcePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/CascadePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/BasePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/MatchPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/ConditionalPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/DefaultAnimationPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/IgnoreSubviewModifiersPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroDefaultAnimator.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Nodes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTypes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Start.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroCoreAnimationViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroAnimatorViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroViewPropertyViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugView.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Regex.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/ModelIO.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/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/MetalKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/benormos/Desktop/MyFutureBox/Pods/Target\ Support\ Files/Hero/Hero-umbrella.h /Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/ModelIO.framework/Headers/ModelIO.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/MetalKit.framework/Headers/MetalKit.apinotes /Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/Objects-normal/x86_64/Lexer~partial.swiftdoc : /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroCompatible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier+HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/HeroStringConvertible.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UIViewControllerTransitioningDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UINavigationControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+UITabBarControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroViewControllerDelegate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Animate.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransitionState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTargetState.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Complete.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Interactive.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroPlugin.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+CustomTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CG+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/DispatchQueue+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CAMediaTimingFunction+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIViewController+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/CALayer+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIKit+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/UIView+Hero.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Extensions/Array+HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroModifier.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroProgressRunner.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Parser.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Lexer.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/SourcePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/CascadePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/BasePreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/MatchPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/ConditionalPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/DefaultAnimationPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Preprocessors/IgnoreSubviewModifiersPreprocessor.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroDefaultAnimator.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Nodes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroTypes.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Transition/HeroTransition+Start.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/HeroContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroCoreAnimationViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroAnimatorViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Animator/HeroViewPropertyViewContext.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Debug\ Plugin/HeroDebugView.swift /Users/benormos/Desktop/MyFutureBox/Pods/Hero/Sources/Parser/Regex.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/ModelIO.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/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/MetalKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/benormos/Desktop/MyFutureBox/Pods/Target\ Support\ Files/Hero/Hero-umbrella.h /Users/benormos/Desktop/MyFutureBox/build/Pods.build/Debug-iphonesimulator/Hero.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/ModelIO.framework/Headers/ModelIO.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk/System/Library/Frameworks/MetalKit.framework/Headers/MetalKit.apinotes
D
/Users/oyo02699/apps/easycrm/easycrm-api/target/debug/deps/r2d2-ae6bb791cfa29a2a.rmeta: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/lib.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/config.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/event.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/extensions.rs /Users/oyo02699/apps/easycrm/easycrm-api/target/debug/deps/libr2d2-ae6bb791cfa29a2a.rlib: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/lib.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/config.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/event.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/extensions.rs /Users/oyo02699/apps/easycrm/easycrm-api/target/debug/deps/r2d2-ae6bb791cfa29a2a.d: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/lib.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/config.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/event.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/extensions.rs /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/lib.rs: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/config.rs: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/event.rs: /Users/oyo02699/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/r2d2-0.8.9/src/extensions.rs:
D
/Users/in2macbookpro/Documents/Ivan/WebServiceTest/build/WebServiceTest.build/Release-iphoneos/WebServiceTest.build/Objects-normal/armv7/UIBeginScreenViewController.o : /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/DPTableData.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentsTableViewCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIBeginScreenViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/AppDelegate.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataTableViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/WebServiceHandler.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreImage.swiftmodule /Users/in2macbookpro/Documents/Ivan/WebServiceTest/build/WebServiceTest.build/Release-iphoneos/WebServiceTest.build/Objects-normal/armv7/UIBeginScreenViewController~partial.swiftmodule : /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/DPTableData.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentsTableViewCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIBeginScreenViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/AppDelegate.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataTableViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/WebServiceHandler.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreImage.swiftmodule /Users/in2macbookpro/Documents/Ivan/WebServiceTest/build/WebServiceTest.build/Release-iphoneos/WebServiceTest.build/Objects-normal/armv7/UIBeginScreenViewController~partial.swiftdoc : /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/DPTableData.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentsTableViewCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIBeginScreenViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataCell.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/AppDelegate.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UIDataTableViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/UICommentViewController.swift /Users/in2macbookpro/Documents/Ivan/WebServiceTest/WebServiceTest/WebServiceHandler.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/32/CoreImage.swiftmodule
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM ROCKTYPE 243.699997 85.5 10.1000004 21.2000008 42 47 38.4000015 -79.4000015 1634 11.8000002 15.3999996 intrusives 309 80 2 0 35 56 72 -112 1699 3.79999995 3.9000001 intrusives, diabase 217 85 16 60 35 56 72 -112 1697 31 31 extrusives, basalt 170.199997 82 2.5999999 32.7000008 48 55 47.9000015 -110.099998 292 3.5 3.5 intrusives 256.399994 77.0999985 13 0 2 56 46 -112 3368 21.7000008 21.7000008 extrusives, intrusives 117.699997 85.5 2.4000001 0 34 42 55.9000015 -63.4000015 3235 3.4000001 4 metamorphics, impact melt rocks 45.9000015 87.5999985 9.30000019 51.9000015 45 49 38.4000015 -79.5999985 2471 12 12 intrusives, felsite 146.199997 79.4000015 9.39999962 14.6000004 42 46 42.7999992 -107.300003 2209 9.60000038 9.60000038 extrusives 240 82 34 55 2 65 45 -110 2808 49 58 intrusives, porphyry 167.300003 81.1999969 5.19999981 27.7999992 49 53 47.4000015 -110.599998 1262 7.0999999 7.0999999 intrusives 177.399994 83.5 8.39999962 14.6999998 44 49 44.5 -110 2014 10.1000004 10.1000004 extrusives
D
var int PrayIdolDay; var int RecievedMoney; var int GivenHitpoints; var int GivenMana; const int BeliarsDispo = 10000; func void B_HitpointAngleich(var int BeliarsCost) { var int CurrentHitpoints; GivenHitpoints = GivenHitpoints + BeliarsCost; hero.attribute[ATR_HITPOINTS_MAX] = hero.attribute[ATR_HITPOINTS_MAX] - BeliarsCost; CurrentHitpoints = hero.attribute[ATR_HITPOINTS] - BeliarsCost; if(CurrentHitpoints < 2) { CurrentHitpoints = 2; }; hero.attribute[ATR_HITPOINTS] = CurrentHitpoints; }; func void B_ManaAngleich(var int BeliarsCost) { var int CurrentMana; GivenMana = GivenMana + BeliarsCost; hero.attribute[ATR_MANA_MAX] = hero.attribute[ATR_MANA_MAX] - BeliarsCost; hero.aivar[REAL_MANA_MAX] = hero.aivar[REAL_MANA_MAX] - BeliarsCost; CurrentMana = hero.attribute[ATR_MANA] - BeliarsCost; if(CurrentMana < 0) { CurrentMana = 0; }; hero.attribute[ATR_MANA] = CurrentMana; }; func void B_BlitzInArsch() { var int BlitzInArsch_Hitpoints; var int CurrentHitpoints; var int Abzug; var string concatText1; var string concatText2; CurrentHitpoints = hero.attribute[ATR_HITPOINTS]; BlitzInArsch_Hitpoints = (CurrentHitpoints * 4) / 5; if(BlitzInArsch_Hitpoints < 2) { BlitzInArsch_Hitpoints = 2; }; Abzug = hero.attribute[ATR_HITPOINTS] - BlitzInArsch_Hitpoints; if(Abzug > 0) { concatText1 = ConcatStrings(" ",NAME_Damage); concatText2 = ConcatStrings(IntToString(Abzug),concatText1); AI_PrintScreen(concatText2,-1,YPOS_GoldTaken,FONT_ScreenSmall,2); Wld_PlayEffect("spellFX_BELIARSRAGE",hero,hero,0,0,0,FALSE); }; hero.attribute[ATR_HITPOINTS] = BlitzInArsch_Hitpoints; }; func void B_GetBeliarsGold(var int Kohle) { var string concatText1; var string concatText2; RecievedMoney = RecievedMoney + Kohle; if(RecievedMoney > BeliarsDispo) { Kohle = 100; }; CreateInvItems(hero,ItMi_Gold,Kohle); concatText1 = ConcatStrings(IntToString(Kohle)," "); concatText2 = ConcatStrings(concatText1,PRINT_GoldErhalten); AI_PrintScreen(concatText2,-1,YPOS_GoldTaken,FONT_ScreenSmall,2); }; func void PrayIdol_S1() { var C_Npc her; her = Hlp_GetNpc(PC_Hero); if(Hlp_GetInstanceID(self) == Hlp_GetInstanceID(her)) { Wld_PlayEffect("DEMENTOR_FX",hero,hero,0,0,0,FALSE); self.aivar[AIV_INVINCIBLE] = TRUE; PLAYER_MOBSI_PRODUCTION = MOBSI_PRAYIDOL; AI_ProcessInfos(her); }; }; instance PC_PrayIdol_End(C_Info) { npc = PC_Hero; nr = 999; condition = PC_PrayIdol_End_Condition; information = PC_PrayIdol_End_Info; permanent = TRUE; description = Dialog_Ende; }; func int PC_PrayIdol_End_Condition() { if(PLAYER_MOBSI_PRODUCTION == MOBSI_PRAYIDOL) { return TRUE; }; }; func void PC_PrayIdol_End_Info() { b_endproductiondialog(); }; instance PC_PrayIdol_PrayIdol(C_Info) { npc = PC_Hero; nr = 2; condition = PC_PrayIdol_PrayIdol_Condition; information = PC_PrayIdol_PrayIdol_Info; permanent = TRUE; description = NAME_ADDON_BETEN; }; func int PC_PrayIdol_PrayIdol_Condition() { if(PLAYER_MOBSI_PRODUCTION == MOBSI_PRAYIDOL) { return TRUE; }; }; func void PC_PrayIdol_PrayIdol_Info() { Info_ClearChoices(PC_PrayIdol_PrayIdol); Info_AddChoice(PC_PrayIdol_PrayIdol,Dialog_Back,PC_PrayIdol_PrayIdol_Back); Info_AddChoice(PC_PrayIdol_PrayIdol,NAME_ADDON_PRAYIDOL_GIVENOTHING,PC_PrayIdol_PrayIdol_NoPay); if(GivenHitpoints <= 50) { if(hero.attribute[ATR_HITPOINTS_MAX] >= 40) { Info_AddChoice(PC_PrayIdol_PrayIdol,NAME_ADDON_PRAYIDOL_GIVEHITPOINT1,PC_PrayIdol_PrayIdol_SmallPay); }; if(hero.attribute[ATR_HITPOINTS_MAX] >= 40) { Info_AddChoice(PC_PrayIdol_PrayIdol,NAME_ADDON_PRAYIDOL_GIVEHITPOINT2,PC_PrayIdol_PrayIdol_MediumPay); }; if(hero.attribute[ATR_HITPOINTS_MAX] >= 40) { Info_AddChoice(PC_PrayIdol_PrayIdol,NAME_ADDON_PRAYIDOL_GIVEHITPOINT3,PC_PrayIdol_PrayIdol_BigPay); }; }; if(GivenMana <= 10) { if(hero.attribute[ATR_MANA_MAX] > 5) { Info_AddChoice(PC_PrayIdol_PrayIdol,NAME_ADDON_PRAYIDOL_GIVEMANA,PC_PrayIdol_PrayIdol_ManaPay); }; }; }; func void PC_PrayIdol_PrayIdol_Back() { Info_ClearChoices(PC_PrayIdol_PrayIdol); }; func void PC_PrayIdol_PrayIdol_NoPay() { B_BlitzInArsch(); Info_ClearChoices(PC_PrayIdol_PrayIdol); }; func void PC_PrayIdol_PrayIdol_SmallPay() { B_HitpointAngleich(1); if((PrayIdolDay == Wld_GetDay()) || (RecievedMoney >= BeliarsDispo)) { B_BlitzInArsch(); } else if((hero.guild == GIL_PAL) || (hero.guild == GIL_KDF)) { B_GetBeliarsGold(25); } else { B_GetBeliarsGold(50); }; PrayIdolDay = Wld_GetDay(); Info_ClearChoices(PC_PrayIdol_PrayIdol); }; func void PC_PrayIdol_PrayIdol_MediumPay() { B_HitpointAngleich(5); if((PrayIdolDay == Wld_GetDay()) || (RecievedMoney >= BeliarsDispo)) { B_BlitzInArsch(); } else if((hero.guild == GIL_PAL) || (hero.guild == GIL_KDF)) { B_GetBeliarsGold(125); } else { B_GetBeliarsGold(250); }; PrayIdolDay = Wld_GetDay(); Info_ClearChoices(PC_PrayIdol_PrayIdol); }; func void PC_PrayIdol_PrayIdol_BigPayManaPay() { if((PrayIdolDay == Wld_GetDay()) || (RecievedMoney >= BeliarsDispo)) { B_BlitzInArsch(); } else if((hero.guild == GIL_PAL) || (hero.guild == GIL_KDF)) { B_GetBeliarsGold(100); } else { B_GetBeliarsGold(200); }; PrayIdolDay = Wld_GetDay(); Info_ClearChoices(PC_PrayIdol_PrayIdol); }; func void PC_PrayIdol_PrayIdol_BigPay() { B_HitpointAngleich(10); PC_PrayIdol_PrayIdol_BigPayManaPay(); }; func void PC_PrayIdol_PrayIdol_ManaPay() { B_ManaAngleich(1); PC_PrayIdol_PrayIdol_BigPayManaPay(); }; instance PC_PrayShrine_UPGRATEBELIARSWEAPON(C_Info) { npc = PC_Hero; nr = 2; condition = PC_PrayShrine_UPGRATEBELIARSWEAPON_Condition; information = PC_PrayShrine_UPGRATEBELIARSWEAPON_Info; permanent = TRUE; description = NAME_ADDON_UPGRATEBELIARSWEAPON; }; func int PC_PrayShrine_UPGRATEBELIARSWEAPON_Condition() { if((Npc_KnowsInfo(other,DIA_Addon_Xardas_AddonSuccess)) && (PLAYER_MOBSI_PRODUCTION == MOBSI_PRAYIDOL) && (C_ScCanUpgrateBeliarsWeapon() == TRUE) && (C_ScHasBeliarsWeapon() == TRUE)) { return TRUE; }; }; func void PC_PrayShrine_UPGRATEBELIARSWEAPON_Info() { B_ClearBeliarsWeapon(); B_UpgrateBeliarsWeapon(); };
D
INSTANCE Info_Mod_Torlof_Hi (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Hi_Condition; information = Info_Mod_Torlof_Hi_Info; permanent = 0; important = 0; description = "Hi."; }; FUNC INT Info_Mod_Torlof_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Torlof_Hi_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Hi_15_00"); //Hi. AI_Output(self, hero, "Info_Mod_Torlof_Hi_01_01"); //Du lebst ja noch. AI_Output(self, hero, "Info_Mod_Torlof_Hi_01_02"); //Hätte nicht gedacht, dass ich dich nochmal wieder sehe. }; INSTANCE Info_Mod_Torlof_Auftrag (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Auftrag_Condition; information = Info_Mod_Torlof_Auftrag_Info; permanent = 0; important = 0; description = "Lares schickt mich."; }; FUNC INT Info_Mod_Torlof_Auftrag_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Lares_WillSoeldner)) && (Npc_KnowsInfo(hero, Info_Mod_Torlof_Hi)) && (Mod_Gilde == 0) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Auftrag_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Auftrag_15_00"); //Lares schickt mir. Du sollst mir einen Auftrag geben. AI_Output(self, hero, "Info_Mod_Torlof_Auftrag_01_01"); //Ok. Wie du sicher weißt, haben die Paladine unseren Anführer Lee damals verraten. Deshalb wurde er in die Barriere geworfen. AI_OUtput(self, hero, "Info_Mod_Torlof_Auftrag_01_02"); //Es ist also kein Wunder, dass wir uns gegen die Paladine auflehnen. AI_Output(self, hero, "Info_Mod_Torlof_Auftrag_01_03"); //Wir bräuchten etwas mit dem wir sie unter Druck setzen können. Doch uns kennen die Paladine, aber du bist neu hier. AI_Output(self, hero, "Info_Mod_Torlof_Auftrag_01_04"); //Geh in die Stadt und finde heraus was wir gegen die Paladine machen könnten. AI_Output(self, hero, "Info_Mod_Torlof_Auftrag_01_05"); //Du musst etwas beschaffen oder herausfinden, womit wir die Paladine in der Stadt unter Druck setzen können. AI_Output(hero, self, "Info_Mod_Torlof_Auftrag_15_06"); //Und wie soll ich dazu vorgehen? AI_Output(self, hero, "Info_Mod_Torlof_Auftrag_01_07"); //Dir wird schon etwas einfallen. Wenn du nicht weiter weißt, dann frag Gorn, den du ja noch aus den Zeiten der Kolonie kennst. Er hat seine Kontakte in der Stadt. Log_CreateTopic (TOPIC_MOD_TORLOFSPIONAGE, LOG_MISSION); B_SetTopicStatus (TOPIC_MOD_TORLOFSPIONAGE, LOG_RUNNING); B_LogEntry_More (TOPIC_MOD_SÖLDNER, TOPIC_MOD_TORLOFSPIONAGE, "Als Beweis meiner Loyalität zu Lee soll ich die Paladine ausspionieren.", "Torlof will, dass ich etwas herausfinde oder beschaffe, dass gegen die Paladine verwendet werden kann. Vielleicht kann Gorn mir ein paar Tipps geben."); }; INSTANCE Info_Mod_Torlof_Kristall (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Kristall_Condition; information = Info_Mod_Torlof_Kristall_Info; permanent = 0; important = 0; description = "Ich hab hier den Kristall der Paladine."; }; FUNC INT Info_Mod_Torlof_Kristall_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Auftrag)) && (Npc_KnowsInfo(hero, Info_Mod_Diego_Dieb)) && (Npc_HasItems(hero, Mod_PaladinKristall) >= 1) && (!Npc_KnowsInfo(hero, Info_Mod_Andre_Kristall)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Kristall_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Kristall_15_00"); //Ich hab hier den Kristall der Paladine. B_GiveInvItems (hero, self, Mod_PaladinKristall, 1); AI_Output(self, hero, "Info_Mod_Torlof_Kristall_01_01"); //Ein magischer Kristall. Darüber muss ich mich erst einmal mit Lares beraten. Komm in ein paar Stunden wieder. B_LogEntry (TOPIC_MOD_TORLOFSPIONAGE, "Von Gorn konnte ich erfahren, dass Paladin Lothar im oberen Viertel eine schwäche für Alkohol und eine große Klappe hat."); B_SetTopicStatus (TOPIC_MOD_TORLOFSPIONAGE, LOG_SUCCESS); B_GivePlayerXP (400); Npc_SetRefuseTalk(self, 120); }; INSTANCE Info_Mod_Torlof_KristallEnd (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_KristallEnd_Condition; information = Info_Mod_Torlof_KristallEnd_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Torlof_KristallEnd_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Kristall)) && (Npc_RefuseTalk(self) == FALSE) { return 1; }; }; FUNC VOID Info_Mod_Torlof_KristallEnd_Info() { AI_Output(self, hero, "Info_Mod_Torlof_KristallEnd_01_00"); //Da bist du ja. Nun, wirklich etwas anfangen können wir mit dem Kristall bei den Paladinen nicht. AI_Output(self, hero, "Info_Mod_Torlof_KristallEnd_01_01"); //Wir könnten ihn höchstens gegen ein paar Münzen zurückverkaufen. Aber da haben wir einen strategisch besseren Einfall. AI_Output(self, hero, "Info_Mod_Torlof_KristallEnd_01_02"); //Wenn du tatsächlich bei uns mitmachen willst, musst du noch den Kristall samt diesem Schreiben den Wassermagiern bei ihrer Ausgrabungsstätte bringen. CreateInvItems (hero, Mod_PaladinKristall, 1); CreateInvItems (hero, ItWr_TorlofForSaturas, 1); Npc_RemoveInvItems (self, Mod_PaladinKristall, 1); B_ShowGivenThings ("Kristall des Feuers und Nachricht erhalten"); AI_Output(self, hero, "Info_Mod_Torlof_Kristall_01_03"); //Danach kommst du mit dem Entgelt zu uns zurück. Log_CreateTopic (TOPIC_MOD_NL_KRISTALL, LOG_MISSION); B_SetTopicStatus (TOPIC_MOD_NL_KRISTALL, LOG_RUNNING); B_LogEntry (TOPIC_MOD_NL_KRISTALL, "Torlof hat mir aufgetragen den Kristall des Feuers zusammen mit einem Schreiben zu den Wassermagiern zu bringen. Die Bezahlung soll ich dann zu ihm bringen."); Wld_InsertNpc (Mod_7214_OUT_Halunke_NW, "PORTAL"); }; INSTANCE Info_Mod_Torlof_KristallEntgelt (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_KristallEntgelt_Condition; information = Info_Mod_Torlof_KristallEntgelt_Info; permanent = 0; important = 0; description = "Ich habe den Kristall übergeben."; }; FUNC INT Info_Mod_Torlof_KristallEntgelt_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Lance_KristallEntgelt)) && (Npc_HasItems(hero, ItMi_Gold) >= 1000) && (Npc_HasItems(hero, ItMi_MagicPaket) == 1) { return 1; }; }; FUNC VOID Info_Mod_Torlof_KristallEntgelt_Info() { AI_Output(hero, self, "Info_Mod_Torlof_KristallEntgelt_15_00"); //Ich habe den Kristall übergeben und dafür 1000 Goldstücke und dieses Paket erhalten. B_ShowGivenThings ("1000 Gold und Paket gegeben"); Npc_RemoveInvItems (hero, ItMi_Gold, 1000); Npc_RemoveInvItems (hero, ItMi_MagicPaket, 1); AI_Output(self, hero, "Info_Mod_Torlof_KristallEntgelt_01_01"); //Ausgezeichnet. Nun steht deiner Aufnahme nichts mehr im Weg. Geh am besten gleich zu Lares. B_SetTopicStatus (TOPIC_MOD_NL_KRISTALL, LOG_SUCCESS); B_GivePlayerXP (400); B_LogEntry (TOPIC_MOD_SÖLDNER, "Torlof meint, dass ich jetzt Söldner werden kann."); B_Göttergefallen(2, 3); }; INSTANCE Info_Mod_Torlof_NeueAufgabe (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_NeueAufgabe_Condition; information = Info_Mod_Torlof_NeueAufgabe_Info; permanent = 0; important = 0; description = "Hast du eine andere Aufgabe für mich?"; }; FUNC INT Info_Mod_Torlof_NeueAufgabe_Condition() { if ((Npc_KnowsInfo(hero, Info_Mod_Andre_Kristall)) || (Npc_KnowsInfo(hero, Info_Mod_Vatras_Kristall)) || (Npc_KnowsInfo(hero, Info_Mod_Pyrokar_Kristall))) && (Mod_Gilde == 0) && (Npc_KnowsInfo(hero, Info_Mod_Torlof_Auftrag)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_NeueAufgabe_Info() { AI_Output(hero, self, "Info_Mod_Torlof_NeueAufgabe_15_00"); //Hast du eine andere Aufgabe für mich? AI_Output(self, hero, "Info_Mod_Torlof_NeueAufgabe_01_01"); //Du hast deine erste Prüfung nicht bestanden. Aber wir wollen ja nicht so sein, du bekommst eine zweite Chance. AI_Output(hero, self, "Info_Mod_Torlof_NeueAufgabe_15_02"); //Was soll ich machen? AI_Output(self, hero, "Info_Mod_Torlof_NeueAufgabe_01_03"); //Bring uns einen weiteren Söldneranwärter. Wld_InsertNpc (Mod_200_NONE_Alvares_NW, "NW_CITY_ENTRANCE_01"); B_SetTopicStatus (TOPIC_MOD_TORLOFSPIONAGE, LOG_FAILED); Log_CreateTopic (TOPIC_MOD_TORLOF_NEUERANWÄRTER, LOG_MISSION); B_SetTopicStatus (TOPIC_MOD_TORLOF_NEUERANWÄRTER, LOG_RUNNING); B_LogEntry_More (TOPIC_MOD_SÖLDNER, TOPIC_MOD_TORLOF_NEUERANWÄRTER, "Ich soll einen neuen Söldneranwärter zu Torlof bringen.", "Torlof hat mir aufgetragen einen Söldneranwärter zu finden. Vielleicht kann mir Gorn einen Tipp geben."); }; INSTANCE Info_Mod_Torlof_Alvares (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Alvares_Condition; information = Info_Mod_Torlof_Alvares_Info; permanent = 0; important = 0; description = "Ich hab einen neuen Anwärter für euch."; }; FUNC INT Info_Mod_Torlof_Alvares_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Alvares_Hof)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Alvares_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Alvares_15_00"); //Ich hab einen neuen Anwärter für euch. AI_Output(self, hero, "Info_Mod_Torlof_Alvares_01_01"); //Wen? AI_Output(hero, self, "Info_Mod_Torlof_Alvares_15_02"); //Alvares. Er hat sich mit einer Miliz geprügelt und ich musste ihn aus dem Gefängnis befreien. AI_Output(self, hero, "Info_Mod_Torlof_Alvares_01_03"); //Sehr gut. Du hast die Prüfung bestanden. Damit kannst du uns nun beitreten. B_LogEntry_More (TOPIC_MOD_SÖLDNER, TOPIC_MOD_TORLOF_NEUERANWÄRTER, "Ich hab die Prüfung bestanden", "Ich kann jetzt Söldner werden."); B_SetTopicStatus (TOPIC_MOD_TORLOF_NEUERANWÄRTER, LOG_SUCCESS); B_GivePlayerXP (300); B_Göttergefallen(2, 1); }; INSTANCE Info_Mod_Torlof_Hexen (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Hexen_Condition; information = Info_Mod_Torlof_Hexen_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Torlof_Hexen_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Hi)) && (Mod_WM_Beeinflussend == 1) && (Mod_TrfWoman == 1) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Hexen_Info() { AI_Output(self, hero, "Info_Mod_Torlof_Hexen_01_00"); //Hallo Kleine. Wollen wir nicht etwas Spaß miteinander haben? So wie du aussiehst willst du es doch auch. AI_Output(hero, self, "Info_Mod_Torlof_Hexen_15_01"); //Gerne. AI_Output(self, hero, "Info_Mod_Torlof_Hexen_01_02"); //Was, wirklich ...?! Wollen wir dann etwas aufs Zimmer gehen. AI_Output(hero, self, "Info_Mod_Torlof_Hexen_15_03"); //Sicher. Da gibt es nur ein Problem ... AI_Output(self, hero, "Info_Mod_Torlof_Hexen_01_04"); //Ach, zier dich nicht so. Welches Problem? Mod_WM_Beeinflussend = 0; Info_ClearChoices (Info_Mod_Torlof_Hexen); Info_AddChoice (Info_Mod_Torlof_Hexen, "Du stehst in Flammen. Schnell.", Info_Mod_Torlof_Hexen_B); Info_AddChoice (Info_Mod_Torlof_Hexen, "Auf dem Hof stehen lauter Goblins herum, die mich bedrohen.", Info_Mod_Torlof_Hexen_A); }; FUNC VOID Info_Mod_Torlof_Hexen_B() { AI_Output(hero, self, "Info_Mod_Torlof_Hexen_B_15_00"); //Du stehst in Flammen. Schnell, entledige dich deiner Kleidung und renn auf dem Hof herum, um die Flammen zu löschen. AI_Output(self, hero, "Info_Mod_Torlof_Hexen_B_01_01"); //Was?! Wuahh, tatsächlich, diese Hitze diese Schmerzen. AI_UnequipArmor (self); B_LogEntry (TOPIC_MOD_ADANOS_UNHEIL, "So, nachdem ich Torlof dem Wahnsinn preisgab, kann ich Elena davon berichten."); Info_ClearChoices (Info_Mod_Torlof_Hexen); AI_StopProcessInfos (self); AI_StartState (self, ZS_Flee, 0, ""); }; FUNC VOID Info_Mod_Torlof_Hexen_A() { AI_Output(hero, self, "Info_Mod_Torlof_Hexen_A_15_00"); //Auf dem Hof stehen lauter Goblins herum, die mich bedrohen. Erledige sie, dann können wir zur Sache kommen. AI_Output(self, hero, "Info_Mod_Torlof_Hexen_A_01_01"); //Was Goblins?! Ja, tatsächlich, jetzt sehe ich sie auch. B_LogEntry (TOPIC_MOD_ADANOS_UNHEIL, "So, nachdem ich Torlof dem Wahnsinn preisgab, kann ich Elena davon berichten."); Info_ClearChoices (Info_Mod_Torlof_Hexen); AI_StopProcessInfos (self); B_Attack (self, Mod_798_SLD_Wolf_NW, AR_None, 0); }; INSTANCE Info_Mod_Torlof_Grog (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Grog_Condition; information = Info_Mod_Torlof_Grog_Info; permanent = 0; important = 0; description = "Ich hab hier was für dich."; }; FUNC INT Info_Mod_Torlof_Grog_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Hi)) && (Npc_KnowsInfo(hero, Info_Mod_Skip_Francis)) && (Npc_HasItems(hero, Mod_GrogPaket) == 1) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Grog_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Grog_15_00"); //Ich hab hier was für dich. AI_Output(self, hero, "Info_Mod_Torlof_Grog_01_01"); //Was denn? AI_Output(hero, self, "Info_Mod_Torlof_Grog_15_02"); //Ein Paket voller Grog. B_GiveInvItems (hero, self, Mod_GrogPaket, 1); AI_Output(self, hero, "Info_Mod_Torlof_Grog_01_03"); //Wurde aber auch langsam Zeit. Endlich haben wir hier mal wieder was ordentliches zu trinken. AI_Output(self, hero, "Info_Mod_Torlof_Grog_01_04"); //Hier ist dein Gold. B_GiveInvItems (self, hero, ItMi_Gold, 500); }; INSTANCE Info_Mod_Torlof_HaradLehrling (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling_Condition; information = Info_Mod_Torlof_HaradLehrling_Info; permanent = 0; important = 0; description = "Harad schickt mich, um dir ein Angebot zu machen."; }; FUNC INT Info_Mod_Torlof_HaradLehrling_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Harad_Job)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling_15_00"); //Harad schickt mich, um dir ein Angebot zu machen. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling_01_01"); //Harad? Wir haben doch Bennet. Der stellt alles her, was wir brauchen. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling_01_02"); //Außerdem soll Harad ein ziemliches Arschloch sein. Wieso sollte uns sein Angebot interessieren? }; INSTANCE Info_Mod_Torlof_HaradLehrling2 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling2_Condition; information = Info_Mod_Torlof_HaradLehrling2_Info; permanent = 0; important = 0; description = "Schau dir dieses Schwert an."; }; FUNC INT Info_Mod_Torlof_HaradLehrling2_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_HaradLehrling)) && (Npc_HasItems(hero, ItMw_HaradSchwert) == 1) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling2_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling2_15_00"); //Schau dir dieses Schwert an. B_GiveInvItems (hero, self, ItMw_HaradSchwert, 1); EquipWeapon (self, ItMw_HaradSchwert); AI_DrawWeapon (self); AI_PlayAni (self, "T_1HSINSPECT"); AI_RemoveWeapon (self); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling2_01_01"); //Wahrlich nicht schlecht. Aber ich bin kein Experte für Schwerter und kann nicht beurteilen, ob es sich besser macht als die Schwerter von Bennet. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling2_01_02"); //Wie wär's, wenn du dich mit Hock messen würdest? AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling2_01_03"); //Der dürfte etwa deine Kragenweite haben, und ich könnte mir anschauen, wie sich die Waffe im Kampf verhält. }; INSTANCE Info_Mod_Torlof_HaradLehrling3 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling3_Condition; information = Info_Mod_Torlof_HaradLehrling3_Info; permanent = 0; important = 0; description = "Klar doch."; }; FUNC INT Info_Mod_Torlof_HaradLehrling3_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_HaradLehrling2)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling3_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling3_15_00"); //Klar doch. AI_TurnToNpc (self, Mod_1200_SLD_Soeldner_NW); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling3_01_01"); //(ruft) Hock, komm mal her! AI_TurnToNpc (self, hero); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling3_01_02"); //Ihr zwei Hübschen werdet jetzt einen Übungskampf austragen. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling3_01_03"); //Nimm das Schwert und zeig, was du drauf hast. B_GiveInvItems (self, hero, ItMw_HaradSchwert, 1); EquipWeapon (hero, ItMw_HaradSchwert); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling3_01_04"); //3, 2, 1, los! AI_StopProcessInfos (self); B_StartOtherRoutine (Mod_1200_SLD_Soeldner_NW, "HARAD"); }; INSTANCE Info_Mod_Torlof_HaradLehrling4 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling4_Condition; information = Info_Mod_Torlof_HaradLehrling4_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Torlof_HaradLehrling4_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_HaradLehrling2)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling4_Info() { if (Mod_HaradLehrling_Kampf == 0) { AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling4_01_00"); //Sieht passabel aus. Leicht, schnell und gut ausbalanciert. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling4_01_01"); //Sag Harad, dass wir bereit wären, eine Probelieferung von ihm entgegen zu nehmen. B_LogEntry (TOPIC_MOD_LEHRLING_HARAD_ONE, "Ich konnte Torlof davon überzeugen, eine Lieferung bei Harad zu bestellen. Ich sollte die Nachricht schnellstmöglich überbringen."); } else { AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling4_01_02"); //(lacht ausgiebig) Meinst du, ich sehe nicht, wenn du die Waffe wechselst? AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling4_01_03"); //Das war ja mal die schlechteste Verarsche, die mir je untergekommen ist! AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling4_15_04"); //Wollt ihr die Waffen trotzdem bei Harad kaufen? AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling4_01_05"); //Du hast Nerven! Scher dich zurück zu ihm! }; B_StartOtherRoutine (Mod_1200_SLD_Soeldner_NW, "START"); }; INSTANCE Info_Mod_Torlof_HaradLehrling5 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling5_Condition; information = Info_Mod_Torlof_HaradLehrling5_Info; permanent = 0; important = 0; description = "Eine Waffenlieferung von Torlof."; }; FUNC INT Info_Mod_Torlof_HaradLehrling5_Condition() { if (Npc_HasItems(hero, ItMi_Waffenbuendel) > 0) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling5_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling5_15_00"); //Eine Waffenlieferung von Torlof. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_01"); //Das wurde aber auch Zeit. Wir haben schon seit Tagen darauf gewartet. AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling5_15_02"); //Die Paladine waren nicht damit einverstanden, dass Harad für euch arbeitet. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_03"); //(lacht) Das verstehe ich gut. Aber das Schlitzohr hat's dann ja doch geschafft. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_04"); //Dann lass mal sehen. B_GiveInvItems (hero, self, ItMi_Waffenbuendel, 1); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_05"); //(zählt murmelnd) 5, 10, 15, 17... Bloß 17 Schwerter? Wir hatten 20 bestellt. AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling5_15_06"); //Bist du dir sicher? AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_07"); //Ja. 20 Schwerter zu je 100 Goldmünzen. Ganz klare Rechnung. AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling5_15_08"); //Dann gibst du mir jetzt das Gold, und ich sag Harad, dass er noch drei Schwerter schmieden soll. AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_09"); //So läuft das nicht. Wir bezahlen nur das, was wir auch bekommen. B_GiveInvItems (self, hero, ItMi_Gold, 1700); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling5_01_10"); //Wenn Harad mehr will, soll er schnell liefern, sonst überlegen wir es uns vielleicht anders. B_LogEntry (TOPIC_MOD_LEHRLING_HARAD_TWO, "Torlof behauptet, dass er drei Schwerter zu wenig von Harad erhalten hat, und hat mir deshalb auch nicht so viel Gold gegeben, wie Harad wollte."); }; INSTANCE Info_Mod_Torlof_HaradLehrling6 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling6_Condition; information = Info_Mod_Torlof_HaradLehrling6_Info; permanent = 0; important = 0; description = "Hier sind die fehlenden Schwerter."; }; FUNC INT Info_Mod_Torlof_HaradLehrling6_Condition() { if (Npc_HasItems(hero, ItMw_1H_Common_01) >= 3) && (Schaerfen_Perk == TRUE) && (Npc_KnowsInfo(hero, Info_Mod_Harad_LehrlingQuest3)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling6_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling6_15_00"); //Hier sind die fehlenden Schwerter. B_GiveInvItems (hero, self, ItMw_1H_Common_01, 3); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling6_01_01"); //Du und dein Meister, ihr braucht immer ziemlich lang. Aber über die Qualität kann man sich nicht beschweren. B_GiveInvItems (self, hero, ItMi_Gold, 300); AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling6_01_02"); //Ich hoffe nur, dass ihr euch beim nächsten Auftrag mehr beeilt. B_SetTopicStatus (TOPIC_MOD_LEHRLING_HARAD_TWO, LOG_SUCCESS); B_GivePlayerXP (100); }; INSTANCE Info_Mod_Torlof_HaradLehrling7 (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_HaradLehrling7_Condition; information = Info_Mod_Torlof_HaradLehrling7_Info; permanent = 0; important = 0; description = "Kann ich euch meine Dienste als Schmied anbieten?"; }; FUNC INT Info_Mod_Torlof_HaradLehrling7_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Harad_LehrlingQuest9)) { return 1; }; }; FUNC VOID Info_Mod_Torlof_HaradLehrling7_Info() { AI_Output(hero, self, "Info_Mod_Torlof_HaradLehrling7_15_00"); //Kann ich euch meine Dienste als Schmied anbieten? AI_Output(self, hero, "Info_Mod_Torlof_HaradLehrling7_01_01"); //Nein, danke. Nach den Schwierigkeiten, die wir mit Harad hatten, bleiben wir jetzt doch lieber bei Bennet. Tut mir Leid. }; INSTANCE Info_Mod_Torlof_Lehrer (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Lehrer_Condition; information = Info_Mod_Torlof_Lehrer_Info; permanent = 0; important = 0; description = "Kannst du mir was beibringen?"; }; FUNC INT Info_Mod_Torlof_Lehrer_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Hi)) && ((Mod_Gilde == 4) || (Mod_Gilde == 5) || (Mod_Gilde == 19)) && (Mod_Schwierigkeit != 4) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Lehrer_Info() { B_Say (hero, self, "$KANNSTDUMIRWASBEIBRINGEN"); AI_Output(self, hero, "Info_Mod_Torlof_Lehrer_01_01"); //Ich kann dir helfen stärker zu werden. Log_CreateTopic (TOPIC_MOD_LEHRER_SOELDNER_ONAR, LOG_NOTE); B_LogEntry (TOPIC_MOD_LEHRER_SOELDNER_ONAR, "Torlof kann mir helfen Stärker zu werden."); }; INSTANCE Info_Mod_Torlof_Lernen (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Lernen_Condition; information = Info_Mod_Torlof_Lernen_Info; permanent = 1; important = 0; description = "Bring mir was bei."; }; FUNC INT Info_Mod_Torlof_Lernen_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Torlof_Lehrer)) && ((Mod_Gilde == 4) || (Mod_Gilde == 5) || (Mod_Gilde == 19)) && (Mod_Schwierigkeit != 4) { return 1; }; }; FUNC VOID Info_Mod_Torlof_Lernen_Info() { AI_Output(hero, self, "Info_Mod_Torlof_Lernen_15_00"); //Bring mir was bei. AI_Output(self, hero, "Info_Mod_Torlof_Lernen_01_01"); //Was willst du lernen? Info_ClearChoices (Info_Mod_Torlof_Lernen); Info_AddChoice (Info_Mod_Torlof_Lernen, DIALOG_BACK, Info_Mod_Torlof_Lernen_BACK); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR5 , B_GetLearnCostAttribute_New(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_5); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR1 , B_GetLearnCostAttribute(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_1); }; FUNC VOID Info_Mod_Torlof_Lernen_BACK() { Info_ClearChoices (Info_Mod_Torlof_Lernen); }; FUNC VOID Info_Mod_Torlof_Lernen_Staerke_5() { B_TeachAttributePoints_New (self, hero, ATR_STRENGTH, 5, 200); Info_ClearChoices (Info_Mod_Torlof_Lernen); Info_AddChoice (Info_Mod_Torlof_Lernen, DIALOG_BACK, Info_Mod_Torlof_Lernen_BACK); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR5 , B_GetLearnCostAttribute_New(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_5); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR1 , B_GetLearnCostAttribute(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_1); }; FUNC VOID Info_Mod_Torlof_Lernen_Staerke_1() { B_TeachAttributePoints (self, hero, ATR_STRENGTH, 1, 200); Info_ClearChoices (Info_Mod_Torlof_Lernen); Info_AddChoice (Info_Mod_Torlof_Lernen, DIALOG_BACK, Info_Mod_Torlof_Lernen_BACK); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR5 , B_GetLearnCostAttribute_New(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_5); Info_AddChoice (Info_Mod_Torlof_Lernen, B_BuildLearnString_New(PRINT_LearnSTR1 , B_GetLearnCostAttribute(hero, ATR_STRENGTH), ATR_STRENGTH) , Info_Mod_Torlof_Lernen_Staerke_1); }; INSTANCE Info_Mod_Torlof_Pickpocket (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_Pickpocket_Condition; information = Info_Mod_Torlof_Pickpocket_Info; permanent = 1; important = 0; description = Pickpocket_150; }; FUNC INT Info_Mod_Torlof_Pickpocket_Condition() { C_Beklauen (130, ItMi_Gold, 500); }; FUNC VOID Info_Mod_Torlof_Pickpocket_Info() { Info_ClearChoices (Info_Mod_Torlof_Pickpocket); Info_AddChoice (Info_Mod_Torlof_Pickpocket, DIALOG_BACK, Info_Mod_Torlof_Pickpocket_BACK); Info_AddChoice (Info_Mod_Torlof_Pickpocket, DIALOG_PICKPOCKET, Info_Mod_Torlof_Pickpocket_DoIt); }; FUNC VOID Info_Mod_Torlof_Pickpocket_BACK() { Info_ClearChoices (Info_Mod_Torlof_Pickpocket); }; FUNC VOID Info_Mod_Torlof_Pickpocket_DoIt() { if (B_Beklauen() == TRUE) { Info_ClearChoices (Info_Mod_Torlof_Pickpocket); } else { Info_ClearChoices (Info_Mod_Torlof_Pickpocket); Info_AddChoice (Info_Mod_Torlof_Pickpocket, DIALOG_PP_BESCHIMPFEN, Info_Mod_Torlof_Pickpocket_Beschimpfen); Info_AddChoice (Info_Mod_Torlof_Pickpocket, DIALOG_PP_BESTECHUNG, Info_Mod_Torlof_Pickpocket_Bestechung); Info_AddChoice (Info_Mod_Torlof_Pickpocket, DIALOG_PP_HERAUSREDEN, Info_Mod_Torlof_Pickpocket_Herausreden); }; }; FUNC VOID Info_Mod_Torlof_Pickpocket_Beschimpfen() { B_Say (hero, self, "$PICKPOCKET_BESCHIMPFEN"); B_Say (self, hero, "$DIRTYTHIEF"); Info_ClearChoices (Info_Mod_Torlof_Pickpocket); AI_StopProcessInfos (self); B_Attack (self, hero, AR_Theft, 1); }; FUNC VOID Info_Mod_Torlof_Pickpocket_Bestechung() { B_Say (hero, self, "$PICKPOCKET_BESTECHUNG"); var int rnd; rnd = r_max(99); if (rnd < 25) || ((rnd >= 25) && (rnd < 50) && (Npc_HasItems(hero, ItMi_Gold) < 50)) || ((rnd >= 50) && (rnd < 75) && (Npc_HasItems(hero, ItMi_Gold) < 100)) || ((rnd >= 75) && (rnd < 100) && (Npc_HasItems(hero, ItMi_Gold) < 200)) { B_Say (self, hero, "$DIRTYTHIEF"); Info_ClearChoices (Info_Mod_Torlof_Pickpocket); AI_StopProcessInfos (self); B_Attack (self, hero, AR_Theft, 1); } else { if (rnd >= 75) { B_GiveInvItems (hero, self, ItMi_Gold, 200); } else if (rnd >= 50) { B_GiveInvItems (hero, self, ItMi_Gold, 100); } else if (rnd >= 25) { B_GiveInvItems (hero, self, ItMi_Gold, 50); }; B_Say (self, hero, "$PICKPOCKET_BESTECHUNG_01"); Info_ClearChoices (Info_Mod_Torlof_Pickpocket); AI_StopProcessInfos (self); }; }; FUNC VOID Info_Mod_Torlof_Pickpocket_Herausreden() { B_Say (hero, self, "$PICKPOCKET_HERAUSREDEN"); if (r_max(99) < Mod_Verhandlungsgeschick) { B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_01"); Info_ClearChoices (Info_Mod_Torlof_Pickpocket); } else { B_Say (self, hero, "$PICKPOCKET_HERAUSREDEN_02"); }; }; INSTANCE Info_Mod_Torlof_EXIT (C_INFO) { npc = Mod_527_SLD_Torlof_NW; nr = 1; condition = Info_Mod_Torlof_EXIT_Condition; information = Info_Mod_Torlof_EXIT_Info; permanent = 1; important = 0; description = DIALOG_ENDE; }; FUNC INT Info_Mod_Torlof_EXIT_Condition() { return 1; }; FUNC VOID Info_Mod_Torlof_EXIT_Info() { AI_StopProcessInfos (self); };
D
module lib.random.string; //FIXME the module name is too nested import std.random : uniform; import std.conv : to; string generateRandomWord(ulong length) in { assert(length > 0); } body { string word = ""; for(auto i = 0; i < length; i++) { word ~= to!char(uniform(97, 123)); } return word; } string[] generateRandomWords(ulong n_words, ulong max_length) in { assert(max_length > 0); } body { string[] words; for(auto i = 0; i < n_words; i++) { ulong length = uniform(1, max_length+1); words ~= generateRandomWord(length); } return words; }
D
module wx.Document; public import wx.common; public import wx.EvtHandler; //! \cond VERSION version(NOT_READY_YET) { //! \cond EXTERN static extern (C) IntPtr wxDocument_ctor(IntPtr parent); static extern (C) void wxDocument_SetFilename(IntPtr self, string filename, bool notifyViews); static extern (C) IntPtr wxDocument_GetFilename(IntPtr self); static extern (C) void wxDocument_SetTitle(IntPtr self, string title); static extern (C) IntPtr wxDocument_GetTitle(IntPtr self); static extern (C) void wxDocument_SetDocumentName(IntPtr self, string name); static extern (C) IntPtr wxDocument_GetDocumentName(IntPtr self); static extern (C) bool wxDocument_GetDocumentSaved(IntPtr self); static extern (C) void wxDocument_SetDocumentSaved(IntPtr self, bool saved); static extern (C) bool wxDocument_Close(IntPtr self); static extern (C) bool wxDocument_Save(IntPtr self); static extern (C) bool wxDocument_SaveAs(IntPtr self); static extern (C) bool wxDocument_Revert(IntPtr self); //static extern (C) IntPtr wxDocument_SaveObject(IntPtr self, IntPtr stream); //static extern (C) IntPtr wxDocument_LoadObject(IntPtr self, IntPtr stream); static extern (C) IntPtr wxDocument_GetCommandProcessor(IntPtr self); static extern (C) void wxDocument_SetCommandProcessor(IntPtr self, IntPtr proc); static extern (C) bool wxDocument_DeleteContents(IntPtr self); static extern (C) bool wxDocument_Draw(IntPtr self, IntPtr wxDC); static extern (C) bool wxDocument_IsModified(IntPtr self); static extern (C) void wxDocument_Modify(IntPtr self, bool mod); static extern (C) bool wxDocument_AddView(IntPtr self, IntPtr view); static extern (C) bool wxDocument_RemoveView(IntPtr self, IntPtr view); static extern (C) IntPtr wxDocument_GetViews(IntPtr self); static extern (C) IntPtr wxDocument_GetFirstView(IntPtr self); static extern (C) void wxDocument_UpdateAllViews(IntPtr self, IntPtr sender, IntPtr hint); static extern (C) void wxDocument_NotifyClosing(IntPtr self); static extern (C) bool wxDocument_DeleteAllViews(IntPtr self); static extern (C) IntPtr wxDocument_GetDocumentManager(IntPtr self); static extern (C) IntPtr wxDocument_GetDocumentTemplate(IntPtr self); static extern (C) void wxDocument_SetDocumentTemplate(IntPtr self, IntPtr temp); static extern (C) bool wxDocument_GetPrintableName(IntPtr self, IntPtr buf); static extern (C) IntPtr wxDocument_GetDocumentWindow(IntPtr self); //! \endcond //----------------------------------------------------------------------------- alias Document wxDocument; public class Document : EvtHandler { public this(Document parent); public void SetFilename(string filename, bool notifyViews); public void Filename(string value); public string Filename() ; public void Title(string value); public string Title(); public void DocumentName(string value); public string DocumentName(); public bool DocumentSaved() ; public void DocumentSaved(bool value); public bool Close(); public bool Save(); public bool SaveAs(); public bool Revert(); public bool DeleteContents(); public bool Draw(DC dc); public bool IsModified(); public void IsModified(bool value) ; public void Modify(bool mod); public void NotifyClosing(); public bool DeleteAllViews(); public Window DocumentWindow() ; } } // version(NOT_READY_YET) //! \endcond
D
module hunt.wechat.bean.card.AdvancedInfoAbstract; //import com.alibaba.fastjson.annotation.JSONField; /** * 封面摘要结构体名称 * * * */ class AdvancedInfoAbstract { /** * 封面摘要简介。 * 添加必填,长度:24 */ @JSONField(name = "abstract") private string abstractText; /** * 封面图片列表,仅支持填入一个封面图片链接,上传图片接口上传获取图片获得链接, * 填写非CDN链接会报错,并在此填入。建议图片尺寸像素850*350 * 添加必填,长度:128 */ @JSONField(name = "icon_url_list") private string[] iconUrlList; /** * 封面摘要简介。 */ public string getAbstractText() { return abstractText; } /** * 封面摘要简介。 * 添加必填,长度:24 */ public void setAbstractText(string abstractText) { this.abstractText = abstractText; } /** * 封面图片列表。 */ public string[] getIconUrlList() { return iconUrlList; } /** * 封面图片列表,仅支持填入一个封面图片链接,上传图片接口上传获取图片获得链接, * 填写非CDN链接会报错,并在此填入。建议图片尺寸像素850*350 * 添加必填,长度:128 */ public void setIconUrlList(string[] iconUrlList) { this.iconUrlList = iconUrlList; } }
D