code
stringlengths
3
10M
language
stringclasses
31 values
module main; import std.conv; import std.array; import std.string; import std.stdio; import std.process; //import mustache; import st.net.scgi; import st.net.http; import std.uri; import std.regex; import std.datetime; import st.net.cookie; import st.net.forms; string escapeHTML(string unsafe) { return unsafe .replace("&", "&amp;") .replace("<", "&lt;") .replace(">", "&gh;") .replace("\"", "&quot;") .replace("'", "&#039;"); } FileData[][string] form_files_data; void index_view(Request request, Response response, string[string] context) { string html_tpl = ` <!DOCTYPE html> <html lang="ru"> <head> <title>Рапира SCGI</title> </head> <body> <h1>РАПИРА SCGI</h1> <table> {{ meta_vars }} </table> <h2>params</h2> <table> {{ params }} </table> <h2>context</h2> <table> {{ context }} </table> <h2>form_data</h2> <table> {{ form_data }} </table> </body> </html>`.strip(); form_files_data = request.form_files_data; string env = ""; foreach(varname, varval; request.meta_variables) if( varname != "QUERY_STRING" ) env ~= "<tr><td>" ~ varname ~ "</td><td><pre>" ~ escapeHTML(varval) ~ "</pre></td></tr>\n"; else env ~= "<tr><td>" ~ varname ~ "</td><td><pre>" ~ escapeHTML(decode(varval)) ~ "</pre></td></tr>\n"; html_tpl = html_tpl.replace("{{ meta_vars }}", env); string params; foreach(pname, pval; request.params) params ~= "<tr><td>" ~ pname ~ "</td><td><pre>" ~ escapeHTML(pval) ~ "</pre></td></tr>\n"; html_tpl = html_tpl.replace("{{ params }}", params); string ctx; foreach(pname, pval; context) ctx ~= "<tr><td>" ~ pname ~ "</td><td><pre>" ~ escapeHTML(pval) ~ "</pre></td></tr>\n"; html_tpl = html_tpl.replace("{{ context }}", ctx); string form_data; foreach(pname, pvals; request.form_data) foreach(pval; pvals) form_data ~= "<tr><td>" ~ pname ~ "</td><td><pre>" ~ escapeHTML(pval) ~ "</pre></td></tr>\n"; html_tpl = html_tpl.replace("{{ form_data }}", form_data); response.output ~= html_tpl ~ "\r\n"; foreach(filename, files_data; request.form_files_data) foreach(file_data; files_data) writeln(filename, ": (", file_data.content_type, "): ", file_data.data); (response.new_cookie("test_cookie", "new_test_value111")).mark_as_persistent(); //response.set_cookie("test_cookie2", "test_value2"); //response.set_cookie("test_cookie3", "test_value3"); } void files_view(Request request, Response response, string[string] context) { string filename = context.get("filename", ""); if( filename !in form_files_data ) { response.status_code(HTTPStatusCode.NOT_FOUND); response.output = "<b>Файл '%s' не найден!".format(filename); return; } response.headers["Content-Type"] = [form_files_data[filename][0].content_type]; response.output = cast(string)form_files_data[filename][0].data; } void main(string[] args) { auto srv = new SCGIServer!(); srv.routes = [ RouteEntry("files", &files_view, regex(r"^/rapira/file/(?P<filename>(\w|\.)+)/*$")), RouteEntry("default", &index_view, regex(r"^/rapira/test/(?P<testid>\d+)/*$")), RouteEntry("default", &index_view, regex(r"^.*$")) ]; writeln("Rapira SCGI started."); srv.run(); }
D
/Users/Ayaz/Documents/Courses/Hands-on Rust (The Pragmatic Programmers)/Testing/1/flappy_dragon/target/debug/build/glow-69ef1269cb306b8a/build_script_build-69ef1269cb306b8a: /Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/glow-0.4.0/build.rs /Users/Ayaz/Documents/Courses/Hands-on Rust (The Pragmatic Programmers)/Testing/1/flappy_dragon/target/debug/build/glow-69ef1269cb306b8a/build_script_build-69ef1269cb306b8a.d: /Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/glow-0.4.0/build.rs /Users/Ayaz/.cargo/registry/src/github.com-1ecc6299db9ec823/glow-0.4.0/build.rs:
D
module libxlsxd.worksheet; import libxlsxd.types; import libxlsxd.datetime; import libxlsxd.format; import libxlsxd.chart; import libxlsxd.xlsxwrap; private pure string genWriteOverloads() { import std.array : empty; import std.format : format; string[3][] fun = [ ["String", "string", ""], ["String", "string", "Format"], ["Int", "long", ""], ["Int", "long", "Format"], ["Boolean", "bool", ""], ["Boolean", "bool", "Format"], ["Number", "double", ""], ["Number", "double", "Format"], ["Datetime", "Datetime", ""], ["Datetime", "Datetime", "Format"], ["DateTime", "DateTime", ""], ["DateTime", "DateTime", "Format"], ["Date", "Date", ""], ["Date", "Date", "Format"], ["TimeOfDay", "TimeOfDay", ""], ["TimeOfDay", "TimeOfDay", "Format"], ["Formula", "string", ""], ["Formula", "string", "Format"], ["Url", "string", ""], ["Url", "string", "Format"], ["RichString", "lxw_rich_string_tuple**", ""], ["RichString", "lxw_rich_string_tuple**", "Format"], ]; string ret; version(No_Overloads_Or_Templates) { immutable overloads = false; ret ~= ` void writeBlank(RowType row, ColType col) @safe { this.writeBlankImpl(row, col, Format(null)); } void writeBlankFormat(RowType row, ColType col, Format f) @safe { this.writeBlankImpl(row, col, f); } void writeFormulaNum(RowType row, ColType col, string formula, double num) @safe { this.writeFormulaNumImpl(row, col, formula, num, Format(null)); } void writeFormulaNumFormat(RowType row, ColType col, string formula, double num, Format f) @safe { this.writeFormulaNumImpl(row, col, formula, num, f); } `; } else { immutable overloads = true; ret ~= ` void writeBlank(RowType row, ColType col) @safe { this.writeBlankImpl(row, col, Format(null)); } void writeBlank(RowType row, ColType col, Format f) @safe { this.writeBlankImpl(row, col, f); } void writeFormulaNum(RowType row, ColType col, string formula, double num) @safe { this.writeFormulaNumImpl(row, col, formula, num, Format(null)); } void writeFormulaNum(RowType row, ColType col, string formula, double num, Format f) @safe { this.writeFormulaNumImpl(row, col, formula, num, f); } `; } foreach(string[3] f; fun) { bool addi = !f[2].empty; ret ~= format( "void write%s%s(RowType row, ColType col, %s value%s) @safe {\n", f[0], !overloads && addi ? "Format" : "", f[1], addi ? ", Format f" : "" ); ret ~= format("\tthis.write%sImpl(row, col, value%s);\n}\n\n", f[0], addi ? ", f": ", Format(null)" ); } return ret; } struct Column { WorksheetFluent* wsf; this(WorksheetFluent* wsf) @safe { this.wsf = wsf; } Column writeInt(long value) @safe { return this.writeIntFormatted(value, Format(null)); } Column writeIntFormatted(long value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row++, this.wsf.pos.col, value, format); return this; } Column writeNumber(double value) @safe { return this.writeNumberFormatted(value, Format(null)); } Column writeNumberFormatted(double value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row++, this.wsf.pos.col, value, format); return this; } Column writeString(string value) @safe { return this.writeStringFormatted(value, Format(null)); } Column writeStringFormatted(string value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row++, this.wsf.pos.col, value, format); return this; } WorksheetFluent terminate() @safe { this.wsf.pos.row = 0; this.wsf.pos.col++; return *this.wsf; } } struct Row { WorksheetFluent* wsf; this(WorksheetFluent* wsf) @safe { this.wsf = wsf; } Row writeInt(long value) @safe { return this.writeIntFormatted(value, Format(null)); } Row writeIntFormatted(long value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row, this.wsf.pos.col++, value, format); return this; } Row writeNumber(double value) @safe { return this.writeNumberFormatted(value, Format(null)); } Row writeNumberFormatted(double value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row, this.wsf.pos.col++, value, format); return this; } Row writeString(string value) @safe { return this.writeStringFormatted(value, Format(null)); } Row writeStringFormatted(string value, Format format) @safe { this.wsf.ws.write(this.wsf.pos.row, this.wsf.pos.col++, value, format); return this; } WorksheetFluent terminate() @safe { this.wsf.pos.row++; this.wsf.pos.col = 0; return *this.wsf; } } struct Position { RowType row; ColType col; } struct WorksheetFluent { import libxlsxd.workbook : WorkbookOpen; WorkbookOpen* wb; Worksheet ws; Position pos; this(WorkbookOpen* wb, Worksheet ws) @safe { this.wb = wb; this.ws = ws; } Row startRow() @safe { return Row(&this); } Column startColumn() @safe { return Column(&this); } WorkbookOpen terminate() @safe { return *this.wb; } } struct Worksheet { import core.stdc.config : c_ulong; import std.datetime; import std.string : toStringz; import std.exception : enforce; lxw_worksheet* handle; private Format* dtf; private Format* df; private Format* tf; this(lxw_worksheet* handle, Format* dtf, Format* df, Format* tf) @nogc nothrow @safe { this.handle = handle; this.dtf = dtf; this.df = df; this.tf = tf; } mixin(genWriteOverloads()); void write(T)(RowType row, ColType col, T value) @safe { this.write(row, col, value, Format(null)); } void write(T)(RowType row, ColType col, T value, Format format) @trusted { import std.traits : isIntegral, isFloatingPoint, isSomeString; static if((isFloatingPoint!T || isIntegral!T) && !is(T == bool)) { this.writeNumberImpl(row, col, value, format); } else static if(isSomeString!T) { this.writeStringImpl(row, col, value, format); } else static if(is(T == TimeOfDay)) { format = format.handle == null ? *this.tf : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromTimeOfDay(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); } else static if(is(T == Date)) { format = format.handle == null ? *this.df : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromDate(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); } else static if(is(T == DateTime)) { format = format.handle == null ? *this.dtf : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromDateTime(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); } else static if(is(T == Datetime)) { this.writeDatetimeImpl(row, col, value, format); } else static if(is(T == bool)) { this.writeBooleanImpl(row, col, value, format); } else { static assert(false, "The function 'write' does not support type '" ~ T.stringof ~ "'"); } } size_t writeAndGetWidth(T)(RowType row, ColType col, T value) @safe { return writeAndGetWidth(row, col, value, Format(null)); } size_t writeAndGetWidth(T)(RowType row, ColType col, T value, Format format) @safe { import std.traits : isIntegral, isFloatingPoint, isSomeString; import std.conv : to; static if((isFloatingPoint!T || isIntegral!T) && !is(T == bool)) { this.writeNumberImpl(row, col, value, format); return to!string(value).length; } else static if(is(T == TimeOfDay)) { format = format.handle == null ? *this.tf : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromTimeOfday(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); return to!size_t(8); } else static if(is(T == Date)) { format = format.handle == null ? *this.df : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromTimeOfday(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); return to!size_t(10); } else static if(is(T == DateTime)) { format = format.handle == null ? *this.dtf : format; Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromDateTime(value); } else { theTime = Datetime(value); } this.writeDatetimeImpl(row, col, theTime, format); return to!size_t(19); } else static if(isSomeString!T) { this.writeStringImpl(row, col, value, format); return value.length; } else static if(is(T == bool)) { this.writeBooleanImpl(row, col, value, format); return value ? 4 : 5; } else { static assert(false, "The function 'writeAndGetWidth' does not " ~ " support type '" ~ T.stringof ~ "'"); } } void writeIntImpl(RowType row, ColType col, double num, Format format) @trusted { enforce(worksheet_write_number(this.handle, row, col, num, format.handle) == LXW_NO_ERROR); } void writeNumberImpl(RowType row, ColType col, double num, Format format) @trusted { enforce(worksheet_write_number(this.handle, row, col, num, format.handle) == LXW_NO_ERROR); } void writeStringImpl(RowType row, ColType col, string str, Format format) @trusted { enforce(worksheet_write_string(this.handle, row, col, toStringz(str), format.handle) == LXW_NO_ERROR); } private void writeFormulaImpl(RowType row, ColType col, string formula, Format format) @trusted { enforce(worksheet_write_formula(this.handle, row, col, toStringz(formula), format.handle) == LXW_NO_ERROR); } void writeArrayFormula(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string formula) @trusted { this.writeArrayFormulaImpl(firstRow, firstCol, lastRow, lastCol, formula, Format(null)); } version(No_Overloads_Or_Templates) { void writeArrayFormulaFormat(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string formula, Format format) @trusted { this.writeArrayFormulaImpl(firstRow, firstCol, lastRow, lastCol, formula, format); } } else { void writeArrayFormula(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string formula, Format format) @trusted { this.writeArrayFormulaImpl(firstRow, firstCol, lastRow, lastCol, formula, format); } } private void writeArrayFormulaImpl(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string formula, Format format) @trusted { enforce(worksheet_write_array_formula(this.handle, firstRow, firstCol, lastRow, lastCol, toStringz(formula), format.handle) == LXW_NO_ERROR); } void writeTimeOfDayImpl(RowType row, ColType col, TimeOfDay tod, Format format) @trusted { Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromTimeOfDay(tod); } else { theTime = Datetime(tod); } enforce(worksheet_write_datetime(this.handle, row, col, &theTime.handle, format.handle) == LXW_NO_ERROR); } void writeDateImpl(RowType row, ColType col, Date date, Format format) @trusted { Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromDate(date); } else { theTime = Datetime(date); } enforce(worksheet_write_datetime(this.handle, row, col, &theTime.handle, format.handle) == LXW_NO_ERROR); } void writeDateTimeImpl(RowType row, ColType col, DateTime dt, Format format) @trusted { Datetime theTime; version(No_Overloads_Or_Templates) { theTime = Datetime.fromDateTime(dt); } else { theTime = Datetime(dt); } enforce(worksheet_write_datetime(this.handle, row, col, &theTime.handle, format.handle) == LXW_NO_ERROR); } void writeDatetimeImpl(RowType row, ColType col, Datetime datetime, Format format) @trusted { enforce(worksheet_write_datetime(this.handle, row, col, &datetime.handle, format.handle) == LXW_NO_ERROR); } void writeUrlImpl(RowType row, ColType col, string url, Format format) @trusted { enforce(worksheet_write_url(this.handle, row, col, toStringz(url), format.handle) == LXW_NO_ERROR); } void writeBooleanImpl(RowType row, ColType col, bool value, Format format) @trusted { enforce(worksheet_write_boolean(this.handle, row, col, value, format.handle) == LXW_NO_ERROR); } void writeBlankImpl(RowType row, ColType col, Format format) @trusted { enforce(worksheet_write_blank(this.handle, row, col, format.handle) == LXW_NO_ERROR); } void writeFormulaNumImpl(RowType row, ColType col, string formula, double value, Format format) @trusted { enforce(worksheet_write_formula_num(this.handle, row, col, toStringz(formula), format.handle, value ) == LXW_NO_ERROR ); } void writeRichStringImpl(RowType row, ColType col, lxw_rich_string_tuple** rst, Format format) @trusted { enforce(worksheet_write_rich_string(this.handle, row, col, rst, format.handle ) == LXW_NO_ERROR ); } void setRow(RowType row, double height) @safe { this.setRowImpl(row, height, Format(null)); } version(No_Overloads_Or_Templates) { void setRowFormat(RowType row, double height, Format f) @safe { this.setRowImpl(row, height, f); } } else { void setRow(RowType row, double height, Format f) @safe { this.setRowImpl(row, height, f); } } private void setRowImpl(RowType row, double height, Format format) @trusted { enforce(worksheet_set_row(this.handle, row, height, format.handle) == LXW_NO_ERROR ); } void setRowOpt(RowType row, double height, lxw_row_col_options* options) @trusted { this.setRowOptImpl(row, height, options, Format(null)); } version(No_Overloads_Or_Templates) { void setRowOptFormat(RowType row, double height, lxw_row_col_options* options, Format f) @trusted { this.setRowOptImpl(row, height, options, f); } } else { void setRowOpt(RowType row, double height, lxw_row_col_options* options, Format f) @trusted { this.setRowOptImpl(row, height, options, f); } } private void setRowOptImpl(RowType row, double height, lxw_row_col_options* options, Format format) @trusted { enforce(worksheet_set_row_opt(this.handle, row, height, format.handle, options) == LXW_NO_ERROR); } void setColumn(ColType firstCol, ColType lastCol, double width) @trusted { this.setColumnImpl(firstCol, lastCol, width, Format(null)); } version(No_Overloads_Or_Templates) { void setColumnFormat(ColType firstCol, ColType lastCol, double width, Format f) @trusted { this.setColumnImpl(firstCol, lastCol, width, f); } } else { void setColumn(ColType firstCol, ColType lastCol, double width, Format f) @trusted { this.setColumnImpl(firstCol, lastCol, width, f); } } private void setColumnImpl(ColType firstCol, ColType lastCol, double width, Format format) @trusted { enforce(worksheet_set_column(this.handle, firstCol, lastCol, width, format.handle ) == LXW_NO_ERROR ); } void setColumnOpt(ColType firstCol, ColType lastCol, double width, lxw_row_col_options* options) @trusted { this.setColumnOptImpl(firstCol, lastCol, width, options, Format(null)); } version(No_Overloads_Or_Templates) { void setColumnOptFormat(ColType firstCol, ColType lastCol, double width, lxw_row_col_options* options, Format f) @trusted { this.setColumnOptImpl(firstCol, lastCol, width, options, f); } } else { void setColumnOpt(ColType firstCol, ColType lastCol, double width, lxw_row_col_options* options, Format f) @trusted { this.setColumnOptImpl(firstCol, lastCol, width, options, f); } } private void setColumnOptImpl(ColType firstCol, ColType lastCol, double width, lxw_row_col_options* options, Format format) @trusted { enforce(worksheet_set_column_opt(this.handle, firstCol, lastCol, width, format.handle, options) == LXW_NO_ERROR ); } void insertImage(RowType row, ColType col, string filename) @trusted { enforce(worksheet_insert_image(this.handle, row, col, toStringz(filename) ) == LXW_NO_ERROR ); } void insertImageOpt(RowType row, ColType col, string filename, lxw_image_options* options) @trusted { enforce(worksheet_insert_image_opt(this.handle, row, col, toStringz(filename), options ) == LXW_NO_ERROR ); } void insertImageBuffer(RowType row, ColType col, const(ubyte)* buf, object.size_t bufSize) @trusted { enforce(worksheet_insert_image_buffer(this.handle, row, col, buf, cast(c_ulong)bufSize ) == LXW_NO_ERROR ); } void insertImageBufferOpt(RowType row, ColType col, const(ubyte)* buf, object.size_t bufSize, lxw_image_options* options) @trusted { enforce(worksheet_insert_image_buffer_opt(this.handle, row, col, buf, cast(c_ulong)bufSize, options ) == LXW_NO_ERROR ); } void insertChart(RowType row, ColType col, Chart chart) @trusted { enforce(worksheet_insert_chart(this.handle, row, col, chart.handle) == LXW_NO_ERROR); } void insertChartOpt(RowType row, ColType col, Chart chart, lxw_chart_options* options) @trusted { enforce(worksheet_insert_chart_opt(this.handle, row, col, chart.handle, options ) == LXW_NO_ERROR ); } void mergeRange(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string str) @trusted { this.mergeRangeImpl(firstRow, firstCol, lastRow, lastCol, str, Format(null)); } version(No_Overloads_Or_Templates) { void mergeRangeFormat(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string str, Format f) @trusted { this.mergeRangeImpl(firstRow, firstCol, lastRow, lastCol, str, f); } } else { void mergeRange(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string str, Format f) @trusted { this.mergeRangeImpl(firstRow, firstCol, lastRow, lastCol, str, f); } } private void mergeRangeImpl(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, string str, Format format) @trusted { enforce(worksheet_merge_range(this.handle, firstRow, firstCol, lastRow, lastCol, toStringz(str), format.handle ) == LXW_NO_ERROR ); } void autofilter(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol) @trusted { enforce(worksheet_autofilter(this.handle, firstRow, firstCol, lastRow, lastCol) == LXW_NO_ERROR); } void dataValidationCell(RowType row, ColType col, lxw_data_validation* validator) @trusted { enforce(worksheet_data_validation_cell(this.handle, row, col, validator ) == LXW_NO_ERROR ); } void dataValidationRange(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol, lxw_data_validation* validator) @trusted { enforce(worksheet_data_validation_range(this.handle, firstRow, firstCol, lastRow, lastCol, validator ) == LXW_NO_ERROR ); } void activate() @nogc nothrow @trusted { worksheet_activate(this.handle); } void select() @nogc nothrow @trusted { worksheet_select(this.handle); } void hide() @nogc nothrow @trusted { worksheet_hide(this.handle); } void setFirstSheet() @nogc nothrow @trusted { worksheet_set_first_sheet(this.handle); } void freezePanes(RowType row, ColType col) @nogc nothrow @trusted { worksheet_freeze_panes(this.handle, row, col); } void splitPanes(double vertical, double horizontal) @nogc nothrow @trusted { worksheet_split_panes(this.handle, vertical, horizontal); } void setSelection(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol) @nogc nothrow @trusted { worksheet_set_selection(this.handle, firstRow, firstCol, lastRow, lastCol ); } void setLandscape() @nogc nothrow @trusted { worksheet_set_landscape(this.handle); } void setPortrait() @nogc nothrow @trusted { worksheet_set_portrait(this.handle); } void setPageView() @nogc nothrow @trusted { worksheet_set_page_view(this.handle); } void setPaper(ubyte paperType) @nogc nothrow @trusted { worksheet_set_paper(this.handle, paperType); } void setMargins(double left, double right, double top, double bottom) @nogc nothrow @trusted { worksheet_set_margins(this.handle, left, right, top, bottom); } void setHeader(string header) @trusted { enforce(worksheet_set_header(this.handle, toStringz(header)) == LXW_NO_ERROR ); } void setFooter(string footer) @trusted { enforce(worksheet_set_footer(this.handle, toStringz(footer)) == LXW_NO_ERROR ); } void setHeaderOpt(string header, lxw_header_footer_options* options) @trusted { enforce(worksheet_set_header_opt(this.handle, toStringz(header), options ) == LXW_NO_ERROR ); } void setFooterOpt(string footer, lxw_header_footer_options* options) @trusted { enforce(worksheet_set_footer_opt(this.handle, toStringz(footer), options ) == LXW_NO_ERROR ); } void setHPagebreaks(RowType[] row) @trusted { enforce(worksheet_set_h_pagebreaks(this.handle, row.ptr) == LXW_NO_ERROR ); } void setVPagebreaks(ColType[] col) @trusted { enforce(worksheet_set_v_pagebreaks(this.handle, col.ptr) == LXW_NO_ERROR ); } void printAcross() @nogc nothrow @trusted { worksheet_print_across(this.handle); } void setZoom(ushort scale) @nogc nothrow @trusted { worksheet_set_zoom(this.handle, scale); } void gridlines(ubyte option) @nogc nothrow @trusted { worksheet_gridlines(this.handle, option); } void centerHorizontally() @nogc nothrow @trusted { worksheet_center_horizontally(this.handle); } void centerVertically() @nogc nothrow @trusted { worksheet_center_vertically(this.handle); } void printRowColHeaders() @nogc nothrow @trusted { worksheet_print_row_col_headers(this.handle); } void repeatRows(RowType firstRow, RowType lastRow) @trusted { enforce(worksheet_repeat_rows(this.handle, firstRow, lastRow) == LXW_NO_ERROR); } void repeatColumns(ColType firstCol, ColType lastCol) @trusted { enforce(worksheet_repeat_columns(this.handle, firstCol, lastCol) == LXW_NO_ERROR ); } void printArea(RowType firstRow, ColType firstCol, RowType lastRow, ColType lastCol) @trusted { enforce(worksheet_print_area(this.handle, firstRow, firstCol, lastRow, lastCol ) == LXW_NO_ERROR ); } void fitToPages(ushort width, ushort height) @nogc nothrow @trusted { worksheet_fit_to_pages(this.handle, width, height); } void setStartPage(ushort startPage) @nogc nothrow @trusted { worksheet_set_start_page(this.handle, startPage); } void setPrintScale(ushort scale) @nogc nothrow @trusted { worksheet_set_print_scale(this.handle, scale); } void rightToLeft() @nogc nothrow @trusted { worksheet_right_to_left(this.handle); } void hideZero() @nogc nothrow @trusted { worksheet_hide_zero(this.handle); } void setTabColor(lxw_color_t color) @nogc nothrow @trusted { worksheet_set_tab_color(this.handle, color); } void protect(string password, lxw_protection* options) @trusted { worksheet_protect(this.handle, toStringz(password), options); } void outlineSettings(ubyte visible, ubyte symbolsBelow, ubyte symbolsRight, ubyte autoStyle) @nogc nothrow @trusted { worksheet_outline_settings(this.handle, visible, symbolsBelow, symbolsRight, autoStyle); } void setDefaultRow(double height, ubyte hideUnusedRows) @nogc nothrow @trusted { worksheet_set_default_row(this.handle, height, hideUnusedRows); } }
D
/** * Other global optimizations * * Copyright: Copyright (C) 1986-1998 by Symantec * Copyright (C) 2000-2022 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: Distributed under the Boost Software License, Version 1.0. * https://www.boost.org/LICENSE_1_0.txt * Source: https://github.com/dlang/dmd/blob/master/src/dmd/backend/gother.d * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/backend/gother.d * Documentation: https://dlang.org/phobos/dmd_backend_gother.html */ module dmd.backend.gother; version (SCPP) version = COMPILE; version (MARS) version = COMPILE; version (COMPILE) { import core.stdc.stdio; import core.stdc.stdlib; import core.stdc.time; import dmd.backend.cc; import dmd.backend.cdef; import dmd.backend.code_x86; import dmd.backend.oper; import dmd.backend.global; import dmd.backend.goh; import dmd.backend.el; import dmd.backend.symtab; import dmd.backend.ty; import dmd.backend.type; import dmd.backend.barray; import dmd.backend.dlist; import dmd.backend.dvec; nothrow: @safe: @trusted char symbol_isintab(const Symbol *s) { return sytab[s.Sclass] & SCSS; } extern (C++): version (SCPP) import parser; version (MARS) import dmd.backend.errors; /**********************************************************************/ alias Elemdatas = Rarray!(Elemdata); // Lists to help identify ranges of variables struct Elemdata { nothrow: elem *pelem; // the elem in question block *pblock; // which block it's in Barray!(elem*) rdlist; // list of definition elems for *pelem /*************************** * Reset memory so this allocation can be re-used. */ @trusted void reset() { rdlist.reset(); } /****************** * Initialize instance at ed. */ void emplace(elem *e,block *b) { this.pelem = e; this.pblock = b; } } /******************************** * Find `e` in Elemdata list. * Params: * e = elem to find * Returns: * Elemdata entry if found, * null if not */ @trusted Elemdata* find(ref Elemdatas eds, elem *e) { foreach (ref edl; eds) { if (edl.pelem == e) return &edl; } return null; } /***************** * Free list of Elemdata's. */ private void elemdatafree(ref Elemdatas eds) { foreach (ref ed; eds) ed.reset(); eds.reset(); } private __gshared { Elemdatas eqeqlist; // array of Elemdata's of OPeqeq & OPne elems Elemdatas rellist; // array of Elemdata's of relop elems Elemdatas inclist; // array of Elemdata's of increment elems } /*************************** Constant Propagation ***************************/ /************************** * Constant propagation. * Also detects use of variable before any possible def. */ @trusted void constprop() { rd_compute(); intranges(rellist, inclist); // compute integer ranges eqeqranges(eqeqlist); // see if we can eliminate some relationals elemdatafree(eqeqlist); elemdatafree(rellist); elemdatafree(inclist); } /************************************ * Compute reaching definitions. * Note: RD vectors are destroyed by this. */ private __gshared block *thisblock; @trusted private void rd_compute() { if (debugc) printf("constprop()\n"); assert(dfo); flowrd(); /* compute reaching definitions (rd) */ if (go.defnod.length == 0) /* if no reaching defs */ return; assert(rellist.length == 0 && inclist.length == 0 && eqeqlist.length == 0); block_clearvisit(); foreach (b; dfo[]) // for each block { switch (b.BC) { case BCjcatch: case BC_finally: case BC_lpad: case BCasm: case BCcatch: block_visit(b); break; default: break; } } foreach (i, b; dfo[]) // for each block { thisblock = b; //printf("block %d Bin ",i); vec_println(b.Binrd); //printf(" Bout "); vec_println(b.Boutrd); if (b.Bflags & BFLvisited) continue; // not reliable for this block if (b.Belem) { conpropwalk(b.Belem,b.Binrd); debug if (!(vec_equal(b.Binrd,b.Boutrd))) { int j; printf("block %d Binrd ", cast(int) i); vec_println(b.Binrd); printf(" Boutrd "); vec_println(b.Boutrd); WReqn(b.Belem); printf("\n"); vec_xorass(b.Binrd,b.Boutrd); j = cast(int)vec_index(0,b.Binrd); WReqn(go.defnod[j].DNelem); printf("\n"); } assert(vec_equal(b.Binrd,b.Boutrd)); } } } /*************************** * Support routine for constprop(). * Visit each elem in order * If elem is a reference to a variable, and * all the reaching defs of that variable are * defining it to be a specific constant, * Replace reference with that constant. * Generate warning if no reaching defs for a * variable, and the variable is on the stack * or in a register. * If elem is an assignment or function call or OPasm * Modify vector of reaching defs. */ @trusted private void conpropwalk(elem *n,vec_t IN) { vec_t L,R; elem *t; assert(n && IN); //printf("conpropwalk()\n"),elem_print(n); const op = n.Eoper; if (op == OPcolon || op == OPcolon2) { L = vec_clone(IN); switch (el_returns(n.EV.E1) * 2 | el_returns(n.EV.E2)) { case 3: // E1 and E2 return conpropwalk(n.EV.E1,L); conpropwalk(n.EV.E2,IN); vec_orass(IN,L); // IN = L | R break; case 2: // E1 returns conpropwalk(n.EV.E1,IN); conpropwalk(n.EV.E2,L); break; case 1: // E2 returns conpropwalk(n.EV.E1,L); conpropwalk(n.EV.E2,IN); break; case 0: // neither returns conpropwalk(n.EV.E1,L); vec_copy(L,IN); conpropwalk(n.EV.E2,L); break; default: break; } vec_free(L); } else if (op == OPandand || op == OPoror) { conpropwalk(n.EV.E1,IN); R = vec_clone(IN); conpropwalk(n.EV.E2,R); if (el_returns(n.EV.E2)) vec_orass(IN,R); // IN |= R vec_free(R); } else if (OTunary(op)) goto L3; else if (ERTOL(n)) { conpropwalk(n.EV.E2,IN); L3: t = n.EV.E1; if (OTassign(op)) { if (t.Eoper == OPvar) { // Note that the following ignores OPnegass if (OTopeq(op) && sytab[t.EV.Vsym.Sclass] & SCRD) { Barray!(elem*) rdl; listrds(IN,t,null,&rdl); if (!(config.flags & CFGnowarning)) // if warnings are enabled chkrd(t,rdl); if (auto e = chkprop(t,rdl)) { // Replace (t op= exp) with (t = e op exp) e = el_copytree(e); e.Ety = t.Ety; n.EV.E2 = el_bin(opeqtoop(op),n.Ety,e,n.EV.E2); n.Eoper = OPeq; } rdl.dtor(); } } else conpropwalk(t,IN); } else conpropwalk(t,IN); } else if (OTbinary(op)) { if (OTassign(op)) { t = n.EV.E1; if (t.Eoper != OPvar) conpropwalk(t,IN); } else conpropwalk(n.EV.E1,IN); conpropwalk(n.EV.E2,IN); } // Collect data for subsequent optimizations if (OTbinary(op) && n.EV.E1.Eoper == OPvar && n.EV.E2.Eoper == OPconst) { switch (op) { case OPlt: case OPgt: case OPle: case OPge: // Collect compare elems and their rd's in the rellist list if (tyintegral(n.EV.E1.Ety) && tyintegral(n.EV.E2.Ety) ) { //printf("appending to rellist\n"); elem_print(n); //printf("\trellist IN: "); vec_print(IN); printf("\n"); auto pdata = rellist.push(); pdata.emplace(n,thisblock); listrds(IN, n.EV.E1, null, &pdata.rdlist); } break; case OPaddass: case OPminass: case OPpostinc: case OPpostdec: // Collect increment elems and their rd's in the inclist list if (tyintegral(n.EV.E1.Ety)) { //printf("appending to inclist\n"); elem_print(n); //printf("\tinclist IN: "); vec_print(IN); printf("\n"); auto pdata = inclist.push(); pdata.emplace(n,thisblock); listrds(IN, n.EV.E1, null, &pdata.rdlist); } break; case OPne: case OPeqeq: // Collect compare elems and their rd's in the rellist list if (tyintegral(n.EV.E1.Ety) && !tyvector(n.Ety)) { //printf("appending to eqeqlist\n"); elem_print(n); auto pdata = eqeqlist.push(); pdata.emplace(n,thisblock); listrds(IN, n.EV.E1, null, &pdata.rdlist); } break; default: break; } } if (OTdef(op)) /* if definition elem */ updaterd(n,IN,null); /* then update IN vector */ /* now we get to the part that checks to see if we can */ /* propagate a constant. */ if (op == OPvar && sytab[n.EV.Vsym.Sclass] & SCRD) { //printf("const prop: %s\n", n.EV.Vsym.Sident.ptr); Barray!(elem*) rdl; listrds(IN,n,null,&rdl); if (!(config.flags & CFGnowarning)) // if warnings are enabled chkrd(n,rdl); elem *e = chkprop(n,rdl); if (e) { tym_t nty; nty = n.Ety; el_copy(n,e); n.Ety = nty; // retain original type } rdl.dtor(); } } /****************************** * Give error if there are no reaching defs for variable v. */ @trusted private void chkrd(elem *n, Barray!(elem*) rdlist) { Symbol *sv; int unambig; sv = n.EV.Vsym; assert(sytab[sv.Sclass] & SCRD); if (sv.Sflags & SFLnord) // if already printed a warning return; if (sv.ty() & (mTYvolatile | mTYshared)) return; unambig = sv.Sflags & SFLunambig; foreach (d; rdlist) { elem_debug(d); if (d.Eoper == OPasm) /* OPasm elems ruin everything */ return; if (OTassign(d.Eoper)) { if (d.EV.E1.Eoper == OPvar) { if (d.EV.E1.EV.Vsym == sv) return; } else if (!unambig) return; } else { if (!unambig) return; } } // If there are any asm blocks, don't print the message foreach (b; dfo[]) if (b.BC == BCasm) return; // If variable contains bit fields, don't print message (because if // bit field is the first set, then we get a spurious warning). // STL uses 0 sized structs to transmit type information, so // don't complain about them being used before set. if (type_struct(sv.Stype)) { if (sv.Stype.Ttag.Sstruct.Sflags & (STRbitfields | STR0size)) return; } static if (0) { // If variable is zero length static array, don't print message. // BUG: Suppress error even if variable is initialized with void. if (sv.Stype.Tty == TYarray && sv.Stype.Tdim == 0) { printf("sv.Sident = %s\n", sv.Sident); return; } } version (SCPP) { { OutBuffer buf; char *p2; type_tostring(&buf, sv.Stype); buf.writeByte(' '); buf.write(sv.Sident.ptr); p2 = buf.toString(); warerr(WM.WM_used_b4_set, p2); // variable used before set } } //version (MARS) version(none) { /* Watch out for: void test() { void[0] x; auto y = x; } */ if (type_size(sv.Stype) != 0) { error(n.Esrcpos.Sfilename, n.Esrcpos.Slinnum, n.Esrcpos.Scharnum, "variable %s used before set", sv.Sident.ptr); } } sv.Sflags |= SFLnord; // no redundant messages //elem_print(n); } /********************************** * Look through the vector of reaching defs (IN) to see * if all defs of n are of the same constant. If so, replace * n with that constant. * Bit fields are gross, so don't propagate anything with assignments * to a bit field. * Note the flaw in the reaching def vector. There is currently no way * to detect RDs from when the function is invoked, i.e. RDs for parameters, * statics and globals. This could be fixed by adding dummy defs for * them before startblock, but we just kludge it and don't propagate * stuff for them. * Returns: * null do not propagate constant * e constant elem that we should replace n with */ @trusted private elem * chkprop(elem *n, Barray!(elem*) rdlist) { elem *foundelem = null; int unambig; Symbol *sv; tym_t nty; uint nsize; targ_size_t noff; //printf("checkprop: "); WReqn(n); printf("\n"); assert(n && n.Eoper == OPvar); elem_debug(n); sv = n.EV.Vsym; assert(sytab[sv.Sclass] & SCRD); nty = n.Ety; if (!tyscalar(nty)) goto noprop; nsize = cast(uint)size(nty); noff = n.EV.Voffset; unambig = sv.Sflags & SFLunambig; foreach (d; rdlist) { elem_debug(d); //printf("\trd: "); WReqn(d); printf("\n"); if (d.Eoper == OPasm) /* OPasm elems ruin everything */ goto noprop; // Runs afoul of Buzilla 4506 /*if (OTassign(d.Eoper) && EBIN(d))*/ // if assignment elem if (OTassign(d.Eoper)) // if assignment elem { elem *t = d.EV.E1; if (t.Eoper == OPvar) { assert(t.EV.Vsym == sv); if (d.Eoper == OPstreq || !tyscalar(t.Ety)) goto noprop; // not worth bothering with these cases if (d.Eoper == OPnegass) goto noprop; // don't bother with this case, either /* Everything must match or we must skip this variable */ /* (in case of assigning to overlapping unions, etc.) */ if (t.EV.Voffset != noff || /* If sizes match, we are ok */ size(t.Ety) != nsize && !(d.EV.E2.Eoper == OPconst && size(t.Ety) > nsize && !tyfloating(d.EV.E2.Ety))) goto noprop; } else { if (unambig) /* unambiguous assignments only */ continue; goto noprop; } if (d.Eoper != OPeq) goto noprop; } else /* must be a call elem */ { if (unambig) continue; else goto noprop; /* could be affected */ } if (d.EV.E2.Eoper == OPconst || d.EV.E2.Eoper == OPrelconst) { if (foundelem) /* already found one */ { /* then they must be the same */ if (!el_match(foundelem,d.EV.E2)) goto noprop; } else /* else this is it */ foundelem = d.EV.E2; } else goto noprop; } if (foundelem) /* if we got one */ { /* replace n with foundelem */ debug if (debugc) { printf("const prop ("); WReqn(n); printf(" replaced by "); WReqn(foundelem); printf("), %p to %p\n",foundelem,n); } go.changes++; return foundelem; } noprop: return null; } /*********************************** * Find all the reaching defs of OPvar e. * Params: * IN = vector of definition nodes * e = OPvar * f = if not null, set RD bits in it * rdlist = if not null, append reaching defs to it */ @trusted void listrds(vec_t IN,elem *e,vec_t f, Barray!(elem*)* rdlist) { uint i; uint unambig; Symbol *s; uint nsize; targ_size_t noff; tym_t ty; //printf("listrds: "); WReqn(e); printf("\n"); assert(IN); assert(e.Eoper == OPvar); s = e.EV.Vsym; ty = e.Ety; if (tyscalar(ty)) nsize = cast(uint)size(ty); noff = e.EV.Voffset; unambig = s.Sflags & SFLunambig; if (f) vec_clear(f); for (i = 0; (i = cast(uint) vec_index(i, IN)) < go.defnod.length; ++i) { elem *d = go.defnod[i].DNelem; //printf("\tlooking at "); WReqn(d); printf("\n"); const op = d.Eoper; if (op == OPasm) // assume ASM elems define everything goto listit; if (OTassign(op)) { elem *t = d.EV.E1; if (t.Eoper == OPvar && t.EV.Vsym == s) { if (op == OPstreq) goto listit; if (!tyscalar(ty) || !tyscalar(t.Ety)) goto listit; // If t does not overlap e, then it doesn't affect things if (noff + nsize > t.EV.Voffset && t.EV.Voffset + size(t.Ety) > noff) goto listit; // it's an assignment to s } else if (t.Eoper != OPvar && !unambig) goto listit; /* assignment through pointer */ } else if (!unambig) goto listit; /* probably a function call */ continue; listit: //printf("\tlisting "); WReqn(d); printf("\n"); if (f) vec_setbit(i,f); else (*rdlist).push(d); // add the definition node } } /******************************************** * Look at reaching defs for expressions of the form (v == c) and (v != c). * If all definitions of v are c or are not c, then we can replace the * expression with 1 or 0. * Params: * eqeqlist = array of == and != expressions */ @trusted private void eqeqranges(ref Elemdatas eqeqlist) { Symbol *v; int sz; elem *e; targ_llong c; int result; foreach (ref rel; eqeqlist) { e = rel.pelem; v = e.EV.E1.EV.Vsym; if (!(sytab[v.Sclass] & SCRD)) continue; sz = tysize(e.EV.E1.Ety); c = el_tolong(e.EV.E2); result = -1; // result not known yet foreach (erd; rel.rdlist) { elem *erd1; int szrd; int tmp; elem_debug(erd); if (erd.Eoper != OPeq || (erd1 = erd.EV.E1).Eoper != OPvar || erd.EV.E2.Eoper != OPconst ) goto L1; szrd = tysize(erd1.Ety); if (erd1.EV.Voffset + szrd <= e.EV.E1.EV.Voffset || e.EV.E1.EV.Voffset + sz <= erd1.EV.Voffset) continue; // doesn't affect us, skip it if (szrd != sz || e.EV.E1.EV.Voffset != erd1.EV.Voffset) goto L1; // overlapping - forget it tmp = (c == el_tolong(erd.EV.E2)); if (result == -1) result = tmp; else if (result != tmp) goto L1; } if (result >= 0) { //printf("replacing with %d\n",result); el_free(e.EV.E1); el_free(e.EV.E2); e.EV.Vint = (e.Eoper == OPeqeq) ? result : result ^ 1; e.Eoper = OPconst; } L1: } } /****************************** * Examine rellist and inclist to determine if any of the signed compare * elems in rellist can be replace by unsigned compares. * Params: * rellist = array of relationals in function * inclist = array of increment elems in function */ @trusted private void intranges(ref Elemdatas rellist, ref Elemdatas inclist) { block *rb; block *ib; Symbol *v; elem *rdeq; elem *rdinc; uint incop,relatop; targ_llong initial,increment,final_; if (debugc) printf("intranges()\n"); static if (0) { foreach (int i, ref rel; rellist) { printf("[%d] rel.pelem: ", i); WReqn(rel.pelem); printf("\n"); } } foreach (ref rel; rellist) { rb = rel.pblock; //printf("rel.pelem: "); WReqn(rel.pelem); printf("\n"); assert(rel.pelem.EV.E1.Eoper == OPvar); v = rel.pelem.EV.E1.EV.Vsym; // RD info is only reliable for registers and autos if (!(sytab[v.Sclass] & SCRD)) continue; /* Look for two rd's: an = and an increment */ if (rel.rdlist.length != 2) continue; rdeq = rel.rdlist[1]; if (rdeq.Eoper != OPeq) { rdinc = rdeq; rdeq = rel.rdlist[0]; if (rdeq.Eoper != OPeq) continue; } else rdinc = rel.rdlist[0]; static if (0) { printf("\neq: "); WReqn(rdeq); printf("\n"); printf("rel: "); WReqn(rel.pelem); printf("\n"); printf("inc: "); WReqn(rdinc); printf("\n"); } incop = rdinc.Eoper; if (!OTpost(incop) && incop != OPaddass && incop != OPminass) continue; /* lvalues should be unambiguous defs */ if (rdeq.EV.E1.Eoper != OPvar || rdinc.EV.E1.Eoper != OPvar) continue; /* rvalues should be constants */ if (rdeq.EV.E2.Eoper != OPconst || rdinc.EV.E2.Eoper != OPconst) continue; /* Ensure that the only defs reaching the increment elem (rdinc) */ /* are rdeq and rdinc. */ foreach (ref iel; inclist) { elem *rd1; elem *rd2; ib = iel.pblock; if (iel.pelem != rdinc) continue; /* not our increment elem */ if (iel.rdlist.length != 2) { //printf("!= 2\n"); break; } rd1 = iel.rdlist[0]; rd2 = iel.rdlist[1]; /* The rd's for the relational elem (rdeq,rdinc) must be */ /* the same as the rd's for tne increment elem (rd1,rd2). */ if (rd1 == rdeq && rd2 == rdinc || rd1 == rdinc && rd2 == rdeq) goto found; } goto nextrel; found: // Check that all paths from rdinc to rdinc must pass through rdrel { int i; // ib: block of increment // rb: block of relational i = loopcheck(ib,ib,rb); block_clearvisit(); if (i) continue; } /* Gather initial, increment, and final values for loop */ initial = el_tolong(rdeq.EV.E2); increment = el_tolong(rdinc.EV.E2); if (incop == OPpostdec || incop == OPminass) increment = -increment; relatop = rel.pelem.Eoper; final_ = el_tolong(rel.pelem.EV.E2); //printf("initial = %d, increment = %d, final_ = %d\n",initial,increment,final_); /* Determine if we can make the relational an unsigned */ if (initial >= 0) { if (final_ == 0 && relatop == OPge) { /* if the relation is (i >= 0) there is likely some dependency * on switching sign, so do not make it unsigned */ } else if (final_ >= initial) { if (increment > 0 && ((final_ - initial) % increment) == 0) goto makeuns; } else if (final_ >= 0) { /* 0 <= final_ < initial */ if (increment < 0 && ((final_ - initial) % increment) == 0 && !(final_ + increment < 0 && (relatop == OPge || relatop == OPlt) ) ) { makeuns: if (!tyuns(rel.pelem.EV.E2.Ety)) { rel.pelem.EV.E2.Ety = touns(rel.pelem.EV.E2.Ety); rel.pelem.Nflags |= NFLtouns; debug if (debugc) { WReqn(rel.pelem); printf(" made unsigned, initial = %lld, increment = %lld," ~ " final_ = %lld\n",cast(long)initial,cast(long)increment,cast(long)final_); } go.changes++; } static if (0) { // Eliminate loop if it is empty if (relatop == OPlt && rb.BC == BCiftrue && list_block(rb.Bsucc) == rb && rb.Belem.Eoper == OPcomma && rb.Belem.EV.E1 == rdinc && rb.Belem.EV.E2 == rel.pelem ) { rel.pelem.Eoper = OPeq; rel.pelem.Ety = rel.pelem.EV.E1.Ety; rb.BC = BCgoto; list_subtract(&rb.Bsucc,rb); list_subtract(&rb.Bpred,rb); debug if (debugc) { WReqn(rel.pelem); printf(" eliminated loop\n"); } go.changes++; } } } } } nextrel: } } /****************************** * Look for initialization and increment expressions in loop. * Very similar to intranges(). * Params: * rellist = list of relationals in function * inclist = list of increment elems in function. * erel = loop compare expression of the form (v < c) * rdeq = set to loop initialization of v * rdinc = set to loop increment of v * Returns: * false if cannot find rdeq or rdinc */ @trusted private bool returnResult(bool result) { elemdatafree(eqeqlist); elemdatafree(rellist); elemdatafree(inclist); return result; } @trusted bool findloopparameters(elem* erel, ref elem* rdeq, ref elem* rdinc) { if (debugc) printf("findloopparameters()\n"); const bool log = false; assert(erel.EV.E1.Eoper == OPvar); Symbol* v = erel.EV.E1.EV.Vsym; // RD info is only reliable for registers and autos if (!(sytab[v.Sclass] & SCRD)) return false; rd_compute(); // compute rellist, inclist, eqeqlist /* Find `erel` in `rellist` */ Elemdata* rel = rellist.find(erel); if (!rel) { if (log) printf("\trel not found\n"); return returnResult(false); } block* rb = rel.pblock; //printf("rel.pelem: "); WReqn(rel.pelem); printf("\n"); // Look for one reaching definition: an increment if (rel.rdlist.length != 1) { if (log) printf("\tnitems = %d\n", cast(int)rel.rdlist.length); return returnResult(false); } rdinc = rel.rdlist[0]; static if (0) { printf("\neq: "); WReqn(rdeq); printf("\n"); printf("rel: "); WReqn(rel.pelem); printf("\n"); printf("inc: "); WReqn(rdinc); printf("\n"); } uint incop = rdinc.Eoper; if (!OTpost(incop) && incop != OPaddass && incop != OPminass) { if (log) printf("\tnot += or -=\n"); return returnResult(false); } Elemdata* iel = inclist.find(rdinc); if (!iel) { if (log) printf("\trdinc not found\n"); return returnResult(false); } /* The increment should have two reaching definitions: * the initialization * the increment itself * We already have the increment (as rdinc), but need the initialization (rdeq) */ if (iel.rdlist.length != 2) { if (log) printf("nitems != 2\n"); return returnResult(false); } elem *rd1 = iel.rdlist[0]; elem *rd2 = iel.rdlist[1]; if (rd1 == rdinc) rdeq = rd2; else if (rd2 == rdinc) rdeq = rd1; else { if (log) printf("\tnot (rdeq,rdinc)\n"); return returnResult(false); } // lvalues should be unambiguous defs if (rdeq.Eoper != OPeq || rdeq.EV.E1.Eoper != OPvar || rdinc.EV.E1.Eoper != OPvar) { if (log) printf("\tnot OPvar\n"); return returnResult(false); } // rvalues should be constants if (rdeq.EV.E2.Eoper != OPconst || rdinc.EV.E2.Eoper != OPconst) { if (log) printf("\tnot OPconst\n"); return returnResult(false); } /* Check that all paths from rdinc to rdinc must pass through rdrel * iel.pblock = block of increment * rel.pblock = block of relational */ int i = loopcheck(iel.pblock,iel.pblock,rel.pblock); block_clearvisit(); if (i) { if (log) printf("\tnot loopcheck()\n"); return returnResult(false); } return returnResult(true); } /*********************** * Return true if there is a path from start to inc without * passing through rel. */ @trusted private int loopcheck(block *start,block *inc,block *rel) { if (!(start.Bflags & BFLvisited)) { start.Bflags |= BFLvisited; /* guarantee eventual termination */ foreach (list; ListRange(start.Bsucc)) { block *b = cast(block *) list_ptr(list); if (b != rel && (b == inc || loopcheck(b,inc,rel))) return true; } } return false; } /**************************** * Do copy propagation. * Copy propagation elems are of the form OPvar=OPvar, and they are * in go.expnod[]. */ @trusted void copyprop() { out_regcand(&globsym); if (debugc) printf("copyprop()\n"); assert(dfo); Louter: while (1) { flowcp(); /* compute available copy statements */ if (go.exptop <= 1) return; // none available static if (0) { foreach (i; 1 .. go.exptop) { printf("go.expnod[%d] = (",i); WReqn(go.expnod[i]); printf(");\n"); } } foreach (i, b; dfo[]) // for each block { if (b.Belem) { bool recalc; static if (0) { printf("B%d, elem (",i); WReqn(b.Belem); printf(")\nBin "); vec_println(b.Bin); recalc = copyPropWalk(b.Belem,b.Bin); printf("Bino "); vec_println(b.Bin); printf("Bout "); vec_println(b.Bout); } else { recalc = copyPropWalk(b.Belem,b.Bin); } /*assert(vec_equal(b.Bin,b.Bout)); */ /* The previous assert() is correct except */ /* for the following case: */ /* a=b; d=a; a=b; */ /* The vectors don't match because the */ /* equations changed to: */ /* a=b; d=b; a=b; */ /* and the d=b copy elem now reaches the end */ /* of the block (the d=a elem didn't). */ if (recalc) continue Louter; } } return; } } /***************************** * Walk tree n, doing copy propagation as we go. * Keep IN up to date. * Params: * n = tree to walk & do copy propagation in * IN = vector of live copy expressions, updated as progress is made * Returns: * true if need to recalculate data flow equations and try again */ @trusted private bool copyPropWalk(elem *n,vec_t IN) { bool recalc = false; int nocp = 0; void cpwalk(elem* n, vec_t IN) { assert(n && IN); /*chkvecdim(go.exptop,0);*/ if (recalc) return; elem *t; const op = n.Eoper; if (op == OPcolon || op == OPcolon2) { vec_t L = vec_clone(IN); cpwalk(n.EV.E1,L); cpwalk(n.EV.E2,IN); vec_andass(IN,L); // IN = L & R vec_free(L); } else if (op == OPandand || op == OPoror) { cpwalk(n.EV.E1,IN); vec_t L = vec_clone(IN); cpwalk(n.EV.E2,L); vec_andass(IN,L); // IN = L & R vec_free(L); } else if (OTunary(op)) { t = n.EV.E1; if (OTassign(op)) { if (t.Eoper == OPind) cpwalk(t.EV.E1,IN); } else if (op == OPctor || op == OPdtor) { /* This kludge is necessary because in except_pop() * an el_match is done on the lvalue. If copy propagation * changes the OPctor but not the corresponding OPdtor, * then the match won't happen and except_pop() * will fail. */ nocp++; cpwalk(t,IN); nocp--; } else cpwalk(t,IN); } else if (OTassign(op)) { cpwalk(n.EV.E2,IN); t = n.EV.E1; if (t.Eoper == OPind) cpwalk(t,IN); else { debug if (t.Eoper != OPvar) elem_print(n); assert(t.Eoper == OPvar); } } else if (ERTOL(n)) { cpwalk(n.EV.E2,IN); cpwalk(n.EV.E1,IN); } else if (OTbinary(op)) { cpwalk(n.EV.E1,IN); cpwalk(n.EV.E2,IN); } if (OTdef(op)) // if definition elem { int ambig; /* true if ambiguous def */ ambig = !OTassign(op) || t.Eoper == OPind; uint i; for (i = 0; (i = cast(uint) vec_index(i, IN)) < go.exptop; ++i) // for each active copy elem { Symbol *v; if (op == OPasm) goto clr; /* If this elem could kill the lvalue or the rvalue, */ /* Clear bit in IN. */ v = go.expnod[i].EV.E1.EV.Vsym; if (ambig) { if (!(v.Sflags & SFLunambig)) goto clr; } else { if (v == t.EV.Vsym) goto clr; } v = go.expnod[i].EV.E2.EV.Vsym; if (ambig) { if (!(v.Sflags & SFLunambig)) goto clr; } else { if (v == t.EV.Vsym) goto clr; } continue; clr: /* this copy elem is not available */ vec_clearbit(i,IN); /* so remove it from the vector */ } /* foreach */ /* If this is a copy elem in go.expnod[] */ /* Set bit in IN. */ if ((op == OPeq || op == OPstreq) && n.EV.E1.Eoper == OPvar && n.EV.E2.Eoper == OPvar && n.Eexp) vec_setbit(n.Eexp,IN); } else if (op == OPvar && !nocp) // if reference to variable v { Symbol *v = n.EV.Vsym; //printf("Checking copyprop for '%s', ty=x%x\n", v.Sident.ptr,n.Ety); symbol_debug(v); const ty = n.Ety; uint sz = tysize(n.Ety); if (sz == -1 && !tyfunc(n.Ety)) sz = cast(uint)type_size(v.Stype); elem *foundelem = null; Symbol *f; for (uint i = 0; (i = cast(uint) vec_index(i, IN)) < go.exptop; ++i) // for all active copy elems { elem* c = go.expnod[i]; assert(c); uint csz = tysize(c.EV.E1.Ety); if (c.Eoper == OPstreq) csz = cast(uint)type_size(c.ET); assert(cast(int)csz >= 0); //printf(" looking at: ("); WReqn(c); printf("), ty=x%x\n",c.EV.E1.Ety); /* Not only must symbol numbers match, but */ /* offsets too (in case of arrays) and sizes */ /* (in case of unions). */ if (v == c.EV.E1.EV.Vsym && n.EV.Voffset >= c.EV.E1.EV.Voffset && n.EV.Voffset + sz <= c.EV.E1.EV.Voffset + csz) { if (foundelem) { if (c.EV.E2.EV.Vsym != f) goto noprop; } else { foundelem = c; f = foundelem.EV.E2.EV.Vsym; } } } if (foundelem) /* if we can do the copy prop */ { debug if (debugc) { printf("Copyprop, '%s'(%d) replaced with '%s'(%d)\n", (v.Sident[0]) ? cast(char *)v.Sident.ptr : "temp".ptr, cast(int) v.Ssymnum, (f.Sident[0]) ? cast(char *)f.Sident.ptr : "temp".ptr, cast(int) f.Ssymnum); } type *nt = n.ET; targ_size_t noffset = n.EV.Voffset; el_copy(n,foundelem.EV.E2); n.Ety = ty; // retain original type n.ET = nt; n.EV.Voffset += noffset - foundelem.EV.E1.EV.Voffset; /* original => rewrite * v = f * g = v => g = f * f = x * d = g => d = f !!error * Therefore, if n appears as an rvalue in go.expnod[], then recalc */ for (size_t j = 1; j < go.exptop; ++j) { //printf("go.expnod[%d]: ", j); elem_print(go.expnod[j]); if (go.expnod[j].EV.E2 == n) { recalc = true; break; } } go.changes++; } //else printf("not found\n"); noprop: { } } } cpwalk(n, IN); return recalc; } /******************************** * Remove dead assignments. Those are assignments to a variable v * for which there are no subsequent uses of v. */ private __gshared { Barray!(elem*) assnod; /* array of pointers to asg elems */ vec_t ambigref; /* vector of assignment elems that */ /* are referenced when an ambiguous */ /* reference is done (as in *p or call) */ } @trusted void rmdeadass() { if (debugc) printf("rmdeadass()\n"); flowlv(); /* compute live variables */ foreach (b; dfo[]) // for each block b { if (!b.Belem) /* if no elems at all */ continue; if (b.Btry) // if in try-block guarded body continue; const assnum = numasg(b.Belem); // # of assignment elems if (assnum == 0) // if no assignment elems continue; assnod.setLength(assnum); // pre-allocate sufficient room vec_t DEAD = vec_calloc(assnum); vec_t POSS = vec_calloc(assnum); ambigref = vec_calloc(assnum); assnod.setLength(0); accumda(b.Belem,DEAD,POSS); // fill assnod[], compute DEAD and POSS assert(assnum == assnod.length); vec_free(ambigref); vec_orass(POSS,DEAD); /* POSS |= DEAD */ for (uint j = 0; (j = cast(uint) vec_index(j, POSS)) < assnum; ++j) // for each possible dead asg. { Symbol *v; /* v = target of assignment */ elem *n; elem *nv; n = assnod[j]; nv = n.EV.E1; v = nv.EV.Vsym; if (!symbol_isintab(v)) // not considered continue; //printf("assnod[%d]: ",j); WReqn(n); printf("\n"); //printf("\tPOSS\n"); /* If not positively dead but v is live on a */ /* successor to b, then v is live. */ //printf("\tDEAD=%d, live=%d\n",vec_testbit(j,DEAD),vec_testbit(v.Ssymnum,b.Boutlv)); if (!vec_testbit(j,DEAD) && vec_testbit(v.Ssymnum,b.Boutlv)) continue; /* volatile/shared variables are not dead */ if ((v.ty() | nv.Ety) & (mTYvolatile | mTYshared)) continue; /* Do not mix up floating and integer variables * https://issues.dlang.org/show_bug.cgi?id=20363 */ if (OTbinary(n.Eoper)) { elem* e2 = n.EV.E2; if (e2.Eoper == OPvar && config.fpxmmregs && !tyfloating(v.Stype.Tty) != !tyfloating(e2.EV.Vsym.Stype.Tty) ) continue; } debug if (debugc) { printf("dead assignment ("); WReqn(n); if (vec_testbit(j,DEAD)) printf(") DEAD\n"); else printf(") Boutlv\n"); } elimass(n); go.changes++; } /* foreach */ vec_free(DEAD); vec_free(POSS); } /* for */ } /*************************** * Remove side effect of assignment elem. */ @trusted void elimass(elem *n) { elem *e1; switch (n.Eoper) { case OPvecsto: n.EV.E2.Eoper = OPcomma; goto case OPeq; case OPeq: case OPstreq: /* (V=e) => (random constant,e) */ /* Watch out for (a=b=c) stuff! */ /* Don't screw up assnod[]. */ n.Eoper = OPcomma; n.Ety |= n.EV.E2.Ety & (mTYconst | mTYvolatile | mTYimmutable | mTYshared | mTYfar ); n.EV.E1.Eoper = OPconst; break; /* Convert (V op= e) to (V op e) */ case OPaddass: case OPminass: case OPmulass: case OPdivass: case OPorass: case OPandass: case OPxorass: case OPmodass: case OPshlass: case OPshrass: case OPashrass: n.Eoper = cast(ubyte)opeqtoop(n.Eoper); break; case OPpostinc: /* (V i++ c) => V */ case OPpostdec: /* (V i-- c) => V */ e1 = n.EV.E1; el_free(n.EV.E2); el_copy(n,e1); el_free(e1); break; case OPnegass: n.Eoper = OPneg; break; case OPbtc: case OPbtr: case OPbts: n.Eoper = OPbt; break; case OPcmpxchg: n.Eoper = OPcomma; n.EV.E2.Eoper = OPcomma; break; default: assert(0); } } /************************ * Compute number of =,op=,i++,i--,--i,++i elems. * (Unambiguous assignments only. Ambiguous ones would always be live.) * Some compilers generate better code for ?: than if-then-else. */ @trusted private uint numasg(elem *e) { assert(e); if (OTassign(e.Eoper) && e.EV.E1.Eoper == OPvar) { e.Nflags |= NFLassign; return 1 + numasg(e.EV.E1) + (OTbinary(e.Eoper) ? numasg(e.EV.E2) : 0); } e.Nflags &= ~NFLassign; return OTunary(e.Eoper) ? numasg(e.EV.E1) : OTbinary(e.Eoper) ? numasg(e.EV.E1) + numasg(e.EV.E2) : 0; } /****************************** * Tree walk routine for rmdeadass(). * DEAD = assignments which are dead * POSS = assignments which are possibly dead * The algorithm is basically: * if we have an assignment to v, * for all defs of v in POSS * set corresponding bits in DEAD * set bit for this def in POSS * if we have a reference to v, * clear all bits in POSS that are refs of v */ @trusted private void accumda(elem *n,vec_t DEAD, vec_t POSS) { LtailRecurse: assert(n && DEAD && POSS); const op = n.Eoper; switch (op) { case OPcolon: case OPcolon2: { vec_t Pl = vec_clone(POSS); vec_t Pr = vec_clone(POSS); vec_t Dl = vec_calloc(vec_numbits(POSS)); vec_t Dr = vec_calloc(vec_numbits(POSS)); accumda(n.EV.E1,Dl,Pl); accumda(n.EV.E2,Dr,Pr); /* D |= P & (Dl & Dr) | ~P & (Dl | Dr) */ /* P = P & (Pl & Pr) | ~P & (Pl | Pr) */ /* = Pl & Pr | ~P & (Pl | Pr) */ const vecdim = cast(uint)vec_dim(DEAD); for (uint i = 0; i < vecdim; i++) { DEAD[i] |= (POSS[i] & Dl[i] & Dr[i]) | (~POSS[i] & (Dl[i] | Dr[i])); POSS[i] = (Pl[i] & Pr[i]) | (~POSS[i] & (Pl[i] | Pr[i])); } vec_free(Pl); vec_free(Pr); vec_free(Dl); vec_free(Dr); break; } case OPandand: case OPoror: { accumda(n.EV.E1,DEAD,POSS); // Substituting into the above equations Pl=P and Dl=0: // D |= Dr - P // P = Pr vec_t Pr = vec_clone(POSS); vec_t Dr = vec_calloc(vec_numbits(POSS)); accumda(n.EV.E2,Dr,Pr); vec_subass(Dr,POSS); vec_orass(DEAD,Dr); vec_copy(POSS,Pr); vec_free(Pr); vec_free(Dr); break; } case OPvar: { Symbol *v = n.EV.Vsym; targ_size_t voff = n.EV.Voffset; uint vsize = tysize(n.Ety); // We have a reference. Clear all bits in POSS that // could be referenced. foreach (const i; 0 .. cast(uint)assnod.length) { elem *ti = assnod[i].EV.E1; if (v == ti.EV.Vsym && ((vsize == -1 || tysize(ti.Ety) == -1) || // If symbol references overlap (voff + vsize > ti.EV.Voffset && ti.EV.Voffset + tysize(ti.Ety) > voff) ) ) { vec_clearbit(i,POSS); } } break; } case OPasm: // reference everything foreach (const i; 0 .. cast(uint)assnod.length) vec_clearbit(i,POSS); break; case OPbt: accumda(n.EV.E1,DEAD,POSS); accumda(n.EV.E2,DEAD,POSS); vec_subass(POSS,ambigref); // remove possibly refed break; case OPind: case OPucall: case OPucallns: case OPvp_fp: accumda(n.EV.E1,DEAD,POSS); vec_subass(POSS,ambigref); // remove possibly refed // assignments from list // of possibly dead ones break; case OPconst: break; case OPcall: case OPcallns: case OPmemcpy: case OPstrcpy: case OPmemset: accumda(n.EV.E2,DEAD,POSS); goto case OPstrlen; case OPstrlen: accumda(n.EV.E1,DEAD,POSS); vec_subass(POSS,ambigref); // remove possibly refed // assignments from list // of possibly dead ones break; case OPstrcat: case OPstrcmp: case OPmemcmp: accumda(n.EV.E1,DEAD,POSS); accumda(n.EV.E2,DEAD,POSS); vec_subass(POSS,ambigref); // remove possibly refed // assignments from list // of possibly dead ones break; default: if (OTassign(op)) { elem *t; if (ERTOL(n)) accumda(n.EV.E2,DEAD,POSS); t = n.EV.E1; // if not (v = expression) then gen refs of left tree if (op != OPeq && op != OPstreq) accumda(n.EV.E1,DEAD,POSS); else if (OTunary(t.Eoper)) // if (*e = expression) accumda(t.EV.E1,DEAD,POSS); else if (OTbinary(t.Eoper)) { accumda(t.EV.E1,DEAD,POSS); accumda(t.EV.E2,DEAD,POSS); } if (!ERTOL(n) && op != OPnegass) accumda(n.EV.E2,DEAD,POSS); // if unambiguous assignment, post all possibilities // to DEAD if ((op == OPeq || op == OPstreq) && t.Eoper == OPvar) { uint tsz = tysize(t.Ety); if (n.Eoper == OPstreq) tsz = cast(uint)type_size(n.ET); foreach (const i; 0 .. cast(uint)assnod.length) { elem *ti = assnod[i].EV.E1; uint tisz = tysize(ti.Ety); if (assnod[i].Eoper == OPstreq) tisz = cast(uint)type_size(assnod[i].ET); // There may be some problem with this next // statement with unions. if (ti.EV.Vsym == t.EV.Vsym && ti.EV.Voffset == t.EV.Voffset && tisz == tsz && !(t.Ety & (mTYvolatile | mTYshared)) && //t.EV.Vsym.Sflags & SFLunambig && vec_testbit(i,POSS)) { vec_setbit(i,DEAD); } } } // if assignment operator, post this def to POSS if (n.Nflags & NFLassign) { const i = cast(uint)assnod.length; vec_setbit(i,POSS); // if variable could be referenced by a pointer // or a function call, mark the assignment in // ambigref if (!(t.EV.Vsym.Sflags & SFLunambig)) { vec_setbit(i,ambigref); debug if (debugc) { printf("ambiguous lvalue: "); WReqn(n); printf("\n"); } } assnod.push(n); } } else if (OTrtol(op)) { accumda(n.EV.E2,DEAD,POSS); n = n.EV.E1; goto LtailRecurse; // accumda(n.EV.E1,DEAD,POSS); } else if (OTbinary(op)) { accumda(n.EV.E1,DEAD,POSS); n = n.EV.E2; goto LtailRecurse; // accumda(n.EV.E2,DEAD,POSS); } else if (OTunary(op)) { n = n.EV.E1; goto LtailRecurse; // accumda(n.EV.E1,DEAD,POSS); } break; } } /*************************** * Mark all dead variables. Only worry about register candidates. * Compute live ranges for register candidates. * Be careful not to compute live ranges for members of structures (CLMOS). */ @trusted void deadvar() { assert(dfo); /* First, mark each candidate as dead. */ /* Initialize vectors for live ranges. */ for (SYMIDX i = 0; i < globsym.length; i++) { Symbol *s = globsym[i]; if (s.Sflags & SFLunambig) { s.Sflags |= SFLdead; if (s.Sflags & GTregcand) { s.Srange = vec_realloc(s.Srange, dfo.length); vec_clear(s.Srange); } } } /* Go through trees and "liven" each one we see. */ foreach (i, b; dfo[]) if (b.Belem) dvwalk(b.Belem,cast(uint)i); /* Compute live variables. Set bit for block in live range */ /* if variable is in the IN set for that block. */ flowlv(); /* compute live variables */ for (SYMIDX i = 0; i < globsym.length; i++) { if (globsym[i].Srange /*&& globsym[i].Sclass != CLMOS*/) foreach (j, b; dfo[]) if (vec_testbit(i,b.Binlv)) vec_setbit(cast(uint)j,globsym[i].Srange); } /* Print results */ for (SYMIDX i = 0; i < globsym.length; i++) { char *p; Symbol *s = globsym[i]; if (s.Sflags & SFLdead && s.Sclass != SC.parameter && s.Sclass != SC.regpar) s.Sflags &= ~GTregcand; // do not put dead variables in registers debug { p = cast(char *) s.Sident.ptr ; if (s.Sflags & SFLdead) if (debugc) printf("Symbol %d '%s' is dead\n",cast(int) i,p); if (debugc && s.Srange /*&& s.Sclass != CLMOS*/) { printf("Live range for %d '%s': ",cast(int) i,p); vec_println(s.Srange); } } } } /***************************** * Tree walk support routine for deadvar(). * Input: * n = elem to look at * i = block index */ @trusted private void dvwalk(elem *n,uint i) { for (; true; n = n.EV.E1) { assert(n); if (n.Eoper == OPvar || n.Eoper == OPrelconst) { Symbol *s = n.EV.Vsym; s.Sflags &= ~SFLdead; if (s.Srange) vec_setbit(i,s.Srange); } else if (!OTleaf(n.Eoper)) { if (OTbinary(n.Eoper)) dvwalk(n.EV.E2,i); continue; } break; } } /********************************* * Optimize very busy expressions (VBEs). */ private __gshared vec_t blockseen; /* which blocks we have visited */ @trusted void verybusyexp() { elem **pn; uint j,l; if (debugc) printf("verybusyexp()\n"); flowvbe(); /* compute VBEs */ if (go.exptop <= 1) return; /* if no VBEs */ assert(go.expblk.length); if (blockinit()) return; // can't handle ASM blocks compdom(); /* compute dominators */ /*setvecdim(go.exptop);*/ genkillae(); /* compute Bgen and Bkill for */ /* AEs */ /*chkvecdim(go.exptop,0);*/ blockseen = vec_calloc(dfo.length); /* Go backwards through dfo so that VBEs are evaluated as */ /* close as possible to where they are used. */ foreach_reverse (i, b; dfo[]) // for each block { int done; /* Do not hoist things to blocks that do not */ /* divide the flow of control. */ switch (b.BC) { case BCiftrue: case BCswitch: break; default: continue; } /* Find pointer to last statement in current elem */ pn = &(b.Belem); if (*pn) { while ((*pn).Eoper == OPcomma) pn = &((*pn).EV.E2); /* If last statement has side effects, */ /* don't do these VBEs. Potentially we */ /* could by assigning the result to */ /* a temporary, and rewriting the tree */ /* from (n) to (T=n,T) and installing */ /* the VBE as (T=n,VBE,T). This */ /* may not buy us very much, so we will */ /* just skip it for now. */ /*if (sideeffect(*pn))*/ if (!(*pn).Eexp) continue; } /* Eliminate all elems that have already been */ /* hoisted (indicated by go.expnod[] == 0). */ /* Constants are not useful as VBEs. */ /* Eliminate all elems from Bout that are not in blocks */ /* that are dominated by b. */ static if (0) { printf("block %d Bout = ",i); vec_println(b.Bout); } done = true; for (j = 0; (j = cast(uint) vec_index(j, b.Bout)) < go.exptop; ++j) { if (go.expnod[j] == null || !!OTleaf(go.expnod[j].Eoper) || !dom(b,go.expblk[j])) vec_clearbit(j,b.Bout); else done = false; } if (done) continue; /* Eliminate from Bout all elems that are killed by */ /* a block between b and that elem. */ static if (0) { printf("block %d Bout = ",i); vec_println(b.Bout); } for (j = 0; (j = cast(uint) vec_index(j, b.Bout)) < go.exptop; ++j) { vec_clear(blockseen); foreach (bl; ListRange(go.expblk[j].Bpred)) { if (killed(j,list_block(bl),b)) { vec_clearbit(j,b.Bout); break; } } } /* For each elem still left, make sure that there */ /* exists a path from b to j along which there is */ /* no other use of j (else it would be a CSE, and */ /* it would be a waste of time to hoist it). */ static if (0) { printf("block %d Bout = ",i); vec_println(b.Bout); } for (j = 0; (j = cast(uint) vec_index(j, b.Bout)) < go.exptop; ++j) { vec_clear(blockseen); foreach (bl; ListRange(go.expblk[j].Bpred)) { if (ispath(j,list_block(bl),b)) goto L2; } vec_clearbit(j,b.Bout); /* thar ain't no path */ L2: } /* For each elem that appears more than once in Bout */ /* We have a VBE. */ static if (0) { printf("block %d Bout = ",i); vec_println(b.Bout); } for (j = 0; (j = cast(uint) vec_index(j, b.Bout)) < go.exptop; ++j) { uint k; for (k = j + 1; k < go.exptop; k++) { if (vec_testbit(k,b.Bout) && el_match(go.expnod[j],go.expnod[k])) goto foundvbe; } continue; /* no VBE here */ foundvbe: /* we got one */ debug { if (debugc) { printf("VBE %d,%d, block %d (",j,k, cast(int) i); WReqn(go.expnod[j]); printf(");\n"); } } *pn = el_bin(OPcomma,(*pn).Ety, el_copytree(go.expnod[j]),*pn); /* Mark all the vbe elems found but one (the */ /* go.expnod[j] one) so that the expression will */ /* only be hoisted again if other occurrences */ /* of the expression are found later. This */ /* will substitute for the fact that the */ /* el_copytree() expression does not appear in go.expnod[]. */ l = k; do { if (k == l || (vec_testbit(k,b.Bout) && el_match(go.expnod[j],go.expnod[k]))) { /* Fix so nobody else will */ /* vbe this elem */ go.expnod[k] = null; vec_clearbit(k,b.Bout); } } while (++k < go.exptop); go.changes++; } /* foreach */ } /* for */ vec_free(blockseen); } /**************************** * Return true if elem j is killed somewhere * between b and bp. */ @trusted private int killed(uint j,block *bp,block *b) { if (bp == b || vec_testbit(bp.Bdfoidx,blockseen)) return false; if (vec_testbit(j,bp.Bkill)) return true; vec_setbit(bp.Bdfoidx,blockseen); /* mark as visited */ foreach (bl; ListRange(bp.Bpred)) if (killed(j,list_block(bl),b)) return true; return false; } /*************************** * Return true if there is a path from b to bp along which * elem j is not used. * Input: * b . block where we want to put the VBE * bp . block somewhere between b and block containing j * j = VBE expression elem candidate (index into go.expnod[]) */ @trusted private int ispath(uint j,block *bp,block *b) { /*chkvecdim(go.exptop,0);*/ if (bp == b) return true; /* the trivial case */ if (vec_testbit(bp.Bdfoidx,blockseen)) return false; /* already seen this block */ vec_setbit(bp.Bdfoidx,blockseen); /* we've visited this block */ /* false if elem j is used in block bp (and reaches the end */ /* of bp, indicated by it being an AE in Bgen) */ uint i; for (i = 0; (i = cast(uint) vec_index(i, bp.Bgen)) < go.exptop; ++i) // look thru used expressions { if (i != j && go.expnod[i] && el_match(go.expnod[i],go.expnod[j])) return false; } /* Not used in bp, see if there is a path through a predecessor */ /* of bp */ foreach (bl; ListRange(bp.Bpred)) if (ispath(j,list_block(bl),b)) return true; return false; /* j is used along all paths */ } }
D
module eventcore.drivers.posix.sockets; @safe: import eventcore.driver; import eventcore.drivers.posix.driver; import eventcore.internal.utils; import std.algorithm.comparison : among, min, max; import std.socket : Address, AddressFamily, InternetAddress, Internet6Address, UnknownAddress; import core.time: Duration; version (Posix) { import std.socket : UnixAddress; import core.sys.posix.netdb : AI_ADDRCONFIG, AI_V4MAPPED, addrinfo, freeaddrinfo, getaddrinfo; import core.sys.posix.netinet.in_; import core.sys.posix.netinet.tcp; import core.sys.posix.sys.un; import core.sys.posix.unistd : close, read, write; import core.stdc.errno : errno, EAGAIN, EINPROGRESS; import core.sys.posix.fcntl; version (linux) enum SO_REUSEPORT = 15; else enum SO_REUSEPORT = 0x200; static if (!is(typeof(O_CLOEXEC))) { version (linux) enum O_CLOEXEC = 0x80000; else version (FreeBSD) enum O_CLOEXEC = 0x100000; else version (Solaris) enum O_CLOEXEC = 0x800000; else version (DragonFlyBSD) enum O_CLOEXEC = 0x0020000; else version (NetBSD) enum O_CLOEXEC = 0x400000; else version (OpenBSD) enum O_CLOEXEC = 0x10000; else version (OSX) enum O_CLOEXEC = 0x1000000; } } version (linux) { extern (C) int accept4(int sockfd, sockaddr *addr, socklen_t *addrlen, int flags) nothrow @nogc; static if (!is(typeof(SOCK_NONBLOCK))) enum SOCK_NONBLOCK = 0x800; static if (!is(typeof(SOCK_CLOEXEC))) enum SOCK_CLOEXEC = 0x80000; static if (__VERSION__ < 2077) { enum IP_ADD_MEMBERSHIP = 35; enum IP_MULTICAST_LOOP = 34; } else import core.sys.linux.netinet.in_ : IP_ADD_MEMBERSHIP, IP_MULTICAST_LOOP; // Linux-specific TCP options // https://github.com/torvalds/linux/blob/master/include/uapi/linux/tcp.h#L95 // Some day we should siply import core.sys.linux.netinet.tcp; static if (!is(typeof(SOL_TCP))) enum SOL_TCP = 6; static if (!is(typeof(TCP_KEEPIDLE))) enum TCP_KEEPIDLE = 4; static if (!is(typeof(TCP_KEEPINTVL))) enum TCP_KEEPINTVL = 5; static if (!is(typeof(TCP_KEEPCNT))) enum TCP_KEEPCNT = 6; static if (!is(typeof(TCP_USER_TIMEOUT))) enum TCP_USER_TIMEOUT = 18; } version(OSX) { static if (__VERSION__ < 2077) { enum IP_ADD_MEMBERSHIP = 12; enum IP_MULTICAST_LOOP = 11; } else import core.sys.darwin.netinet.in_ : IP_ADD_MEMBERSHIP, IP_MULTICAST_LOOP; } version(FreeBSD) { static if (__VERSION__ < 2077) { enum IP_ADD_MEMBERSHIP = 12; enum IP_MULTICAST_LOOP = 11; } else import core.sys.freebsd.netinet.in_ : IP_ADD_MEMBERSHIP, IP_MULTICAST_LOOP; } version(DragonFlyBSD) { import core.sys.dragonflybsd.netinet.in_ : IP_ADD_MEMBERSHIP, IP_MULTICAST_LOOP; } version (Solaris) { enum IP_ADD_MEMBERSHIP = 0x13; enum IP_MULTICAST_LOOP = 0x12; } version (Windows) { import core.sys.windows.windows; import core.sys.windows.winsock2; alias sockaddr_storage = SOCKADDR_STORAGE; alias EAGAIN = WSAEWOULDBLOCK; enum SHUT_RDWR = SD_BOTH; enum SHUT_RD = SD_RECEIVE; enum SHUT_WR = SD_SEND; extern (C) int read(int fd, void *buffer, uint count) nothrow; extern (C) int write(int fd, const(void) *buffer, uint count) nothrow; extern (C) int close(int fd) nothrow @safe; } final class PosixEventDriverSockets(Loop : PosixEventLoop) : EventDriverSockets { @safe: /*@nogc:*/ nothrow: private Loop m_loop; this(Loop loop) { m_loop = loop; } final override StreamSocketFD connectStream(scope Address address, scope Address bind_address, ConnectCallback on_connect) { assert(on_connect !is null); auto sockfd = createSocket(address.addressFamily, SOCK_STREAM); if (sockfd == -1) { on_connect(StreamSocketFD.invalid, ConnectStatus.socketCreateFailure); return StreamSocketFD.invalid; } auto sock = cast(StreamSocketFD)sockfd; void invalidateSocket() @nogc @trusted nothrow { closeSocket(sockfd); sock = StreamSocketFD.invalid; } int bret; if (bind_address !is null) () @trusted { bret = bind(cast(sock_t)sock, bind_address.name, bind_address.nameLen); } (); if (bret != 0) { invalidateSocket(); on_connect(sock, ConnectStatus.bindFailure); return sock; } m_loop.initFD(sock, FDFlags.none, StreamSocketSlot.init); m_loop.registerFD(sock, EventMask.read|EventMask.write|EventMask.status); m_loop.setNotifyCallback!(EventType.status)(sock, &onConnectError); releaseRef(sock); // onConnectError callback is weak reference auto ret = () @trusted { return connect(cast(sock_t)sock, address.name, address.nameLen); } (); if (ret == 0) { m_loop.m_fds[sock].specific.state = ConnectionState.connected; on_connect(sock, ConnectStatus.connected); } else { auto err = getSocketError(); if (err.among!(EAGAIN, EINPROGRESS)) { with (m_loop.m_fds[sock].streamSocket) { connectCallback = on_connect; state = ConnectionState.connecting; } m_loop.setNotifyCallback!(EventType.write)(sock, &onConnect); } else { m_loop.clearFD!StreamSocketSlot(sock); m_loop.unregisterFD(sock, EventMask.read|EventMask.write|EventMask.status); invalidateSocket(); on_connect(StreamSocketFD.invalid, ConnectStatus.unknownError); return StreamSocketFD.invalid; } } return sock; } final override void cancelConnectStream(StreamSocketFD sock) { assert(sock != StreamSocketFD.invalid, "Invalid socket descriptor"); with (m_loop.m_fds[sock].streamSocket) { assert(state == ConnectionState.connecting, "Unable to cancel connect on the socket that is not in connecting state"); state = ConnectionState.closed; connectCallback = null; m_loop.setNotifyCallback!(EventType.status)(sock, null); m_loop.setNotifyCallback!(EventType.write)(sock, null); m_loop.clearFD!StreamSocketSlot(sock); m_loop.unregisterFD(sock, EventMask.read|EventMask.write|EventMask.status); closeSocket(cast(sock_t)sock.value); } } final override StreamSocketFD adoptStream(int socket) { auto fd = StreamSocketFD(socket); if (m_loop.m_fds[fd].common.refCount) // FD already in use? return StreamSocketFD.invalid; setSocketNonBlocking(fd); m_loop.initFD(fd, FDFlags.none, StreamSocketSlot.init); m_loop.registerFD(fd, EventMask.read|EventMask.write|EventMask.status); return fd; } private void onConnect(FD fd) { auto sock = cast(StreamSocketFD)fd; auto l = lockHandle(sock); m_loop.setNotifyCallback!(EventType.write)(sock, null); with (m_loop.m_fds[sock].streamSocket) { state = ConnectionState.connected; auto cb = connectCallback; connectCallback = null; if (cb) cb(sock, ConnectStatus.connected); } } private void onConnectError(FD sock) { // FIXME: determine the correct kind of error! with (m_loop.m_fds[sock].streamSocket) { state = ConnectionState.closed; auto cb = connectCallback; connectCallback = null; if (cb) cb(cast(StreamSocketFD)sock, ConnectStatus.refused); } } alias listenStream = EventDriverSockets.listenStream; final override StreamListenSocketFD listenStream(scope Address address, StreamListenOptions options, AcceptCallback on_accept) { auto sockfd = createSocket(address.addressFamily, SOCK_STREAM); if (sockfd == -1) return StreamListenSocketFD.invalid; auto sock = cast(StreamListenSocketFD)sockfd; void invalidateSocket() @nogc @trusted nothrow { closeSocket(sockfd); sock = StreamSocketFD.invalid; } () @trusted { int tmp_reuse = 1; // FIXME: error handling! if ((options & StreamListenOptions.reusePort) && setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &tmp_reuse, tmp_reuse.sizeof) != 0) { invalidateSocket(); return; } version (Windows) {} else { if ((options & StreamListenOptions.reusePort) && setsockopt(sockfd, SOL_SOCKET, SO_REUSEPORT, &tmp_reuse, tmp_reuse.sizeof) != 0) { invalidateSocket(); return; } } if (bind(sockfd, address.name, address.nameLen) != 0) { invalidateSocket(); return; } if (listen(sockfd, getBacklogSize()) != 0) { invalidateSocket(); return; } } (); if (sock == StreamListenSocketFD.invalid) return sock; m_loop.initFD(sock, FDFlags.none, StreamListenSocketSlot.init); if (on_accept) waitForConnections(sock, on_accept); return sock; } final override void waitForConnections(StreamListenSocketFD sock, AcceptCallback on_accept) { m_loop.registerFD(sock, EventMask.read, false); m_loop.m_fds[sock].streamListen.acceptCallback = on_accept; m_loop.setNotifyCallback!(EventType.read)(sock, &onAccept); onAccept(sock); } private void onAccept(FD listenfd) { sock_t sockfd; sockaddr_storage addr; socklen_t addr_len = addr.sizeof; version (linux) { () @trusted { sockfd = accept4(cast(sock_t)listenfd, () @trusted { return cast(sockaddr*)&addr; } (), &addr_len, SOCK_NONBLOCK | SOCK_CLOEXEC); } (); if (sockfd == -1) return; } else { () @trusted { sockfd = accept(cast(sock_t)listenfd, () @trusted { return cast(sockaddr*)&addr; } (), &addr_len); } (); if (sockfd == -1) return; setSocketNonBlocking(cast(SocketFD)sockfd, true); } auto fd = cast(StreamSocketFD)sockfd; m_loop.initFD(fd, FDFlags.none, StreamSocketSlot.init); m_loop.m_fds[fd].streamSocket.state = ConnectionState.connected; m_loop.registerFD(fd, EventMask.read|EventMask.write|EventMask.status); m_loop.setNotifyCallback!(EventType.status)(fd, &onConnectError); releaseRef(fd); // onConnectError callback is weak reference //print("accept %d", sockfd); scope RefAddress addrc = new RefAddress(() @trusted { return cast(sockaddr*)&addr; } (), addr_len); m_loop.m_fds[listenfd].streamListen.acceptCallback(cast(StreamListenSocketFD)listenfd, fd, addrc); } ConnectionState getConnectionState(StreamSocketFD sock) { return m_loop.m_fds[sock].streamSocket.state; } final override bool getLocalAddress(SocketFD sock, scope RefAddress dst) { socklen_t addr_len = dst.nameLen; if (() @trusted { return getsockname(cast(sock_t)sock, dst.name, &addr_len); } () != 0) return false; dst.cap(addr_len); return true; } final override bool getRemoteAddress(SocketFD sock, scope RefAddress dst) { socklen_t addr_len = dst.nameLen; if (() @trusted { return getpeername(cast(sock_t)sock, dst.name, &addr_len); } () != 0) return false; dst.cap(addr_len); return true; } final override void setTCPNoDelay(StreamSocketFD socket, bool enable) { int opt = enable; () @trusted { setsockopt(cast(sock_t)socket, IPPROTO_TCP, TCP_NODELAY, cast(char*)&opt, opt.sizeof); } (); } override void setKeepAlive(StreamSocketFD socket, bool enable) @trusted { int opt = enable; int err = setsockopt(cast(sock_t)socket, SOL_SOCKET, SO_KEEPALIVE, &opt, int.sizeof); if (err != 0) print("sock error in setKeepAlive: %s", getSocketError); } override void setKeepAliveParams(StreamSocketFD socket, Duration idle, Duration interval, int probeCount) @trusted { // dunnno about BSD\OSX, maybe someone should fix it for them later version (linux) { setKeepAlive(socket, true); int int_opt = cast(int) idle.total!"seconds"(); int err = setsockopt(cast(sock_t)socket, SOL_TCP, TCP_KEEPIDLE, &int_opt, int.sizeof); if (err != 0) { print("sock error on setsockopt TCP_KEEPIDLE: %s", getSocketError); return; } int_opt = cast(int) interval.total!"seconds"(); err = setsockopt(cast(sock_t)socket, SOL_TCP, TCP_KEEPINTVL, &int_opt, int.sizeof); if (err != 0) { print("sock error on setsockopt TCP_KEEPINTVL: %s", getSocketError); return; } err = setsockopt(cast(sock_t)socket, SOL_TCP, TCP_KEEPCNT, &probeCount, int.sizeof); if (err != 0) print("sock error on setsockopt TCP_KEEPCNT: %s", getSocketError); } } override void setUserTimeout(StreamSocketFD socket, Duration timeout) @trusted { version (linux) { uint tmsecs = cast(uint) timeout.total!"msecs"; int err = setsockopt(cast(sock_t)socket, SOL_TCP, TCP_USER_TIMEOUT, &tmsecs, uint.sizeof); if (err != 0) print("sock error on setsockopt TCP_USER_TIMEOUT %s", getSocketError); } } final override void read(StreamSocketFD socket, ubyte[] buffer, IOMode mode, IOCallback on_read_finish) { /*if (buffer.length == 0) { on_read_finish(socket, IOStatus.ok, 0); return; }*/ sizediff_t ret; () @trusted { ret = .recv(cast(sock_t)socket, buffer.ptr, min(buffer.length, int.max), 0); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { print("sock error %s!", err); on_read_finish(socket, IOStatus.error, 0); return; } } if (ret == 0 && buffer.length > 0) { on_read_finish(socket, IOStatus.disconnected, 0); return; } if (ret < 0 && mode == IOMode.immediate) { on_read_finish(socket, IOStatus.wouldBlock, 0); return; } if (ret >= 0) { buffer = buffer[ret .. $]; if (mode != IOMode.all || buffer.length == 0) { on_read_finish(socket, IOStatus.ok, ret); return; } } // NOTE: since we know that not all data was read from the stream // socket, the next call to recv is guaranteed to return EGAIN // and we can avoid that call. with (m_loop.m_fds[socket].streamSocket) { readCallback = on_read_finish; readMode = mode; bytesRead = ret > 0 ? ret : 0; readBuffer = buffer; } m_loop.setNotifyCallback!(EventType.read)(socket, &onSocketRead); } override void cancelRead(StreamSocketFD socket) { assert(m_loop.m_fds[socket].streamSocket.readCallback !is null, "Cancelling read when there is no read in progress."); m_loop.setNotifyCallback!(EventType.read)(socket, null); with (m_loop.m_fds[socket].streamSocket) { readBuffer = null; } } private void onSocketRead(FD fd) { auto slot = () @trusted { return &m_loop.m_fds[fd].streamSocket(); } (); auto socket = cast(StreamSocketFD)fd; void finalize()(IOStatus status) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.read)(socket, null); assert(m_loop.m_fds[socket].common.refCount > 0); //m_fds[fd].readBuffer = null; slot.readCallback(socket, status, slot.bytesRead); assert(m_loop.m_fds[socket].common.refCount > 0); } sizediff_t ret = 0; () @trusted { ret = .recv(cast(sock_t)socket, slot.readBuffer.ptr, min(slot.readBuffer.length, int.max), 0); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { finalize(IOStatus.error); return; } } if (ret == 0 && slot.readBuffer.length) { slot.state = ConnectionState.passiveClose; finalize(IOStatus.disconnected); return; } if (ret > 0 || !slot.readBuffer.length) { slot.bytesRead += ret; slot.readBuffer = slot.readBuffer[ret .. $]; if (slot.readMode != IOMode.all || slot.readBuffer.length == 0) { finalize(IOStatus.ok); return; } } } final override void write(StreamSocketFD socket, const(ubyte)[] buffer, IOMode mode, IOCallback on_write_finish) { if (buffer.length == 0) { on_write_finish(socket, IOStatus.ok, 0); return; } sizediff_t ret; () @trusted { ret = .send(cast(sock_t)socket, buffer.ptr, min(buffer.length, int.max), 0); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { on_write_finish(socket, IOStatus.error, 0); return; } if (mode == IOMode.immediate) { on_write_finish(socket, IOStatus.wouldBlock, 0); return; } } size_t bytes_written = 0; if (ret >= 0) { bytes_written += ret; buffer = buffer[ret .. $]; if (mode != IOMode.all || buffer.length == 0) { on_write_finish(socket, IOStatus.ok, bytes_written); return; } } // NOTE: since we know that not all data was writtem to the stream // socket, the next call to send is guaranteed to return EGAIN // and we can avoid that call. with (m_loop.m_fds[socket].streamSocket) { writeCallback = on_write_finish; writeMode = mode; bytesWritten = ret >= 0 ? ret : 0; writeBuffer = buffer; } m_loop.setNotifyCallback!(EventType.write)(socket, &onSocketWrite); } override void cancelWrite(StreamSocketFD socket) { assert(m_loop.m_fds[socket].streamSocket.writeCallback !is null, "Cancelling write when there is no write in progress."); m_loop.setNotifyCallback!(EventType.write)(socket, null); m_loop.m_fds[socket].streamSocket.writeBuffer = null; } private void onSocketWrite(FD fd) { auto slot = () @trusted { return &m_loop.m_fds[fd].streamSocket(); } (); auto socket = cast(StreamSocketFD)fd; sizediff_t ret; () @trusted { ret = .send(cast(sock_t)socket, slot.writeBuffer.ptr, min(slot.writeBuffer.length, int.max), 0); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.write)(socket, null); slot.writeCallback(socket, IOStatus.error, slot.bytesRead); return; } } if (ret >= 0) { slot.bytesWritten += ret; slot.writeBuffer = slot.writeBuffer[ret .. $]; if (slot.writeMode != IOMode.all || slot.writeBuffer.length == 0) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.write)(socket, null); slot.writeCallback(cast(StreamSocketFD)socket, IOStatus.ok, slot.bytesWritten); return; } } } final override void waitForData(StreamSocketFD socket, IOCallback on_data_available) { sizediff_t ret; ubyte dummy; () @trusted { ret = recv(cast(sock_t)socket, &dummy, 1, MSG_PEEK); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { on_data_available(socket, IOStatus.error, 0); return; } } size_t bytes_read = 0; if (ret == 0) { on_data_available(socket, IOStatus.disconnected, 0); return; } if (ret > 0) { on_data_available(socket, IOStatus.ok, 0); return; } with (m_loop.m_fds[socket].streamSocket) { readCallback = on_data_available; readMode = IOMode.once; bytesRead = 0; readBuffer = null; } m_loop.setNotifyCallback!(EventType.read)(socket, &onSocketDataAvailable); } private void onSocketDataAvailable(FD fd) { auto slot = () @trusted { return &m_loop.m_fds[fd].streamSocket(); } (); auto socket = cast(StreamSocketFD)fd; void finalize()(IOStatus status) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.read)(socket, null); //m_fds[fd].readBuffer = null; slot.readCallback(socket, status, 0); } sizediff_t ret; ubyte tmp; () @trusted { ret = recv(cast(sock_t)socket, &tmp, 1, MSG_PEEK); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) finalize(IOStatus.error); } else finalize(ret ? IOStatus.ok : IOStatus.disconnected); } final override void shutdown(StreamSocketFD socket, bool shut_read, bool shut_write) { auto st = m_loop.m_fds[socket].streamSocket.state; () @trusted { .shutdown(cast(sock_t)socket, shut_read ? shut_write ? SHUT_RDWR : SHUT_RD : shut_write ? SHUT_WR : 0); } (); if (st == ConnectionState.passiveClose) shut_read = true; if (st == ConnectionState.activeClose) shut_write = true; m_loop.m_fds[socket].streamSocket.state = shut_read ? shut_write ? ConnectionState.closed : ConnectionState.passiveClose : shut_write ? ConnectionState.activeClose : ConnectionState.connected; } final override DatagramSocketFD createDatagramSocket(scope Address bind_address, scope Address target_address) { return createDatagramSocketInternal(bind_address, target_address, false); } package DatagramSocketFD createDatagramSocketInternal(scope Address bind_address, scope Address target_address, bool is_internal = true) { auto sockfd = createSocket(bind_address.addressFamily, SOCK_DGRAM); if (sockfd == -1) return DatagramSocketFD.invalid; auto sock = cast(DatagramSocketFD)sockfd; if (bind_address && () @trusted { return bind(sockfd, bind_address.name, bind_address.nameLen); } () != 0) { closeSocket(sockfd); return DatagramSocketFD.init; } if (target_address) { int ret; if (target_address is bind_address) { // special case of bind_address==target_address: determine the actual bind address // in case of a zero port sockaddr_storage sa; socklen_t addr_len = sa.sizeof; if (() @trusted { return getsockname(sockfd, cast(sockaddr*)&sa, &addr_len); } () != 0) { closeSocket(sockfd); return DatagramSocketFD.init; } ret = () @trusted { return connect(sockfd, cast(sockaddr*)&sa, addr_len); } (); } else ret = () @trusted { return connect(sockfd, target_address.name, target_address.nameLen); } (); if (ret != 0) { closeSocket(sockfd); return DatagramSocketFD.init; } } m_loop.initFD(sock, is_internal ? FDFlags.internal : FDFlags.none, DgramSocketSlot.init); m_loop.registerFD(sock, EventMask.read|EventMask.write|EventMask.status); return sock; } final override DatagramSocketFD adoptDatagramSocket(int socket) { return adoptDatagramSocketInternal(socket, false); } package DatagramSocketFD adoptDatagramSocketInternal(int socket, bool is_internal = true, bool close_on_exec = false) @nogc { auto fd = DatagramSocketFD(socket); if (m_loop.m_fds[fd].common.refCount) // FD already in use? return DatagramSocketFD.init; setSocketNonBlocking(fd, close_on_exec); m_loop.initFD(fd, is_internal ? FDFlags.internal : FDFlags.none, DgramSocketSlot.init); m_loop.registerFD(fd, EventMask.read|EventMask.write|EventMask.status); return fd; } final override void setTargetAddress(DatagramSocketFD socket, scope Address target_address) { () @trusted { connect(cast(sock_t)socket, target_address.name, target_address.nameLen); } (); } final override bool setBroadcast(DatagramSocketFD socket, bool enable) { int tmp_broad = enable; return () @trusted { return setsockopt(cast(sock_t)socket, SOL_SOCKET, SO_BROADCAST, &tmp_broad, tmp_broad.sizeof); } () == 0; } final override bool joinMulticastGroup(DatagramSocketFD socket, scope Address multicast_address, uint interface_index = 0) { switch (multicast_address.addressFamily) { default: assert(false, "Multicast only supported for IPv4/IPv6 sockets."); case AddressFamily.INET: struct ip_mreq { in_addr imr_multiaddr; /* IP multicast address of group */ in_addr imr_interface; /* local IP address of interface */ } auto addr = () @trusted { return cast(sockaddr_in*)multicast_address.name; } (); ip_mreq mreq; mreq.imr_multiaddr = addr.sin_addr; mreq.imr_interface.s_addr = htonl(interface_index); return () @trusted { return setsockopt(cast(sock_t)socket, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, ip_mreq.sizeof); } () == 0; case AddressFamily.INET6: version (Windows) { struct ipv6_mreq { in6_addr ipv6mr_multiaddr; uint ipv6mr_interface; } } auto addr = () @trusted { return cast(sockaddr_in6*)multicast_address.name; } (); ipv6_mreq mreq; mreq.ipv6mr_multiaddr = addr.sin6_addr; mreq.ipv6mr_interface = htonl(interface_index); return () @trusted { return setsockopt(cast(sock_t)socket, IPPROTO_IP, IPV6_JOIN_GROUP, &mreq, ipv6_mreq.sizeof); } () == 0; } } void receive(DatagramSocketFD socket, ubyte[] buffer, IOMode mode, DatagramIOCallback on_receive_finish) @trusted { // DMD 2.072.0-b2: scope considered unsafe import std.typecons : scoped; assert(mode != IOMode.all, "Only IOMode.immediate and IOMode.once allowed for datagram sockets."); sizediff_t ret; sockaddr_storage src_addr; socklen_t src_addr_len = src_addr.sizeof; () @trusted { ret = .recvfrom(cast(sock_t)socket, buffer.ptr, min(buffer.length, int.max), 0, cast(sockaddr*)&src_addr, &src_addr_len); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { print("sock error %s for %s!", err, socket); on_receive_finish(socket, IOStatus.error, 0, null); return; } if (mode == IOMode.immediate) { on_receive_finish(socket, IOStatus.wouldBlock, 0, null); } else { with (m_loop.m_fds[socket].datagramSocket) { readCallback = on_receive_finish; readMode = mode; bytesRead = 0; readBuffer = buffer; } m_loop.setNotifyCallback!(EventType.read)(socket, &onDgramRead); } return; } scope src_addrc = new RefAddress(() @trusted { return cast(sockaddr*)&src_addr; } (), src_addr_len); on_receive_finish(socket, IOStatus.ok, ret, src_addrc); } package void receiveNoGC(DatagramSocketFD socket, ubyte[] buffer, IOMode mode, void delegate(DatagramSocketFD, IOStatus, size_t, scope RefAddress) @safe nothrow @nogc on_receive_finish) @trusted @nogc { scope void delegate() @safe nothrow do_it = { receive(socket, buffer, mode, on_receive_finish); }; (cast(void delegate() @safe nothrow @nogc)do_it)(); } void cancelReceive(DatagramSocketFD socket) @nogc { assert(m_loop.m_fds[socket].datagramSocket.readCallback !is null, "Cancelling read when there is no read in progress."); m_loop.setNotifyCallback!(EventType.read)(socket, null); m_loop.m_fds[socket].datagramSocket.readBuffer = null; } private void onDgramRead(FD fd) @trusted { // DMD 2.072.0-b2: scope considered unsafe auto slot = () @trusted { return &m_loop.m_fds[fd].datagramSocket(); } (); auto socket = cast(DatagramSocketFD)fd; sizediff_t ret; sockaddr_storage src_addr; socklen_t src_addr_len = src_addr.sizeof; () @trusted { ret = .recvfrom(cast(sock_t)socket, slot.readBuffer.ptr, min(slot.readBuffer.length, int.max), 0, cast(sockaddr*)&src_addr, &src_addr_len); } (); if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.read)(socket, null); slot.readCallback(socket, IOStatus.error, 0, null); return; } } auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.read)(socket, null); scope src_addrc = new RefAddress(() @trusted { return cast(sockaddr*)&src_addr; } (), src_addr.sizeof); () @trusted { return cast(DatagramIOCallback)slot.readCallback; } ()(socket, IOStatus.ok, ret, src_addrc); } void send(DatagramSocketFD socket, const(ubyte)[] buffer, IOMode mode, Address target_address, DatagramIOCallback on_send_finish) { assert(mode != IOMode.all, "Only IOMode.immediate and IOMode.once allowed for datagram sockets."); sizediff_t ret; if (target_address) { () @trusted { ret = .sendto(cast(sock_t)socket, buffer.ptr, min(buffer.length, int.max), 0, target_address.name, target_address.nameLen); } (); m_loop.m_fds[socket].datagramSocket.targetAddr = target_address; } else { () @trusted { ret = .send(cast(sock_t)socket, buffer.ptr, min(buffer.length, int.max), 0); } (); } if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { print("sock error %s!", err); on_send_finish(socket, IOStatus.error, 0, null); return; } if (mode == IOMode.immediate) { on_send_finish(socket, IOStatus.wouldBlock, 0, null); } else { with (m_loop.m_fds[socket].datagramSocket) { writeCallback = on_send_finish; writeMode = mode; bytesWritten = 0; writeBuffer = buffer; } m_loop.setNotifyCallback!(EventType.write)(socket, &onDgramWrite); } return; } on_send_finish(socket, IOStatus.ok, ret, null); } void cancelSend(DatagramSocketFD socket) { assert(m_loop.m_fds[socket].datagramSocket.writeCallback !is null, "Cancelling write when there is no write in progress."); m_loop.setNotifyCallback!(EventType.write)(socket, null); m_loop.m_fds[socket].datagramSocket.writeBuffer = null; } private void onDgramWrite(FD fd) { auto slot = () @trusted { return &m_loop.m_fds[fd].datagramSocket(); } (); auto socket = cast(DatagramSocketFD)fd; sizediff_t ret; if (slot.targetAddr) { () @trusted { ret = .sendto(cast(sock_t)socket, slot.writeBuffer.ptr, min(slot.writeBuffer.length, int.max), 0, slot.targetAddr.name, slot.targetAddr.nameLen); } (); } else { () @trusted { ret = .send(cast(sock_t)socket, slot.writeBuffer.ptr, min(slot.writeBuffer.length, int.max), 0); } (); } if (ret < 0) { auto err = getSocketError(); if (!err.among!(EAGAIN, EINPROGRESS)) { auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.write)(socket, null); () @trusted { return cast(DatagramIOCallback)slot.writeCallback; } ()(socket, IOStatus.error, 0, null); return; } } auto l = lockHandle(socket); m_loop.setNotifyCallback!(EventType.write)(socket, null); () @trusted { return cast(DatagramIOCallback)slot.writeCallback; } ()(socket, IOStatus.ok, ret, null); } final override void addRef(SocketFD fd) { auto slot = () @trusted { return &m_loop.m_fds[fd]; } (); assert(slot.common.refCount > 0, "Adding reference to unreferenced socket FD."); slot.common.refCount++; } final override bool releaseRef(SocketFD fd) @nogc { import taggedalgebraic : hasType; auto slot = () @trusted { return &m_loop.m_fds[fd]; } (); nogc_assert(slot.common.refCount > 0, "Releasing reference to unreferenced socket FD."); // listening sockets have an incremented the reference count because of setNotifyCallback int base_refcount = slot.specific.hasType!StreamListenSocketSlot ? 1 : 0; if (--slot.common.refCount == base_refcount) { m_loop.unregisterFD(fd, EventMask.read|EventMask.write|EventMask.status); switch (slot.specific.kind) with (slot.specific.Kind) { default: assert(false, "File descriptor slot is not a socket."); case streamSocket: m_loop.clearFD!StreamSocketSlot(fd); break; case streamListen: m_loop.setNotifyCallback!(EventType.read)(fd, null); m_loop.clearFD!StreamListenSocketSlot(fd); break; case datagramSocket: m_loop.clearFD!DgramSocketSlot(fd); break; } closeSocket(cast(sock_t)fd); return false; } return true; } final override bool setOption(DatagramSocketFD socket, DatagramSocketOption option, bool enable) { int proto, opt; final switch (option) { case DatagramSocketOption.broadcast: proto = SOL_SOCKET; opt = SO_BROADCAST; break; case DatagramSocketOption.multicastLoopback: proto = IPPROTO_IP; opt = IP_MULTICAST_LOOP; break; } int tmp = enable; return () @trusted { return setsockopt(cast(sock_t)socket, proto, opt, &tmp, tmp.sizeof); } () == 0; } final override bool setOption(StreamSocketFD socket, StreamSocketOption option, bool enable) { int proto, opt; final switch (option) { case StreamSocketOption.noDelay: proto = IPPROTO_TCP; opt = TCP_NODELAY; break; case StreamSocketOption.keepAlive: proto = SOL_SOCKET; opt = SO_KEEPALIVE; break; } int tmp = enable; return () @trusted { return setsockopt(cast(sock_t)socket, proto, opt, &tmp, tmp.sizeof); } () == 0; } final protected override void* rawUserData(StreamSocketFD descriptor, size_t size, DataInitializer initialize, DataInitializer destroy) @system { return m_loop.rawUserDataImpl(descriptor, size, initialize, destroy); } final protected override void* rawUserData(StreamListenSocketFD descriptor, size_t size, DataInitializer initialize, DataInitializer destroy) @system { return m_loop.rawUserDataImpl(descriptor, size, initialize, destroy); } final protected override void* rawUserData(DatagramSocketFD descriptor, size_t size, DataInitializer initialize, DataInitializer destroy) @system { return m_loop.rawUserDataImpl(descriptor, size, initialize, destroy); } private sock_t createSocket(AddressFamily family, int type) { sock_t sock; version (linux) { () @trusted { sock = socket(family, type | SOCK_NONBLOCK | SOCK_CLOEXEC, 0); } (); if (sock == -1) return -1; } else { () @trusted { sock = socket(family, type, 0); } (); if (sock == -1) return -1; setSocketNonBlocking(cast(SocketFD)sock, true); } return sock; } // keeps a scoped reference to a handle to avoid it getting destroyed private auto lockHandle(H)(H handle) { addRef(handle); static struct R { PosixEventDriverSockets drv; H handle; @disable this(this); ~this() { drv.releaseRef(handle); } } return R(this, handle); } } package struct StreamSocketSlot { alias Handle = StreamSocketFD; size_t bytesRead; ubyte[] readBuffer; IOMode readMode; IOCallback readCallback; // FIXME: this type only works for stream sockets size_t bytesWritten; const(ubyte)[] writeBuffer; IOMode writeMode; IOCallback writeCallback; // FIXME: this type only works for stream sockets ConnectCallback connectCallback; ConnectionState state; } package struct StreamListenSocketSlot { alias Handle = StreamListenSocketFD; AcceptCallback acceptCallback; } package struct DgramSocketSlot { alias Handle = DatagramSocketFD; size_t bytesRead; ubyte[] readBuffer; IOMode readMode; DatagramIOCallback readCallback; // FIXME: this type only works for stream sockets size_t bytesWritten; const(ubyte)[] writeBuffer; IOMode writeMode; DatagramIOCallback writeCallback; // FIXME: this type only works for stream sockets Address targetAddr; } private void closeSocket(sock_t sockfd) @nogc nothrow { version (Windows) () @trusted { closesocket(sockfd); } (); else close(sockfd); } private void setSocketNonBlocking(SocketFD sockfd, bool close_on_exec = false) @nogc nothrow { version (Windows) { uint enable = 1; () @trusted { ioctlsocket(sockfd, FIONBIO, &enable); } (); } else { int f = O_NONBLOCK; if (close_on_exec) f |= O_CLOEXEC; () @trusted { fcntl(cast(int)sockfd, F_SETFL, f); } (); } } private int getSocketError() @nogc nothrow { version (Windows) return WSAGetLastError(); else return errno; } private int getBacklogSize() @trusted @nogc nothrow { int backlog = 128; version (linux) { import core.stdc.stdio : fclose, fopen, fscanf; auto somaxconn = fopen("/proc/sys/net/core/somaxconn", "re"); if (somaxconn) { int tmp; if (fscanf(somaxconn, "%d", &tmp) == 1) backlog = tmp; fclose(somaxconn); } } return backlog; }
D
module tests.png.defs; public import tests.defs; import std.experimental.graphic.image.fileformats.png; bool checkIDHR(Image, T...)(ref Image image, T args) @safe { IHDR_Chunk as = IHDR_Chunk(args); return image.IHDR.width == as.width && image.IHDR.height == as.height && image.IHDR.bitDepth == as.bitDepth && image.IHDR.colorType == as.colorType && image.IHDR.compressionMethod == as.compressionMethod && image.IHDR.filterMethod == as.filterMethod && image.IHDR.interlaceMethod == as.interlaceMethod; }
D
/* * Brew Library by erik wikforss */ module brew.insets; import std.string; import brew.math; struct Insets(int D, T) { static assert (D>=1 && D<=4); static if (D>=1) { T left; T right; T width() const { return left + right; } void swapLeftRight() { Math!T.swap(left, right); } } static if (D>=2) { T top; T bottom; T height() const { return top + bottom; } void swapTopBottom() { Math!T.swap(top, bottom); } } static if (D>=3) { T front; T back; T depth() const { return front + back; } void swapFrontBack() { Math!T.swap(front, back); } } static if (D>=4) { T light; T heavy; T weight() const { return light + heavy; } void swapLightHeavy() { Math!T.swap(light, heavy); } } enum { ONES = fill(1), ZERO = fill(0), } static if (D==1) { static pure Insets!(1,T) opCall(T left, T right) { Insets!(1,T) i = {left, right}; return i; } void set(T left, T right) { this.left = left; this.right = right; } } static if (D==2) { static pure Insets!(2,T) opCall(T left, T right, T top, T bottom) { Insets!(2,T) i = {left, right, top, bottom}; return i; } void set(T left, T right, T top, T bottom) { this.left = left; this.right = right; this.top = top; this.bottom = bottom; } } static if (D==3) { static pure Insets!(3,T) opCall(T left, T right, T top, T bottom, T front, T back) { Insets!(3,T) i = {left, right, top, bottom, front, back}; return i; } void set(T left, T right, T top, T bottom, T front, T back) { this.left = left; this.right = right; this.top = top; this.bottom = bottom; this.front = front; this.back = back; } } static if (D==4) { static pure Insets!(4,T) opCall(T left, T right, T top, T bottom, T front, T back, T light, T heavy) { Insets!(4,T) i = {left, right, top, bottom, front, back, light, heavy}; return i; } void set(T left, T right, T top, T bottom, T front, T back, T light, T heavy) { this.left = left; this.right = right; this.top = top; this.bottom = bottom; this.front = front; this.back = back; this.light = light; this.heavy = heavy; } } @property static pure Insets zero() { return fill(0); } @property static pure Insets ones() { return fill(1); } static pure Insets fill(T a) { static if (D==1) return Insets!(1,T)(a,a); static if (D==2) return Insets!(2,T)(a,a,a,a); static if (D==3) return Insets!(3,T)(a,a,a,a,a,a); static if (D==4) return Insets!(4,T)(a,a,a,a,a,a,a,a); } void setAll(T a) { this = Insets.fill(a); } string toString() const { return format("Insets%d%s[%s]", D, T.mangleof, paramString); } string paramString() const { static if (__traits(isFloating, T)) { static if (D==1) return format("left=%f, right=%f", left, right); static if (D==2) return format("left=%f, right=%f, top=%f, bottom=%f", left, right, top, bottom); static if (D==3) return format("left=%f, right=%f, top=%f, bottom=%f, front=%f, back=%f", left, right, top, bottom, front, back); static if (D==4) return format("left=%f, right=%f, top=%f, bottom=%f, front=%f, back=%f, light=%f, heavy=%f", left, right, top, bottom, front, back, light, heavy); } static if (__traits(isIntegral, T)) { static if (D==1) return format("left=%d, right=%d", left, right); static if (D==2) return format("left=%d, right=%d, top=%d, bottom=%d", left, right, top, bottom); static if (D==3) return format("left=%d, right=%d, top=%d, bottom=%d, front=%d, back=%d", left, right, top, bottom, front, back); static if (D==4) return format("left=%d, right=%d, top=%d, bottom=%d, front=%d, back=%d, light=%d, heavy=%d", left, right, top, bottom, front, back, light, heavy); } } void swapSides() { static if (D>=1) swapLeftRight(); static if (D>=2) swapTopBottom(); static if (D>=3) swapFrontBack(); static if (D>=4) swapLightHeavy(); } Insets swappedSides() { Insets i = this; i.swapSides(); return i; } } alias Insets insets_t; alias insets_t!(2,double) insets_2d; alias Insets!(1,int) Insets1i; alias Insets!(2,int) Insets2i; alias Insets!(3,int) Insets3i; alias Insets!(1,float) Insets1f; alias Insets!(2,float) Insets2f; alias Insets!(3,float) Insets3f; alias Insets!(1,double) Insets1d; alias Insets!(2,double) Insets2d; alias Insets!(3,double) Insets3d; alias Insets!(1,real) Insets1r; alias Insets!(2,real) Insets2r; alias Insets!(3,real) Insets3r;
D
instance VLK_4302_Addon_Elvrich(Npc_Default) { name[0] = "Элврих"; guild = GIL_NONE; id = 4302; voice = 4; flags = NPC_FLAG_IMMORTAL; npcType = npctype_main; aivar[AIV_NoFightParker] = TRUE; B_SetAttributesToChapter(self,2); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1h_Vlk_Axe); B_SetNpcVisual(self,MALE,"Hum_Head_Pony",Face_B_Normal01,BodyTex_B,ITAR_Bau_L); Mdl_SetModelFatness(self,0); Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds"); B_GiveNpcTalents(self); B_SetFightSkills(self,30); daily_routine = Rtn_Start_4302; }; func void Rtn_Start_4302() { TA_Sit_Campfire(8,0,23,0,"NW_BIGMILL_FARM3_RANGERBANDITS_ELVRICH"); TA_Sit_Campfire(23,0,8,0,"NW_BIGMILL_FARM3_RANGERBANDITS_ELVRICH"); }; func void Rtn_BackInTheCity_4302() { TA_Repair_Hut(6,0,9,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Saw(9,0,13,5,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Repair_Hut(13,5,14,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Saw(14,0,16,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Repair_Hut(16,0,17,5,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Repair_Hut(17,5,18,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Repair_Hut(18,0,19,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Saw(19,0,20,0,"NW_CITY_MERCHANT_SHOP01_FRONT_01"); TA_Repair_Hut(20,0,0,0,"NW_CITY_MERCHANT_HUT_01_FRONT"); TA_Sit_Bench(0,0,6,0,"NW_CITY_MERCHANT_HUT_01_FRONT"); };
D
/******************************************************************************* copyright: Copyright (c) 2006 Dinrus. все rights reserved license: BSD стиль: see doc/license.txt for details version: Initial release: Feb 2006 author: Regan Heath, Oskar Linde This module реализует the MD4 Message Дайджест Algorithm as described by RFC 1320 The MD4 Message-Дайджест Algorithm. R. Rivest. April 1992. *******************************************************************************/ module util.digest.Md4; public import util.digest.Digest; private import util.digest.MerkleDamgard; /******************************************************************************* *******************************************************************************/ class Md4 : MerkleDamgard { protected бцел[4] контекст; private const ббайт padChar = 0x80; /*********************************************************************** Construct an Md4 ***********************************************************************/ this() { } /*********************************************************************** The MD 4 дайджест размер is 16 байты ***********************************************************************/ бцел размерДайджеста() { return 16; } /*********************************************************************** Initialize the cipher Remarks: Returns the cipher состояние в_ it's начальное значение ***********************************************************************/ override проц сбрось() { super.сбрось(); контекст[] = начальное[]; } /*********************************************************************** Obtain the дайджест Возвращает: the дайджест Remarks: Returns a дайджест of the текущ cipher состояние, this may be the final дайджест, or a дайджест of the состояние between calls в_ обнови() ***********************************************************************/ override проц создайДайджест(ббайт[] буф) { version (БигЭндиан) ПерестановкаБайт.своп32 (контекст.ptr, контекст.length * бцел.sizeof); буф[] = cast(ббайт[]) контекст; } /*********************************************************************** блок размер Возвращает: the блок размер Remarks: Specifies the размер (in байты) of the блок of данные в_ пароль в_ each вызов в_ трансформируй(). For MD4 the размерБлока is 64. ***********************************************************************/ protected override бцел размерБлока() { return 64; } /*********************************************************************** Length паддинг размер Возвращает: the length паддинг размер Remarks: Specifies the размер (in байты) of the паддинг which uses the length of the данные which имеется been ciphered, this паддинг is carried out by the padLength метод. For MD4 the добавьРазмер is 8. ***********************************************************************/ protected override бцел добавьРазмер() { return 8; } /*********************************************************************** Pads the cipher данные Параметры: данные = a срез of the cipher буфер в_ заполни with паддинг Remarks: Fills the passed буфер срез with the appropriate паддинг for the final вызов в_ трансформируй(). This паддинг will заполни the cipher буфер up в_ размерБлока()-добавьРазмер(). ***********************************************************************/ protected override проц padMessage(ббайт[] данные) { данные[0] = padChar; данные[1..$] = 0; } /*********************************************************************** Performs the length паддинг Параметры: данные = the срез of the cipher буфер в_ заполни with паддинг length = the length of the данные which имеется been ciphered Remarks: Fills the passed буфер срез with добавьРазмер() байты of паддинг based on the length in байты of the ввод данные which имеется been ciphered. ***********************************************************************/ protected override проц padLength(ббайт[] данные, бдол length) { length <<= 3; littleEndian64((cast(ббайт*)&length)[0..8],cast(бдол[]) данные); } /*********************************************************************** Performs the cipher on a блок of данные Параметры: данные = the блок of данные в_ cipher Remarks: The actual cipher algorithm is carried out by this метод on the passed блок of данные. This метод is called for every размерБлока() байты of ввод данные и once ещё with the остаток данные псеп_в_конце в_ размерБлока(). ***********************************************************************/ protected override проц трансформируй(ббайт[] ввод) { бцел a,b,c,d; бцел[16] x; littleEndian32(ввод,x); a = контекст[0]; b = контекст[1]; c = контекст[2]; d = контекст[3]; /* Round 1 */ ff(a, b, c, d, x[ 0], S11, 0); /* 1 */ ff(d, a, b, c, x[ 1], S12, 0); /* 2 */ ff(c, d, a, b, x[ 2], S13, 0); /* 3 */ ff(b, c, d, a, x[ 3], S14, 0); /* 4 */ ff(a, b, c, d, x[ 4], S11, 0); /* 5 */ ff(d, a, b, c, x[ 5], S12, 0); /* 6 */ ff(c, d, a, b, x[ 6], S13, 0); /* 7 */ ff(b, c, d, a, x[ 7], S14, 0); /* 8 */ ff(a, b, c, d, x[ 8], S11, 0); /* 9 */ ff(d, a, b, c, x[ 9], S12, 0); /* 10 */ ff(c, d, a, b, x[10], S13, 0); /* 11 */ ff(b, c, d, a, x[11], S14, 0); /* 12 */ ff(a, b, c, d, x[12], S11, 0); /* 13 */ ff(d, a, b, c, x[13], S12, 0); /* 14 */ ff(c, d, a, b, x[14], S13, 0); /* 15 */ ff(b, c, d, a, x[15], S14, 0); /* 16 */ /* Round 2 */ gg(a, b, c, d, x[ 0], S21, 0x5a827999); /* 17 */ gg(d, a, b, c, x[ 4], S22, 0x5a827999); /* 18 */ gg(c, d, a, b, x[ 8], S23, 0x5a827999); /* 19 */ gg(b, c, d, a, x[12], S24, 0x5a827999); /* 20 */ gg(a, b, c, d, x[ 1], S21, 0x5a827999); /* 21 */ gg(d, a, b, c, x[ 5], S22, 0x5a827999); /* 22 */ gg(c, d, a, b, x[ 9], S23, 0x5a827999); /* 23 */ gg(b, c, d, a, x[13], S24, 0x5a827999); /* 24 */ gg(a, b, c, d, x[ 2], S21, 0x5a827999); /* 25 */ gg(d, a, b, c, x[ 6], S22, 0x5a827999); /* 26 */ gg(c, d, a, b, x[10], S23, 0x5a827999); /* 27 */ gg(b, c, d, a, x[14], S24, 0x5a827999); /* 28 */ gg(a, b, c, d, x[ 3], S21, 0x5a827999); /* 29 */ gg(d, a, b, c, x[ 7], S22, 0x5a827999); /* 30 */ gg(c, d, a, b, x[11], S23, 0x5a827999); /* 31 */ gg(b, c, d, a, x[15], S24, 0x5a827999); /* 32 */ /* Round 3 */ hh(a, b, c, d, x[ 0], S31, 0x6ed9eba1); /* 33 */ hh(d, a, b, c, x[ 8], S32, 0x6ed9eba1); /* 34 */ hh(c, d, a, b, x[ 4], S33, 0x6ed9eba1); /* 35 */ hh(b, c, d, a, x[12], S34, 0x6ed9eba1); /* 36 */ hh(a, b, c, d, x[ 2], S31, 0x6ed9eba1); /* 37 */ hh(d, a, b, c, x[10], S32, 0x6ed9eba1); /* 38 */ hh(c, d, a, b, x[ 6], S33, 0x6ed9eba1); /* 39 */ hh(b, c, d, a, x[14], S34, 0x6ed9eba1); /* 40 */ hh(a, b, c, d, x[ 1], S31, 0x6ed9eba1); /* 41 */ hh(d, a, b, c, x[ 9], S32, 0x6ed9eba1); /* 42 */ hh(c, d, a, b, x[ 5], S33, 0x6ed9eba1); /* 43 */ hh(b, c, d, a, x[13], S34, 0x6ed9eba1); /* 44 */ hh(a, b, c, d, x[ 3], S31, 0x6ed9eba1); /* 45 */ hh(d, a, b, c, x[11], S32, 0x6ed9eba1); /* 46 */ hh(c, d, a, b, x[ 7], S33, 0x6ed9eba1); /* 47 */ hh(b, c, d, a, x[15], S34, 0x6ed9eba1); /* 48 */ контекст[0] += a; контекст[1] += b; контекст[2] += c; контекст[3] += d; x[] = 0; } /*********************************************************************** ***********************************************************************/ protected static бцел f(бцел x, бцел y, бцел z) { return (x&y)|(~x&z); } /*********************************************************************** ***********************************************************************/ protected static бцел h(бцел x, бцел y, бцел z) { return x^y^z; } /*********************************************************************** ***********************************************************************/ private static бцел g(бцел x, бцел y, бцел z) { return (x&y)|(x&z)|(y&z); } /*********************************************************************** ***********************************************************************/ private static проц ff(ref бцел a, бцел b, бцел c, бцел d, бцел x, бцел s, бцел ac) { a += f(b, c, d) + x + ac; a = вращайВлево(a, s); } /*********************************************************************** ***********************************************************************/ private static проц gg(ref бцел a, бцел b, бцел c, бцел d, бцел x, бцел s, бцел ac) { a += g(b, c, d) + x + ac; a = вращайВлево(a, s); } /*********************************************************************** ***********************************************************************/ private static проц hh(ref бцел a, бцел b, бцел c, бцел d, бцел x, бцел s, бцел ac) { a += h(b, c, d) + x + ac; a = вращайВлево(a, s); } /*********************************************************************** ***********************************************************************/ private static const бцел[4] начальное = [ 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476 ]; /*********************************************************************** ***********************************************************************/ private static enum { S11 = 3, S12 = 7, S13 = 11, S14 = 19, S21 = 3, S22 = 5, S23 = 9, S24 = 13, S31 = 3, S32 = 9, S33 = 11, S34 = 15, } } /******************************************************************************* *******************************************************************************/ debug(UnitTest) { unittest { static ткст[] strings = [ "", "a", "abc", "сообщение дайджест", "abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" ]; static ткст[] results = [ "31d6cfe0d16ae931b73c59d7e0c089c0", "bde52cb31de33e46245e05fbdbd6fb24", "a448017aaf21d8525fc10ae87aa6729d", "d9130a8164549fe818874806e1c7014b", "d79e1c308aa5bbcdeea8ed63df412da9", "043f8582f241db351ce627e153e7f0e4", "e33b4ddc9c38f2199c3e7b164fcc0536" ]; Md4 h = new Md4(); foreach (цел i, ткст s; strings) { h.обнови(s); ткст d = h.гексДайджест; assert(d == results[i],":("~s~")("~d~")!=("~results[i]~")"); } } }
D
/Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallScaleRippleMultiple.o : /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseSync.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallDoubleBounce.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorShape.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotateChase.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseRise.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorAnimationDelegate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZag.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBlank.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationPacman.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCircleStrokeSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSquareSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCubeTransition.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationAudioEqualizer.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationOrbit.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorView.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScaleParty.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVC/Pods/Target\ Support\ Files/NVActivityIndicatorView/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/unextended-module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallScaleRippleMultiple~partial.swiftmodule : /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseSync.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallDoubleBounce.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorShape.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotateChase.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseRise.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorAnimationDelegate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZag.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBlank.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationPacman.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCircleStrokeSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSquareSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCubeTransition.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationAudioEqualizer.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationOrbit.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorView.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScaleParty.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVC/Pods/Target\ Support\ Files/NVActivityIndicatorView/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/unextended-module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallScaleRippleMultiple~partial.swiftdoc : /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseSync.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallDoubleBounce.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorShape.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotateChase.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseRise.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorAnimationDelegate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZag.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBlank.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationPacman.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCircleStrokeSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSquareSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCubeTransition.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationAudioEqualizer.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationOrbit.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorView.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScaleParty.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVC/Pods/Target\ Support\ Files/NVActivityIndicatorView/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/unextended-module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationBallScaleRippleMultiple~partial.swiftsourceinfo : /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseSync.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOutRapid.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallDoubleBounce.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScale.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRippleMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotateMultiple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallScaleRipple.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorShape.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotateChase.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulseRise.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotatePulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallPulse.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorAnimationDelegate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallClipRotate.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZag.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallTrianglePath.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBlank.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationPacman.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCircleStrokeSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSemiCircleSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationSquareSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationTriangleSkewSpin.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationCubeTransition.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallSpinFadeLoader.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationAudioEqualizer.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallGridBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallBeat.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationBallZigZagDeflect.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationOrbit.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScalePulseOut.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/NVActivityIndicatorView.swift /Users/hanykaram/Desktop/MVC/Pods/NVActivityIndicatorView/Sources/Base/Animations/NVActivityIndicatorAnimationLineScaleParty.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVC/Pods/Target\ Support\ Files/NVActivityIndicatorView/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVC/DerivedData/MVC/Build/Intermediates.noindex/SwiftMigration/MVC/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/unextended-module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Command.build/Group/CommandGroup.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/Command.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandRunnable.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Autocomplete.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/CommandConfig.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandOption.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Console+Run.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Help.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/CommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/BasicCommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/CommandError.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/Commands.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Utilities.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Exports.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/CommandArgument.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandInput.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandContext.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/godemodegame/Desktop/ATMApp/.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/ifaddrs-android.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/CNIODarwin.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/CNIOLinux.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Command.build/CommandGroup~partial.swiftmodule : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/Command.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandRunnable.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Autocomplete.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/CommandConfig.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandOption.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Console+Run.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Help.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/CommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/BasicCommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/CommandError.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/Commands.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Utilities.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Exports.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/CommandArgument.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandInput.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandContext.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/godemodegame/Desktop/ATMApp/.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/ifaddrs-android.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/CNIODarwin.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/CNIOLinux.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Command.build/CommandGroup~partial.swiftdoc : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/Command.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandRunnable.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Autocomplete.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/CommandConfig.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Base/CommandOption.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Console+Run.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/Output+Help.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/CommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Group/BasicCommandGroup.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/CommandError.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Config/Commands.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Utilities.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Utilities/Exports.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/CommandArgument.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandInput.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Run/CommandContext.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/godemodegame/Desktop/ATMApp/.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/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/ifaddrs-android.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/CNIODarwin.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/CNIOLinux.h /Users/godemodegame/Desktop/ATMApp/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
instance VLK_540_Buddler (Npc_Default) { //-------- primary data -------- name = Name_Buddler; npctype = npctype_mine_ambient; guild = GIL_VLK; level = 3; voice = 3; id = 540; //-------- abilities -------- attribute[ATR_STRENGTH] = 15; attribute[ATR_STRENGTH] = 10; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 76; attribute[ATR_HITPOINTS] = 76; //-------- visuals -------- // animations Mdl_SetVisual (self,"HUMANS.MDS"); Mdl_ApplyOverlayMds (self,"Humans_Tired.mds"); // body mesh,head mesh,69hairmesh,face-tex,hair-tex,skin Mdl_SetVisualBody (self,"hum_body_Naked0",2,1,"Hum_Head_Bald",112,3,-1); B_Scale (self); Mdl_SetModelFatness (self,0); fight_tactic = FAI_HUMAN_COWARD; //-------- Talents -------- //-------- inventory -------- EquipItem (self,DEF_MW_1H); CreateInvItem (self,ItFoApple); //-------------Daily Routine------------- /*B_InitNPCAddins(self);*/ daily_routine = Rtn_start_540; //------------ //MISSIONs------------------ }; FUNC VOID Rtn_start_540 () { TA_PickOre (08,00,18,00,"OM_PICKORE_11"); TA_PickOre (18,00,08,00,"OM_PICKORE_11"); };
D
// ****************************************************************** // B_SetMonsterAttitude // -------------------- // Alle Menschen (ausser Dementoren) können mit der Sammelbezeichnung // GIL_SEPERATOR_HUM angegeben werden // ****************************************************************** func void B_SetMonsterAttitude (var int fromGuild, var int attitude, var int toGuild) { if (toGuild == GIL_SEPERATOR_HUM) { Wld_SetGuildAttitude (fromGuild , attitude, GIL_NONE ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_PAL ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_MIL ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_VLK ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_KDF ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_NOV ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_DJG ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_SLD ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_BAU ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_BDT ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_STRF ); //GIL_DMT nicht Wld_SetGuildAttitude (fromGuild , attitude, GIL_OUT ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_PIR ); Wld_SetGuildAttitude (fromGuild , attitude, GIL_Bad ); } else if (fromGuild == GIL_SEPERATOR_HUM) { Wld_SetGuildAttitude (GIL_NONE , attitude, toGuild ); Wld_SetGuildAttitude (GIL_PAL , attitude, toGuild ); Wld_SetGuildAttitude (GIL_MIL , attitude, toGuild ); Wld_SetGuildAttitude (GIL_VLK , attitude, toGuild ); Wld_SetGuildAttitude (GIL_KDF , attitude, toGuild ); Wld_SetGuildAttitude (GIL_NOV , attitude, toGuild ); Wld_SetGuildAttitude (GIL_DJG , attitude, toGuild ); Wld_SetGuildAttitude (GIL_SLD , attitude, toGuild ); Wld_SetGuildAttitude (GIL_BAU , attitude, toGuild ); Wld_SetGuildAttitude (GIL_BDT , attitude, toGuild ); Wld_SetGuildAttitude (GIL_STRF , attitude, toGuild ); //GIL_DMT nicht Wld_SetGuildAttitude (GIL_OUT , attitude, toGuild ); Wld_SetGuildAttitude (GIL_PIR , attitude, toGuild ); Wld_SetGuildAttitude (GIL_Bad , attitude, toGuild ); } else { Wld_SetGuildAttitude (fromGuild , attitude, toGuild ); }; };
D
/** * The entry point for CTFE. * * Specification: ($LINK2 https://dlang.org/spec/function.html#interpretation, Compile Time Function Execution (CTFE)) * * Copyright: Copyright (C) 1999-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/dinterpret.d, _dinterpret.d) * Documentation: https://dlang.org/phobos/dmd_dinterpret.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/dinterpret.d */ module dmd.dinterpret; import core.stdc.stdio; import core.stdc.stdlib; import core.stdc.string; import dmd.apply; import dmd.arraytypes; import dmd.attrib; import dmd.builtin; import dmd.constfold; import dmd.ctfeexpr; import dmd.dclass; import dmd.declaration; import dmd.dstruct; import dmd.dsymbol; import dmd.dsymbolsem; import dmd.dtemplate; import dmd.errors; import dmd.expression; import dmd.expressionsem; import dmd.func; import dmd.globals; import dmd.id; import dmd.identifier; import dmd.init; import dmd.initsem; import dmd.mtype; import dmd.root.rmem; import dmd.root.array; import dmd.root.region; import dmd.root.rootobject; import dmd.statement; import dmd.tokens; import dmd.utf; import dmd.visitor; /************************************* * Entry point for CTFE. * A compile-time result is required. Give an error if not possible. * * `e` must be semantically valid expression. In other words, it should not * contain any `ErrorExp`s in it. But, CTFE interpretation will cross over * functions and may invoke a function that contains `ErrorStatement` in its body. * If that, the "CTFE failed because of previous errors" error is raised. */ public Expression ctfeInterpret(Expression e) { switch (e.op) { case TOK.int64: case TOK.float64: case TOK.complex80: case TOK.null_: case TOK.void_: case TOK.string_: case TOK.this_: case TOK.super_: case TOK.type: case TOK.typeid_: if (e.type.ty == Terror) return new ErrorExp(); goto case TOK.error; case TOK.error: return e; default: break; } assert(e.type); // https://issues.dlang.org/show_bug.cgi?id=14642 //assert(e.type.ty != Terror); // FIXME if (e.type.ty == Terror) return new ErrorExp(); auto rgnpos = ctfeGlobals.region.savePos(); Expression result = interpret(e, null); result = copyRegionExp(result); if (!CTFEExp.isCantExp(result)) result = scrubReturnValue(e.loc, result); if (CTFEExp.isCantExp(result)) result = new ErrorExp(); ctfeGlobals.region.release(rgnpos); return result; } /* Run CTFE on the expression, but allow the expression to be a TypeExp * or a tuple containing a TypeExp. (This is required by pragma(msg)). */ public Expression ctfeInterpretForPragmaMsg(Expression e) { if (e.op == TOK.error || e.op == TOK.type) return e; // It's also OK for it to be a function declaration (happens only with // __traits(getOverloads)) if (auto ve = e.isVarExp()) if (ve.var.isFuncDeclaration()) { return e; } auto tup = e.isTupleExp(); if (!tup) return e.ctfeInterpret(); // Tuples need to be treated separately, since they are // allowed to contain a TypeExp in this case. Expressions* expsx = null; foreach (i, g; *tup.exps) { auto h = ctfeInterpretForPragmaMsg(g); if (h != g) { if (!expsx) { expsx = tup.exps.copy(); } (*expsx)[i] = h; } } if (expsx) { auto te = new TupleExp(e.loc, expsx); expandTuples(te.exps); te.type = new TypeTuple(te.exps); return te; } return e; } public extern (C++) Expression getValue(VarDeclaration vd) { return ctfeGlobals.stack.getValue(vd); } /************************************************* * Allocate an Expression in the ctfe region. * Params: * T = type of Expression to allocate * args = arguments to Expression's constructor * Returns: * allocated Expression */ T ctfeEmplaceExp(T : Expression, Args...)(Args args) { if (mem.isGCEnabled) return new T(args); auto p = ctfeGlobals.region.malloc(__traits(classInstanceSize, T)); emplaceExp!T(p, args); return cast(T)p; } // CTFE diagnostic information public extern (C++) void printCtfePerformanceStats() { debug (SHOWPERFORMANCE) { printf(" ---- CTFE Performance ----\n"); printf("max call depth = %d\tmax stack = %d\n", ctfeGlobals.maxCallDepth, ctfeGlobals.stack.maxStackUsage()); printf("array allocs = %d\tassignments = %d\n\n", ctfeGlobals.numArrayAllocs, ctfeGlobals.numAssignments); } } /************************** */ void incArrayAllocs() { ++ctfeGlobals.numArrayAllocs; } /* ================================================ Implementation ======================================= */ private: /*************** * Collect together globals used by CTFE */ struct CtfeGlobals { Region region; CtfeStack stack; int callDepth = 0; // current number of recursive calls // When printing a stack trace, suppress this number of calls int stackTraceCallsToSuppress = 0; int maxCallDepth = 0; // highest number of recursive calls int numArrayAllocs = 0; // Number of allocated arrays int numAssignments = 0; // total number of assignments executed } __gshared CtfeGlobals ctfeGlobals; enum CtfeGoal : int { ctfeNeedRvalue, // Must return an Rvalue (== CTFE value) ctfeNeedLvalue, // Must return an Lvalue (== CTFE reference) ctfeNeedNothing, // The return value is not required } alias ctfeNeedRvalue = CtfeGoal.ctfeNeedRvalue; alias ctfeNeedLvalue = CtfeGoal.ctfeNeedLvalue; alias ctfeNeedNothing = CtfeGoal.ctfeNeedNothing; //debug = LOG; //debug = LOGASSIGN; //debug = LOGCOMPILE; //debug = SHOWPERFORMANCE; // Maximum allowable recursive function calls in CTFE enum CTFE_RECURSION_LIMIT = 1000; /** The values of all CTFE variables */ struct CtfeStack { private: /* The stack. Every declaration we encounter is pushed here, * together with the VarDeclaration, and the previous * stack address of that variable, so that we can restore it * when we leave the stack frame. * Note that when a function is forward referenced, the interpreter must * run semantic3, and that may start CTFE again with a NULL istate. Thus * the stack might not be empty when CTFE begins. * * Ctfe Stack addresses are just 0-based integers, but we save * them as 'void *' because Array can only do pointers. */ Expressions values; // values on the stack VarDeclarations vars; // corresponding variables Array!(void*) savedId; // id of the previous state of that var Array!(void*) frames; // all previous frame pointers Expressions savedThis; // all previous values of localThis /* Global constants get saved here after evaluation, so we never * have to redo them. This saves a lot of time and memory. */ Expressions globalValues; // values of global constants size_t framepointer; // current frame pointer size_t maxStackPointer; // most stack we've ever used Expression localThis; // value of 'this', or NULL if none public: extern (C++) size_t stackPointer() { return values.dim; } // The current value of 'this', or NULL if none extern (C++) Expression getThis() { return localThis; } // Largest number of stack positions we've used extern (C++) size_t maxStackUsage() { return maxStackPointer; } // Start a new stack frame, using the provided 'this'. extern (C++) void startFrame(Expression thisexp) { frames.push(cast(void*)cast(size_t)framepointer); savedThis.push(localThis); framepointer = stackPointer(); localThis = thisexp; } extern (C++) void endFrame() { size_t oldframe = cast(size_t)frames[frames.dim - 1]; localThis = savedThis[savedThis.dim - 1]; popAll(framepointer); framepointer = oldframe; frames.setDim(frames.dim - 1); savedThis.setDim(savedThis.dim - 1); } extern (C++) bool isInCurrentFrame(VarDeclaration v) { if (v.isDataseg() && !v.isCTFE()) return false; // It's a global return v.ctfeAdrOnStack >= framepointer; } extern (C++) Expression getValue(VarDeclaration v) { if ((v.isDataseg() || v.storage_class & STC.manifest) && !v.isCTFE()) { assert(v.ctfeAdrOnStack < globalValues.dim); return globalValues[v.ctfeAdrOnStack]; } assert(v.ctfeAdrOnStack < stackPointer()); return values[v.ctfeAdrOnStack]; } extern (C++) void setValue(VarDeclaration v, Expression e) { assert(!v.isDataseg() || v.isCTFE()); assert(v.ctfeAdrOnStack < stackPointer()); values[v.ctfeAdrOnStack] = e; } extern (C++) void push(VarDeclaration v) { assert(!v.isDataseg() || v.isCTFE()); if (v.ctfeAdrOnStack != VarDeclaration.AdrOnStackNone && v.ctfeAdrOnStack >= framepointer) { // Already exists in this frame, reuse it. values[v.ctfeAdrOnStack] = null; return; } savedId.push(cast(void*)cast(size_t)v.ctfeAdrOnStack); v.ctfeAdrOnStack = cast(uint)values.dim; vars.push(v); values.push(null); } extern (C++) void pop(VarDeclaration v) { assert(!v.isDataseg() || v.isCTFE()); assert(!(v.storage_class & (STC.ref_ | STC.out_))); const oldid = v.ctfeAdrOnStack; v.ctfeAdrOnStack = cast(uint)cast(size_t)savedId[oldid]; if (v.ctfeAdrOnStack == values.dim - 1) { values.pop(); vars.pop(); savedId.pop(); } } extern (C++) void popAll(size_t stackpointer) { if (stackPointer() > maxStackPointer) maxStackPointer = stackPointer(); assert(values.dim >= stackpointer); for (size_t i = stackpointer; i < values.dim; ++i) { VarDeclaration v = vars[i]; v.ctfeAdrOnStack = cast(uint)cast(size_t)savedId[i]; } values.setDim(stackpointer); vars.setDim(stackpointer); savedId.setDim(stackpointer); } extern (C++) void saveGlobalConstant(VarDeclaration v, Expression e) { assert(v._init && (v.isConst() || v.isImmutable() || v.storage_class & STC.manifest) && !v.isCTFE()); v.ctfeAdrOnStack = cast(uint)globalValues.dim; globalValues.push(copyRegionExp(e)); } } private struct InterState { InterState* caller; // calling function's InterState FuncDeclaration fd; // function being interpreted Statement start; // if !=NULL, start execution at this statement /* target of CTFEExp result; also * target of labelled CTFEExp or * CTFEExp. (null if no label). */ Statement gotoTarget; } /************************************* * Attempt to interpret a function given the arguments. * Params: * pue = storage for result * fd = function being called * istate = state for calling function (NULL if none) * arguments = function arguments * thisarg = 'this', if a needThis() function, NULL if not. * * Returns: * result expression if successful, TOK.cantExpression if not, * or CTFEExp if function returned void. */ private Expression interpretFunction(UnionExp* pue, FuncDeclaration fd, InterState* istate, Expressions* arguments, Expression thisarg) { debug (LOG) { printf("\n********\n%s FuncDeclaration::interpret(istate = %p) %s\n", fd.loc.toChars(), istate, fd.toChars()); } assert(pue); if (fd.semanticRun == PASS.semantic3) { fd.error("circular dependency. Functions cannot be interpreted while being compiled"); return CTFEExp.cantexp; } if (!fd.functionSemantic3()) return CTFEExp.cantexp; if (fd.semanticRun < PASS.semantic3done) return CTFEExp.cantexp; Type tb = fd.type.toBasetype(); assert(tb.ty == Tfunction); TypeFunction tf = cast(TypeFunction)tb; if (tf.parameterList.varargs != VarArg.none && arguments && ((fd.parameters && arguments.dim != fd.parameters.dim) || (!fd.parameters && arguments.dim))) { fd.error("C-style variadic functions are not yet implemented in CTFE"); return CTFEExp.cantexp; } // Nested functions always inherit the 'this' pointer from the parent, // except for delegates. (Note that the 'this' pointer may be null). // Func literals report isNested() even if they are in global scope, // so we need to check that the parent is a function. if (fd.isNested() && fd.toParentLocal().isFuncDeclaration() && !thisarg && istate) thisarg = ctfeGlobals.stack.getThis(); if (fd.needThis() && !thisarg) { // error, no this. Prevent segfault. // Here should be unreachable by the strict 'this' check in front-end. fd.error("need `this` to access member `%s`", fd.toChars()); return CTFEExp.cantexp; } // Place to hold all the arguments to the function while // we are evaluating them. size_t dim = arguments ? arguments.dim : 0; assert((fd.parameters ? fd.parameters.dim : 0) == dim); /* Evaluate all the arguments to the function, * store the results in eargs[] */ Expressions eargs = Expressions(dim); for (size_t i = 0; i < dim; i++) { Expression earg = (*arguments)[i]; Parameter fparam = tf.parameterList[i]; if (fparam.storageClass & (STC.out_ | STC.ref_)) { if (!istate && (fparam.storageClass & STC.out_)) { // initializing an out parameter involves writing to it. earg.error("global `%s` cannot be passed as an `out` parameter at compile time", earg.toChars()); return CTFEExp.cantexp; } // Convert all reference arguments into lvalue references earg = interpretRegion(earg, istate, ctfeNeedLvalue); if (CTFEExp.isCantExp(earg)) return earg; } else if (fparam.storageClass & STC.lazy_) { } else { /* Value parameters */ Type ta = fparam.type.toBasetype(); if (ta.ty == Tsarray) if (auto eaddr = earg.isAddrExp()) { /* Static arrays are passed by a simple pointer. * Skip past this to get at the actual arg. */ earg = eaddr.e1; } earg = interpretRegion(earg, istate); if (CTFEExp.isCantExp(earg)) return earg; /* Struct literals are passed by value, but we don't need to * copy them if they are passed as const */ if (earg.op == TOK.structLiteral && !(fparam.storageClass & (STC.const_ | STC.immutable_))) earg = copyLiteral(earg).copy(); } if (earg.op == TOK.thrownException) { if (istate) return earg; (cast(ThrownExceptionExp)earg).generateUncaughtError(); return CTFEExp.cantexp; } eargs[i] = earg; } // Now that we've evaluated all the arguments, we can start the frame // (this is the moment when the 'call' actually takes place). InterState istatex; istatex.caller = istate; istatex.fd = fd; if (fd.isThis2) { Expression arg0 = thisarg; if (arg0 && arg0.type.ty == Tstruct) { Type t = arg0.type.pointerTo(); arg0 = ctfeEmplaceExp!AddrExp(arg0.loc, arg0); arg0.type = t; } auto elements = new Expressions(2); (*elements)[0] = arg0; (*elements)[1] = ctfeGlobals.stack.getThis(); Type t2 = Type.tvoidptr.sarrayOf(2); const loc = thisarg ? thisarg.loc : fd.loc; thisarg = ctfeEmplaceExp!ArrayLiteralExp(loc, t2, elements); thisarg = ctfeEmplaceExp!AddrExp(loc, thisarg); thisarg.type = t2.pointerTo(); } ctfeGlobals.stack.startFrame(thisarg); if (fd.vthis && thisarg) { ctfeGlobals.stack.push(fd.vthis); setValue(fd.vthis, thisarg); } for (size_t i = 0; i < dim; i++) { Expression earg = eargs[i]; Parameter fparam = tf.parameterList[i]; VarDeclaration v = (*fd.parameters)[i]; debug (LOG) { printf("arg[%d] = %s\n", i, earg.toChars()); } ctfeGlobals.stack.push(v); if ((fparam.storageClass & (STC.out_ | STC.ref_)) && earg.op == TOK.variable && (cast(VarExp)earg).var.toParent2() == fd) { VarDeclaration vx = (cast(VarExp)earg).var.isVarDeclaration(); if (!vx) { fd.error("cannot interpret `%s` as a `ref` parameter", earg.toChars()); return CTFEExp.cantexp; } /* vx is a variable that is declared in fd. * It means that fd is recursively called. e.g. * * void fd(int n, ref int v = dummy) { * int vx; * if (n == 1) fd(2, vx); * } * fd(1); * * The old value of vx on the stack in fd(1) * should be saved at the start of fd(2, vx) call. */ const oldadr = vx.ctfeAdrOnStack; ctfeGlobals.stack.push(vx); assert(!hasValue(vx)); // vx is made uninitialized // https://issues.dlang.org/show_bug.cgi?id=14299 // v.ctfeAdrOnStack should be saved already // in the stack before the overwrite. v.ctfeAdrOnStack = oldadr; assert(hasValue(v)); // ref parameter v should refer existing value. } else { // Value parameters and non-trivial references setValueWithoutChecking(v, earg); } debug (LOG) { printf("interpreted arg[%d] = %s\n", i, earg.toChars()); showCtfeExpr(earg); } debug (LOGASSIGN) { printf("interpreted arg[%d] = %s\n", i, earg.toChars()); showCtfeExpr(earg); } } if (fd.vresult) ctfeGlobals.stack.push(fd.vresult); // Enter the function ++ctfeGlobals.callDepth; if (ctfeGlobals.callDepth > ctfeGlobals.maxCallDepth) ctfeGlobals.maxCallDepth = ctfeGlobals.callDepth; Expression e = null; while (1) { if (ctfeGlobals.callDepth > CTFE_RECURSION_LIMIT) { // This is a compiler error. It must not be suppressed. global.gag = 0; fd.error("CTFE recursion limit exceeded"); e = CTFEExp.cantexp; break; } e = interpret(pue, fd.fbody, &istatex); if (CTFEExp.isCantExp(e)) { debug (LOG) { printf("function body failed to interpret\n"); } } if (istatex.start) { fd.error("CTFE internal error: failed to resume at statement `%s`", istatex.start.toChars()); return CTFEExp.cantexp; } /* This is how we deal with a recursive statement AST * that has arbitrary goto statements in it. * Bubble up a 'result' which is the target of the goto * statement, then go recursively down the AST looking * for that statement, then execute starting there. */ if (CTFEExp.isGotoExp(e)) { istatex.start = istatex.gotoTarget; // set starting statement istatex.gotoTarget = null; } else { assert(!e || (e.op != TOK.continue_ && e.op != TOK.break_)); break; } } // If fell off the end of a void function, return void if (!e && tf.next.ty == Tvoid) e = CTFEExp.voidexp; if (tf.isref && e.op == TOK.variable && (cast(VarExp)e).var == fd.vthis) e = thisarg; if (tf.isref && fd.isThis2 && e.op == TOK.index) { auto ie = cast(IndexExp)e; auto pe = ie.e1.isPtrExp(); auto ve = !pe ? null : pe.e1.isVarExp(); if (ve && ve.var == fd.vthis) { auto ne = ie.e2.isIntegerExp(); assert(ne); assert(thisarg.op == TOK.address); e = (cast(AddrExp)thisarg).e1; e = (*(cast(ArrayLiteralExp)e).elements)[cast(size_t)ne.getInteger()]; if (e.op == TOK.address) { e = (cast(AddrExp)e).e1; } } } assert(e !is null); // Leave the function --ctfeGlobals.callDepth; ctfeGlobals.stack.endFrame(); // If it generated an uncaught exception, report error. if (!istate && e.op == TOK.thrownException) { if (e == pue.exp()) e = pue.copy(); (cast(ThrownExceptionExp)e).generateUncaughtError(); e = CTFEExp.cantexp; } return e; } private extern (C++) final class Interpreter : Visitor { alias visit = Visitor.visit; public: InterState* istate; CtfeGoal goal; Expression result; UnionExp* pue; // storage for `result` extern (D) this(UnionExp* pue, InterState* istate, CtfeGoal goal) { this.pue = pue; this.istate = istate; this.goal = goal; } // If e is TOK.throw_exception or TOK.cantExpression, // set it to 'result' and returns true. bool exceptionOrCant(Expression e) { if (exceptionOrCantInterpret(e)) { // Make sure e is not pointing to a stack temporary result = (e.op == TOK.cantExpression) ? CTFEExp.cantexp : e; return true; } return false; } static Expressions* copyArrayOnWrite(Expressions* exps, Expressions* original) { if (exps is original) { if (!original) exps = new Expressions(); else exps = original.copy(); ++ctfeGlobals.numArrayAllocs; } return exps; } /******************************** Statement ***************************/ override void visit(Statement s) { debug (LOG) { printf("%s Statement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } s.error("statement `%s` cannot be interpreted at compile time", s.toChars()); result = CTFEExp.cantexp; } override void visit(ExpStatement s) { debug (LOG) { printf("%s ExpStatement::interpret(%s)\n", s.loc.toChars(), s.exp ? s.exp.toChars() : ""); } if (istate.start) { if (istate.start != s) return; istate.start = null; } Expression e = interpret(pue, s.exp, istate, ctfeNeedNothing); if (exceptionOrCant(e)) return; } override void visit(CompoundStatement s) { debug (LOG) { printf("%s CompoundStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; const dim = s.statements ? s.statements.dim : 0; foreach (i; 0 .. dim) { Statement sx = (*s.statements)[i]; result = interpret(pue, sx, istate); if (result) break; } debug (LOG) { printf("%s -CompoundStatement::interpret() %p\n", s.loc.toChars(), result); } } override void visit(UnrolledLoopStatement s) { debug (LOG) { printf("%s UnrolledLoopStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; const dim = s.statements ? s.statements.dim : 0; foreach (i; 0 .. dim) { Statement sx = (*s.statements)[i]; Expression e = interpret(pue, sx, istate); if (!e) // succeeds to interpret, or goto target was not found continue; if (exceptionOrCant(e)) return; if (e.op == TOK.break_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // break at a higher level return; } istate.gotoTarget = null; result = null; return; } if (e.op == TOK.continue_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // continue at a higher level return; } istate.gotoTarget = null; continue; } // expression from return statement, or thrown exception result = e; break; } } override void visit(IfStatement s) { debug (LOG) { printf("%s IfStatement::interpret(%s)\n", s.loc.toChars(), s.condition.toChars()); } if (istate.start == s) istate.start = null; if (istate.start) { Expression e = null; e = interpret(s.ifbody, istate); if (!e && istate.start) e = interpret(s.elsebody, istate); result = e; return; } UnionExp ue = void; Expression e = interpret(&ue, s.condition, istate); assert(e); if (exceptionOrCant(e)) return; if (isTrueBool(e)) result = interpret(pue, s.ifbody, istate); else if (e.isBool(false)) result = interpret(pue, s.elsebody, istate); else { // no error, or assert(0)? result = CTFEExp.cantexp; } } override void visit(ScopeStatement s) { debug (LOG) { printf("%s ScopeStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; result = interpret(pue, s.statement, istate); } /** Given an expression e which is about to be returned from the current function, generate an error if it contains pointers to local variables. Only checks expressions passed by value (pointers to local variables may already be stored in members of classes, arrays, or AAs which were passed as mutable function parameters). Returns: true if it is safe to return, false if an error was generated. */ static bool stopPointersEscaping(const ref Loc loc, Expression e) { if (!e.type.hasPointers()) return true; if (isPointer(e.type)) { Expression x = e; if (auto eaddr = e.isAddrExp()) x = eaddr.e1; VarDeclaration v; while (x.op == TOK.variable && (v = (cast(VarExp)x).var.isVarDeclaration()) !is null) { if (v.storage_class & STC.ref_) { x = getValue(v); if (auto eaddr = e.isAddrExp()) eaddr.e1 = x; continue; } if (ctfeGlobals.stack.isInCurrentFrame(v)) { error(loc, "returning a pointer to a local stack variable"); return false; } else break; } // TODO: If it is a TOK.dotVariable or TOK.index, we should check that it is not // pointing to a local struct or static array. } if (auto se = e.isStructLiteralExp()) { return stopPointersEscapingFromArray(loc, se.elements); } if (auto ale = e.isArrayLiteralExp()) { return stopPointersEscapingFromArray(loc, ale.elements); } if (auto aae = e.isAssocArrayLiteralExp()) { if (!stopPointersEscapingFromArray(loc, aae.keys)) return false; return stopPointersEscapingFromArray(loc, aae.values); } return true; } // Check all elements of an array for escaping local variables. Return false if error static bool stopPointersEscapingFromArray(const ref Loc loc, Expressions* elems) { foreach (e; *elems) { if (e && !stopPointersEscaping(loc, e)) return false; } return true; } override void visit(ReturnStatement s) { debug (LOG) { printf("%s ReturnStatement::interpret(%s)\n", s.loc.toChars(), s.exp ? s.exp.toChars() : ""); } if (istate.start) { if (istate.start != s) return; istate.start = null; } if (!s.exp) { result = CTFEExp.voidexp; return; } assert(istate && istate.fd && istate.fd.type && istate.fd.type.ty == Tfunction); TypeFunction tf = cast(TypeFunction)istate.fd.type; /* If the function returns a ref AND it's been called from an assignment, * we need to return an lvalue. Otherwise, just do an (rvalue) interpret. */ if (tf.isref) { result = interpret(pue, s.exp, istate, ctfeNeedLvalue); return; } if (tf.next && tf.next.ty == Tdelegate && istate.fd.closureVars.dim > 0) { // To support this, we need to copy all the closure vars // into the delegate literal. s.error("closures are not yet supported in CTFE"); result = CTFEExp.cantexp; return; } // We need to treat pointers specially, because TOK.symbolOffset can be used to // return a value OR a pointer Expression e = interpret(pue, s.exp, istate); if (exceptionOrCant(e)) return; // Disallow returning pointers to stack-allocated variables (bug 7876) if (!stopPointersEscaping(s.loc, e)) { result = CTFEExp.cantexp; return; } if (needToCopyLiteral(e)) e = copyLiteral(e).copy(); debug (LOGASSIGN) { printf("RETURN %s\n", s.loc.toChars()); showCtfeExpr(e); } result = e; } static Statement findGotoTarget(InterState* istate, Identifier ident) { Statement target = null; if (ident) { LabelDsymbol label = istate.fd.searchLabel(ident); assert(label && label.statement); LabelStatement ls = label.statement; target = ls.gotoTarget ? ls.gotoTarget : ls.statement; } return target; } override void visit(BreakStatement s) { debug (LOG) { printf("%s BreakStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } istate.gotoTarget = findGotoTarget(istate, s.ident); result = CTFEExp.breakexp; } override void visit(ContinueStatement s) { debug (LOG) { printf("%s ContinueStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } istate.gotoTarget = findGotoTarget(istate, s.ident); result = CTFEExp.continueexp; } override void visit(WhileStatement s) { debug (LOG) { printf("WhileStatement::interpret()\n"); } assert(0); // rewritten to ForStatement } override void visit(DoStatement s) { debug (LOG) { printf("%s DoStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; while (1) { Expression e = interpret(s._body, istate); if (!e && istate.start) // goto target was not found return; assert(!istate.start); if (exceptionOrCant(e)) return; if (e && e.op == TOK.break_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // break at a higher level return; } istate.gotoTarget = null; break; } if (e && e.op == TOK.continue_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // continue at a higher level return; } istate.gotoTarget = null; e = null; } if (e) { result = e; // bubbled up from ReturnStatement return; } UnionExp ue = void; e = interpret(&ue, s.condition, istate); if (exceptionOrCant(e)) return; if (!e.isConst()) { result = CTFEExp.cantexp; return; } if (e.isBool(false)) break; assert(isTrueBool(e)); } assert(result is null); } override void visit(ForStatement s) { debug (LOG) { printf("%s ForStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; UnionExp ueinit = void; Expression ei = interpret(&ueinit, s._init, istate); if (exceptionOrCant(ei)) return; assert(!ei); // s.init never returns from function, or jumps out from it while (1) { if (s.condition && !istate.start) { UnionExp ue = void; Expression e = interpret(&ue, s.condition, istate); if (exceptionOrCant(e)) return; if (e.isBool(false)) break; assert(isTrueBool(e)); } Expression e = interpret(pue, s._body, istate); if (!e && istate.start) // goto target was not found return; assert(!istate.start); if (exceptionOrCant(e)) return; if (e && e.op == TOK.break_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // break at a higher level return; } istate.gotoTarget = null; break; } if (e && e.op == TOK.continue_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // continue at a higher level return; } istate.gotoTarget = null; e = null; } if (e) { result = e; // bubbled up from ReturnStatement return; } UnionExp uei = void; e = interpret(&uei, s.increment, istate, ctfeNeedNothing); if (exceptionOrCant(e)) return; } assert(result is null); } override void visit(ForeachStatement s) { assert(0); // rewritten to ForStatement } override void visit(ForeachRangeStatement s) { assert(0); // rewritten to ForStatement } override void visit(SwitchStatement s) { debug (LOG) { printf("%s SwitchStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; if (istate.start) { Expression e = interpret(s._body, istate); if (istate.start) // goto target was not found return; if (exceptionOrCant(e)) return; if (e && e.op == TOK.break_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // break at a higher level return; } istate.gotoTarget = null; e = null; } result = e; return; } UnionExp uecond = void; Expression econdition = interpret(&uecond, s.condition, istate); if (exceptionOrCant(econdition)) return; Statement scase = null; if (s.cases) foreach (cs; *s.cases) { UnionExp uecase = void; Expression ecase = interpret(&uecase, cs.exp, istate); if (exceptionOrCant(ecase)) return; if (ctfeEqual(cs.exp.loc, TOK.equal, econdition, ecase)) { scase = cs; break; } } if (!scase) { if (s.hasNoDefault) s.error("no `default` or `case` for `%s` in `switch` statement", econdition.toChars()); scase = s.sdefault; } assert(scase); /* Jump to scase */ istate.start = scase; Expression e = interpret(pue, s._body, istate); assert(!istate.start); // jump must not fail if (e && e.op == TOK.break_) { if (istate.gotoTarget && istate.gotoTarget != s) { result = e; // break at a higher level return; } istate.gotoTarget = null; e = null; } result = e; } override void visit(CaseStatement s) { debug (LOG) { printf("%s CaseStatement::interpret(%s) this = %p\n", s.loc.toChars(), s.exp.toChars(), s); } if (istate.start == s) istate.start = null; result = interpret(pue, s.statement, istate); } override void visit(DefaultStatement s) { debug (LOG) { printf("%s DefaultStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; result = interpret(pue, s.statement, istate); } override void visit(GotoStatement s) { debug (LOG) { printf("%s GotoStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } assert(s.label && s.label.statement); istate.gotoTarget = s.label.statement; result = CTFEExp.gotoexp; } override void visit(GotoCaseStatement s) { debug (LOG) { printf("%s GotoCaseStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } assert(s.cs); istate.gotoTarget = s.cs; result = CTFEExp.gotoexp; } override void visit(GotoDefaultStatement s) { debug (LOG) { printf("%s GotoDefaultStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } assert(s.sw && s.sw.sdefault); istate.gotoTarget = s.sw.sdefault; result = CTFEExp.gotoexp; } override void visit(LabelStatement s) { debug (LOG) { printf("%s LabelStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; result = interpret(pue, s.statement, istate); } override void visit(TryCatchStatement s) { debug (LOG) { printf("%s TryCatchStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; if (istate.start) { Expression e = null; e = interpret(pue, s._body, istate); foreach (ca; *s.catches) { if (e || !istate.start) // goto target was found break; e = interpret(pue, ca.handler, istate); } result = e; return; } Expression e = interpret(s._body, istate); // An exception was thrown if (e && e.op == TOK.thrownException) { ThrownExceptionExp ex = cast(ThrownExceptionExp)e; Type extype = ex.thrown.originalClass().type; // Search for an appropriate catch clause. foreach (ca; *s.catches) { Type catype = ca.type; if (!catype.equals(extype) && !catype.isBaseOf(extype, null)) continue; // Execute the handler if (ca.var) { ctfeGlobals.stack.push(ca.var); setValue(ca.var, ex.thrown); } e = interpret(ca.handler, istate); if (CTFEExp.isGotoExp(e)) { /* This is an optimization that relies on the locality of the jump target. * If the label is in the same catch handler, the following scan * would find it quickly and can reduce jump cost. * Otherwise, the catch block may be unnnecessary scanned again * so it would make CTFE speed slower. */ InterState istatex = *istate; istatex.start = istate.gotoTarget; // set starting statement istatex.gotoTarget = null; Expression eh = interpret(ca.handler, &istatex); if (!istatex.start) { istate.gotoTarget = null; e = eh; } } break; } } result = e; } static bool isAnErrorException(ClassDeclaration cd) { return cd == ClassDeclaration.errorException || ClassDeclaration.errorException.isBaseOf(cd, null); } static ThrownExceptionExp chainExceptions(ThrownExceptionExp oldest, ThrownExceptionExp newest) { debug (LOG) { printf("Collided exceptions %s %s\n", oldest.thrown.toChars(), newest.thrown.toChars()); } // Little sanity check to make sure it's really a Throwable ClassReferenceExp boss = oldest.thrown; const next = 4; // index of Throwable.next assert((*boss.value.elements)[next].type.ty == Tclass); // Throwable.next ClassReferenceExp collateral = newest.thrown; if (isAnErrorException(collateral.originalClass()) && !isAnErrorException(boss.originalClass())) { /* Find the index of the Error.bypassException field */ auto bypass = next + 1; if ((*collateral.value.elements)[bypass].type.ty == Tuns32) bypass += 1; // skip over _refcount field assert((*collateral.value.elements)[bypass].type.ty == Tclass); // The new exception bypass the existing chain (*collateral.value.elements)[bypass] = boss; return newest; } while ((*boss.value.elements)[next].op == TOK.classReference) { boss = cast(ClassReferenceExp)(*boss.value.elements)[next]; } (*boss.value.elements)[next] = collateral; return oldest; } override void visit(TryFinallyStatement s) { debug (LOG) { printf("%s TryFinallyStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; if (istate.start) { Expression e = null; e = interpret(pue, s._body, istate); // Jump into/out from finalbody is disabled in semantic analysis. // and jump inside will be handled by the ScopeStatement == finalbody. result = e; return; } Expression ex = interpret(s._body, istate); if (CTFEExp.isCantExp(ex)) { result = ex; return; } while (CTFEExp.isGotoExp(ex)) { // If the goto target is within the body, we must not interpret the finally statement, // because that will call destructors for objects within the scope, which we should not do. InterState istatex = *istate; istatex.start = istate.gotoTarget; // set starting statement istatex.gotoTarget = null; Expression bex = interpret(s._body, &istatex); if (istatex.start) { // The goto target is outside the current scope. break; } // The goto target was within the body. if (CTFEExp.isCantExp(bex)) { result = bex; return; } *istate = istatex; ex = bex; } Expression ey = interpret(s.finalbody, istate); if (CTFEExp.isCantExp(ey)) { result = ey; return; } if (ey && ey.op == TOK.thrownException) { // Check for collided exceptions if (ex && ex.op == TOK.thrownException) ex = chainExceptions(cast(ThrownExceptionExp)ex, cast(ThrownExceptionExp)ey); else ex = ey; } result = ex; } override void visit(ThrowStatement s) { debug (LOG) { printf("%s ThrowStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } Expression e = interpretRegion(s.exp, istate); if (exceptionOrCant(e)) return; assert(e.op == TOK.classReference); result = ctfeEmplaceExp!ThrownExceptionExp(s.loc, e.isClassReferenceExp()); } override void visit(ScopeGuardStatement s) { assert(0); } override void visit(WithStatement s) { debug (LOG) { printf("%s WithStatement::interpret()\n", s.loc.toChars()); } if (istate.start == s) istate.start = null; if (istate.start) { result = s._body ? interpret(s._body, istate) : null; return; } // If it is with(Enum) {...}, just execute the body. if (s.exp.op == TOK.scope_ || s.exp.op == TOK.type) { result = interpret(pue, s._body, istate); return; } Expression e = interpret(s.exp, istate); if (exceptionOrCant(e)) return; if (s.wthis.type.ty == Tpointer && s.exp.type.ty != Tpointer) { e = ctfeEmplaceExp!AddrExp(s.loc, e, s.wthis.type); } ctfeGlobals.stack.push(s.wthis); setValue(s.wthis, e); e = interpret(s._body, istate); if (CTFEExp.isGotoExp(e)) { /* This is an optimization that relies on the locality of the jump target. * If the label is in the same WithStatement, the following scan * would find it quickly and can reduce jump cost. * Otherwise, the statement body may be unnnecessary scanned again * so it would make CTFE speed slower. */ InterState istatex = *istate; istatex.start = istate.gotoTarget; // set starting statement istatex.gotoTarget = null; Expression ex = interpret(s._body, &istatex); if (!istatex.start) { istate.gotoTarget = null; e = ex; } } ctfeGlobals.stack.pop(s.wthis); result = e; } override void visit(AsmStatement s) { debug (LOG) { printf("%s AsmStatement::interpret()\n", s.loc.toChars()); } if (istate.start) { if (istate.start != s) return; istate.start = null; } s.error("`asm` statements cannot be interpreted at compile time"); result = CTFEExp.cantexp; } override void visit(ImportStatement s) { debug (LOG) { printf("ImportStatement::interpret()\n"); } if (istate.start) { if (istate.start != s) return; istate.start = null; } } /******************************** Expression ***************************/ override void visit(Expression e) { debug (LOG) { printf("%s Expression::interpret() '%s' %s\n", e.loc.toChars(), Token.toChars(e.op), e.toChars()); printf("type = %s\n", e.type.toChars()); showCtfeExpr(e); } e.error("cannot interpret `%s` at compile time", e.toChars()); result = CTFEExp.cantexp; } override void visit(TypeExp e) { debug (LOG) { printf("%s TypeExp.interpret() %s\n", e.loc.toChars(), e.toChars()); } result = e; } override void visit(ThisExp e) { debug (LOG) { printf("%s ThisExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (goal == ctfeNeedLvalue) { // We might end up here with istate being zero // https://issues.dlang.org/show_bug.cgi?id=16382 if (istate && istate.fd.vthis) { result = ctfeEmplaceExp!VarExp(e.loc, istate.fd.vthis); if (istate.fd.isThis2) { result = ctfeEmplaceExp!PtrExp(e.loc, result); result.type = Type.tvoidptr.sarrayOf(2); result = ctfeEmplaceExp!IndexExp(e.loc, result, IntegerExp.literal!0); } result.type = e.type; } else result = e; return; } result = ctfeGlobals.stack.getThis(); if (result) { if (istate && istate.fd.isThis2) { assert(result.op == TOK.address); result = (cast(AddrExp)result).e1; assert(result.op == TOK.arrayLiteral); result = (*(cast(ArrayLiteralExp)result).elements)[0]; if (e.type.ty == Tstruct) { result = (cast(AddrExp)result).e1; } return; } assert(result.op == TOK.structLiteral || result.op == TOK.classReference || result.op == TOK.type); return; } e.error("value of `this` is not known at compile time"); result = CTFEExp.cantexp; } override void visit(NullExp e) { result = e; } override void visit(IntegerExp e) { debug (LOG) { printf("%s IntegerExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } result = e; } override void visit(RealExp e) { debug (LOG) { printf("%s RealExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } result = e; } override void visit(ComplexExp e) { result = e; } override void visit(StringExp e) { debug (LOG) { printf("%s StringExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } /* Attempts to modify string literals are prevented * in BinExp::interpretAssignCommon. */ result = e; } override void visit(FuncExp e) { debug (LOG) { printf("%s FuncExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } result = e; } override void visit(SymOffExp e) { debug (LOG) { printf("%s SymOffExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.var.isFuncDeclaration() && e.offset == 0) { result = e; return; } if (isTypeInfo_Class(e.type) && e.offset == 0) { result = e; return; } if (e.type.ty != Tpointer) { // Probably impossible e.error("cannot interpret `%s` at compile time", e.toChars()); result = CTFEExp.cantexp; return; } Type pointee = (cast(TypePointer)e.type).next; if (e.var.isThreadlocal()) { e.error("cannot take address of thread-local variable %s at compile time", e.var.toChars()); result = CTFEExp.cantexp; return; } // Check for taking an address of a shared variable. // If the shared variable is an array, the offset might not be zero. Type fromType = null; if (e.var.type.ty == Tarray || e.var.type.ty == Tsarray) { fromType = (cast(TypeArray)e.var.type).next; } if (e.var.isDataseg() && ((e.offset == 0 && isSafePointerCast(e.var.type, pointee)) || (fromType && isSafePointerCast(fromType, pointee)))) { result = e; return; } Expression val = getVarExp(e.loc, istate, e.var, goal); if (exceptionOrCant(val)) return; if (val.type.ty == Tarray || val.type.ty == Tsarray) { // Check for unsupported type painting operations Type elemtype = (cast(TypeArray)val.type).next; d_uns64 elemsize = elemtype.size(); // It's OK to cast from fixed length to dynamic array, eg &int[3] to int[]* if (val.type.ty == Tsarray && pointee.ty == Tarray && elemsize == pointee.nextOf().size()) { emplaceExp!(AddrExp)(pue, e.loc, val, e.type); result = pue.exp(); return; } // It's OK to cast from fixed length to fixed length array, eg &int[n] to int[d]*. if (val.type.ty == Tsarray && pointee.ty == Tsarray && elemsize == pointee.nextOf().size()) { size_t d = cast(size_t)(cast(TypeSArray)pointee).dim.toInteger(); Expression elwr = ctfeEmplaceExp!IntegerExp(e.loc, e.offset / elemsize, Type.tsize_t); Expression eupr = ctfeEmplaceExp!IntegerExp(e.loc, e.offset / elemsize + d, Type.tsize_t); // Create a CTFE pointer &val[ofs..ofs+d] auto se = ctfeEmplaceExp!SliceExp(e.loc, val, elwr, eupr); se.type = pointee; emplaceExp!(AddrExp)(pue, e.loc, se, e.type); result = pue.exp(); return; } if (!isSafePointerCast(elemtype, pointee)) { // It's also OK to cast from &string to string*. if (e.offset == 0 && isSafePointerCast(e.var.type, pointee)) { // Create a CTFE pointer &var auto ve = ctfeEmplaceExp!VarExp(e.loc, e.var); ve.type = elemtype; emplaceExp!(AddrExp)(pue, e.loc, ve, e.type); result = pue.exp(); return; } e.error("reinterpreting cast from `%s` to `%s` is not supported in CTFE", val.type.toChars(), e.type.toChars()); result = CTFEExp.cantexp; return; } const dinteger_t sz = pointee.size(); dinteger_t indx = e.offset / sz; assert(sz * indx == e.offset); Expression aggregate = null; if (val.op == TOK.arrayLiteral || val.op == TOK.string_) { aggregate = val; } else if (auto se = val.isSliceExp()) { aggregate = se.e1; UnionExp uelwr = void; Expression lwr = interpret(&uelwr, se.lwr, istate); indx += lwr.toInteger(); } if (aggregate) { // Create a CTFE pointer &aggregate[ofs] auto ofs = ctfeEmplaceExp!IntegerExp(e.loc, indx, Type.tsize_t); auto ei = ctfeEmplaceExp!IndexExp(e.loc, aggregate, ofs); ei.type = elemtype; emplaceExp!(AddrExp)(pue, e.loc, ei, e.type); result = pue.exp(); return; } } else if (e.offset == 0 && isSafePointerCast(e.var.type, pointee)) { // Create a CTFE pointer &var auto ve = ctfeEmplaceExp!VarExp(e.loc, e.var); ve.type = e.var.type; emplaceExp!(AddrExp)(pue, e.loc, ve, e.type); result = pue.exp(); return; } e.error("cannot convert `&%s` to `%s` at compile time", e.var.type.toChars(), e.type.toChars()); result = CTFEExp.cantexp; } override void visit(AddrExp e) { debug (LOG) { printf("%s AddrExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (auto ve = e.e1.isVarExp()) { Declaration decl = ve.var; // We cannot take the address of an imported symbol at compile time if (decl.isImportedSymbol()) { e.error("cannot take address of imported symbol `%s` at compile time", decl.toChars()); result = CTFEExp.cantexp; return; } if (decl.isDataseg()) { // Normally this is already done by optimize() // Do it here in case optimize(WANTvalue) wasn't run before CTFE emplaceExp!(SymOffExp)(pue, e.loc, (cast(VarExp)e.e1).var, 0); result = pue.exp(); result.type = e.type; return; } } auto er = interpret(e.e1, istate, ctfeNeedLvalue); if (auto ve = er.isVarExp()) if (ve.var == istate.fd.vthis) er = interpret(er, istate); if (exceptionOrCant(er)) return; // Return a simplified address expression emplaceExp!(AddrExp)(pue, e.loc, er, e.type); result = pue.exp(); } override void visit(DelegateExp e) { debug (LOG) { printf("%s DelegateExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } // TODO: Really we should create a CTFE-only delegate expression // of a pointer and a funcptr. // If it is &nestedfunc, just return it // TODO: We should save the context pointer if (auto ve1 = e.e1.isVarExp()) if (ve1.var == e.func) { result = e; return; } auto er = interpret(pue, e.e1, istate); if (exceptionOrCant(er)) return; if (er == e.e1) { // If it has already been CTFE'd, just return it result = e; } else { er = (er == pue.exp()) ? pue.copy() : er; emplaceExp!(DelegateExp)(pue, e.loc, er, e.func, false); result = pue.exp(); result.type = e.type; } } static Expression getVarExp(const ref Loc loc, InterState* istate, Declaration d, CtfeGoal goal) { Expression e = CTFEExp.cantexp; if (VarDeclaration v = d.isVarDeclaration()) { /* Magic variable __ctfe always returns true when interpreting */ if (v.ident == Id.ctfe) return IntegerExp.createBool(true); if (!v.originalType && v.semanticRun < PASS.semanticdone) // semantic() not yet run { v.dsymbolSemantic(null); if (v.type.ty == Terror) return CTFEExp.cantexp; } if ((v.isConst() || v.isImmutable() || v.storage_class & STC.manifest) && !hasValue(v) && v._init && !v.isCTFE()) { if (v.inuse) { error(loc, "circular initialization of %s `%s`", v.kind(), v.toPrettyChars()); return CTFEExp.cantexp; } if (v._scope) { v.inuse++; v._init = v._init.initializerSemantic(v._scope, v.type, INITinterpret); // might not be run on aggregate members v.inuse--; } e = v._init.initializerToExpression(v.type); if (!e) return CTFEExp.cantexp; assert(e.type); if (e.op == TOK.construct || e.op == TOK.blit) { AssignExp ae = cast(AssignExp)e; e = ae.e2; } if (e.op == TOK.error) { // FIXME: Ultimately all errors should be detected in prior semantic analysis stage. } else if (v.isDataseg() || (v.storage_class & STC.manifest)) { /* https://issues.dlang.org/show_bug.cgi?id=14304 * e is a value that is not yet owned by CTFE. * Mark as "cached", and use it directly during interpretation. */ e = scrubCacheValue(e); ctfeGlobals.stack.saveGlobalConstant(v, e); } else { v.inuse++; e = interpret(e, istate); v.inuse--; if (CTFEExp.isCantExp(e) && !global.gag && !ctfeGlobals.stackTraceCallsToSuppress) errorSupplemental(loc, "while evaluating %s.init", v.toChars()); if (exceptionOrCantInterpret(e)) return e; } } else if (v.isCTFE() && !hasValue(v)) { if (v._init && v.type.size() != 0) { if (v._init.isVoidInitializer()) { // var should have been initialized when it was created error(loc, "CTFE internal error: trying to access uninitialized var"); assert(0); } e = v._init.initializerToExpression(); } else e = v.type.defaultInitLiteral(e.loc); e = interpret(e, istate); } else if (!(v.isDataseg() || v.storage_class & STC.manifest) && !v.isCTFE() && !istate) { error(loc, "variable `%s` cannot be read at compile time", v.toChars()); return CTFEExp.cantexp; } else { e = hasValue(v) ? getValue(v) : null; if (!e && !v.isCTFE() && v.isDataseg()) { error(loc, "static variable `%s` cannot be read at compile time", v.toChars()); return CTFEExp.cantexp; } if (!e) { assert(!(v._init && v._init.isVoidInitializer())); // CTFE initiated from inside a function error(loc, "variable `%s` cannot be read at compile time", v.toChars()); return CTFEExp.cantexp; } if (auto vie = e.isVoidInitExp()) { error(loc, "cannot read uninitialized variable `%s` in ctfe", v.toPrettyChars()); errorSupplemental(vie.var.loc, "`%s` was uninitialized and used before set", vie.var.toChars()); return CTFEExp.cantexp; } if (goal != ctfeNeedLvalue && (v.isRef() || v.isOut())) e = interpret(e, istate, goal); } if (!e) e = CTFEExp.cantexp; } else if (SymbolDeclaration s = d.isSymbolDeclaration()) { // Struct static initializers, for example e = s.dsym.type.defaultInitLiteral(loc); if (e.op == TOK.error) error(loc, "CTFE failed because of previous errors in `%s.init`", s.toChars()); e = e.expressionSemantic(null); if (e.op == TOK.error) e = CTFEExp.cantexp; else // Convert NULL to CTFEExp e = interpret(e, istate, goal); } else error(loc, "cannot interpret declaration `%s` at compile time", d.toChars()); return e; } override void visit(VarExp e) { debug (LOG) { printf("%s VarExp::interpret() `%s`, goal = %d\n", e.loc.toChars(), e.toChars(), goal); } if (e.var.isFuncDeclaration()) { result = e; return; } if (goal == ctfeNeedLvalue) { VarDeclaration v = e.var.isVarDeclaration(); if (v && !v.isDataseg() && !v.isCTFE() && !istate) { e.error("variable `%s` cannot be read at compile time", v.toChars()); result = CTFEExp.cantexp; return; } if (v && !hasValue(v)) { if (!v.isCTFE() && v.isDataseg()) e.error("static variable `%s` cannot be read at compile time", v.toChars()); else // CTFE initiated from inside a function e.error("variable `%s` cannot be read at compile time", v.toChars()); result = CTFEExp.cantexp; return; } if (v && (v.storage_class & (STC.out_ | STC.ref_)) && hasValue(v)) { // Strip off the nest of ref variables Expression ev = getValue(v); if (ev.op == TOK.variable || ev.op == TOK.index || ev.op == TOK.slice || ev.op == TOK.dotVariable) { result = interpret(pue, ev, istate, goal); return; } } result = e; return; } result = getVarExp(e.loc, istate, e.var, goal); if (exceptionOrCant(result)) return; if ((e.var.storage_class & (STC.ref_ | STC.out_)) == 0 && e.type.baseElemOf().ty != Tstruct) { /* Ultimately, STC.ref_|STC.out_ check should be enough to see the * necessity of type repainting. But currently front-end paints * non-ref struct variables by the const type. * * auto foo(ref const S cs); * S s; * foo(s); // VarExp('s') will have const(S) */ // A VarExp may include an implicit cast. It must be done explicitly. result = paintTypeOntoLiteral(pue, e.type, result); } } override void visit(DeclarationExp e) { debug (LOG) { printf("%s DeclarationExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Dsymbol s = e.declaration; if (VarDeclaration v = s.isVarDeclaration()) { if (TupleDeclaration td = v.toAlias().isTupleDeclaration()) { result = null; // Reserve stack space for all tuple members if (!td.objects) return; foreach (o; *td.objects) { Expression ex = isExpression(o); DsymbolExp ds = ex ? ex.isDsymbolExp() : null; VarDeclaration v2 = ds ? ds.s.isVarDeclaration() : null; assert(v2); if (v2.isDataseg() && !v2.isCTFE()) continue; ctfeGlobals.stack.push(v2); if (v2._init) { Expression einit; if (ExpInitializer ie = v2._init.isExpInitializer()) { einit = interpretRegion(ie.exp, istate, goal); if (exceptionOrCant(einit)) return; } else if (v2._init.isVoidInitializer()) { einit = voidInitLiteral(v2.type, v2).copy(); } else { e.error("declaration `%s` is not yet implemented in CTFE", e.toChars()); result = CTFEExp.cantexp; return; } setValue(v2, einit); } } return; } if (v.isStatic()) { // Just ignore static variables which aren't read or written yet result = null; return; } if (!(v.isDataseg() || v.storage_class & STC.manifest) || v.isCTFE()) ctfeGlobals.stack.push(v); if (v._init) { if (ExpInitializer ie = v._init.isExpInitializer()) { result = interpretRegion(ie.exp, istate, goal); } else if (v._init.isVoidInitializer()) { result = voidInitLiteral(v.type, v).copy(); // There is no AssignExp for void initializers, // so set it here. setValue(v, result); } else { e.error("declaration `%s` is not yet implemented in CTFE", e.toChars()); result = CTFEExp.cantexp; } } else if (v.type.size() == 0) { // Zero-length arrays don't need an initializer result = v.type.defaultInitLiteral(e.loc); } else { e.error("variable `%s` cannot be modified at compile time", v.toChars()); result = CTFEExp.cantexp; } return; } if (s.isAttribDeclaration() || s.isTemplateMixin() || s.isTupleDeclaration()) { // Check for static struct declarations, which aren't executable AttribDeclaration ad = e.declaration.isAttribDeclaration(); if (ad && ad.decl && ad.decl.dim == 1) { Dsymbol sparent = (*ad.decl)[0]; if (sparent.isAggregateDeclaration() || sparent.isTemplateDeclaration() || sparent.isAliasDeclaration()) { result = null; return; // static (template) struct declaration. Nothing to do. } } // These can be made to work, too lazy now e.error("declaration `%s` is not yet implemented in CTFE", e.toChars()); result = CTFEExp.cantexp; return; } // Others should not contain executable code, so are trivial to evaluate result = null; debug (LOG) { printf("-DeclarationExp::interpret(%s): %p\n", e.toChars(), result); } } override void visit(TypeidExp e) { debug (LOG) { printf("%s TypeidExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (Type t = isType(e.obj)) { result = e; return; } if (Expression ex = isExpression(e.obj)) { result = interpret(pue, ex, istate); if (exceptionOrCant(ex)) return; if (result.op == TOK.null_) { e.error("null pointer dereference evaluating typeid. `%s` is `null`", ex.toChars()); result = CTFEExp.cantexp; return; } if (result.op != TOK.classReference) { e.error("CTFE internal error: determining classinfo"); result = CTFEExp.cantexp; return; } ClassDeclaration cd = (cast(ClassReferenceExp)result).originalClass(); assert(cd); emplaceExp!(TypeidExp)(pue, e.loc, cd.type); result = pue.exp(); result.type = e.type; return; } visit(cast(Expression)e); } override void visit(TupleExp e) { debug (LOG) { printf("%s TupleExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (exceptionOrCant(interpretRegion(e.e0, istate, ctfeNeedNothing))) return; auto expsx = e.exps; foreach (i, exp; *expsx) { Expression ex = interpretRegion(exp, istate); if (exceptionOrCant(ex)) return; // A tuple of assignments can contain void (Bug 5676). if (goal == ctfeNeedNothing) continue; if (ex.op == TOK.voidExpression) { e.error("CTFE internal error: void element `%s` in tuple", exp.toChars()); assert(0); } /* If any changes, do Copy On Write */ if (ex !is exp) { expsx = copyArrayOnWrite(expsx, e.exps); (*expsx)[i] = copyRegionExp(ex); } } if (expsx !is e.exps) { expandTuples(expsx); emplaceExp!(TupleExp)(pue, e.loc, expsx); result = pue.exp(); result.type = new TypeTuple(expsx); } else result = e; } override void visit(ArrayLiteralExp e) { debug (LOG) { printf("%s ArrayLiteralExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.ownedByCtfe >= OwnedBy.ctfe) // We've already interpreted all the elements { result = e; return; } Type tn = e.type.toBasetype().nextOf().toBasetype(); bool wantCopy = (tn.ty == Tsarray || tn.ty == Tstruct); auto basis = interpretRegion(e.basis, istate); if (exceptionOrCant(basis)) return; auto expsx = e.elements; size_t dim = expsx ? expsx.dim : 0; for (size_t i = 0; i < dim; i++) { Expression exp = (*expsx)[i]; Expression ex; if (!exp) { ex = copyLiteral(basis).copy(); } else { // segfault bug 6250 assert(exp.op != TOK.index || (cast(IndexExp)exp).e1 != e); ex = interpretRegion(exp, istate); if (exceptionOrCant(ex)) return; /* Each elements should have distinct CTFE memory. * int[1] z = 7; * int[1][] pieces = [z,z]; // here */ if (wantCopy) ex = copyLiteral(ex).copy(); } /* If any changes, do Copy On Write */ if (ex !is exp) { expsx = copyArrayOnWrite(expsx, e.elements); (*expsx)[i] = ex; } } if (expsx !is e.elements) { // todo: all tuple expansions should go in semantic phase. expandTuples(expsx); if (expsx.dim != dim) { e.error("CTFE internal error: invalid array literal"); result = CTFEExp.cantexp; return; } emplaceExp!(ArrayLiteralExp)(pue, e.loc, e.type, basis, expsx); auto ale = cast(ArrayLiteralExp)pue.exp(); ale.ownedByCtfe = OwnedBy.ctfe; result = ale; } else if ((cast(TypeNext)e.type).next.mod & (MODFlags.const_ | MODFlags.immutable_)) { // If it's immutable, we don't need to dup it result = e; } else { *pue = copyLiteral(e); result = pue.exp(); } } override void visit(AssocArrayLiteralExp e) { debug (LOG) { printf("%s AssocArrayLiteralExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.ownedByCtfe >= OwnedBy.ctfe) // We've already interpreted all the elements { result = e; return; } auto keysx = e.keys; auto valuesx = e.values; foreach (i, ekey; *keysx) { auto evalue = (*valuesx)[i]; auto ek = interpretRegion(ekey, istate); if (exceptionOrCant(ek)) return; auto ev = interpretRegion(evalue, istate); if (exceptionOrCant(ev)) return; /* If any changes, do Copy On Write */ if (ek !is ekey || ev !is evalue) { keysx = copyArrayOnWrite(keysx, e.keys); valuesx = copyArrayOnWrite(valuesx, e.values); (*keysx)[i] = ek; (*valuesx)[i] = ev; } } if (keysx !is e.keys) expandTuples(keysx); if (valuesx !is e.values) expandTuples(valuesx); if (keysx.dim != valuesx.dim) { e.error("CTFE internal error: invalid AA"); result = CTFEExp.cantexp; return; } /* Remove duplicate keys */ for (size_t i = 1; i < keysx.dim; i++) { auto ekey = (*keysx)[i - 1]; for (size_t j = i; j < keysx.dim; j++) { auto ekey2 = (*keysx)[j]; if (!ctfeEqual(e.loc, TOK.equal, ekey, ekey2)) continue; // Remove ekey keysx = copyArrayOnWrite(keysx, e.keys); valuesx = copyArrayOnWrite(valuesx, e.values); keysx.remove(i - 1); valuesx.remove(i - 1); i -= 1; // redo the i'th iteration break; } } if (keysx !is e.keys || valuesx !is e.values) { assert(keysx !is e.keys && valuesx !is e.values); auto aae = ctfeEmplaceExp!AssocArrayLiteralExp(e.loc, keysx, valuesx); aae.type = e.type; aae.ownedByCtfe = OwnedBy.ctfe; result = aae; } else { *pue = copyLiteral(e); result = pue.exp(); } } override void visit(StructLiteralExp e) { debug (LOG) { printf("%s StructLiteralExp::interpret() %s ownedByCtfe = %d\n", e.loc.toChars(), e.toChars(), e.ownedByCtfe); } if (e.ownedByCtfe >= OwnedBy.ctfe) { result = e; return; } size_t dim = e.elements ? e.elements.dim : 0; auto expsx = e.elements; if (dim != e.sd.fields.dim) { // guaranteed by AggregateDeclaration.fill and TypeStruct.defaultInitLiteral const nvthis = e.sd.fields.dim - e.sd.nonHiddenFields(); assert(e.sd.fields.dim - dim == nvthis); /* If a nested struct has no initialized hidden pointer, * set it to null to match the runtime behaviour. */ foreach (const i; 0 .. nvthis) { auto ne = ctfeEmplaceExp!NullExp(e.loc); auto vthis = i == 0 ? e.sd.vthis : e.sd.vthis2; ne.type = vthis.type; expsx = copyArrayOnWrite(expsx, e.elements); expsx.push(ne); ++dim; } } assert(dim == e.sd.fields.dim); foreach (i; 0 .. dim) { auto v = e.sd.fields[i]; Expression exp = (*expsx)[i]; Expression ex; if (!exp) { ex = voidInitLiteral(v.type, v).copy(); } else { ex = interpretRegion(exp, istate); if (exceptionOrCant(ex)) return; if ((v.type.ty != ex.type.ty) && v.type.ty == Tsarray) { // Block assignment from inside struct literals auto tsa = cast(TypeSArray)v.type; auto len = cast(size_t)tsa.dim.toInteger(); UnionExp ue = void; ex = createBlockDuplicatedArrayLiteral(&ue, ex.loc, v.type, ex, len); if (ex == ue.exp()) ex = ue.copy(); } } /* If any changes, do Copy On Write */ if (ex !is exp) { expsx = copyArrayOnWrite(expsx, e.elements); (*expsx)[i] = ex; } } if (expsx !is e.elements) { expandTuples(expsx); if (expsx.dim != e.sd.fields.dim) { e.error("CTFE internal error: invalid struct literal"); result = CTFEExp.cantexp; return; } emplaceExp!(StructLiteralExp)(pue, e.loc, e.sd, expsx); auto sle = cast(StructLiteralExp)pue.exp(); sle.type = e.type; sle.ownedByCtfe = OwnedBy.ctfe; sle.origin = e.origin; result = sle; } else { *pue = copyLiteral(e); result = pue.exp(); } } // Create an array literal of type 'newtype' with dimensions given by // 'arguments'[argnum..$] static Expression recursivelyCreateArrayLiteral(UnionExp* pue, const ref Loc loc, Type newtype, InterState* istate, Expressions* arguments, int argnum) { Expression lenExpr = interpret(pue, (*arguments)[argnum], istate); if (exceptionOrCantInterpret(lenExpr)) return lenExpr; size_t len = cast(size_t)lenExpr.toInteger(); Type elemType = (cast(TypeArray)newtype).next; if (elemType.ty == Tarray && argnum < arguments.dim - 1) { Expression elem = recursivelyCreateArrayLiteral(pue, loc, elemType, istate, arguments, argnum + 1); if (exceptionOrCantInterpret(elem)) return elem; auto elements = new Expressions(len); foreach (ref element; *elements) element = copyLiteral(elem).copy(); emplaceExp!(ArrayLiteralExp)(pue, loc, newtype, elements); auto ae = cast(ArrayLiteralExp)pue.exp(); ae.ownedByCtfe = OwnedBy.ctfe; return ae; } assert(argnum == arguments.dim - 1); if (elemType.ty.isSomeChar) { const ch = cast(dchar)elemType.defaultInitLiteral(loc).toInteger(); const sz = cast(ubyte)elemType.size(); return createBlockDuplicatedStringLiteral(pue, loc, newtype, ch, len, sz); } else { auto el = interpret(elemType.defaultInitLiteral(loc), istate); return createBlockDuplicatedArrayLiteral(pue, loc, newtype, el, len); } } override void visit(NewExp e) { debug (LOG) { printf("%s NewExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.allocator) { e.error("member allocators not supported by CTFE"); result = CTFEExp.cantexp; return; } Expression epre = interpret(pue, e.argprefix, istate, ctfeNeedNothing); if (exceptionOrCant(epre)) return; if (e.newtype.ty == Tarray && e.arguments) { result = recursivelyCreateArrayLiteral(pue, e.loc, e.newtype, istate, e.arguments, 0); return; } if (auto ts = e.newtype.toBasetype().isTypeStruct()) { if (e.member) { Expression se = e.newtype.defaultInitLiteral(e.loc); se = interpret(se, istate); if (exceptionOrCant(se)) return; result = interpretFunction(pue, e.member, istate, e.arguments, se); // Repaint as same as CallExp::interpret() does. result.loc = e.loc; } else { StructDeclaration sd = ts.sym; auto exps = new Expressions(); exps.reserve(sd.fields.dim); if (e.arguments) { exps.setDim(e.arguments.dim); foreach (i, ex; *e.arguments) { ex = interpretRegion(ex, istate); if (exceptionOrCant(ex)) return; (*exps)[i] = ex; } } sd.fill(e.loc, exps, false); auto se = ctfeEmplaceExp!StructLiteralExp(e.loc, sd, exps, e.newtype); se.origin = se; se.type = e.newtype; se.ownedByCtfe = OwnedBy.ctfe; result = interpret(pue, se, istate); } if (exceptionOrCant(result)) return; Expression ev = (result == pue.exp()) ? pue.copy() : result; emplaceExp!(AddrExp)(pue, e.loc, ev, e.type); result = pue.exp(); return; } if (auto tc = e.newtype.toBasetype().isTypeClass()) { ClassDeclaration cd = tc.sym; size_t totalFieldCount = 0; for (ClassDeclaration c = cd; c; c = c.baseClass) totalFieldCount += c.fields.dim; auto elems = new Expressions(totalFieldCount); size_t fieldsSoFar = totalFieldCount; for (ClassDeclaration c = cd; c; c = c.baseClass) { fieldsSoFar -= c.fields.dim; foreach (i, v; c.fields) { if (v.inuse) { e.error("circular reference to `%s`", v.toPrettyChars()); result = CTFEExp.cantexp; return; } Expression m; if (v._init) { if (v._init.isVoidInitializer()) m = voidInitLiteral(v.type, v).copy(); else m = v.getConstInitializer(true); } else m = v.type.defaultInitLiteral(e.loc); if (exceptionOrCant(m)) return; (*elems)[fieldsSoFar + i] = copyLiteral(m).copy(); } } // Hack: we store a ClassDeclaration instead of a StructDeclaration. // We probably won't get away with this. // auto se = new StructLiteralExp(e.loc, cast(StructDeclaration)cd, elems, e.newtype); auto se = ctfeEmplaceExp!StructLiteralExp(e.loc, cast(StructDeclaration)cd, elems, e.newtype); se.origin = se; se.ownedByCtfe = OwnedBy.ctfe; emplaceExp!(ClassReferenceExp)(pue, e.loc, se, e.type); Expression eref = pue.exp(); if (e.member) { // Call constructor if (!e.member.fbody) { Expression ctorfail = evaluateIfBuiltin(pue, istate, e.loc, e.member, e.arguments, eref); if (ctorfail) { if (exceptionOrCant(ctorfail)) return; result = eref; return; } e.member.error("`%s` cannot be constructed at compile time, because the constructor has no available source code", e.newtype.toChars()); result = CTFEExp.cantexp; return; } UnionExp ue = void; Expression ctorfail = interpretFunction(&ue, e.member, istate, e.arguments, eref); if (exceptionOrCant(ctorfail)) return; /* https://issues.dlang.org/show_bug.cgi?id=14465 * Repaint the loc, because a super() call * in the constructor modifies the loc of ClassReferenceExp * in CallExp::interpret(). */ eref.loc = e.loc; } result = eref; return; } if (e.newtype.toBasetype().isscalar()) { Expression newval; if (e.arguments && e.arguments.dim) newval = (*e.arguments)[0]; else newval = e.newtype.defaultInitLiteral(e.loc); newval = interpretRegion(newval, istate); if (exceptionOrCant(newval)) return; // Create a CTFE pointer &[newval][0] auto elements = new Expressions(1); (*elements)[0] = newval; auto ae = ctfeEmplaceExp!ArrayLiteralExp(e.loc, e.newtype.arrayOf(), elements); ae.ownedByCtfe = OwnedBy.ctfe; auto ei = ctfeEmplaceExp!IndexExp(e.loc, ae, ctfeEmplaceExp!IntegerExp(Loc.initial, 0, Type.tsize_t)); ei.type = e.newtype; emplaceExp!(AddrExp)(pue, e.loc, ei, e.type); result = pue.exp(); return; } e.error("cannot interpret `%s` at compile time", e.toChars()); result = CTFEExp.cantexp; } override void visit(UnaExp e) { debug (LOG) { printf("%s UnaExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } UnionExp ue = void; Expression e1 = interpret(&ue, e.e1, istate); if (exceptionOrCant(e1)) return; switch (e.op) { case TOK.negate: *pue = Neg(e.type, e1); break; case TOK.tilde: *pue = Com(e.type, e1); break; case TOK.not: *pue = Not(e.type, e1); break; default: assert(0); } result = (*pue).exp(); } override void visit(DotTypeExp e) { debug (LOG) { printf("%s DotTypeExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } UnionExp ue = void; Expression e1 = interpret(&ue, e.e1, istate); if (exceptionOrCant(e1)) return; if (e1 == e.e1) result = e; // optimize: reuse this CTFE reference else { auto edt = cast(DotTypeExp)e.copy(); edt.e1 = (e1 == ue.exp()) ? e1.copy() : e1; // don't return pointer to ue result = edt; } } extern (D) private void interpretCommon(BinExp e, fp_t fp) { debug (LOG) { printf("%s BinExp::interpretCommon() %s\n", e.loc.toChars(), e.toChars()); } if (e.e1.type.ty == Tpointer && e.e2.type.ty == Tpointer && e.op == TOK.min) { UnionExp ue1 = void; Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; UnionExp ue2 = void; Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; *pue = pointerDifference(e.loc, e.type, e1, e2); result = (*pue).exp(); return; } if (e.e1.type.ty == Tpointer && e.e2.type.isintegral()) { UnionExp ue1 = void; Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; UnionExp ue2 = void; Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; *pue = pointerArithmetic(e.loc, e.op, e.type, e1, e2); result = (*pue).exp(); return; } if (e.e2.type.ty == Tpointer && e.e1.type.isintegral() && e.op == TOK.add) { UnionExp ue1 = void; Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; UnionExp ue2 = void; Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; *pue = pointerArithmetic(e.loc, e.op, e.type, e2, e1); result = (*pue).exp(); return; } if (e.e1.type.ty == Tpointer || e.e2.type.ty == Tpointer) { e.error("pointer expression `%s` cannot be interpreted at compile time", e.toChars()); result = CTFEExp.cantexp; return; } bool evalOperand(UnionExp* pue, Expression ex, out Expression er) { er = interpret(pue, ex, istate); if (exceptionOrCant(er)) return false; if (er.isConst() != 1) { if (er.op == TOK.arrayLiteral) // Until we get it to work, issue a reasonable error message e.error("cannot interpret array literal expression `%s` at compile time", e.toChars()); else e.error("CTFE internal error: non-constant value `%s`", ex.toChars()); result = CTFEExp.cantexp; return false; } return true; } UnionExp ue1 = void; Expression e1; if (!evalOperand(&ue1, e.e1, e1)) return; UnionExp ue2 = void; Expression e2; if (!evalOperand(&ue2, e.e2, e2)) return; if (e.op == TOK.rightShift || e.op == TOK.leftShift || e.op == TOK.unsignedRightShift) { const sinteger_t i2 = e2.toInteger(); const d_uns64 sz = e1.type.size() * 8; if (i2 < 0 || i2 >= sz) { e.error("shift by %lld is outside the range 0..%llu", i2, cast(ulong)sz - 1); result = CTFEExp.cantexp; return; } } *pue = (*fp)(e.loc, e.type, e1, e2); result = (*pue).exp(); if (CTFEExp.isCantExp(result)) e.error("`%s` cannot be interpreted at compile time", e.toChars()); } extern (D) private void interpretCompareCommon(BinExp e, fp2_t fp) { debug (LOG) { printf("%s BinExp::interpretCompareCommon() %s\n", e.loc.toChars(), e.toChars()); } UnionExp ue1 = void; UnionExp ue2 = void; if (e.e1.type.ty == Tpointer && e.e2.type.ty == Tpointer) { Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; //printf("e1 = %s %s, e2 = %s %s\n", e1.type.toChars(), e1.toChars(), e2.type.toChars(), e2.toChars()); dinteger_t ofs1, ofs2; Expression agg1 = getAggregateFromPointer(e1, &ofs1); Expression agg2 = getAggregateFromPointer(e2, &ofs2); //printf("agg1 = %p %s, agg2 = %p %s\n", agg1, agg1.toChars(), agg2, agg2.toChars()); const cmp = comparePointers(e.op, agg1, ofs1, agg2, ofs2); if (cmp == -1) { char dir = (e.op == TOK.greaterThan || e.op == TOK.greaterOrEqual) ? '<' : '>'; e.error("the ordering of pointers to unrelated memory blocks is indeterminate in CTFE. To check if they point to the same memory block, use both `>` and `<` inside `&&` or `||`, eg `%s && %s %c= %s + 1`", e.toChars(), e.e1.toChars(), dir, e.e2.toChars()); result = CTFEExp.cantexp; return; } if (e.type.equals(Type.tbool)) result = IntegerExp.createBool(cmp != 0); else { emplaceExp!(IntegerExp)(pue, e.loc, cmp, e.type); result = (*pue).exp(); } return; } Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; if (!isCtfeComparable(e1)) { e.error("cannot compare `%s` at compile time", e1.toChars()); result = CTFEExp.cantexp; return; } Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; if (!isCtfeComparable(e2)) { e.error("cannot compare `%s` at compile time", e2.toChars()); result = CTFEExp.cantexp; return; } const cmp = (*fp)(e.loc, e.op, e1, e2); if (e.type.equals(Type.tbool)) result = IntegerExp.createBool(cmp); else { emplaceExp!(IntegerExp)(pue, e.loc, cmp, e.type); result = (*pue).exp(); } } override void visit(BinExp e) { switch (e.op) { case TOK.add: interpretCommon(e, &Add); return; case TOK.min: interpretCommon(e, &Min); return; case TOK.mul: interpretCommon(e, &Mul); return; case TOK.div: interpretCommon(e, &Div); return; case TOK.mod: interpretCommon(e, &Mod); return; case TOK.leftShift: interpretCommon(e, &Shl); return; case TOK.rightShift: interpretCommon(e, &Shr); return; case TOK.unsignedRightShift: interpretCommon(e, &Ushr); return; case TOK.and: interpretCommon(e, &And); return; case TOK.or: interpretCommon(e, &Or); return; case TOK.xor: interpretCommon(e, &Xor); return; case TOK.pow: interpretCommon(e, &Pow); return; case TOK.equal: case TOK.notEqual: interpretCompareCommon(e, &ctfeEqual); return; case TOK.identity: case TOK.notIdentity: interpretCompareCommon(e, &ctfeIdentity); return; case TOK.lessThan: case TOK.lessOrEqual: case TOK.greaterThan: case TOK.greaterOrEqual: interpretCompareCommon(e, &ctfeCmp); return; default: printf("be = '%s' %s at [%s]\n", Token.toChars(e.op), e.toChars(), e.loc.toChars()); assert(0); } } /* Helper functions for BinExp::interpretAssignCommon */ // Returns the variable which is eventually modified, or NULL if an rvalue. // thisval is the current value of 'this'. static VarDeclaration findParentVar(Expression e) { for (;;) { if (auto ve = e.isVarExp()) { VarDeclaration v = ve.var.isVarDeclaration(); assert(v); return v; } if (auto ie = e.isIndexExp()) e = ie.e1; else if (auto dve = e.isDotVarExp()) e = dve.e1; else if (auto dtie = e.isDotTemplateInstanceExp()) e = dtie.e1; else if (auto se = e.isSliceExp()) e = se.e1; else return null; } } extern (D) private void interpretAssignCommon(BinExp e, fp_t fp, int post = 0) { debug (LOG) { printf("%s BinExp::interpretAssignCommon() %s\n", e.loc.toChars(), e.toChars()); } result = CTFEExp.cantexp; Expression e1 = e.e1; if (!istate) { e.error("value of `%s` is not known at compile time", e1.toChars()); return; } ++ctfeGlobals.numAssignments; /* Before we begin, we need to know if this is a reference assignment * (dynamic array, AA, or class) or a value assignment. * Determining this for slice assignments are tricky: we need to know * if it is a block assignment (a[] = e) rather than a direct slice * assignment (a[] = b[]). Note that initializers of multi-dimensional * static arrays can have 2D block assignments (eg, int[7][7] x = 6;). * So we need to recurse to determine if it is a block assignment. */ bool isBlockAssignment = false; if (e1.op == TOK.slice) { // a[] = e can have const e. So we compare the naked types. Type tdst = e1.type.toBasetype(); Type tsrc = e.e2.type.toBasetype(); while (tdst.ty == Tsarray || tdst.ty == Tarray) { tdst = (cast(TypeArray)tdst).next.toBasetype(); if (tsrc.equivalent(tdst)) { isBlockAssignment = true; break; } } } // --------------------------------------- // Deal with reference assignment // --------------------------------------- // If it is a construction of a ref variable, it is a ref assignment if ((e.op == TOK.construct || e.op == TOK.blit) && ((cast(AssignExp)e).memset & MemorySet.referenceInit)) { assert(!fp); Expression newval = interpretRegion(e.e2, istate, ctfeNeedLvalue); if (exceptionOrCant(newval)) return; VarDeclaration v = (cast(VarExp)e1).var.isVarDeclaration(); setValue(v, newval); // Get the value to return. Note that 'newval' is an Lvalue, // so if we need an Rvalue, we have to interpret again. if (goal == ctfeNeedRvalue) result = interpretRegion(newval, istate); else result = e1; // VarExp is a CTFE reference return; } if (fp) { while (e1.op == TOK.cast_) { CastExp ce = cast(CastExp)e1; e1 = ce.e1; } } // --------------------------------------- // Interpret left hand side // --------------------------------------- AssocArrayLiteralExp existingAA = null; Expression lastIndex = null; Expression oldval = null; if (e1.op == TOK.index && (cast(IndexExp)e1).e1.type.toBasetype().ty == Taarray) { // --------------------------------------- // Deal with AA index assignment // --------------------------------------- /* This needs special treatment if the AA doesn't exist yet. * There are two special cases: * (1) If the AA is itself an index of another AA, we may need to create * multiple nested AA literals before we can insert the new value. * (2) If the ultimate AA is null, no insertion happens at all. Instead, * we create nested AA literals, and change it into a assignment. */ IndexExp ie = cast(IndexExp)e1; int depth = 0; // how many nested AA indices are there? while (ie.e1.op == TOK.index && (cast(IndexExp)ie.e1).e1.type.toBasetype().ty == Taarray) { assert(ie.modifiable); ie = cast(IndexExp)ie.e1; ++depth; } // Get the AA value to be modified. Expression aggregate = interpretRegion(ie.e1, istate); if (exceptionOrCant(aggregate)) return; if ((existingAA = aggregate.isAssocArrayLiteralExp()) !is null) { // Normal case, ultimate parent AA already exists // We need to walk from the deepest index up, checking that an AA literal // already exists on each level. lastIndex = interpretRegion((cast(IndexExp)e1).e2, istate); lastIndex = resolveSlice(lastIndex); // only happens with AA assignment if (exceptionOrCant(lastIndex)) return; while (depth > 0) { // Walk the syntax tree to find the indexExp at this depth IndexExp xe = cast(IndexExp)e1; foreach (d; 0 .. depth) xe = cast(IndexExp)xe.e1; Expression ekey = interpretRegion(xe.e2, istate); if (exceptionOrCant(ekey)) return; UnionExp ekeyTmp = void; ekey = resolveSlice(ekey, &ekeyTmp); // only happens with AA assignment // Look up this index in it up in the existing AA, to get the next level of AA. AssocArrayLiteralExp newAA = cast(AssocArrayLiteralExp)findKeyInAA(e.loc, existingAA, ekey); if (exceptionOrCant(newAA)) return; if (!newAA) { // Doesn't exist yet, create an empty AA... auto keysx = new Expressions(); auto valuesx = new Expressions(); newAA = ctfeEmplaceExp!AssocArrayLiteralExp(e.loc, keysx, valuesx); newAA.type = xe.type; newAA.ownedByCtfe = OwnedBy.ctfe; //... and insert it into the existing AA. existingAA.keys.push(ekey); existingAA.values.push(newAA); } existingAA = newAA; --depth; } if (fp) { oldval = findKeyInAA(e.loc, existingAA, lastIndex); if (!oldval) oldval = copyLiteral(e.e1.type.defaultInitLiteral(e.loc)).copy(); } } else { /* The AA is currently null. 'aggregate' is actually a reference to * whatever contains it. It could be anything: var, dotvarexp, ... * We rewrite the assignment from: * aa[i][j] op= newval; * into: * aa = [i:[j:T.init]]; * aa[j] op= newval; */ oldval = copyLiteral(e.e1.type.defaultInitLiteral(e.loc)).copy(); Expression newaae = oldval; while (e1.op == TOK.index && (cast(IndexExp)e1).e1.type.toBasetype().ty == Taarray) { Expression ekey = interpretRegion((cast(IndexExp)e1).e2, istate); if (exceptionOrCant(ekey)) return; ekey = resolveSlice(ekey); // only happens with AA assignment auto keysx = new Expressions(); auto valuesx = new Expressions(); keysx.push(ekey); valuesx.push(newaae); auto aae = ctfeEmplaceExp!AssocArrayLiteralExp(e.loc, keysx, valuesx); aae.type = (cast(IndexExp)e1).e1.type; aae.ownedByCtfe = OwnedBy.ctfe; if (!existingAA) { existingAA = aae; lastIndex = ekey; } newaae = aae; e1 = (cast(IndexExp)e1).e1; } // We must set to aggregate with newaae e1 = interpretRegion(e1, istate, ctfeNeedLvalue); if (exceptionOrCant(e1)) return; e1 = assignToLvalue(e, e1, newaae); if (exceptionOrCant(e1)) return; } assert(existingAA && lastIndex); e1 = null; // stomp } else if (e1.op == TOK.arrayLength) { oldval = interpretRegion(e1, istate); if (exceptionOrCant(oldval)) return; } else if (e.op == TOK.construct || e.op == TOK.blit) { // Unless we have a simple var assignment, we're // only modifying part of the variable. So we need to make sure // that the parent variable exists. VarDeclaration ultimateVar = findParentVar(e1); if (auto ve = e1.isVarExp()) { VarDeclaration v = ve.var.isVarDeclaration(); assert(v); if (v.storage_class & STC.out_) goto L1; } else if (ultimateVar && !getValue(ultimateVar)) { Expression ex = interpretRegion(ultimateVar.type.defaultInitLiteral(e.loc), istate); if (exceptionOrCant(ex)) return; setValue(ultimateVar, ex); } else goto L1; } else { L1: e1 = interpretRegion(e1, istate, ctfeNeedLvalue); if (exceptionOrCant(e1)) return; if (e1.op == TOK.index && (cast(IndexExp)e1).e1.type.toBasetype().ty == Taarray) { IndexExp ie = cast(IndexExp)e1; assert(ie.e1.op == TOK.assocArrayLiteral); existingAA = cast(AssocArrayLiteralExp)ie.e1; lastIndex = ie.e2; } } // --------------------------------------- // Interpret right hand side // --------------------------------------- Expression newval = interpretRegion(e.e2, istate); if (exceptionOrCant(newval)) return; if (e.op == TOK.blit && newval.op == TOK.int64) { Type tbn = e.type.baseElemOf(); if (tbn.ty == Tstruct) { /* Look for special case of struct being initialized with 0. */ newval = e.type.defaultInitLiteral(e.loc); if (newval.op == TOK.error) { result = CTFEExp.cantexp; return; } newval = interpretRegion(newval, istate); // copy and set ownedByCtfe flag if (exceptionOrCant(newval)) return; } } // ---------------------------------------------------- // Deal with read-modify-write assignments. // Set 'newval' to the final assignment value // Also determine the return value (except for slice // assignments, which are more complicated) // ---------------------------------------------------- if (fp) { if (!oldval) { // Load the left hand side after interpreting the right hand side. oldval = interpretRegion(e1, istate); if (exceptionOrCant(oldval)) return; } if (e.e1.type.ty != Tpointer) { // ~= can create new values (see bug 6052) if (e.op == TOK.concatenateAssign || e.op == TOK.concatenateElemAssign || e.op == TOK.concatenateDcharAssign) { // We need to dup it and repaint the type. For a dynamic array // we can skip duplication, because it gets copied later anyway. if (newval.type.ty != Tarray) { newval = copyLiteral(newval).copy(); newval.type = e.e2.type; // repaint type } else { newval = paintTypeOntoLiteral(e.e2.type, newval); newval = resolveSlice(newval); } } oldval = resolveSlice(oldval); newval = (*fp)(e.loc, e.type, oldval, newval).copy(); } else if (e.e2.type.isintegral() && (e.op == TOK.addAssign || e.op == TOK.minAssign || e.op == TOK.plusPlus || e.op == TOK.minusMinus)) { newval = pointerArithmetic(e.loc, e.op, e.type, oldval, newval).copy(); } else { e.error("pointer expression `%s` cannot be interpreted at compile time", e.toChars()); result = CTFEExp.cantexp; return; } if (exceptionOrCant(newval)) { if (CTFEExp.isCantExp(newval)) e.error("cannot interpret `%s` at compile time", e.toChars()); return; } } if (existingAA) { if (existingAA.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only constant `%s`", existingAA.toChars()); result = CTFEExp.cantexp; return; } //printf("\t+L%d existingAA = %s, lastIndex = %s, oldval = %s, newval = %s\n", // __LINE__, existingAA.toChars(), lastIndex.toChars(), oldval ? oldval.toChars() : NULL, newval.toChars()); assignAssocArrayElement(e.loc, existingAA, lastIndex, newval); // Determine the return value result = ctfeCast(pue, e.loc, e.type, e.type, fp && post ? oldval : newval); return; } if (e1.op == TOK.arrayLength) { /* Change the assignment from: * arr.length = n; * into: * arr = new_length_array; (result is n) */ // Determine the return value result = ctfeCast(pue, e.loc, e.type, e.type, fp && post ? oldval : newval); if (exceptionOrCant(result)) return; if (result == pue.exp()) result = pue.copy(); size_t oldlen = cast(size_t)oldval.toInteger(); size_t newlen = cast(size_t)newval.toInteger(); if (oldlen == newlen) // no change required -- we're done! return; // We have changed it into a reference assignment // Note that returnValue is still the new length. e1 = (cast(ArrayLengthExp)e1).e1; Type t = e1.type.toBasetype(); if (t.ty != Tarray) { e.error("`%s` is not yet supported at compile time", e.toChars()); result = CTFEExp.cantexp; return; } e1 = interpretRegion(e1, istate, ctfeNeedLvalue); if (exceptionOrCant(e1)) return; if (oldlen != 0) // Get the old array literal. oldval = interpretRegion(e1, istate); UnionExp utmp = void; oldval = resolveSlice(oldval, &utmp); newval = changeArrayLiteralLength(e.loc, cast(TypeArray)t, oldval, oldlen, newlen).copy(); e1 = assignToLvalue(e, e1, newval); if (exceptionOrCant(e1)) return; return; } if (!isBlockAssignment) { newval = ctfeCast(pue, e.loc, e.type, e.type, newval); if (exceptionOrCant(newval)) return; if (newval == pue.exp()) newval = pue.copy(); // Determine the return value if (goal == ctfeNeedLvalue) // https://issues.dlang.org/show_bug.cgi?id=14371 result = e1; else { result = ctfeCast(pue, e.loc, e.type, e.type, fp && post ? oldval : newval); if (result == pue.exp()) result = pue.copy(); } if (exceptionOrCant(result)) return; } if (exceptionOrCant(newval)) return; debug (LOGASSIGN) { printf("ASSIGN: %s=%s\n", e1.toChars(), newval.toChars()); showCtfeExpr(newval); } /* Block assignment or element-wise assignment. */ if (e1.op == TOK.slice || e1.op == TOK.vector || e1.op == TOK.arrayLiteral || e1.op == TOK.string_ || e1.op == TOK.null_ && e1.type.toBasetype().ty == Tarray) { // Note that slice assignments don't support things like ++, so // we don't need to remember 'returnValue'. result = interpretAssignToSlice(pue, e, e1, newval, isBlockAssignment); if (exceptionOrCant(result)) return; if (auto se = e.e1.isSliceExp()) { Expression e1x = interpretRegion(se.e1, istate, ctfeNeedLvalue); if (auto dve = e1x.isDotVarExp()) { auto ex = dve.e1; auto sle = ex.op == TOK.structLiteral ? (cast(StructLiteralExp)ex) : ex.op == TOK.classReference ? (cast(ClassReferenceExp)ex).value : null; auto v = dve.var.isVarDeclaration(); if (!sle || !v) { e.error("CTFE internal error: dotvar slice assignment"); result = CTFEExp.cantexp; return; } stompOverlappedFields(sle, v); } } return; } assert(result); /* Assignment to a CTFE reference. */ if (Expression ex = assignToLvalue(e, e1, newval)) result = ex; return; } /* Set all sibling fields which overlap with v to VoidExp. */ private void stompOverlappedFields(StructLiteralExp sle, VarDeclaration v) { if (!v.overlapped) return; foreach (size_t i, v2; sle.sd.fields) { if (v is v2 || !v.isOverlappedWith(v2)) continue; auto e = (*sle.elements)[i]; if (e.op != TOK.void_) (*sle.elements)[i] = voidInitLiteral(e.type, v).copy(); } } private Expression assignToLvalue(BinExp e, Expression e1, Expression newval) { VarDeclaration vd = null; Expression* payload = null; // dead-store to prevent spurious warning Expression oldval; if (auto ve = e1.isVarExp()) { vd = ve.var.isVarDeclaration(); oldval = getValue(vd); } else if (auto dve = e1.isDotVarExp()) { /* Assignment to member variable of the form: * e.v = newval */ auto ex = dve.e1; auto sle = ex.op == TOK.structLiteral ? (cast(StructLiteralExp)ex) : ex.op == TOK.classReference ? (cast(ClassReferenceExp)ex).value : null; auto v = (cast(DotVarExp)e1).var.isVarDeclaration(); if (!sle || !v) { e.error("CTFE internal error: dotvar assignment"); return CTFEExp.cantexp; } if (sle.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only constant `%s`", sle.toChars()); return CTFEExp.cantexp; } int fieldi = ex.op == TOK.structLiteral ? findFieldIndexByName(sle.sd, v) : (cast(ClassReferenceExp)ex).findFieldIndexByName(v); if (fieldi == -1) { e.error("CTFE internal error: cannot find field `%s` in `%s`", v.toChars(), ex.toChars()); return CTFEExp.cantexp; } assert(0 <= fieldi && fieldi < sle.elements.dim); // If it's a union, set all other members of this union to void stompOverlappedFields(sle, v); payload = &(*sle.elements)[fieldi]; oldval = *payload; } else if (auto ie = e1.isIndexExp()) { assert(ie.e1.type.toBasetype().ty != Taarray); Expression aggregate; uinteger_t indexToModify; if (!resolveIndexing(ie, istate, &aggregate, &indexToModify, true)) { return CTFEExp.cantexp; } size_t index = cast(size_t)indexToModify; if (auto existingSE = aggregate.isStringExp()) { if (existingSE.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only string literal `%s`", ie.e1.toChars()); return CTFEExp.cantexp; } existingSE.setCodeUnit(index, cast(dchar)newval.toInteger()); return null; } if (aggregate.op != TOK.arrayLiteral) { e.error("index assignment `%s` is not yet supported in CTFE ", e.toChars()); return CTFEExp.cantexp; } ArrayLiteralExp existingAE = cast(ArrayLiteralExp)aggregate; if (existingAE.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only constant `%s`", existingAE.toChars()); return CTFEExp.cantexp; } payload = &(*existingAE.elements)[index]; oldval = *payload; } else { e.error("`%s` cannot be evaluated at compile time", e.toChars()); return CTFEExp.cantexp; } Type t1b = e1.type.toBasetype(); bool wantCopy = t1b.baseElemOf().ty == Tstruct; if (newval.op == TOK.structLiteral && oldval) { assert(oldval.op == TOK.structLiteral || oldval.op == TOK.arrayLiteral || oldval.op == TOK.string_); newval = copyLiteral(newval).copy(); assignInPlace(oldval, newval); } else if (wantCopy && e.op == TOK.assign) { // Currently postblit/destructor calls on static array are done // in the druntime internal functions so they don't appear in AST. // Therefore interpreter should handle them specially. assert(oldval); version (all) // todo: instead we can directly access to each elements of the slice { newval = resolveSlice(newval); if (CTFEExp.isCantExp(newval)) { e.error("CTFE internal error: assignment `%s`", e.toChars()); return CTFEExp.cantexp; } } assert(oldval.op == TOK.arrayLiteral); assert(newval.op == TOK.arrayLiteral); Expressions* oldelems = (cast(ArrayLiteralExp)oldval).elements; Expressions* newelems = (cast(ArrayLiteralExp)newval).elements; assert(oldelems.dim == newelems.dim); Type elemtype = oldval.type.nextOf(); foreach (i, ref oldelem; *oldelems) { Expression newelem = paintTypeOntoLiteral(elemtype, (*newelems)[i]); // https://issues.dlang.org/show_bug.cgi?id=9245 if (e.e2.isLvalue()) { if (Expression ex = evaluatePostblit(istate, newelem)) return ex; } // https://issues.dlang.org/show_bug.cgi?id=13661 if (Expression ex = evaluateDtor(istate, oldelem)) return ex; oldelem = newelem; } } else { // e1 has its own payload, so we have to create a new literal. if (wantCopy) newval = copyLiteral(newval).copy(); if (t1b.ty == Tsarray && e.op == TOK.construct && e.e2.isLvalue()) { // https://issues.dlang.org/show_bug.cgi?id=9245 if (Expression ex = evaluatePostblit(istate, newval)) return ex; } oldval = newval; } if (vd) setValue(vd, oldval); else *payload = oldval; // Blit assignment should return the newly created value. if (e.op == TOK.blit) return oldval; return null; } /************* * Deal with assignments of the form: * dest[] = newval * dest[low..upp] = newval * where newval has already been interpreted * * This could be a slice assignment or a block assignment, and * dest could be either an array literal, or a string. * * Returns TOK.cantExpression on failure. If there are no errors, * it returns aggregate[low..upp], except that as an optimisation, * if goal == ctfeNeedNothing, it will return NULL */ private Expression interpretAssignToSlice(UnionExp* pue, BinExp e, Expression e1, Expression newval, bool isBlockAssignment) { dinteger_t lowerbound; dinteger_t upperbound; dinteger_t firstIndex; Expression aggregate; if (auto se = e1.isSliceExp()) { // ------------------------------ // aggregate[] = newval // aggregate[low..upp] = newval // ------------------------------ version (all) // should be move in interpretAssignCommon as the evaluation of e1 { Expression oldval = interpretRegion(se.e1, istate); // Set the $ variable uinteger_t dollar = resolveArrayLength(oldval); if (se.lengthVar) { Expression dollarExp = ctfeEmplaceExp!IntegerExp(e1.loc, dollar, Type.tsize_t); ctfeGlobals.stack.push(se.lengthVar); setValue(se.lengthVar, dollarExp); } Expression lwr = interpretRegion(se.lwr, istate); if (exceptionOrCantInterpret(lwr)) { if (se.lengthVar) ctfeGlobals.stack.pop(se.lengthVar); return lwr; } Expression upr = interpretRegion(se.upr, istate); if (exceptionOrCantInterpret(upr)) { if (se.lengthVar) ctfeGlobals.stack.pop(se.lengthVar); return upr; } if (se.lengthVar) ctfeGlobals.stack.pop(se.lengthVar); // $ is defined only in [L..U] const dim = dollar; lowerbound = lwr ? lwr.toInteger() : 0; upperbound = upr ? upr.toInteger() : dim; if (lowerbound < 0 || dim < upperbound) { e.error("array bounds `[0..%llu]` exceeded in slice `[%llu..%llu]`", ulong(dim), ulong(lowerbound), ulong(upperbound)); return CTFEExp.cantexp; } } aggregate = oldval; firstIndex = lowerbound; if (auto oldse = aggregate.isSliceExp()) { // Slice of a slice --> change the bounds if (oldse.upr.toInteger() < upperbound + oldse.lwr.toInteger()) { e.error("slice `[%llu..%llu]` exceeds array bounds `[0..%llu]`", ulong(lowerbound), ulong(upperbound), oldse.upr.toInteger() - oldse.lwr.toInteger()); return CTFEExp.cantexp; } aggregate = oldse.e1; firstIndex = lowerbound + oldse.lwr.toInteger(); } } else { if (auto ale = e1.isArrayLiteralExp()) { lowerbound = 0; upperbound = ale.elements.dim; } else if (auto se = e1.isStringExp()) { lowerbound = 0; upperbound = se.len; } else if (e1.op == TOK.null_) { lowerbound = 0; upperbound = 0; } else if (VectorExp ve = e1.isVectorExp()) { // ve is not handled but a proper error message is returned // this is to prevent https://issues.dlang.org/show_bug.cgi?id=20042 lowerbound = 0; upperbound = ve.dim; } else assert(0); aggregate = e1; firstIndex = lowerbound; } if (upperbound == lowerbound) return newval; // For slice assignment, we check that the lengths match. if (!isBlockAssignment) { const srclen = resolveArrayLength(newval); if (srclen != (upperbound - lowerbound)) { e.error("array length mismatch assigning `[0..%llu]` to `[%llu..%llu]`", ulong(srclen), ulong(lowerbound), ulong(upperbound)); return CTFEExp.cantexp; } } if (auto existingSE = aggregate.isStringExp()) { if (existingSE.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only string literal `%s`", existingSE.toChars()); return CTFEExp.cantexp; } if (auto se = newval.isSliceExp()) { auto aggr2 = se.e1; const srclower = se.lwr.toInteger(); const srcupper = se.upr.toInteger(); if (aggregate == aggr2 && lowerbound < srcupper && srclower < upperbound) { e.error("overlapping slice assignment `[%llu..%llu] = [%llu..%llu]`", ulong(lowerbound), ulong(upperbound), ulong(srclower), ulong(srcupper)); return CTFEExp.cantexp; } version (all) // todo: instead we can directly access to each elements of the slice { Expression orignewval = newval; newval = resolveSlice(newval); if (CTFEExp.isCantExp(newval)) { e.error("CTFE internal error: slice `%s`", orignewval.toChars()); return CTFEExp.cantexp; } } assert(newval.op != TOK.slice); } if (auto se = newval.isStringExp()) { sliceAssignStringFromString(existingSE, se, cast(size_t)firstIndex); return newval; } if (auto ale = newval.isArrayLiteralExp()) { /* Mixed slice: it was initialized as a string literal. * Now a slice of it is being set with an array literal. */ sliceAssignStringFromArrayLiteral(existingSE, ale, cast(size_t)firstIndex); return newval; } // String literal block slice assign const value = cast(dchar)newval.toInteger(); foreach (i; 0 .. upperbound - lowerbound) { existingSE.setCodeUnit(cast(size_t)(i + firstIndex), value); } if (goal == ctfeNeedNothing) return null; // avoid creating an unused literal auto retslice = ctfeEmplaceExp!SliceExp(e.loc, existingSE, ctfeEmplaceExp!IntegerExp(e.loc, firstIndex, Type.tsize_t), ctfeEmplaceExp!IntegerExp(e.loc, firstIndex + upperbound - lowerbound, Type.tsize_t)); retslice.type = e.type; return interpret(pue, retslice, istate); } if (auto existingAE = aggregate.isArrayLiteralExp()) { if (existingAE.ownedByCtfe != OwnedBy.ctfe) { e.error("cannot modify read-only constant `%s`", existingAE.toChars()); return CTFEExp.cantexp; } if (newval.op == TOK.slice && !isBlockAssignment) { auto se = cast(SliceExp)newval; auto aggr2 = se.e1; const srclower = se.lwr.toInteger(); const srcupper = se.upr.toInteger(); const wantCopy = (newval.type.toBasetype().nextOf().baseElemOf().ty == Tstruct); //printf("oldval = %p %s[%d..%u]\nnewval = %p %s[%llu..%llu] wantCopy = %d\n", // aggregate, aggregate.toChars(), lowerbound, upperbound, // aggr2, aggr2.toChars(), srclower, srcupper, wantCopy); if (wantCopy) { // Currently overlapping for struct array is allowed. // The order of elements processing depends on the overlapping. // https://issues.dlang.org/show_bug.cgi?id=14024 assert(aggr2.op == TOK.arrayLiteral); Expressions* oldelems = existingAE.elements; Expressions* newelems = (cast(ArrayLiteralExp)aggr2).elements; Type elemtype = aggregate.type.nextOf(); bool needsPostblit = e.e2.isLvalue(); if (aggregate == aggr2 && srclower < lowerbound && lowerbound < srcupper) { // reverse order for (auto i = upperbound - lowerbound; 0 < i--;) { Expression oldelem = (*oldelems)[cast(size_t)(i + firstIndex)]; Expression newelem = (*newelems)[cast(size_t)(i + srclower)]; newelem = copyLiteral(newelem).copy(); newelem.type = elemtype; if (needsPostblit) { if (Expression x = evaluatePostblit(istate, newelem)) return x; } if (Expression x = evaluateDtor(istate, oldelem)) return x; (*oldelems)[cast(size_t)(lowerbound + i)] = newelem; } } else { // normal order for (auto i = 0; i < upperbound - lowerbound; i++) { Expression oldelem = (*oldelems)[cast(size_t)(i + firstIndex)]; Expression newelem = (*newelems)[cast(size_t)(i + srclower)]; newelem = copyLiteral(newelem).copy(); newelem.type = elemtype; if (needsPostblit) { if (Expression x = evaluatePostblit(istate, newelem)) return x; } if (Expression x = evaluateDtor(istate, oldelem)) return x; (*oldelems)[cast(size_t)(lowerbound + i)] = newelem; } } //assert(0); return newval; // oldval? } if (aggregate == aggr2 && lowerbound < srcupper && srclower < upperbound) { e.error("overlapping slice assignment `[%llu..%llu] = [%llu..%llu]`", ulong(lowerbound), ulong(upperbound), ulong(srclower), ulong(srcupper)); return CTFEExp.cantexp; } version (all) // todo: instead we can directly access to each elements of the slice { Expression orignewval = newval; newval = resolveSlice(newval); if (CTFEExp.isCantExp(newval)) { e.error("CTFE internal error: slice `%s`", orignewval.toChars()); return CTFEExp.cantexp; } } // no overlapping //length? assert(newval.op != TOK.slice); } if (newval.op == TOK.string_ && !isBlockAssignment) { /* Mixed slice: it was initialized as an array literal of chars/integers. * Now a slice of it is being set with a string. */ sliceAssignArrayLiteralFromString(existingAE, cast(StringExp)newval, cast(size_t)firstIndex); return newval; } if (newval.op == TOK.arrayLiteral && !isBlockAssignment) { Expressions* oldelems = existingAE.elements; Expressions* newelems = (cast(ArrayLiteralExp)newval).elements; Type elemtype = existingAE.type.nextOf(); bool needsPostblit = e.op != TOK.blit && e.e2.isLvalue(); foreach (j, newelem; *newelems) { newelem = paintTypeOntoLiteral(elemtype, newelem); if (needsPostblit) { Expression x = evaluatePostblit(istate, newelem); if (exceptionOrCantInterpret(x)) return x; } (*oldelems)[cast(size_t)(j + firstIndex)] = newelem; } return newval; } /* Block assignment, initialization of static arrays * x[] = newval * x may be a multidimensional static array. (Note that this * only happens with array literals, never with strings). */ struct RecursiveBlock { InterState* istate; Expression newval; bool refCopy; bool needsPostblit; bool needsDtor; extern (C++) Expression assignTo(ArrayLiteralExp ae) { return assignTo(ae, 0, ae.elements.dim); } extern (C++) Expression assignTo(ArrayLiteralExp ae, size_t lwr, size_t upr) { Expressions* w = ae.elements; assert(ae.type.ty == Tsarray || ae.type.ty == Tarray); bool directblk = (cast(TypeArray)ae.type).next.equivalent(newval.type); for (size_t k = lwr; k < upr; k++) { if (!directblk && (*w)[k].op == TOK.arrayLiteral) { // Multidimensional array block assign if (Expression ex = assignTo(cast(ArrayLiteralExp)(*w)[k])) return ex; } else if (refCopy) { (*w)[k] = newval; } else if (!needsPostblit && !needsDtor) { assignInPlace((*w)[k], newval); } else { Expression oldelem = (*w)[k]; Expression tmpelem = needsDtor ? copyLiteral(oldelem).copy() : null; assignInPlace(oldelem, newval); if (needsPostblit) { if (Expression ex = evaluatePostblit(istate, oldelem)) return ex; } if (needsDtor) { // https://issues.dlang.org/show_bug.cgi?id=14860 if (Expression ex = evaluateDtor(istate, tmpelem)) return ex; } } } return null; } } Type tn = newval.type.toBasetype(); bool wantRef = (tn.ty == Tarray || isAssocArray(tn) || tn.ty == Tclass); bool cow = newval.op != TOK.structLiteral && newval.op != TOK.arrayLiteral && newval.op != TOK.string_; Type tb = tn.baseElemOf(); StructDeclaration sd = (tb.ty == Tstruct ? (cast(TypeStruct)tb).sym : null); RecursiveBlock rb; rb.istate = istate; rb.newval = newval; rb.refCopy = wantRef || cow; rb.needsPostblit = sd && sd.postblit && e.op != TOK.blit && e.e2.isLvalue(); rb.needsDtor = sd && sd.dtor && e.op == TOK.assign; if (Expression ex = rb.assignTo(existingAE, cast(size_t)lowerbound, cast(size_t)upperbound)) return ex; if (goal == ctfeNeedNothing) return null; // avoid creating an unused literal auto retslice = ctfeEmplaceExp!SliceExp(e.loc, existingAE, ctfeEmplaceExp!IntegerExp(e.loc, firstIndex, Type.tsize_t), ctfeEmplaceExp!IntegerExp(e.loc, firstIndex + upperbound - lowerbound, Type.tsize_t)); retslice.type = e.type; return interpret(pue, retslice, istate); } e.error("slice operation `%s = %s` cannot be evaluated at compile time", e1.toChars(), newval.toChars()); return CTFEExp.cantexp; } override void visit(AssignExp e) { interpretAssignCommon(e, null); } override void visit(BinAssignExp e) { switch (e.op) { case TOK.addAssign: interpretAssignCommon(e, &Add); return; case TOK.minAssign: interpretAssignCommon(e, &Min); return; case TOK.concatenateAssign: case TOK.concatenateElemAssign: case TOK.concatenateDcharAssign: interpretAssignCommon(e, &ctfeCat); return; case TOK.mulAssign: interpretAssignCommon(e, &Mul); return; case TOK.divAssign: interpretAssignCommon(e, &Div); return; case TOK.modAssign: interpretAssignCommon(e, &Mod); return; case TOK.leftShiftAssign: interpretAssignCommon(e, &Shl); return; case TOK.rightShiftAssign: interpretAssignCommon(e, &Shr); return; case TOK.unsignedRightShiftAssign: interpretAssignCommon(e, &Ushr); return; case TOK.andAssign: interpretAssignCommon(e, &And); return; case TOK.orAssign: interpretAssignCommon(e, &Or); return; case TOK.xorAssign: interpretAssignCommon(e, &Xor); return; case TOK.powAssign: interpretAssignCommon(e, &Pow); return; default: assert(0); } } override void visit(PostExp e) { debug (LOG) { printf("%s PostExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.op == TOK.plusPlus) interpretAssignCommon(e, &Add, 1); else interpretAssignCommon(e, &Min, 1); debug (LOG) { if (CTFEExp.isCantExp(result)) printf("PostExp::interpret() CANT\n"); } } /* Return 1 if e is a p1 > p2 or p1 >= p2 pointer comparison; * -1 if e is a p1 < p2 or p1 <= p2 pointer comparison; * 0 otherwise */ static int isPointerCmpExp(Expression e, Expression* p1, Expression* p2) { int ret = 1; while (e.op == TOK.not) { ret *= -1; e = (cast(NotExp)e).e1; } switch (e.op) { case TOK.lessThan: case TOK.lessOrEqual: ret *= -1; goto case; /+ fall through +/ case TOK.greaterThan: case TOK.greaterOrEqual: *p1 = (cast(BinExp)e).e1; *p2 = (cast(BinExp)e).e2; if (!(isPointer((*p1).type) && isPointer((*p2).type))) ret = 0; break; default: ret = 0; break; } return ret; } /** If this is a four pointer relation, evaluate it, else return NULL. * * This is an expression of the form (p1 > q1 && p2 < q2) or (p1 < q1 || p2 > q2) * where p1, p2 are expressions yielding pointers to memory block p, * and q1, q2 are expressions yielding pointers to memory block q. * This expression is valid even if p and q are independent memory * blocks and are therefore not normally comparable; the && form returns true * if [p1..p2] lies inside [q1..q2], and false otherwise; the || form returns * true if [p1..p2] lies outside [q1..q2], and false otherwise. * * Within the expression, any ordering of p1, p2, q1, q2 is permissible; * the comparison operators can be any of >, <, <=, >=, provided that * both directions (p > q and p < q) are checked. Additionally the * relational sub-expressions can be negated, eg * (!(q1 < p1) && p2 <= q2) is valid. */ private void interpretFourPointerRelation(UnionExp* pue, BinExp e) { assert(e.op == TOK.andAnd || e.op == TOK.orOr); /* It can only be an isInside expression, if both e1 and e2 are * directional pointer comparisons. * Note that this check can be made statically; it does not depends on * any runtime values. This allows a JIT implementation to compile a * special AndAndPossiblyInside, keeping the normal AndAnd case efficient. */ // Save the pointer expressions and the comparison directions, // so we can use them later. Expression p1 = null; Expression p2 = null; Expression p3 = null; Expression p4 = null; int dir1 = isPointerCmpExp(e.e1, &p1, &p2); int dir2 = isPointerCmpExp(e.e2, &p3, &p4); if (dir1 == 0 || dir2 == 0) { result = null; return; } //printf("FourPointerRelation %s\n", toChars()); UnionExp ue1 = void; UnionExp ue2 = void; UnionExp ue3 = void; UnionExp ue4 = void; // Evaluate the first two pointers p1 = interpret(&ue1, p1, istate); if (exceptionOrCant(p1)) return; p2 = interpret(&ue2, p2, istate); if (exceptionOrCant(p2)) return; dinteger_t ofs1, ofs2; Expression agg1 = getAggregateFromPointer(p1, &ofs1); Expression agg2 = getAggregateFromPointer(p2, &ofs2); if (!pointToSameMemoryBlock(agg1, agg2) && agg1.op != TOK.null_ && agg2.op != TOK.null_) { // Here it is either CANT_INTERPRET, // or an IsInside comparison returning false. p3 = interpret(&ue3, p3, istate); if (CTFEExp.isCantExp(p3)) return; // Note that it is NOT legal for it to throw an exception! Expression except = null; if (exceptionOrCantInterpret(p3)) except = p3; else { p4 = interpret(&ue4, p4, istate); if (CTFEExp.isCantExp(p4)) { result = p4; return; } if (exceptionOrCantInterpret(p4)) except = p4; } if (except) { e.error("comparison `%s` of pointers to unrelated memory blocks remains indeterminate at compile time because exception `%s` was thrown while evaluating `%s`", e.e1.toChars(), except.toChars(), e.e2.toChars()); result = CTFEExp.cantexp; return; } dinteger_t ofs3, ofs4; Expression agg3 = getAggregateFromPointer(p3, &ofs3); Expression agg4 = getAggregateFromPointer(p4, &ofs4); // The valid cases are: // p1 > p2 && p3 > p4 (same direction, also for < && <) // p1 > p2 && p3 < p4 (different direction, also < && >) // Changing any > into >= doesn't affect the result if ((dir1 == dir2 && pointToSameMemoryBlock(agg1, agg4) && pointToSameMemoryBlock(agg2, agg3)) || (dir1 != dir2 && pointToSameMemoryBlock(agg1, agg3) && pointToSameMemoryBlock(agg2, agg4))) { // it's a legal two-sided comparison emplaceExp!(IntegerExp)(pue, e.loc, (e.op == TOK.andAnd) ? 0 : 1, e.type); result = pue.exp(); return; } // It's an invalid four-pointer comparison. Either the second // comparison is in the same direction as the first, or else // more than two memory blocks are involved (either two independent // invalid comparisons are present, or else agg3 == agg4). e.error("comparison `%s` of pointers to unrelated memory blocks is indeterminate at compile time, even when combined with `%s`.", e.e1.toChars(), e.e2.toChars()); result = CTFEExp.cantexp; return; } // The first pointer expression didn't need special treatment, so we // we need to interpret the entire expression exactly as a normal && or ||. // This is easy because we haven't evaluated e2 at all yet, and we already // know it will return a bool. // But we mustn't evaluate the pointer expressions in e1 again, in case // they have side-effects. bool nott = false; Expression ex = e.e1; while (1) { if (auto ne = ex.isNotExp()) { nott = !nott; ex = ne.e1; } else break; } /** Negate relational operator, eg >= becomes < * Params: * op = comparison operator to negate * Returns: * negate operator */ static TOK negateRelation(TOK op) pure { switch (op) { case TOK.greaterOrEqual: op = TOK.lessThan; break; case TOK.greaterThan: op = TOK.lessOrEqual; break; case TOK.lessOrEqual: op = TOK.greaterThan; break; case TOK.lessThan: op = TOK.greaterOrEqual; break; default: assert(0); } return op; } const TOK cmpop = nott ? negateRelation(ex.op) : ex.op; const cmp = comparePointers(cmpop, agg1, ofs1, agg2, ofs2); // We already know this is a valid comparison. assert(cmp >= 0); if (e.op == TOK.andAnd && cmp == 1 || e.op == TOK.orOr && cmp == 0) { result = interpret(pue, e.e2, istate); return; } emplaceExp!(IntegerExp)(pue, e.loc, (e.op == TOK.andAnd) ? 0 : 1, e.type); result = pue.exp(); } override void visit(LogicalExp e) { debug (LOG) { printf("%s LogicalExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } // Check for an insidePointer expression, evaluate it if so interpretFourPointerRelation(pue, e); if (result) return; UnionExp ue1 = void; result = interpret(&ue1, e.e1, istate); if (exceptionOrCant(result)) return; bool res; const andand = e.op == TOK.andAnd; if (andand ? result.isBool(false) : isTrueBool(result)) res = !andand; else if (andand ? isTrueBool(result) : result.isBool(false)) { UnionExp ue2 = void; result = interpret(&ue2, e.e2, istate); if (exceptionOrCant(result)) return; if (result.op == TOK.voidExpression) { assert(e.type.ty == Tvoid); result = null; return; } if (result.isBool(false)) res = false; else if (isTrueBool(result)) res = true; else { e.error("`%s` does not evaluate to a `bool`", result.toChars()); result = CTFEExp.cantexp; return; } } else { e.error("`%s` cannot be interpreted as a `bool`", result.toChars()); result = CTFEExp.cantexp; return; } if (goal != ctfeNeedNothing) { if (e.type.equals(Type.tbool)) result = IntegerExp.createBool(res); else { emplaceExp!(IntegerExp)(pue, e.loc, res, e.type); result = pue.exp(); } } } // Print a stack trace, starting from callingExp which called fd. // To shorten the stack trace, try to detect recursion. private void showCtfeBackTrace(CallExp callingExp, FuncDeclaration fd) { if (ctfeGlobals.stackTraceCallsToSuppress > 0) { --ctfeGlobals.stackTraceCallsToSuppress; return; } errorSupplemental(callingExp.loc, "called from here: `%s`", callingExp.toChars()); // Quit if it's not worth trying to compress the stack trace if (ctfeGlobals.callDepth < 6 || global.params.verbose) return; // Recursion happens if the current function already exists in the call stack. int numToSuppress = 0; int recurseCount = 0; int depthSoFar = 0; InterState* lastRecurse = istate; for (InterState* cur = istate; cur; cur = cur.caller) { if (cur.fd == fd) { ++recurseCount; numToSuppress = depthSoFar; lastRecurse = cur; } ++depthSoFar; } // We need at least three calls to the same function, to make compression worthwhile if (recurseCount < 2) return; // We found a useful recursion. Print all the calls involved in the recursion errorSupplemental(fd.loc, "%d recursive calls to function `%s`", recurseCount, fd.toChars()); for (InterState* cur = istate; cur.fd != fd; cur = cur.caller) { errorSupplemental(cur.fd.loc, "recursively called from function `%s`", cur.fd.toChars()); } // We probably didn't enter the recursion in this function. // Go deeper to find the real beginning. InterState* cur = istate; while (lastRecurse.caller && cur.fd == lastRecurse.caller.fd) { cur = cur.caller; lastRecurse = lastRecurse.caller; ++numToSuppress; } ctfeGlobals.stackTraceCallsToSuppress = numToSuppress; } override void visit(CallExp e) { debug (LOG) { printf("%s CallExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression pthis = null; FuncDeclaration fd = null; Expression ecall = interpretRegion(e.e1, istate); if (exceptionOrCant(ecall)) return; if (auto dve = ecall.isDotVarExp()) { // Calling a member function pthis = dve.e1; fd = dve.var.isFuncDeclaration(); assert(fd); if (auto dte = pthis.isDotTypeExp()) pthis = dte.e1; } else if (auto ve = ecall.isVarExp()) { fd = ve.var.isFuncDeclaration(); assert(fd); // If `_d_HookTraceImpl` is found, resolve the underlying hook and replace `e` and `fd` with it. removeHookTraceImpl(e, fd); if (fd.ident == Id.__ArrayPostblit || fd.ident == Id.__ArrayDtor) { assert(e.arguments.dim == 1); Expression ea = (*e.arguments)[0]; // printf("1 ea = %s %s\n", ea.type.toChars(), ea.toChars()); if (auto se = ea.isSliceExp()) ea = se.e1; if (auto ce = ea.isCastExp()) ea = ce.e1; // printf("2 ea = %s, %s %s\n", ea.type.toChars(), Token.toChars(ea.op), ea.toChars()); if (ea.op == TOK.variable || ea.op == TOK.symbolOffset) result = getVarExp(e.loc, istate, (cast(SymbolExp)ea).var, ctfeNeedRvalue); else if (auto ae = ea.isAddrExp()) result = interpretRegion(ae.e1, istate); // https://issues.dlang.org/show_bug.cgi?id=18871 // https://issues.dlang.org/show_bug.cgi?id=18819 else if (auto ale = ea.isArrayLiteralExp()) result = interpretRegion(ale, istate); else assert(0); if (CTFEExp.isCantExp(result)) return; if (fd.ident == Id.__ArrayPostblit) result = evaluatePostblit(istate, result); else result = evaluateDtor(istate, result); if (!result) result = CTFEExp.voidexp; return; } else if (fd.ident == Id._d_arraysetlengthT) { // In expressionsem.d `ea.length = eb;` got lowered to `_d_arraysetlengthT(ea, eb);`. // The following code will rewrite it back to `ea.length = eb` and then interpret that expression. assert(e.arguments.dim == 2); Expression ea = (*e.arguments)[0]; Expression eb = (*e.arguments)[1]; auto ale = ctfeEmplaceExp!ArrayLengthExp(e.loc, ea); ale.type = Type.tsize_t; AssignExp ae = ctfeEmplaceExp!AssignExp(e.loc, ale, eb); ae.type = ea.type; // if (global.params.verbose) // message("interpret %s =>\n %s", e.toChars(), ae.toChars()); result = interpretRegion(ae, istate); return; } } else if (auto soe = ecall.isSymOffExp()) { fd = soe.var.isFuncDeclaration(); assert(fd && soe.offset == 0); } else if (auto de = ecall.isDelegateExp()) { // Calling a delegate fd = de.func; pthis = de.e1; // Special handling for: &nestedfunc --> DelegateExp(VarExp(nestedfunc), nestedfunc) if (auto ve = pthis.isVarExp()) if (ve.var == fd) pthis = null; // context is not necessary for CTFE } else if (auto fe = ecall.isFuncExp()) { // Calling a delegate literal fd = fe.fd; } else { // delegate.funcptr() // others e.error("cannot call `%s` at compile time", e.toChars()); result = CTFEExp.cantexp; return; } if (!fd) { e.error("CTFE internal error: cannot evaluate `%s` at compile time", e.toChars()); result = CTFEExp.cantexp; return; } if (pthis) { // Member function call // Currently this is satisfied because closure is not yet supported. assert(!fd.isNested() || fd.needThis()); if (pthis.op == TOK.typeid_) { pthis.error("static variable `%s` cannot be read at compile time", pthis.toChars()); result = CTFEExp.cantexp; return; } assert(pthis); if (pthis.op == TOK.null_) { assert(pthis.type.toBasetype().ty == Tclass); e.error("function call through null class reference `%s`", pthis.toChars()); result = CTFEExp.cantexp; return; } assert(pthis.op == TOK.structLiteral || pthis.op == TOK.classReference || pthis.op == TOK.type); if (fd.isVirtual() && !e.directcall) { // Make a virtual function call. // Get the function from the vtable of the original class assert(pthis.op == TOK.classReference); ClassDeclaration cd = (cast(ClassReferenceExp)pthis).originalClass(); // We can't just use the vtable index to look it up, because // vtables for interfaces don't get populated until the glue layer. fd = cd.findFunc(fd.ident, cast(TypeFunction)fd.type); assert(fd); } } if (fd && fd.semanticRun >= PASS.semantic3done && fd.semantic3Errors) { e.error("CTFE failed because of previous errors in `%s`", fd.toChars()); result = CTFEExp.cantexp; return; } // Check for built-in functions result = evaluateIfBuiltin(pue, istate, e.loc, fd, e.arguments, pthis); if (result) return; if (!fd.fbody) { e.error("`%s` cannot be interpreted at compile time, because it has no available source code", fd.toChars()); result = CTFEExp.showcontext; return; } result = interpretFunction(pue, fd, istate, e.arguments, pthis); if (result.op == TOK.voidExpression) return; if (!exceptionOrCantInterpret(result)) { if (goal != ctfeNeedLvalue) // Peel off CTFE reference if it's unnecessary { if (result == pue.exp()) result = pue.copy(); result = interpret(pue, result, istate); } } if (!exceptionOrCantInterpret(result)) { result = paintTypeOntoLiteral(pue, e.type, result); result.loc = e.loc; } else if (CTFEExp.isCantExp(result) && !global.gag) showCtfeBackTrace(e, fd); // Print a stack trace. } override void visit(CommaExp e) { debug (LOG) { printf("%s CommaExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } // If it creates a variable, and there's no context for // the variable to be created in, we need to create one now. InterState istateComma; if (!istate && firstComma(e.e1).op == TOK.declaration) { ctfeGlobals.stack.startFrame(null); istate = &istateComma; } void endTempStackFrame() { // If we created a temporary stack frame, end it now. if (istate == &istateComma) ctfeGlobals.stack.endFrame(); } result = CTFEExp.cantexp; // If the comma returns a temporary variable, it needs to be an lvalue // (this is particularly important for struct constructors) if (e.e1.op == TOK.declaration && e.e2.op == TOK.variable && (cast(DeclarationExp)e.e1).declaration == (cast(VarExp)e.e2).var && (cast(VarExp)e.e2).var.storage_class & STC.ctfe) { VarExp ve = cast(VarExp)e.e2; VarDeclaration v = ve.var.isVarDeclaration(); ctfeGlobals.stack.push(v); if (!v._init && !getValue(v)) { setValue(v, copyLiteral(v.type.defaultInitLiteral(e.loc)).copy()); } if (!getValue(v)) { Expression newval = v._init.initializerToExpression(); // Bug 4027. Copy constructors are a weird case where the // initializer is a void function (the variable is modified // through a reference parameter instead). newval = interpretRegion(newval, istate); if (exceptionOrCant(newval)) return endTempStackFrame(); if (newval.op != TOK.voidExpression) { // v isn't necessarily null. setValueWithoutChecking(v, copyLiteral(newval).copy()); } } } else { UnionExp ue = void; auto e1 = interpret(&ue, e.e1, istate, ctfeNeedNothing); if (exceptionOrCant(e1)) return endTempStackFrame(); } result = interpret(pue, e.e2, istate, goal); return endTempStackFrame(); } override void visit(CondExp e) { debug (LOG) { printf("%s CondExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } UnionExp uecond = void; Expression econd; econd = interpret(&uecond, e.econd, istate); if (exceptionOrCant(econd)) return; if (isPointer(e.econd.type)) { if (econd.op != TOK.null_) { econd = IntegerExp.createBool(true); } } if (isTrueBool(econd)) result = interpret(pue, e.e1, istate, goal); else if (econd.isBool(false)) result = interpret(pue, e.e2, istate, goal); else { e.error("`%s` does not evaluate to boolean result at compile time", e.econd.toChars()); result = CTFEExp.cantexp; } } override void visit(ArrayLengthExp e) { debug (LOG) { printf("%s ArrayLengthExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } UnionExp ue1; Expression e1 = interpret(&ue1, e.e1, istate); assert(e1); if (exceptionOrCant(e1)) return; if (e1.op != TOK.string_ && e1.op != TOK.arrayLiteral && e1.op != TOK.slice && e1.op != TOK.null_) { e.error("`%s` cannot be evaluated at compile time", e.toChars()); result = CTFEExp.cantexp; return; } emplaceExp!(IntegerExp)(pue, e.loc, resolveArrayLength(e1), e.type); result = pue.exp(); } /** * Interpret the vector expression as an array literal. * Params: * pue = non-null pointer to temporary storage that can be used to store the return value * e = Expression to interpret * Returns: * resulting array literal or 'e' if unable to interpret */ static Expression interpretVectorToArray(UnionExp* pue, VectorExp e) { if (auto ale = e.e1.isArrayLiteralExp()) return ale; if (e.e1.op == TOK.int64 || e.e1.op == TOK.float64) { // Convert literal __vector(int) -> __vector([array]) auto elements = new Expressions(e.dim); foreach (ref element; *elements) element = copyLiteral(e.e1).copy(); auto type = (e.type.ty == Tvector) ? e.type.isTypeVector().basetype : e.type.isTypeSArray(); assert(type); emplaceExp!(ArrayLiteralExp)(pue, e.loc, type, elements); auto ale = cast(ArrayLiteralExp)pue.exp(); ale.ownedByCtfe = OwnedBy.ctfe; return ale; } return e; } override void visit(VectorExp e) { debug (LOG) { printf("%s VectorExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.ownedByCtfe >= OwnedBy.ctfe) // We've already interpreted all the elements { result = e; return; } Expression e1 = interpret(pue, e.e1, istate); assert(e1); if (exceptionOrCant(e1)) return; if (e1.op != TOK.arrayLiteral && e1.op != TOK.int64 && e1.op != TOK.float64) { e.error("`%s` cannot be evaluated at compile time", e.toChars()); result = CTFEExp.cantexp; return; } if (e1 == pue.exp()) e1 = pue.copy(); emplaceExp!(VectorExp)(pue, e.loc, e1, e.to); auto ve = cast(VectorExp)pue.exp(); ve.type = e.type; ve.dim = e.dim; ve.ownedByCtfe = OwnedBy.ctfe; result = ve; } override void visit(VectorArrayExp e) { debug (LOG) { printf("%s VectorArrayExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpret(pue, e.e1, istate); assert(e1); if (exceptionOrCant(e1)) return; if (auto ve = e1.isVectorExp()) { result = interpretVectorToArray(pue, ve); if (result.op != TOK.vector) return; } e.error("`%s` cannot be evaluated at compile time", e.toChars()); result = CTFEExp.cantexp; } override void visit(DelegatePtrExp e) { debug (LOG) { printf("%s DelegatePtrExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpret(pue, e.e1, istate); assert(e1); if (exceptionOrCant(e1)) return; e.error("`%s` cannot be evaluated at compile time", e.toChars()); result = CTFEExp.cantexp; } override void visit(DelegateFuncptrExp e) { debug (LOG) { printf("%s DelegateFuncptrExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpret(pue, e.e1, istate); assert(e1); if (exceptionOrCant(e1)) return; e.error("`%s` cannot be evaluated at compile time", e.toChars()); result = CTFEExp.cantexp; } static bool resolveIndexing(IndexExp e, InterState* istate, Expression* pagg, uinteger_t* pidx, bool modify) { assert(e.e1.type.toBasetype().ty != Taarray); if (e.e1.type.toBasetype().ty == Tpointer) { // Indexing a pointer. Note that there is no $ in this case. Expression e1 = interpretRegion(e.e1, istate); if (exceptionOrCantInterpret(e1)) return false; Expression e2 = interpretRegion(e.e2, istate); if (exceptionOrCantInterpret(e2)) return false; sinteger_t indx = e2.toInteger(); dinteger_t ofs; Expression agg = getAggregateFromPointer(e1, &ofs); if (agg.op == TOK.null_) { e.error("cannot index through null pointer `%s`", e.e1.toChars()); return false; } if (agg.op == TOK.int64) { e.error("cannot index through invalid pointer `%s` of value `%s`", e.e1.toChars(), e1.toChars()); return false; } // Pointer to a non-array variable if (agg.op == TOK.symbolOffset) { e.error("mutable variable `%s` cannot be %s at compile time, even through a pointer", cast(char*)(modify ? "modified" : "read"), (cast(SymOffExp)agg).var.toChars()); return false; } if (agg.op == TOK.arrayLiteral || agg.op == TOK.string_) { dinteger_t len = resolveArrayLength(agg); if (ofs + indx >= len) { e.error("pointer index `[%lld]` exceeds allocated memory block `[0..%lld]`", ofs + indx, len); return false; } } else { if (ofs + indx != 0) { e.error("pointer index `[%lld]` lies outside memory block `[0..1]`", ofs + indx); return false; } } *pagg = agg; *pidx = ofs + indx; return true; } Expression e1 = interpretRegion(e.e1, istate); if (exceptionOrCantInterpret(e1)) return false; if (e1.op == TOK.null_) { e.error("cannot index null array `%s`", e.e1.toChars()); return false; } if (auto ve = e1.isVectorExp()) { UnionExp ue = void; e1 = interpretVectorToArray(&ue, ve); e1 = (e1 == ue.exp()) ? ue.copy() : e1; } // Set the $ variable, and find the array literal to modify dinteger_t len; if (e1.op == TOK.variable && e1.type.toBasetype().ty == Tsarray) len = e1.type.toBasetype().isTypeSArray().dim.toInteger(); else { if (e1.op != TOK.arrayLiteral && e1.op != TOK.string_ && e1.op != TOK.slice && e1.op != TOK.vector) { e.error("cannot determine length of `%s` at compile time", e.e1.toChars()); return false; } len = resolveArrayLength(e1); } if (e.lengthVar) { Expression dollarExp = ctfeEmplaceExp!IntegerExp(e.loc, len, Type.tsize_t); ctfeGlobals.stack.push(e.lengthVar); setValue(e.lengthVar, dollarExp); } Expression e2 = interpretRegion(e.e2, istate); if (e.lengthVar) ctfeGlobals.stack.pop(e.lengthVar); // $ is defined only inside [] if (exceptionOrCantInterpret(e2)) return false; if (e2.op != TOK.int64) { e.error("CTFE internal error: non-integral index `[%s]`", e.e2.toChars()); return false; } if (auto se = e1.isSliceExp()) { // Simplify index of slice: agg[lwr..upr][indx] --> agg[indx'] uinteger_t index = e2.toInteger(); uinteger_t ilwr = se.lwr.toInteger(); uinteger_t iupr = se.upr.toInteger(); if (index > iupr - ilwr) { e.error("index %llu exceeds array length %llu", index, iupr - ilwr); return false; } *pagg = (cast(SliceExp)e1).e1; *pidx = index + ilwr; } else { *pagg = e1; *pidx = e2.toInteger(); if (len <= *pidx) { e.error("array index %lld is out of bounds `[0..%lld]`", *pidx, len); return false; } } return true; } override void visit(IndexExp e) { debug (LOG) { printf("%s IndexExp::interpret() %s, goal = %d\n", e.loc.toChars(), e.toChars(), goal); } if (e.e1.type.toBasetype().ty == Tpointer) { Expression agg; uinteger_t indexToAccess; if (!resolveIndexing(e, istate, &agg, &indexToAccess, false)) { result = CTFEExp.cantexp; return; } if (agg.op == TOK.arrayLiteral || agg.op == TOK.string_) { if (goal == ctfeNeedLvalue) { // if we need a reference, IndexExp shouldn't be interpreting // the expression to a value, it should stay as a reference emplaceExp!(IndexExp)(pue, e.loc, agg, ctfeEmplaceExp!IntegerExp(e.e2.loc, indexToAccess, e.e2.type)); result = pue.exp(); result.type = e.type; return; } result = ctfeIndex(pue, e.loc, e.type, agg, indexToAccess); return; } else { assert(indexToAccess == 0); result = interpretRegion(agg, istate, goal); if (exceptionOrCant(result)) return; result = paintTypeOntoLiteral(pue, e.type, result); return; } } if (e.e1.type.toBasetype().ty == Taarray) { Expression e1 = interpretRegion(e.e1, istate); if (exceptionOrCant(e1)) return; if (e1.op == TOK.null_) { if (goal == ctfeNeedLvalue && e1.type.ty == Taarray && e.modifiable) { assert(0); // does not reach here? } e.error("cannot index null array `%s`", e.e1.toChars()); result = CTFEExp.cantexp; return; } Expression e2 = interpretRegion(e.e2, istate); if (exceptionOrCant(e2)) return; if (goal == ctfeNeedLvalue) { // Pointer or reference of a scalar type if (e1 == e.e1 && e2 == e.e2) result = e; else { emplaceExp!(IndexExp)(pue, e.loc, e1, e2); result = pue.exp(); result.type = e.type; } return; } assert(e1.op == TOK.assocArrayLiteral); UnionExp e2tmp = void; e2 = resolveSlice(e2, &e2tmp); result = findKeyInAA(e.loc, cast(AssocArrayLiteralExp)e1, e2); if (!result) { e.error("key `%s` not found in associative array `%s`", e2.toChars(), e.e1.toChars()); result = CTFEExp.cantexp; } return; } Expression agg; uinteger_t indexToAccess; if (!resolveIndexing(e, istate, &agg, &indexToAccess, false)) { result = CTFEExp.cantexp; return; } if (goal == ctfeNeedLvalue) { Expression e2 = ctfeEmplaceExp!IntegerExp(e.e2.loc, indexToAccess, Type.tsize_t); emplaceExp!(IndexExp)(pue, e.loc, agg, e2); result = pue.exp(); result.type = e.type; return; } result = ctfeIndex(pue, e.loc, e.type, agg, indexToAccess); if (exceptionOrCant(result)) return; if (result.op == TOK.void_) { e.error("`%s` is used before initialized", e.toChars()); errorSupplemental(result.loc, "originally uninitialized here"); result = CTFEExp.cantexp; return; } if (result == pue.exp()) result = result.copy(); } override void visit(SliceExp e) { debug (LOG) { printf("%s SliceExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } if (e.e1.type.toBasetype().ty == Tpointer) { // Slicing a pointer. Note that there is no $ in this case. Expression e1 = interpretRegion(e.e1, istate); if (exceptionOrCant(e1)) return; if (e1.op == TOK.int64) { e.error("cannot slice invalid pointer `%s` of value `%s`", e.e1.toChars(), e1.toChars()); result = CTFEExp.cantexp; return; } /* Evaluate lower and upper bounds of slice */ Expression lwr = interpretRegion(e.lwr, istate); if (exceptionOrCant(lwr)) return; Expression upr = interpretRegion(e.upr, istate); if (exceptionOrCant(upr)) return; uinteger_t ilwr = lwr.toInteger(); uinteger_t iupr = upr.toInteger(); dinteger_t ofs; Expression agg = getAggregateFromPointer(e1, &ofs); ilwr += ofs; iupr += ofs; if (agg.op == TOK.null_) { if (iupr == ilwr) { result = ctfeEmplaceExp!NullExp(e.loc); result.type = e.type; return; } e.error("cannot slice null pointer `%s`", e.e1.toChars()); result = CTFEExp.cantexp; return; } if (agg.op == TOK.symbolOffset) { e.error("slicing pointers to static variables is not supported in CTFE"); result = CTFEExp.cantexp; return; } if (agg.op != TOK.arrayLiteral && agg.op != TOK.string_) { e.error("pointer `%s` cannot be sliced at compile time (it does not point to an array)", e.e1.toChars()); result = CTFEExp.cantexp; return; } assert(agg.op == TOK.arrayLiteral || agg.op == TOK.string_); dinteger_t len = ArrayLength(Type.tsize_t, agg).exp().toInteger(); //Type *pointee = ((TypePointer *)agg.type)->next; if (iupr > (len + 1) || iupr < ilwr) { e.error("pointer slice `[%lld..%lld]` exceeds allocated memory block `[0..%lld]`", ilwr, iupr, len); result = CTFEExp.cantexp; return; } if (ofs != 0) { lwr = ctfeEmplaceExp!IntegerExp(e.loc, ilwr, lwr.type); upr = ctfeEmplaceExp!IntegerExp(e.loc, iupr, upr.type); } emplaceExp!(SliceExp)(pue, e.loc, agg, lwr, upr); result = pue.exp(); result.type = e.type; return; } CtfeGoal goal1 = ctfeNeedRvalue; if (goal == ctfeNeedLvalue) { if (e.e1.type.toBasetype().ty == Tsarray) if (auto ve = e.e1.isVarExp()) if (auto vd = ve.var.isVarDeclaration()) if (vd.storage_class & STC.ref_) goal1 = ctfeNeedLvalue; } Expression e1 = interpret(e.e1, istate, goal1); if (exceptionOrCant(e1)) return; if (!e.lwr) { result = paintTypeOntoLiteral(pue, e.type, e1); return; } if (auto ve = e1.isVectorExp()) { e1 = interpretVectorToArray(pue, ve); e1 = (e1 == pue.exp()) ? pue.copy() : e1; } /* Set dollar to the length of the array */ uinteger_t dollar; if ((e1.op == TOK.variable || e1.op == TOK.dotVariable) && e1.type.toBasetype().ty == Tsarray) dollar = e1.type.toBasetype().isTypeSArray().dim.toInteger(); else { if (e1.op != TOK.arrayLiteral && e1.op != TOK.string_ && e1.op != TOK.null_ && e1.op != TOK.slice && e1.op != TOK.vector) { e.error("cannot determine length of `%s` at compile time", e1.toChars()); result = CTFEExp.cantexp; return; } dollar = resolveArrayLength(e1); } /* Set the $ variable */ if (e.lengthVar) { auto dollarExp = ctfeEmplaceExp!IntegerExp(e.loc, dollar, Type.tsize_t); ctfeGlobals.stack.push(e.lengthVar); setValue(e.lengthVar, dollarExp); } /* Evaluate lower and upper bounds of slice */ Expression lwr = interpretRegion(e.lwr, istate); if (exceptionOrCant(lwr)) { if (e.lengthVar) ctfeGlobals.stack.pop(e.lengthVar); return; } Expression upr = interpretRegion(e.upr, istate); if (exceptionOrCant(upr)) { if (e.lengthVar) ctfeGlobals.stack.pop(e.lengthVar); return; } if (e.lengthVar) ctfeGlobals.stack.pop(e.lengthVar); // $ is defined only inside [L..U] uinteger_t ilwr = lwr.toInteger(); uinteger_t iupr = upr.toInteger(); if (e1.op == TOK.null_) { if (ilwr == 0 && iupr == 0) { result = e1; return; } e1.error("slice `[%llu..%llu]` is out of bounds", ilwr, iupr); result = CTFEExp.cantexp; return; } if (auto se = e1.isSliceExp()) { // Simplify slice of slice: // aggregate[lo1..up1][lwr..upr] ---> aggregate[lwr'..upr'] uinteger_t lo1 = se.lwr.toInteger(); uinteger_t up1 = se.upr.toInteger(); if (ilwr > iupr || iupr > up1 - lo1) { e.error("slice `[%llu..%llu]` exceeds array bounds `[%llu..%llu]`", ilwr, iupr, lo1, up1); result = CTFEExp.cantexp; return; } ilwr += lo1; iupr += lo1; emplaceExp!(SliceExp)(pue, e.loc, se.e1, ctfeEmplaceExp!IntegerExp(e.loc, ilwr, lwr.type), ctfeEmplaceExp!IntegerExp(e.loc, iupr, upr.type)); result = pue.exp(); result.type = e.type; return; } if (e1.op == TOK.arrayLiteral || e1.op == TOK.string_) { if (iupr < ilwr || dollar < iupr) { e.error("slice `[%lld..%lld]` exceeds array bounds `[0..%lld]`", ilwr, iupr, dollar); result = CTFEExp.cantexp; return; } } emplaceExp!(SliceExp)(pue, e.loc, e1, lwr, upr); result = pue.exp(); result.type = e.type; } override void visit(InExp e) { debug (LOG) { printf("%s InExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpretRegion(e.e1, istate); if (exceptionOrCant(e1)) return; Expression e2 = interpretRegion(e.e2, istate); if (exceptionOrCant(e2)) return; if (e2.op == TOK.null_) { emplaceExp!(NullExp)(pue, e.loc, e.type); result = pue.exp(); return; } if (e2.op != TOK.assocArrayLiteral) { e.error("`%s` cannot be interpreted at compile time", e.toChars()); result = CTFEExp.cantexp; return; } e1 = resolveSlice(e1); result = findKeyInAA(e.loc, cast(AssocArrayLiteralExp)e2, e1); if (exceptionOrCant(result)) return; if (!result) { emplaceExp!(NullExp)(pue, e.loc, e.type); result = pue.exp(); } else { // Create a CTFE pointer &aa[index] result = ctfeEmplaceExp!IndexExp(e.loc, e2, e1); result.type = e.type.nextOf(); emplaceExp!(AddrExp)(pue, e.loc, result, e.type); result = pue.exp(); } } override void visit(CatExp e) { debug (LOG) { printf("%s CatExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } UnionExp ue1 = void; Expression e1 = interpret(&ue1, e.e1, istate); if (exceptionOrCant(e1)) return; UnionExp ue2 = void; Expression e2 = interpret(&ue2, e.e2, istate); if (exceptionOrCant(e2)) return; UnionExp e1tmp = void; e1 = resolveSlice(e1, &e1tmp); UnionExp e2tmp = void; e2 = resolveSlice(e2, &e2tmp); /* e1 and e2 can't go on the stack because of x~[y] and [x]~y will * result in [x,y] and then x or y is on the stack. * But if they are both strings, we can, because it isn't the x~[y] case. */ if (!(e1.op == TOK.string_ && e2.op == TOK.string_)) { if (e1 == ue1.exp()) e1 = ue1.copy(); if (e2 == ue2.exp()) e2 = ue2.copy(); } *pue = ctfeCat(e.loc, e.type, e1, e2); result = pue.exp(); if (CTFEExp.isCantExp(result)) { e.error("`%s` cannot be interpreted at compile time", e.toChars()); return; } // We know we still own it, because we interpreted both e1 and e2 if (auto ale = result.isArrayLiteralExp()) { ale.ownedByCtfe = OwnedBy.ctfe; // https://issues.dlang.org/show_bug.cgi?id=14686 foreach (elem; *ale.elements) { Expression ex = evaluatePostblit(istate, elem); if (exceptionOrCant(ex)) return; } } else if (auto se = result.isStringExp()) se.ownedByCtfe = OwnedBy.ctfe; } override void visit(DeleteExp e) { debug (LOG) { printf("%s DeleteExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } result = interpretRegion(e.e1, istate); if (exceptionOrCant(result)) return; if (result.op == TOK.null_) { result = CTFEExp.voidexp; return; } auto tb = e.e1.type.toBasetype(); switch (tb.ty) { case Tclass: if (result.op != TOK.classReference) { e.error("`delete` on invalid class reference `%s`", result.toChars()); result = CTFEExp.cantexp; return; } auto cre = cast(ClassReferenceExp)result; auto cd = cre.originalClass(); if (cd.dtor) { result = interpretFunction(pue, cd.dtor, istate, null, cre); if (exceptionOrCant(result)) return; } break; case Tpointer: tb = (cast(TypePointer)tb).next.toBasetype(); if (tb.ty == Tstruct) { if (result.op != TOK.address || (cast(AddrExp)result).e1.op != TOK.structLiteral) { e.error("`delete` on invalid struct pointer `%s`", result.toChars()); result = CTFEExp.cantexp; return; } auto sd = (cast(TypeStruct)tb).sym; auto sle = cast(StructLiteralExp)(cast(AddrExp)result).e1; if (sd.dtor) { result = interpretFunction(pue, sd.dtor, istate, null, sle); if (exceptionOrCant(result)) return; } } break; case Tarray: auto tv = tb.nextOf().baseElemOf(); if (tv.ty == Tstruct) { if (result.op != TOK.arrayLiteral) { e.error("`delete` on invalid struct array `%s`", result.toChars()); result = CTFEExp.cantexp; return; } auto sd = (cast(TypeStruct)tv).sym; if (sd.dtor) { auto ale = cast(ArrayLiteralExp)result; foreach (el; *ale.elements) { result = interpretFunction(pue, sd.dtor, istate, null, el); if (exceptionOrCant(result)) return; } } } break; default: assert(0); } result = CTFEExp.voidexp; } override void visit(CastExp e) { debug (LOG) { printf("%s CastExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpretRegion(e.e1, istate, goal); if (exceptionOrCant(e1)) return; // If the expression has been cast to void, do nothing. if (e.to.ty == Tvoid) { result = CTFEExp.voidexp; return; } if (e.to.ty == Tpointer && e1.op != TOK.null_) { Type pointee = (cast(TypePointer)e.type).next; // Implement special cases of normally-unsafe casts if (e1.op == TOK.int64) { // Happens with Windows HANDLEs, for example. result = paintTypeOntoLiteral(pue, e.to, e1); return; } bool castToSarrayPointer = false; bool castBackFromVoid = false; if (e1.type.ty == Tarray || e1.type.ty == Tsarray || e1.type.ty == Tpointer) { // Check for unsupported type painting operations // For slices, we need the type being sliced, // since it may have already been type painted Type elemtype = e1.type.nextOf(); if (auto se = e1.isSliceExp()) elemtype = se.e1.type.nextOf(); // Allow casts from X* to void *, and X** to void** for any X. // But don't allow cast from X* to void**. // So, we strip all matching * from source and target to find X. // Allow casts to X* from void* only if the 'void' was originally an X; // we check this later on. Type ultimatePointee = pointee; Type ultimateSrc = elemtype; while (ultimatePointee.ty == Tpointer && ultimateSrc.ty == Tpointer) { ultimatePointee = ultimatePointee.nextOf(); ultimateSrc = ultimateSrc.nextOf(); } if (ultimatePointee.ty == Tsarray && ultimatePointee.nextOf().equivalent(ultimateSrc)) { castToSarrayPointer = true; } else if (ultimatePointee.ty != Tvoid && ultimateSrc.ty != Tvoid && !isSafePointerCast(elemtype, pointee)) { e.error("reinterpreting cast from `%s*` to `%s*` is not supported in CTFE", elemtype.toChars(), pointee.toChars()); result = CTFEExp.cantexp; return; } if (ultimateSrc.ty == Tvoid) castBackFromVoid = true; } if (auto se = e1.isSliceExp()) { if (se.e1.op == TOK.null_) { result = paintTypeOntoLiteral(pue, e.type, se.e1); return; } // Create a CTFE pointer &aggregate[1..2] auto ei = ctfeEmplaceExp!IndexExp(e.loc, se.e1, se.lwr); ei.type = e.type.nextOf(); emplaceExp!(AddrExp)(pue, e.loc, ei, e.type); result = pue.exp(); return; } if (e1.op == TOK.arrayLiteral || e1.op == TOK.string_) { // Create a CTFE pointer &[1,2,3][0] or &"abc"[0] auto ei = ctfeEmplaceExp!IndexExp(e.loc, e1, ctfeEmplaceExp!IntegerExp(e.loc, 0, Type.tsize_t)); ei.type = e.type.nextOf(); emplaceExp!(AddrExp)(pue, e.loc, ei, e.type); result = pue.exp(); return; } if (e1.op == TOK.index && !(cast(IndexExp)e1).e1.type.equals(e1.type)) { // type painting operation IndexExp ie = cast(IndexExp)e1; if (castBackFromVoid) { // get the original type. For strings, it's just the type... Type origType = ie.e1.type.nextOf(); // ..but for arrays of type void*, it's the type of the element if (ie.e1.op == TOK.arrayLiteral && ie.e2.op == TOK.int64) { ArrayLiteralExp ale = cast(ArrayLiteralExp)ie.e1; const indx = cast(size_t)ie.e2.toInteger(); if (indx < ale.elements.dim) { if (Expression xx = (*ale.elements)[indx]) { if (auto iex = xx.isIndexExp()) origType = iex.e1.type.nextOf(); else if (auto ae = xx.isAddrExp()) origType = ae.e1.type; else if (auto ve = xx.isVarExp()) origType = ve.var.type; } } } if (!isSafePointerCast(origType, pointee)) { e.error("using `void*` to reinterpret cast from `%s*` to `%s*` is not supported in CTFE", origType.toChars(), pointee.toChars()); result = CTFEExp.cantexp; return; } } emplaceExp!(IndexExp)(pue, e1.loc, ie.e1, ie.e2); result = pue.exp(); result.type = e.type; return; } if (auto ae = e1.isAddrExp()) { Type origType = ae.e1.type; if (isSafePointerCast(origType, pointee)) { emplaceExp!(AddrExp)(pue, e.loc, ae.e1, e.type); result = pue.exp(); return; } if (castToSarrayPointer && pointee.toBasetype().ty == Tsarray && ae.e1.op == TOK.index) { // &val[idx] dinteger_t dim = (cast(TypeSArray)pointee.toBasetype()).dim.toInteger(); IndexExp ie = cast(IndexExp)ae.e1; Expression lwr = ie.e2; Expression upr = ctfeEmplaceExp!IntegerExp(ie.e2.loc, ie.e2.toInteger() + dim, Type.tsize_t); // Create a CTFE pointer &val[idx..idx+dim] auto er = ctfeEmplaceExp!SliceExp(e.loc, ie.e1, lwr, upr); er.type = pointee; emplaceExp!(AddrExp)(pue, e.loc, er, e.type); result = pue.exp(); return; } } if (e1.op == TOK.variable || e1.op == TOK.symbolOffset) { // type painting operation Type origType = (cast(SymbolExp)e1).var.type; if (castBackFromVoid && !isSafePointerCast(origType, pointee)) { e.error("using `void*` to reinterpret cast from `%s*` to `%s*` is not supported in CTFE", origType.toChars(), pointee.toChars()); result = CTFEExp.cantexp; return; } if (auto ve = e1.isVarExp()) emplaceExp!(VarExp)(pue, e.loc, ve.var); else emplaceExp!(SymOffExp)(pue, e.loc, (cast(SymOffExp)e1).var, (cast(SymOffExp)e1).offset); result = pue.exp(); result.type = e.to; return; } // Check if we have a null pointer (eg, inside a struct) e1 = interpretRegion(e1, istate); if (e1.op != TOK.null_) { e.error("pointer cast from `%s` to `%s` is not supported at compile time", e1.type.toChars(), e.to.toChars()); result = CTFEExp.cantexp; return; } } if (e.to.ty == Tsarray && e.e1.type.ty == Tvector) { // Special handling for: cast(float[4])__vector([w, x, y, z]) e1 = interpretRegion(e.e1, istate); if (exceptionOrCant(e1)) return; assert(e1.op == TOK.vector); e1 = interpretVectorToArray(pue, e1.isVectorExp()); } if (e.to.ty == Tarray && e1.op == TOK.slice) { // Note that the slice may be void[], so when checking for dangerous // casts, we need to use the original type, which is se.e1. SliceExp se = cast(SliceExp)e1; if (!isSafePointerCast(se.e1.type.nextOf(), e.to.nextOf())) { e.error("array cast from `%s` to `%s` is not supported at compile time", se.e1.type.toChars(), e.to.toChars()); result = CTFEExp.cantexp; return; } emplaceExp!(SliceExp)(pue, e1.loc, se.e1, se.lwr, se.upr); result = pue.exp(); result.type = e.to; return; } // Disallow array type painting, except for conversions between built-in // types of identical size. if ((e.to.ty == Tsarray || e.to.ty == Tarray) && (e1.type.ty == Tsarray || e1.type.ty == Tarray) && !isSafePointerCast(e1.type.nextOf(), e.to.nextOf())) { e.error("array cast from `%s` to `%s` is not supported at compile time", e1.type.toChars(), e.to.toChars()); result = CTFEExp.cantexp; return; } if (e.to.ty == Tsarray) e1 = resolveSlice(e1); if (e.to.toBasetype().ty == Tbool && e1.type.ty == Tpointer) { emplaceExp!(IntegerExp)(pue, e.loc, e1.op != TOK.null_, e.to); result = pue.exp(); return; } result = ctfeCast(pue, e.loc, e.type, e.to, e1); } override void visit(AssertExp e) { debug (LOG) { printf("%s AssertExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression e1 = interpret(pue, e.e1, istate); if (exceptionOrCant(e1)) return; if (isTrueBool(e1)) { } else if (e1.isBool(false)) { if (e.msg) { UnionExp ue = void; result = interpret(&ue, e.msg, istate); if (exceptionOrCant(result)) return; e.error("`%s`", result.toChars()); } else e.error("`%s` failed", e.toChars()); result = CTFEExp.cantexp; return; } else { e.error("`%s` is not a compile time boolean expression", e1.toChars()); result = CTFEExp.cantexp; return; } result = e1; return; } override void visit(PtrExp e) { debug (LOG) { printf("%s PtrExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } // Check for int<->float and long<->double casts. if (auto soe1 = e.e1.isSymOffExp()) if (soe1.offset == 0 && soe1.var.isVarDeclaration() && isFloatIntPaint(e.type, soe1.var.type)) { // *(cast(int*)&v), where v is a float variable result = paintFloatInt(pue, getVarExp(e.loc, istate, soe1.var, ctfeNeedRvalue), e.type); return; } if (auto ce1 = e.e1.isCastExp()) if (auto ae11 = ce1.e1.isAddrExp()) { // *(cast(int*)&x), where x is a float expression Expression x = ae11.e1; if (isFloatIntPaint(e.type, x.type)) { result = paintFloatInt(pue, interpretRegion(x, istate), e.type); return; } } // Constant fold *(&structliteral + offset) if (auto ae = e.e1.isAddExp()) { if (ae.e1.op == TOK.address && ae.e2.op == TOK.int64) { AddrExp ade = cast(AddrExp)ae.e1; Expression ex = interpretRegion(ade.e1, istate); if (exceptionOrCant(ex)) return; if (auto se = ex.isStructLiteralExp()) { dinteger_t offset = ae.e2.toInteger(); result = se.getField(e.type, cast(uint)offset); if (result) return; } } } // It's possible we have an array bounds error. We need to make sure it // errors with this line number, not the one where the pointer was set. result = interpretRegion(e.e1, istate); if (exceptionOrCant(result)) return; if (result.op == TOK.function_) return; if (auto soe = result.isSymOffExp()) { if (soe.offset == 0 && soe.var.isFuncDeclaration()) return; e.error("cannot dereference pointer to static variable `%s` at compile time", soe.var.toChars()); result = CTFEExp.cantexp; return; } if (result.op != TOK.address) { if (result.op == TOK.null_) e.error("dereference of null pointer `%s`", e.e1.toChars()); else e.error("dereference of invalid pointer `%s`", result.toChars()); result = CTFEExp.cantexp; return; } // *(&x) ==> x result = (cast(AddrExp)result).e1; if (result.op == TOK.slice && e.type.toBasetype().ty == Tsarray) { /* aggr[lwr..upr] * upr may exceed the upper boundary of aggr, but the check is deferred * until those out-of-bounds elements will be touched. */ return; } result = interpret(pue, result, istate, goal); if (exceptionOrCant(result)) return; debug (LOG) { if (CTFEExp.isCantExp(result)) printf("PtrExp::interpret() %s = CTFEExp::cantexp\n", e.toChars()); } } override void visit(DotVarExp e) { void notImplementedYet() { e.error("`%s.%s` is not yet implemented at compile time", e.e1.toChars(), e.var.toChars()); result = CTFEExp.cantexp; return; } debug (LOG) { printf("%s DotVarExp::interpret() %s, goal = %d\n", e.loc.toChars(), e.toChars(), goal); } Expression ex = interpretRegion(e.e1, istate); if (exceptionOrCant(ex)) return; if (FuncDeclaration f = e.var.isFuncDeclaration()) { if (ex == e.e1) result = e; // optimize: reuse this CTFE reference else { emplaceExp!(DotVarExp)(pue, e.loc, ex, f, false); result = pue.exp(); result.type = e.type; } return; } VarDeclaration v = e.var.isVarDeclaration(); if (!v) { e.error("CTFE internal error: `%s`", e.toChars()); result = CTFEExp.cantexp; return; } if (ex.op == TOK.null_) { if (ex.type.toBasetype().ty == Tclass) e.error("class `%s` is `null` and cannot be dereferenced", e.e1.toChars()); else e.error("CTFE internal error: null this `%s`", e.e1.toChars()); result = CTFEExp.cantexp; return; } StructLiteralExp se; int i; if (ex.op != TOK.structLiteral && ex.op != TOK.classReference && ex.op != TOK.typeid_) { return notImplementedYet(); } // We can't use getField, because it makes a copy if (ex.op == TOK.classReference) { se = (cast(ClassReferenceExp)ex).value; i = (cast(ClassReferenceExp)ex).findFieldIndexByName(v); } else if (ex.op == TOK.typeid_) { if (v.ident == Identifier.idPool("name")) { if (auto t = isType(ex.isTypeidExp().obj)) { auto sym = t.toDsymbol(null); if (auto ident = (sym ? sym.ident : null)) { result = new StringExp(e.loc, ident.toString()); result.expressionSemantic(null); return ; } } } return notImplementedYet(); } else { se = cast(StructLiteralExp)ex; i = findFieldIndexByName(se.sd, v); } if (i == -1) { e.error("couldn't find field `%s` of type `%s` in `%s`", v.toChars(), e.type.toChars(), se.toChars()); result = CTFEExp.cantexp; return; } if (goal == ctfeNeedLvalue) { Expression ev = (*se.elements)[i]; if (!ev || ev.op == TOK.void_) (*se.elements)[i] = voidInitLiteral(e.type, v).copy(); // just return the (simplified) dotvar expression as a CTFE reference if (e.e1 == ex) result = e; else { emplaceExp!(DotVarExp)(pue, e.loc, ex, v); result = pue.exp(); result.type = e.type; } return; } result = (*se.elements)[i]; if (!result) { // https://issues.dlang.org/show_bug.cgi?id=19897 // Zero-length fields don't have an initializer. if (v.type.size() == 0) result = voidInitLiteral(e.type, v).copy(); else { e.error("Internal Compiler Error: null field `%s`", v.toChars()); result = CTFEExp.cantexp; return; } } if (auto vie = result.isVoidInitExp()) { const s = vie.var.toChars(); if (v.overlapped) { e.error("reinterpretation through overlapped field `%s` is not allowed in CTFE", s); result = CTFEExp.cantexp; return; } e.error("cannot read uninitialized variable `%s` in CTFE", s); result = CTFEExp.cantexp; return; } if (v.type.ty != result.type.ty && v.type.ty == Tsarray) { // Block assignment from inside struct literals auto tsa = cast(TypeSArray)v.type; auto len = cast(size_t)tsa.dim.toInteger(); UnionExp ue = void; result = createBlockDuplicatedArrayLiteral(&ue, ex.loc, v.type, ex, len); if (result == ue.exp()) result = ue.copy(); (*se.elements)[i] = result; } debug (LOG) { if (CTFEExp.isCantExp(result)) printf("DotVarExp::interpret() %s = CTFEExp::cantexp\n", e.toChars()); } } override void visit(RemoveExp e) { debug (LOG) { printf("%s RemoveExp::interpret() %s\n", e.loc.toChars(), e.toChars()); } Expression agg = interpret(e.e1, istate); if (exceptionOrCant(agg)) return; Expression index = interpret(e.e2, istate); if (exceptionOrCant(index)) return; if (agg.op == TOK.null_) { result = CTFEExp.voidexp; return; } AssocArrayLiteralExp aae = agg.isAssocArrayLiteralExp(); Expressions* keysx = aae.keys; Expressions* valuesx = aae.values; size_t removed = 0; foreach (j, evalue; *valuesx) { Expression ekey = (*keysx)[j]; int eq = ctfeEqual(e.loc, TOK.equal, ekey, index); if (eq) ++removed; else if (removed != 0) { (*keysx)[j - removed] = ekey; (*valuesx)[j - removed] = evalue; } } valuesx.dim = valuesx.dim - removed; keysx.dim = keysx.dim - removed; result = IntegerExp.createBool(removed != 0); } override void visit(ClassReferenceExp e) { //printf("ClassReferenceExp::interpret() %s\n", e.value.toChars()); result = e; } override void visit(VoidInitExp e) { e.error("CTFE internal error: trying to read uninitialized variable"); assert(0); } override void visit(ThrownExceptionExp e) { assert(0); // This should never be interpreted } } /******************************************** * Interpret the expression. * Params: * pue = non-null pointer to temporary storage that can be used to store the return value * e = Expression to interpret * istate = context * goal = what the result will be used for * Returns: * resulting expression */ Expression interpret(UnionExp* pue, Expression e, InterState* istate, CtfeGoal goal = ctfeNeedRvalue) { if (!e) return null; scope Interpreter v = new Interpreter(pue, istate, goal); e.accept(v); Expression ex = v.result; assert(goal == ctfeNeedNothing || ex !is null); return ex; } /// Expression interpret(Expression e, InterState* istate, CtfeGoal goal = ctfeNeedRvalue) { UnionExp ue = void; auto result = interpret(&ue, e, istate, goal); if (result == ue.exp()) result = ue.copy(); return result; } /***************************** * Same as interpret(), but return result allocated in Region. * Params: * e = Expression to interpret * istate = context * goal = what the result will be used for * Returns: * resulting expression */ Expression interpretRegion(Expression e, InterState* istate, CtfeGoal goal = ctfeNeedRvalue) { UnionExp ue = void; auto result = interpret(&ue, e, istate, goal); auto uexp = ue.exp(); if (result != uexp) return result; if (mem.isGCEnabled) return ue.copy(); // mimicking UnionExp.copy, but with region allocation switch (uexp.op) { case TOK.cantExpression: return CTFEExp.cantexp; case TOK.voidExpression: return CTFEExp.voidexp; case TOK.break_: return CTFEExp.breakexp; case TOK.continue_: return CTFEExp.continueexp; case TOK.goto_: return CTFEExp.gotoexp; default: break; } auto p = ctfeGlobals.region.malloc(uexp.size); return cast(Expression)memcpy(p, cast(void*)uexp, uexp.size); } /*********************************** * Interpret the statement. * Params: * pue = non-null pointer to temporary storage that can be used to store the return value * s = Statement to interpret * istate = context * Returns: * NULL continue to next statement * TOK.cantExpression cannot interpret statement at compile time * !NULL expression from return statement, or thrown exception */ Expression interpret(UnionExp* pue, Statement s, InterState* istate) { if (!s) return null; scope Interpreter v = new Interpreter(pue, istate, ctfeNeedNothing); s.accept(v); return v.result; } /// Expression interpret(Statement s, InterState* istate) { UnionExp ue = void; auto result = interpret(&ue, s, istate); if (result == ue.exp()) result = ue.copy(); return result; } /** * All results destined for use outside of CTFE need to have their CTFE-specific * features removed. * In particular, * 1. all slices must be resolved. * 2. all .ownedByCtfe set to OwnedBy.code */ private Expression scrubReturnValue(const ref Loc loc, Expression e) { /* Returns: true if e is void, * or is an array literal or struct literal of void elements. */ static bool isVoid(const Expression e, bool checkArrayType = false) pure { if (e.op == TOK.void_) return true; static bool isEntirelyVoid(const Expressions* elems) { foreach (e; *elems) { // It can be NULL for performance reasons, // see StructLiteralExp::interpret(). if (e && !isVoid(e)) return false; } return true; } if (auto sle = e.isStructLiteralExp()) return isEntirelyVoid(sle.elements); if (checkArrayType && e.type.ty != Tsarray) return false; if (auto ale = e.isArrayLiteralExp()) return isEntirelyVoid(ale.elements); return false; } /* Scrub all elements of elems[]. * Returns: null for success, error Expression for failure */ Expression scrubArray(Expressions* elems, bool structlit = false) { foreach (ref e; *elems) { // It can be NULL for performance reasons, // see StructLiteralExp::interpret(). if (!e) continue; // A struct .init may contain void members. // Static array members are a weird special case https://issues.dlang.org/show_bug.cgi?id=10994 if (structlit && isVoid(e, true)) { e = null; } else { e = scrubReturnValue(loc, e); if (CTFEExp.isCantExp(e) || e.op == TOK.error) return e; } } return null; } Expression scrubSE(StructLiteralExp sle) { sle.ownedByCtfe = OwnedBy.code; if (!(sle.stageflags & stageScrub)) { const old = sle.stageflags; sle.stageflags |= stageScrub; // prevent infinite recursion if (auto ex = scrubArray(sle.elements, true)) return ex; sle.stageflags = old; } return null; } if (e.op == TOK.classReference) { StructLiteralExp sle = (cast(ClassReferenceExp)e).value; if (auto ex = scrubSE(sle)) return ex; } else if (auto vie = e.isVoidInitExp()) { error(loc, "uninitialized variable `%s` cannot be returned from CTFE", vie.var.toChars()); return new ErrorExp(); } e = resolveSlice(e); if (auto sle = e.isStructLiteralExp()) { if (auto ex = scrubSE(sle)) return ex; } else if (auto se = e.isStringExp()) { se.ownedByCtfe = OwnedBy.code; } else if (auto ale = e.isArrayLiteralExp()) { ale.ownedByCtfe = OwnedBy.code; if (auto ex = scrubArray(ale.elements)) return ex; } else if (auto aae = e.isAssocArrayLiteralExp()) { aae.ownedByCtfe = OwnedBy.code; if (auto ex = scrubArray(aae.keys)) return ex; if (auto ex = scrubArray(aae.values)) return ex; aae.type = toBuiltinAAType(aae.type); } else if (auto ve = e.isVectorExp()) { ve.ownedByCtfe = OwnedBy.code; if (auto ale = ve.e1.isArrayLiteralExp()) { ale.ownedByCtfe = OwnedBy.code; if (auto ex = scrubArray(ale.elements)) return ex; } } return e; } /************************************** * Transitively set all .ownedByCtfe to OwnedBy.cache */ private Expression scrubCacheValue(Expression e) { if (!e) return e; Expression scrubArrayCache(Expressions* elems) { foreach (ref e; *elems) e = scrubCacheValue(e); return null; } Expression scrubSE(StructLiteralExp sle) { sle.ownedByCtfe = OwnedBy.cache; if (!(sle.stageflags & stageScrub)) { const old = sle.stageflags; sle.stageflags |= stageScrub; // prevent infinite recursion if (auto ex = scrubArrayCache(sle.elements)) return ex; sle.stageflags = old; } return null; } if (e.op == TOK.classReference) { if (auto ex = scrubSE((cast(ClassReferenceExp)e).value)) return ex; } else if (auto sle = e.isStructLiteralExp()) { if (auto ex = scrubSE(sle)) return ex; } else if (auto se = e.isStringExp()) { se.ownedByCtfe = OwnedBy.cache; } else if (auto ale = e.isArrayLiteralExp()) { ale.ownedByCtfe = OwnedBy.cache; if (Expression ex = scrubArrayCache(ale.elements)) return ex; } else if (auto aae = e.isAssocArrayLiteralExp()) { aae.ownedByCtfe = OwnedBy.cache; if (auto ex = scrubArrayCache(aae.keys)) return ex; if (auto ex = scrubArrayCache(aae.values)) return ex; } else if (auto ve = e.isVectorExp()) { ve.ownedByCtfe = OwnedBy.cache; if (auto ale = ve.e1.isArrayLiteralExp()) { ale.ownedByCtfe = OwnedBy.cache; if (auto ex = scrubArrayCache(ale.elements)) return ex; } } return e; } /******************************************** * Transitively replace all Expressions allocated in ctfeGlobals.region * with Mem owned copies. * Params: * e = possible ctfeGlobals.region owned expression * Returns: * Mem owned expression */ private Expression copyRegionExp(Expression e) { if (!e) return e; static void copyArray(Expressions* elems) { foreach (ref e; *elems) { auto ex = e; e = null; e = copyRegionExp(ex); } } static void copySE(StructLiteralExp sle) { if (1 || !(sle.stageflags & stageScrub)) { const old = sle.stageflags; sle.stageflags |= stageScrub; // prevent infinite recursion copyArray(sle.elements); sle.stageflags = old; } } switch (e.op) { case TOK.classReference: { auto cre = e.isClassReferenceExp(); cre.value = copyRegionExp(cre.value).isStructLiteralExp(); break; } case TOK.structLiteral: { auto sle = e.isStructLiteralExp(); /* The following is to take care of updating sle.origin correctly, * which may have multiple objects pointing to it. */ if (sle.isOriginal && !ctfeGlobals.region.contains(cast(void*)sle.origin)) { /* This means sle has already been moved out of the region, * and sle.origin is the new location. */ return sle.origin; } copySE(sle); sle.isOriginal = sle is sle.origin; auto slec = ctfeGlobals.region.contains(cast(void*)e) ? e.copy().isStructLiteralExp() // move sle out of region to slec : sle; if (ctfeGlobals.region.contains(cast(void*)sle.origin)) { auto sleo = sle.origin == sle ? slec : sle.origin.copy().isStructLiteralExp(); sle.origin = sleo; slec.origin = sleo; } return slec; } case TOK.arrayLiteral: { auto ale = e.isArrayLiteralExp(); ale.basis = copyRegionExp(ale.basis); copyArray(ale.elements); break; } case TOK.assocArrayLiteral: copyArray(e.isAssocArrayLiteralExp().keys); copyArray(e.isAssocArrayLiteralExp().values); break; case TOK.slice: { auto se = e.isSliceExp(); se.e1 = copyRegionExp(se.e1); se.upr = copyRegionExp(se.upr); se.lwr = copyRegionExp(se.lwr); break; } case TOK.tuple: { auto te = e.isTupleExp(); te.e0 = copyRegionExp(te.e0); copyArray(te.exps); break; } case TOK.address: case TOK.delegate_: case TOK.vector: case TOK.dotVariable: { UnaExp ue = cast(UnaExp)e; ue.e1 = copyRegionExp(ue.e1); break; } case TOK.index: { BinExp be = cast(BinExp)e; be.e1 = copyRegionExp(be.e1); be.e2 = copyRegionExp(be.e2); break; } case TOK.this_: case TOK.super_: case TOK.variable: case TOK.type: case TOK.function_: case TOK.typeid_: case TOK.string_: case TOK.int64: case TOK.error: case TOK.float64: case TOK.complex80: case TOK.null_: case TOK.void_: case TOK.symbolOffset: case TOK.char_: break; case TOK.cantExpression: case TOK.voidExpression: case TOK.showCtfeContext: return e; default: printf("e: %s, %s\n", Token.toChars(e.op), e.toChars()); assert(0); } if (ctfeGlobals.region.contains(cast(void*)e)) { return e.copy(); } return e; } /******************************* Special Functions ***************************/ private Expression interpret_length(UnionExp* pue, InterState* istate, Expression earg) { //printf("interpret_length()\n"); earg = interpret(pue, earg, istate); if (exceptionOrCantInterpret(earg)) return earg; dinteger_t len = 0; if (auto aae = earg.isAssocArrayLiteralExp()) len = aae.keys.dim; else assert(earg.op == TOK.null_); emplaceExp!(IntegerExp)(pue, earg.loc, len, Type.tsize_t); return pue.exp(); } private Expression interpret_keys(UnionExp* pue, InterState* istate, Expression earg, Type returnType) { debug (LOG) { printf("interpret_keys()\n"); } earg = interpret(pue, earg, istate); if (exceptionOrCantInterpret(earg)) return earg; if (earg.op == TOK.null_) { emplaceExp!(NullExp)(pue, earg.loc, earg.type); return pue.exp(); } if (earg.op != TOK.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) return null; AssocArrayLiteralExp aae = earg.isAssocArrayLiteralExp(); auto ae = ctfeEmplaceExp!ArrayLiteralExp(aae.loc, returnType, aae.keys); ae.ownedByCtfe = aae.ownedByCtfe; *pue = copyLiteral(ae); return pue.exp(); } private Expression interpret_values(UnionExp* pue, InterState* istate, Expression earg, Type returnType) { debug (LOG) { printf("interpret_values()\n"); } earg = interpret(pue, earg, istate); if (exceptionOrCantInterpret(earg)) return earg; if (earg.op == TOK.null_) { emplaceExp!(NullExp)(pue, earg.loc, earg.type); return pue.exp(); } if (earg.op != TOK.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) return null; auto aae = earg.isAssocArrayLiteralExp(); auto ae = ctfeEmplaceExp!ArrayLiteralExp(aae.loc, returnType, aae.values); ae.ownedByCtfe = aae.ownedByCtfe; //printf("result is %s\n", e.toChars()); *pue = copyLiteral(ae); return pue.exp(); } private Expression interpret_dup(UnionExp* pue, InterState* istate, Expression earg) { debug (LOG) { printf("interpret_dup()\n"); } earg = interpret(pue, earg, istate); if (exceptionOrCantInterpret(earg)) return earg; if (earg.op == TOK.null_) { emplaceExp!(NullExp)(pue, earg.loc, earg.type); return pue.exp(); } if (earg.op != TOK.assocArrayLiteral && earg.type.toBasetype().ty != Taarray) return null; auto aae = copyLiteral(earg).copy().isAssocArrayLiteralExp(); for (size_t i = 0; i < aae.keys.dim; i++) { if (Expression e = evaluatePostblit(istate, (*aae.keys)[i])) return e; if (Expression e = evaluatePostblit(istate, (*aae.values)[i])) return e; } aae.type = earg.type.mutableOf(); // repaint type from const(int[int]) to const(int)[int] //printf("result is %s\n", aae.toChars()); return aae; } // signature is int delegate(ref Value) OR int delegate(ref Key, ref Value) private Expression interpret_aaApply(UnionExp* pue, InterState* istate, Expression aa, Expression deleg) { aa = interpret(aa, istate); if (exceptionOrCantInterpret(aa)) return aa; if (aa.op != TOK.assocArrayLiteral) { emplaceExp!(IntegerExp)(pue, deleg.loc, 0, Type.tsize_t); return pue.exp(); } FuncDeclaration fd = null; Expression pthis = null; if (auto de = deleg.isDelegateExp()) { fd = de.func; pthis = de.e1; } else if (auto fe = deleg.isFuncExp()) fd = fe.fd; assert(fd && fd.fbody); assert(fd.parameters); size_t numParams = fd.parameters.dim; assert(numParams == 1 || numParams == 2); Parameter fparam = fd.type.isTypeFunction().parameterList[numParams - 1]; bool wantRefValue = 0 != (fparam.storageClass & (STC.out_ | STC.ref_)); Expressions args = Expressions(numParams); AssocArrayLiteralExp ae = cast(AssocArrayLiteralExp)aa; if (!ae.keys || ae.keys.dim == 0) return ctfeEmplaceExp!IntegerExp(deleg.loc, 0, Type.tsize_t); Expression eresult; for (size_t i = 0; i < ae.keys.dim; ++i) { Expression ekey = (*ae.keys)[i]; Expression evalue = (*ae.values)[i]; if (wantRefValue) { Type t = evalue.type; evalue = ctfeEmplaceExp!IndexExp(deleg.loc, ae, ekey); evalue.type = t; } args[numParams - 1] = evalue; if (numParams == 2) args[0] = ekey; UnionExp ue = void; eresult = interpretFunction(&ue, fd, istate, &args, pthis); if (eresult == ue.exp()) eresult = ue.copy(); if (exceptionOrCantInterpret(eresult)) return eresult; if (eresult.isIntegerExp().getInteger() != 0) return eresult; } return eresult; } /* Decoding UTF strings for foreach loops. Duplicates the functionality of * the twelve _aApplyXXn functions in aApply.d in the runtime. */ private Expression foreachApplyUtf(UnionExp* pue, InterState* istate, Expression str, Expression deleg, bool rvs) { debug (LOG) { printf("foreachApplyUtf(%s, %s)\n", str.toChars(), deleg.toChars()); } FuncDeclaration fd = null; Expression pthis = null; if (auto de = deleg.isDelegateExp()) { fd = de.func; pthis = de.e1; } else if (auto fe = deleg.isFuncExp()) fd = fe.fd; assert(fd && fd.fbody); assert(fd.parameters); size_t numParams = fd.parameters.dim; assert(numParams == 1 || numParams == 2); Type charType = (*fd.parameters)[numParams - 1].type; Type indexType = numParams == 2 ? (*fd.parameters)[0].type : Type.tsize_t; size_t len = cast(size_t)resolveArrayLength(str); if (len == 0) { emplaceExp!(IntegerExp)(pue, deleg.loc, 0, indexType); return pue.exp(); } UnionExp strTmp = void; str = resolveSlice(str, &strTmp); auto se = str.isStringExp(); auto ale = str.isArrayLiteralExp(); if (!se && !ale) { str.error("CTFE internal error: cannot foreach `%s`", str.toChars()); return CTFEExp.cantexp; } Expressions args = Expressions(numParams); Expression eresult = null; // ded-store to prevent spurious warning // Buffers for encoding; also used for decoding array literals char[4] utf8buf = void; wchar[2] utf16buf = void; size_t start = rvs ? len : 0; size_t end = rvs ? 0 : len; for (size_t indx = start; indx != end;) { // Step 1: Decode the next dchar from the string. string errmsg = null; // Used for reporting decoding errors dchar rawvalue; // Holds the decoded dchar size_t currentIndex = indx; // The index of the decoded character if (ale) { // If it is an array literal, copy the code points into the buffer size_t buflen = 1; // #code points in the buffer size_t n = 1; // #code points in this char size_t sz = cast(size_t)ale.type.nextOf().size(); switch (sz) { case 1: if (rvs) { // find the start of the string --indx; buflen = 1; while (indx > 0 && buflen < 4) { Expression r = (*ale.elements)[indx]; char x = cast(char)r.isIntegerExp().getInteger(); if ((x & 0xC0) != 0x80) break; --indx; ++buflen; } } else buflen = (indx + 4 > len) ? len - indx : 4; for (size_t i = 0; i < buflen; ++i) { Expression r = (*ale.elements)[indx + i]; utf8buf[i] = cast(char)r.isIntegerExp().getInteger(); } n = 0; errmsg = utf_decodeChar(utf8buf[0 .. buflen], n, rawvalue); break; case 2: if (rvs) { // find the start of the string --indx; buflen = 1; Expression r = (*ale.elements)[indx]; ushort x = cast(ushort)r.isIntegerExp().getInteger(); if (indx > 0 && x >= 0xDC00 && x <= 0xDFFF) { --indx; ++buflen; } } else buflen = (indx + 2 > len) ? len - indx : 2; for (size_t i = 0; i < buflen; ++i) { Expression r = (*ale.elements)[indx + i]; utf16buf[i] = cast(ushort)r.isIntegerExp().getInteger(); } n = 0; errmsg = utf_decodeWchar(utf16buf[0 .. buflen], n, rawvalue); break; case 4: { if (rvs) --indx; Expression r = (*ale.elements)[indx]; rawvalue = cast(dchar)r.isIntegerExp().getInteger(); n = 1; } break; default: assert(0); } if (!rvs) indx += n; } else { // String literals size_t saveindx; // used for reverse iteration switch (se.sz) { case 1: { if (rvs) { // find the start of the string --indx; while (indx > 0 && ((se.getCodeUnit(indx) & 0xC0) == 0x80)) --indx; saveindx = indx; } auto slice = se.peekString(); errmsg = utf_decodeChar(slice, indx, rawvalue); if (rvs) indx = saveindx; break; } case 2: if (rvs) { // find the start --indx; auto wc = se.getCodeUnit(indx); if (wc >= 0xDC00 && wc <= 0xDFFF) --indx; saveindx = indx; } const slice = se.peekWstring(); errmsg = utf_decodeWchar(slice, indx, rawvalue); if (rvs) indx = saveindx; break; case 4: if (rvs) --indx; rawvalue = se.getCodeUnit(indx); if (!rvs) ++indx; break; default: assert(0); } } if (errmsg) { deleg.error("`%.*s`", cast(int)errmsg.length, errmsg.ptr); return CTFEExp.cantexp; } // Step 2: encode the dchar in the target encoding int charlen = 1; // How many codepoints are involved? switch (charType.size()) { case 1: charlen = utf_codeLengthChar(rawvalue); utf_encodeChar(&utf8buf[0], rawvalue); break; case 2: charlen = utf_codeLengthWchar(rawvalue); utf_encodeWchar(&utf16buf[0], rawvalue); break; case 4: break; default: assert(0); } if (rvs) currentIndex = indx; // Step 3: call the delegate once for each code point // The index only needs to be set once if (numParams == 2) args[0] = ctfeEmplaceExp!IntegerExp(deleg.loc, currentIndex, indexType); Expression val = null; foreach (k; 0 .. charlen) { dchar codepoint; switch (charType.size()) { case 1: codepoint = utf8buf[k]; break; case 2: codepoint = utf16buf[k]; break; case 4: codepoint = rawvalue; break; default: assert(0); } val = ctfeEmplaceExp!IntegerExp(str.loc, codepoint, charType); args[numParams - 1] = val; UnionExp ue = void; eresult = interpretFunction(&ue, fd, istate, &args, pthis); if (eresult == ue.exp()) eresult = ue.copy(); if (exceptionOrCantInterpret(eresult)) return eresult; if (eresult.isIntegerExp().getInteger() != 0) return eresult; } } return eresult; } /* If this is a built-in function, return the interpreted result, * Otherwise, return NULL. */ private Expression evaluateIfBuiltin(UnionExp* pue, InterState* istate, const ref Loc loc, FuncDeclaration fd, Expressions* arguments, Expression pthis) { Expression e = null; size_t nargs = arguments ? arguments.dim : 0; if (!pthis) { if (isBuiltin(fd) != BUILTIN.unimp) { Expressions args = Expressions(nargs); foreach (i, ref arg; args) { Expression earg = (*arguments)[i]; earg = interpret(earg, istate); if (exceptionOrCantInterpret(earg)) return earg; arg = earg; } e = eval_builtin(loc, fd, &args); if (!e) { error(loc, "cannot evaluate unimplemented builtin `%s` at compile time", fd.toChars()); e = CTFEExp.cantexp; } } } if (!pthis) { if (nargs == 1 || nargs == 3) { Expression firstarg = (*arguments)[0]; if (auto firstAAtype = firstarg.type.toBasetype().isTypeAArray()) { const id = fd.ident; if (nargs == 1) { if (id == Id.aaLen) return interpret_length(pue, istate, firstarg); if (fd.toParent2().ident == Id.object) { if (id == Id.keys) return interpret_keys(pue, istate, firstarg, firstAAtype.index.arrayOf()); if (id == Id.values) return interpret_values(pue, istate, firstarg, firstAAtype.nextOf().arrayOf()); if (id == Id.rehash) return interpret(pue, firstarg, istate); if (id == Id.dup) return interpret_dup(pue, istate, firstarg); } } else // (nargs == 3) { if (id == Id._aaApply) return interpret_aaApply(pue, istate, firstarg, (*arguments)[2]); if (id == Id._aaApply2) return interpret_aaApply(pue, istate, firstarg, (*arguments)[2]); } } } } if (pthis && !fd.fbody && fd.isCtorDeclaration() && fd.parent && fd.parent.parent && fd.parent.parent.ident == Id.object) { if (pthis.op == TOK.classReference && fd.parent.ident == Id.Throwable) { // At present, the constructors just copy their arguments into the struct. // But we might need some magic if stack tracing gets added to druntime. StructLiteralExp se = (cast(ClassReferenceExp)pthis).value; assert(arguments.dim <= se.elements.dim); foreach (i, arg; *arguments) { auto elem = interpret(arg, istate); if (exceptionOrCantInterpret(elem)) return elem; (*se.elements)[i] = elem; } return CTFEExp.voidexp; } } if (nargs == 1 && !pthis && (fd.ident == Id.criticalenter || fd.ident == Id.criticalexit)) { // Support synchronized{} as a no-op return CTFEExp.voidexp; } if (!pthis) { const idlen = fd.ident.toString().length; const id = fd.ident.toChars(); if (nargs == 2 && (idlen == 10 || idlen == 11) && !strncmp(id, "_aApply", 7)) { // Functions from aApply.d and aApplyR.d in the runtime bool rvs = (idlen == 11); // true if foreach_reverse char c = id[idlen - 3]; // char width: 'c', 'w', or 'd' char s = id[idlen - 2]; // string width: 'c', 'w', or 'd' char n = id[idlen - 1]; // numParams: 1 or 2. // There are 12 combinations if ((n == '1' || n == '2') && (c == 'c' || c == 'w' || c == 'd') && (s == 'c' || s == 'w' || s == 'd') && c != s) { Expression str = (*arguments)[0]; str = interpret(str, istate); if (exceptionOrCantInterpret(str)) return str; return foreachApplyUtf(pue, istate, str, (*arguments)[1], rvs); } } } return e; } private Expression evaluatePostblit(InterState* istate, Expression e) { auto ts = e.type.baseElemOf().isTypeStruct(); if (!ts) return null; StructDeclaration sd = ts.sym; if (!sd.postblit) return null; if (auto ale = e.isArrayLiteralExp()) { foreach (elem; *ale.elements) { if (auto ex = evaluatePostblit(istate, elem)) return ex; } return null; } if (e.op == TOK.structLiteral) { // e.__postblit() UnionExp ue = void; e = interpretFunction(&ue, sd.postblit, istate, null, e); if (e == ue.exp()) e = ue.copy(); if (exceptionOrCantInterpret(e)) return e; return null; } assert(0); } private Expression evaluateDtor(InterState* istate, Expression e) { auto ts = e.type.baseElemOf().isTypeStruct(); if (!ts) return null; StructDeclaration sd = ts.sym; if (!sd.dtor) return null; UnionExp ue = void; if (auto ale = e.isArrayLiteralExp()) { foreach_reverse (elem; *ale.elements) e = evaluateDtor(istate, elem); } else if (e.op == TOK.structLiteral) { // e.__dtor() e = interpretFunction(&ue, sd.dtor, istate, null, e); } else assert(0); if (exceptionOrCantInterpret(e)) { if (e == ue.exp()) e = ue.copy(); return e; } return null; } /*************************** CTFE Sanity Checks ***************************/ /* Setter functions for CTFE variable values. * These functions exist to check for compiler CTFE bugs. */ private bool hasValue(VarDeclaration vd) { return vd.ctfeAdrOnStack != VarDeclaration.AdrOnStackNone && getValue(vd) !is null; } // Don't check for validity private void setValueWithoutChecking(VarDeclaration vd, Expression newval) { ctfeGlobals.stack.setValue(vd, newval); } private void setValue(VarDeclaration vd, Expression newval) { version (none) { if (!((vd.storage_class & (STC.out_ | STC.ref_)) ? isCtfeReferenceValid(newval) : isCtfeValueValid(newval))) { printf("[%s] vd = %s %s, newval = %s\n", vd.loc.toChars(), vd.type.toChars(), vd.toChars(), newval.toChars()); } } assert((vd.storage_class & (STC.out_ | STC.ref_)) ? isCtfeReferenceValid(newval) : isCtfeValueValid(newval)); ctfeGlobals.stack.setValue(vd, newval); } /** * Removes `_d_HookTraceImpl` if found from `ce` and `fd`. * This is needed for the CTFE interception code to be able to find hooks that are called though the hook's `*Trace` * wrapper. * * This is done by replacing `_d_HookTraceImpl!(T, Hook, errMsg)(..., parameters)` with `Hook(parameters)`. * Parameters: * ce = The CallExp that possible will be be replaced * fd = Fully resolve function declaration that `ce` would call */ private void removeHookTraceImpl(ref CallExp ce, ref FuncDeclaration fd) { if (fd.ident != Id._d_HookTraceImpl) return; auto oldCE = ce; // Get the Hook from the second template parameter TemplateInstance templateInstance = fd.parent.isTemplateInstance; RootObject hook = (*templateInstance.tiargs)[1]; assert(hook.dyncast() == DYNCAST.dsymbol, "Expected _d_HookTraceImpl's second template parameter to be an alias to the hook!"); fd = (cast(Dsymbol)hook).isFuncDeclaration; // Remove the first three trace parameters auto arguments = new Expressions(); arguments.reserve(ce.arguments.dim - 3); arguments.pushSlice((*ce.arguments)[3 .. $]); ce = ctfeEmplaceExp!CallExp(ce.loc, ctfeEmplaceExp!VarExp(ce.loc, fd, false), arguments); if (global.params.verbose) message("strip %s =>\n %s", oldCE.toChars(), ce.toChars()); }
D
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.build/Validatable.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidatorType.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/URLValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/AndValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/RangeValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmailValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/InValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/OrValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CharacterSetValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CountValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NotValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmptyValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validations.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.build/Validatable~partial.swiftmodule : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidatorType.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/URLValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/AndValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/RangeValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmailValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/InValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/OrValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CharacterSetValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CountValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NotValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmptyValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validations.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.build/Validatable~partial.swiftdoc : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidatorType.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/ValidationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/URLValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/AndValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/RangeValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilIgnoringValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NilValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmailValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/InValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/OrValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CharacterSetValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/CountValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/NotValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validators/EmptyValidator.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Validations.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/validation/Sources/Validation/Exports.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ServerTrustPolicy.o : /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/MultipartFormData.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Timeline.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Response.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/TaskDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Validation.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/AFError.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Notifications.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Result.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Request.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Users/alkeshfudani/SpaceMonitoring/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ServerTrustPolicy~partial.swiftmodule : /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/MultipartFormData.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Timeline.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Response.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/TaskDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Validation.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/AFError.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Notifications.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Result.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Request.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Users/alkeshfudani/SpaceMonitoring/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ServerTrustPolicy~partial.swiftdoc : /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/MultipartFormData.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Timeline.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Alamofire.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Response.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/TaskDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionDelegate.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Validation.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/SessionManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/AFError.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Notifications.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Result.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/Request.swift /Users/alkeshfudani/SpaceMonitoring/Pods/Alamofire/Source/ServerTrustPolicy.swift /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Metal.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet6/in6.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceObjC.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransform3D.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIO.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/alloca.h /Users/alkeshfudani/SpaceMonitoring/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/data.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/quota.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTextTab.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netdb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/timeb.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernelMetalLib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/glob.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/malloc/_malloc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/proc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ipc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/rpc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exc.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/sched.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucred.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctermid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/uuid/uuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/gethostuuid.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchTextField.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKeyCommand.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSound.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kmod.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboard.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/unistd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pwd.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInterface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_interface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferIOSurface.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDevice.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenshotService.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbarAppearance.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFence.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/once.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDiffableDataSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageSource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/source.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/resource.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenMode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/rbtree.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextStorage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/message.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTextureCache.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_locale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_xlocale.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/EAGLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDrawable.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/file.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/clonefile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/copyfile.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTParagraphStyle.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/utsname.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFrame.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVHostTime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_time.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/runtime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utime.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindowScene.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTLine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputePipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPipeline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterShape.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureScope.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/runetype.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/semaphore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFeature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVOpenGLESTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVMetalTexture.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CABase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/ImageIOBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceBase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/base.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/readpassphrase.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationResponse.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRasterizationRate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRunDelegate.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/queue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardPopoverSegue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/time_value.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceRef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfigurationReading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibLoading.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragging.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderThumbnailing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitioning.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropping.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSAttributedString.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_string.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataSourceTranslating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewAnimating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderEnumerating.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextPasteConfigurationSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteractionSupporting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContentSizeCategoryImageAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategoryAdjusting.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSStringDrawing.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslog.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/msg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fmtmsg.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/search.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fnmatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwitch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_switch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITouch.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBezierPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/math.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tgmath.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kauth.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-api.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port_obj.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/block.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CADisplayLink.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_task.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/signal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDropProposal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/acl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_dl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIKernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/gl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDepthStencil.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/util.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syscall.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/poll.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_null.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBufferPool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISegmentedControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRefreshControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sysctl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/fcntl.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_param.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ndbm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplicationShortcutItem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_nl_item.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/System.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuSystem.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/shm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ioccom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttycom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityZoom.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/vm.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/boolean.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_endian.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mman.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dlfcn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libgen.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/in.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDomain.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILexicon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRegion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_region.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationServiceExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSFileProviderExtension.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragSession.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIApplication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILocalizedIndexedCollation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CoreAnimation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRenderDestination.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderItemDecoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStateRestoration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPasteConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageSymbolConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewControllerConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder+UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeActionsConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuConfiguration.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRubyAnnotation.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextualAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserAction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISpringLoadedInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPencilInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextItemInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDropInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContextMenuInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewInteraction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransaction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontCollection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAValueFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelFormatDescription.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarCommon.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_common.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVReturn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/kern_return.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/un.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTRun.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/spawn.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CoreVideo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTGlyphInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_info.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/io.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/aio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_stdio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/sockio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/filio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/cpio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/uio.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/errno.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/objc-auto.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_map.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/bootstrap.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/netinet/tcp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/setjmp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/workloop.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/grp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarButtonItemGroup.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/group.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wordexp.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationBar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIToolbar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/tar.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_var.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/ndr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISlider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/FileProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingCurveProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSUserActivity+NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityItemProvider.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuBuilder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIResponder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLResourceStateCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLComputeCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLParallelRenderCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBlitCommandEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgumentEncoder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/architecture/byte_order.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLIndirectCommandBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVImageBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreVideo.framework/Headers/CVPixelBuffer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLCaptureManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStatusBarManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/DocumentManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutManager.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationTrigger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusDebugger.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextChecker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDatePicker.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICloudSharingController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintInteractionController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITabBarController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinterPickerController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVideoEditorController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPageViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerExtensionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontPickerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchContainerViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentBrowserViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISplitViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocumentMenuViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIReferenceLibraryViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityViewController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISearchDisplayController.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CISampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLSampler.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPaper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStepper.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsPDFRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintPageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsImageRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragPreviewRenderer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIRAWFilter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNUserNotificationCenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrinter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFramesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTTypesetter.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILargeContentViewer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CALayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEAGLLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATiledLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAShapeLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMetalLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAScrollLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATransformLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAEmitterLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAReplicatorLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAGradientLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CATextLayer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISwipeGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPinchGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreenEdgePanGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIRotationGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITapGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIHoverGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILongPressGestureRecognizer.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutAnchor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFieldBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPushBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicItemBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollisionBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISnapBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAttachmentBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGravityBehavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIColor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPrintError.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_error.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageProcessor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImageAccumulator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDynamicAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewPropertyAnimator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextFormattingCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusAnimationCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewControllerTransitionCoordinator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINotificationFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISelectionFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImpactFeedbackGenerator.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIDetector.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterConstructor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomRotor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIBarcodeDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityLocationDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLStageInputOutputDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLVertexDescriptor.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/err.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/attr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/xattr.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFontMetrics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/ImageIO.framework/Headers/CGImageProperties.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/times.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImageDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKitDefines.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/MacTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/IOSurface.framework/Headers/IOSurfaceTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/SFNTLayoutTypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/std_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/if_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/nl_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/exception_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/gltypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTStringAttributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/cdefs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/statvfs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xattr_flags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/eflags.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/secure/_strings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserNotificationSettings.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/paths.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread_spis.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/TargetConditionals.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/UIKitOverlayShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIFilterBuiltins.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/NSString+UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UINibDeclarations.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderActions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccessRestrictions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UNNotificationResponse+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSIndexPath+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSItemProvider+UIKitAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityAdditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneActivationConditions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneDefinitions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UISceneOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/termios.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/pthread/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/qos.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ConditionalMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AssertMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_traps.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ifaddrs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITimingParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreviewParameters.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontManagerErrors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mig_errors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDataDetectors.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLRenderPass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGraphicsRendererSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGestureRecognizerSubclass.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGuidedAccess.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFontTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInputTraits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_limits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/syslimits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sysexits.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityConstants.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocus.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_status.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextDragURLPreviews.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLPixelFormat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/float.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/stat.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_act.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMotionEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBlurEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVibrancyEffect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dispatch/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/object.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_select.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_inspect.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderMaterializedSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/ShareSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActionSheet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/socket.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/arpa/inet.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/lock_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/processor_set.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSDataAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageAsset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/wait.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/bsm/audit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ulimit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_init.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityElement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSTextAttachment.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIManagedDocument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLArgument.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/dirent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationContent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPressesEvent.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/event.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFocusMovementHint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/stdint.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CTFont.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/mount.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_reboot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/vm_prot.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/getopt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/assert.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_port.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverSupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderRequest.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/mach_host.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCompositionalLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewTransitionLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewFlowLayout.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextInput.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES1/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES2/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/ES3/glext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIOpenURLContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/i386/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/machine/_mcontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenu.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/net/net_kev.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_priv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/fenv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/iconv.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWebView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverBackgroundView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImageView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIPickerView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewHeaderFooterView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivityIndicatorView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIProgressView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIVisualEffectView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAlertView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIInputView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITextView.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITargetedDragPreview.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSShadow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/ftw.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_regex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/complex.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/utmpx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/lctx.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/sync_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/thread_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/task_policy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_notify.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/clock_reply.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLLibrary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/FileProvider.framework/Headers/NSFileProviderSearchQuery.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIContentSizeCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UNNotificationCategory.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIGeometry.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLESAvailability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/os/availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/mach/host_security.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Users/alkeshfudani/SpaceMonitoring/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode11.2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/usr/include/Darwin.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode11.2.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.2.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
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.sdl.macinit.NSString; version(DigitalMars) version(OSX) version = darwin; version (darwin): version (Tango) { import tango.text.convert.Utf : toString16; import tango.stdc.stringz : toString16z; } else import std.utf : toUTF16z; import derelict.sdl.macinit.ID; import derelict.sdl.macinit.NSGeometry; import derelict.sdl.macinit.NSObject; import derelict.sdl.macinit.NSZone; import derelict.sdl.macinit.runtime; import derelict.sdl.macinit.selectors; import derelict.sdl.macinit.string; import derelict.util.compat; package: class NSString : NSObject { this () { id_ = null; } this (id id_) { this.id_ = id_; } static NSString alloc () { id result = objc_msgSend(cast(id)class_, sel_alloc); return result ? new NSString(result) : null; } static Class class_ () { return cast(Class) objc_getClass!(this.stringof); } override NSString init () { id result = objc_msgSend(this.id_, sel_init); return result ? this : null; } static NSString stringWith (string str) { version (Tango) id result = objc_msgSend(class_NSString, sel_stringWithCharacters_length, toString16z(str.toString16()), str.length); else id result = objc_msgSend(class_NSString, sel_stringWithCharacters_length, str.toUTF16z(), str.length); return result !is null ? new NSString(result) : null; } static NSString opAssign (string str) { return stringWith(str); } NSUInteger length () { return cast(NSUInteger) objc_msgSend(this.id_, sel_length); } /*const*/ char* UTF8String () { return cast(/*const*/ char*) objc_msgSend(this.id_, sel_UTF8String); } void getCharacters (wchar* buffer, NSRange range) { objc_msgSend(this.id_, sel_getCharacters_range, buffer, range); } NSString stringWithCharacters (/*const*/ wchar* chars, NSUInteger length) { id result = objc_msgSend(this.id_, sel_stringWithCharacters_length, chars, length); return result ? new NSString(result) : null; } NSRange rangeOfString (NSString aString) { return *cast(NSRange*) objc_msgSend(this.id_, sel_rangeOfString, aString ? aString.id_ : null); } NSString stringByAppendingString (NSString aString) { id result = objc_msgSend(this.id_, sel_stringByAppendingString, aString ? aString.id_ : null); return result ? new NSString(result) : null; } NSString stringByReplacingRange (NSRange aRange, NSString str) { size_t bufferSize; size_t selfLen = this.length; size_t aStringLen = str.length; wchar* buffer; NSRange localRange; NSString result; bufferSize = selfLen + aStringLen - aRange.length; buffer = cast(wchar*)NSAllocateMemoryPages(cast(uint)(bufferSize * wchar.sizeof)); /* Get first part into buffer */ localRange.location = 0; localRange.length = aRange.location; this.getCharacters(buffer, localRange); /* Get middle part into buffer */ localRange.location = 0; localRange.length = aStringLen; str.getCharacters(buffer + aRange.location, localRange); /* Get last part into buffer */ localRange.location = aRange.location + aRange.length; localRange.length = selfLen - localRange.location; this.getCharacters(buffer + aRange.location + aStringLen, localRange); /* Build output string */ result = NSString.stringWithCharacters(buffer, cast(uint)(bufferSize)); NSDeallocateMemoryPages(buffer, cast(uint)(bufferSize)); return result; } }
D
/home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_comm/target/debug/deps/rust_blocking_queue-e21ac01fa8400aa6.rmeta: /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_blocking_queue/src/lib.rs /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_comm/target/debug/deps/librust_blocking_queue-e21ac01fa8400aa6.rlib: /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_blocking_queue/src/lib.rs /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_comm/target/debug/deps/rust_blocking_queue-e21ac01fa8400aa6.d: /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_blocking_queue/src/lib.rs /home/mcorley/Desktop/comm_compare/RustCommCompare/RustComm_FixedSizeMsg/rust_blocking_queue/src/lib.rs:
D
module auth.AuthDtos; import vibe.data.json; import vibe.vibe; class LoginResponseDto { string accessToken; long id; string firstName; string lastName; this(string accessToken, long id, string firstName, string lastName) { this.id = id; this.accessToken = accessToken; this.firstName = firstName; this.lastName = lastName; } } class LoginRequestDto { string accessToken; this(Json body) { if (body["accessToken"].type == Json.Type.string) { this.accessToken = body["accessToken"].to!string; } else { throw new HTTPStatusException(HTTPStatus.BadRequest, "\"accessToken\" missing"); } } }
D
import arrays; import kernel; import std.conv: to; import std.meta: AliasSeq; import std.algorithm : sum; import std.stdio: File, writeln; import std.typecons: tuple, Tuple; import std.datetime.stopwatch: AutoStart, StopWatch; /** To compile: ldc2 script.d kernel.d math.d arrays.d -O --boundscheck=off --ffast-math -mcpu=native /usr/bin/time -v ./script ldc2 --mcpu=help ldc2 script.d kernel.d math.d arrays.d -O --boundscheck=off --ffast-math --mcpu=core-avx2 -mattr=+avx2,+sse4.1,+sse4.2 /usr/bin/time -v ./script */ auto bench(alias K, T)(K!T kernel, long[] n) { auto times = new double[n.length]; auto sw = StopWatch(AutoStart.no); foreach(i; 0..n.length) { double[3] _times; auto data = createRandomMatrix!T(784L, n[i]); foreach(ref t; _times[]) { sw.start(); auto mat = calculateKernelMatrix!(K!T, T)(kernel, data); sw.stop(); t = sw.peek.total!"nsecs"/1000_000_000.0; sw.reset(); } times[i] = sum(_times[])/3.0; version(verbose) { writeln("Average time for n = ", n[i], ", ", times[i], " seconds."); writeln("Detailed times: ", _times, "\n"); } } return tuple(n, times); } auto runKernelBenchmark(KS)(KS kernels, long[] n) { auto tmp = bench(kernels[0], n); alias R = typeof(tmp); R[kernels.length] results; results[0] = tmp; static foreach(i; 1..kernels.length) { version(verbose) { writeln("Running benchmarks for ", kernels[i]); } results[i] = bench(kernels[i], n); } return results; } void writeRow(File file, string[] row) { string line = ""; foreach(i; 0..(row.length - 1)) line ~= row[i] ~ ","; line ~= row[row.length - 1] ~ "\n"; file.write(line); return; } void runAllKernelBenchmarks(T = float)() { auto kernels = tuple(DotProduct!(T)(), Gaussian!(T)(1), Polynomial!(T)(2.5f, 1), Exponential!(T)(1), Log!(T)(3), Cauchy!(T)(1), Power!(T)(2.5f), Wave!(T)(1), Sigmoid!(T)(1, 1)); auto kernelNames = ["DotProduct", "Gaussian", "Polynomial", "Exponential", "Log", "Cauchy", "Power", "Wave", "Sigmoid"]; //long[] n = [100L, 500L, 1000L]; long[] n = [1000L, 5000L, 10_000L, 20_000L, 30_000L]; auto results = runKernelBenchmark(kernels, n); auto table = new string[][] (n.length * kernels.length + 1, 4); table[0][] = ["language", "kernel", "nitems", "time"]; auto tmp = ["D", "", "", ""]; while(true) { auto k = 1; foreach(i; 0..kernels.length) { tmp = ["D", kernelNames[i], "", ""]; foreach(j; 0..n.length) { tmp[2] = to!(string)(results[i][0][j]); tmp[3] = to!(string)(results[i][1][j]); table[k][] = tmp.dup; k += 1; } } if(k > (table.length - 1)) { break; } } version(fastmath) { auto file = File("../fmdata/dBench.csv", "w"); }else{ auto file = File("../data/dBench.csv", "w"); } foreach(row; table) file.writeRow(row); } void main() { runAllKernelBenchmarks(); }
D
// Written in the D programming language /** * A D programming language implementation of the * General Decimal Arithmetic Specification, * Version 1.70, (25 March 2009). * http://www.speleotrove.com/decimal/decarith.pdf) * * Copyright Paul D. Anderson 2009 - 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) **/ module decimal.context; import std.bigint; import decimal.arithmetic: compare, copyNegate, equals; import decimal.conv; import decimal.bigfloat; import xint; unittest { import std.stdio; writeln("==================="); writeln("context.......begin"); writeln("==================="); } //-------------------------- // Pre-defined decimal contexts //-------------------------- /// The context used in examples of operations in the specification. static DecimalContext testContext = DecimalContext(9, 99, Rounding.HALF_EVEN); /// The basic default context. In addition the inexact, rounded and subnormal /// trap-enablers should set to 0; all others should be set to 1 (that is, /// the other conditions are treated as errors) /// General Decimal Arithmetic Specification, p. 16. immutable static DecimalContext BASIC_CONTEXT = DecimalContext(9, 999, Rounding.HALF_UP); /// An extended default context. No trap-enablers should be set. immutable static DecimalContext EXTENDED_CONTEXT = DecimalContext(999, 9999, Rounding.HALF_EVEN); //-------------------------- // DecimalContext struct //-------------------------- /// The available rounding modes. For cumulative operations use the /// HALF_EVEN mode to prevent accumulation of errors. Otherwise the /// HALF_UP and HALF_DOWN modes are satisfactory. The UP, DOWN, FLOOR, /// and CEILING modes are also useful for some operations. /// General Decimal Arithmetic Specification, p. 13-14. public enum Rounding { HALF_EVEN, HALF_DOWN, HALF_UP, DOWN, UP, FLOOR, CEILING, } /// The available flags and trap-enablers. /// The larger value have higher precedence. /// If more than one flag is set by an operation and traps are enabled, /// the flag with higher precedence will throw its exception. /// General Decimal Arithmetic Specification, p. 15. public enum : ubyte { INVALID_OPERATION = 0x80, DIVISION_BY_ZERO = 0x40, OVERFLOW = 0x20, SUBNORMAL = 0x10, INEXACT = 0x08, ROUNDED = 0x04, UNDERFLOW = 0x02, CLAMPED = 0x01 } /// Arithmetic context for decimal operations. /// "The user-selectable parameters and rules /// which govern the results of arithmetic operations", /// General Decimal Arithmetic Specification, p. 13-14. public struct DecimalContext { /// Maximum length of the coefficient in decimal digits. public uint precision; /// Maximum value of the adjusted exponent. public int maxExpo; /// Rounding mode. public Rounding rounding; /// Smallest normalized exponent. @property public const int minExpo() { return 1 - maxExpo; } /// Smallest non-normalized exponent. @property public const int tinyExpo() { return 2 - maxExpo - precision; } /* @property public uint precision() { return precision; }*/ /// Returns a copy of the context with a new precision. public const DecimalContext setPrecision(immutable uint precision) { return DecimalContext(precision, this.maxExpo, this.rounding); } /// Returns a copy of the context with a new maximum exponent. public const DecimalContext setMaxExponent(immutable int maxExpo) { return DecimalContext(this.precision, maxExpo, this.rounding); } /// Returns a copy of the context with a new rounding mode. public const DecimalContext setRounding(immutable Rounding rounding) { return DecimalContext(this.precision, this.maxExpo, rounding); } // (X)TODO: is there a way to make this const w/in a context? // (X)TODO: This is only used by Decimal -- maybe should move it there? // (X)TODO: The mantissa is 10^^(precision - 1), so probably don't need // to implement as a string. // Returns the maximum representable normal value in the current context. const string maxString() { string cstr = "9." ~ std.array.replicate("9", precision - 1) ~ "E" ~ std.string.format("%d", maxExpo); return cstr; } } // end struct DecimalContext /// "The exceptional conditions are grouped into signals, /// which can be controlled individually. /// The context contains a flag (which is either 0 or 1) /// and a trap-enabler (which also is either 0 or 1) for each signal. /// For each of the signals, the corresponding flag is /// set to 1 when the signal occurs. /// It is only reset to 0 by explicit user action." /// General Decimal Arithmetic Specification, p. 15. public struct ContextFlags { private static ubyte flags; private static ubyte traps; /// Sets or resets the specified context flag(s). void setFlags(const ubyte flags, const bool value = true) { if (value) { ubyte saved = this.flags; this.flags |= flags; ubyte changed = saved ^ flags; checkFlags(changed); // (X)TODO: if this flag is trapped an exception should be thrown. } else { this.flags &= !flags; } } // Checks the state of the flags. If a flag is set and its // trap-enabler is set, an exception is thrown. void checkFlags(const ubyte flags) { if (flags & INVALID_OPERATION && traps & INVALID_OPERATION) { throw new InvalidOperationException("INVALID_OPERATION"); } if (flags & DIVISION_BY_ZERO && traps & DIVISION_BY_ZERO) { throw new DivByZeroException("DIVISION_BY_ZERO"); } if (flags & OVERFLOW && traps & OVERFLOW) { throw new OverflowException("OVERFLOW"); } if (flags & SUBNORMAL && traps & SUBNORMAL) { throw new SubnormalException("SUBNORMAL"); } if (flags & INEXACT && traps & INEXACT) { throw new InexactException("INEXACT"); } if (flags & ROUNDED && traps & ROUNDED) { throw new RoundedException("ROUNDED"); } if (flags & UNDERFLOW && traps & UNDERFLOW) { throw new UnderflowException("UNDERFLOW"); } if (flags & CLAMPED && traps & CLAMPED) { throw new ClampedException("CLAMPED"); } } /// Gets the value of the specified context flag. bool getFlag(const ubyte flag) { return (this.flags & flag) == flag; } /// Returns a snapshot of the context flags. ubyte getFlags() { return flags; } /// Clears all the context flags. void clearFlags() { flags = 0; } /// Sets or resets the specified trap(s). void setTrap(const ubyte traps, const bool value = true) { if (value) { this.traps |= traps; } else { this.traps &= !traps; } } /// Returns the value of the specified trap. bool getTrap(const ubyte trap) { return (this.traps & trap) == trap; } /// Returns a snapshot of traps. public ubyte getTraps() { return traps; } /// Clears all the traps. void clearTraps() { traps = 0; } }; // this is the single instance of the context flags static ContextFlags contextFlags; private const uint128 TEN128 = uint128(10); /*private const uint128 THOU128 = TEN128^^3; private const uint128 MILL128 = THOU128^^3; private const uint128 BILL128 = MILL128^^3; private const uint128 TRIL128 = BILL128^^3; private const uint128 QUAD128 = TRIL128^^3; private const uint128 QUINT128 = QUAD128^^3; private const uint128 FIVE128 = uint128(5);*/ /// Rounds the referenced number using the precision and rounding mode of /// the context parameter. /// Flags: SUBNORMAL, CLAMPED, OVERFLOW, INEXACT, ROUNDED. public T roundToPrecision(T)(const T num, const DecimalContext context = T.context, const bool setFlags = true) if (isDecimal!T) { T result = num.dup; // special values aren't rounded if (!num.isFinite) return result; // zero values aren't rounded, but they are checked for // subnormal and out of range exponents. if (num.isZero) { if (num.exponent < context.minExpo) { contextFlags.setFlags(SUBNORMAL); if (num.exponent < context.tinyExpo) { int temp = context.tinyExpo; result.exponent = context.tinyExpo; } } return result; } // handle subnormal numbers if (num.isSubnormal(context)) { if (setFlags) contextFlags.setFlags(SUBNORMAL); int diff = context.minExpo - result.adjustedExponent; // decrease the precision and round int precision = context.precision - diff; if (result.digits > precision) { auto ctx = Decimal.setPrecision(precision); roundByMode(result, ctx); } // if the result of rounding a subnormal is zero // the clamped flag is set. (Spec. p. 51) if (result.isZero) { result.exponent = context.tinyExpo; if (setFlags) contextFlags.setFlags(CLAMPED); } return result; } // check for overflow if (overflow(result, context)) return result; // round the number roundByMode(result, context); // check again for an overflow overflow(result, context); return result; } // end roundToPrecision() unittest { // roundToPrecision import decimal.dec32; Decimal before = Decimal(9999); Decimal after = before; DecimalContext ctx3 = DecimalContext(3, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx3); assert("1.00E+4" == after.toString); before = Decimal(1234567890); after = before; after = roundToPrecision(after, ctx3); assert(after.toString == "1.23E+9"); after = before; DecimalContext ctx4 = DecimalContext(4, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx4); assert(after.toString == "1.235E+9"); after = before; DecimalContext ctx5 = DecimalContext(5, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx5); assert(after.toString == "1.2346E+9"); after = before; DecimalContext ctx6 = DecimalContext(6, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx6); assert(after.toString == "1.23457E+9"); after = before; DecimalContext ctx7 = DecimalContext(7, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx7); assert(after.toString == "1.234568E+9"); after = before; DecimalContext ctx8 = DecimalContext(8, 99, Rounding.HALF_EVEN); after = roundToPrecision(after, ctx8); assert(after.toString == "1.2345679E+9"); before = 1235; after = before; after = roundToPrecision(after, ctx3); assert("[0,124,1]" == after.toAbstract()); before = 12359; after = before; after = roundToPrecision(after, ctx3); assert("[0,124,2]" == after.toAbstract()); before = 1245; after = before; after = roundToPrecision(after, ctx3); assert("[0,124,1]" == after.toAbstract()); before = 12459; after = before; after = roundToPrecision(after, ctx3); assert(after.toAbstract() == "[0,125,2]"); Dec32 a = Dec32(0.1); Dec32 b = Dec32.min * Dec32(8888888); assert("[0,8888888,-101]" == b.toAbstract); Dec32 c = a * b; assert("[0,888889,-101]" == c.toAbstract); Dec32 d = a * c; assert("[0,88889,-101]" == d.toAbstract); Dec32 e = a * d; assert("[0,8889,-101]" == e.toAbstract); Dec32 f = a * e; assert("[0,889,-101]" == f.toAbstract); Dec32 g = a * f; assert("[0,89,-101]" == g.toAbstract); Dec32 h = a * g; assert("[0,9,-101]" == h.toAbstract); Dec32 i = a * h; assert("[0,1,-101]" == i.toAbstract); } //-------------------------------- // private methods //-------------------------------- /// Returns true if the number overflows and adjusts the number /// according to the rounding mode. /// Implements the 'overflow' processing in the specification. (p. 53) /// Flags: OVERFLOW, ROUNDED, INEXACT. private bool overflow(T)(ref T num, const DecimalContext context = T.context) if (isDecimal!T) { if (num.adjustedExponent <= context.maxExpo) return false; switch (context.rounding) { case Rounding.HALF_UP: case Rounding.HALF_EVEN: case Rounding.HALF_DOWN: case Rounding.UP: num = T.infinity(num.sign); break; case Rounding.DOWN: num = T.max(num.sign); break; case Rounding.CEILING: num = num.sign ? T.max(true) : T.infinity; break; case Rounding.FLOOR: num = num.sign ? T.infinity(true) : T.max; break; default: break; } contextFlags.setFlags(OVERFLOW | INEXACT | ROUNDED); return true; } private bool halfRounding(DecimalContext context) { return (context.rounding == Rounding.HALF_EVEN || context.rounding == Rounding.HALF_UP || context.rounding == Rounding.HALF_DOWN); } /// Rounds the number to the context precision. /// The number is rounded using the context rounding mode. private void roundByMode(T)(ref T num, const DecimalContext context = T.context) if (isDecimal!T) { int dig = num.digits; T save = num.dup; // calculate remainder T remainder = getRemainder(num, context); // if the number wasn't rounded, return if (remainder.isZero) { return; } // check for deleted leading zeros in the remainder. // makes a difference only in round-half modes. if (halfRounding(context) && numDigits(remainder.coefficient) != remainder.digits) { return; } // // check for deleted leading zeros in the remainder. // bool leadingZeros = numDigits(remainder.coefficient) != remainder.digits; switch (context.rounding) { case Rounding.UP: incrementAndRound(num); return; case Rounding.DOWN: return; case Rounding.CEILING: if (!num.sign) { incrementAndRound(num); } return; case Rounding.FLOOR: if (num.sign) { incrementAndRound(num); } return; case Rounding.HALF_UP: // if (leadingZeros) return; if (firstDigit(remainder.coefficient) >= 5) { incrementAndRound(num); } return; case Rounding.HALF_DOWN: // if (leadingZeros) return; if (testFive(remainder.coefficient) > 0) { incrementAndRound(num); } return; case Rounding.HALF_EVEN: // if (leadingZeros) return; switch (testFive(remainder.coefficient)) { case -1: break; case 1: incrementAndRound(num); break; default: if (lastDigit(num.coefficient) & 1) { incrementAndRound(num); } break; } return; default: return; } // end switch(mode) } // end roundByMode() unittest { // roundByMode DecimalContext ctxHE = DecimalContext(5, 99, Rounding.HALF_EVEN); Decimal num; num = 1000; roundByMode(num, ctxHE); assert(num.coefficient == 1000 && num.exponent == 0 && num.digits == 4); num = 1000000; roundByMode(num, ctxHE); assert(num.coefficient == 10000 && num.exponent == 2 && num.digits == 5); num = 99999; roundByMode(num, ctxHE); assert(num.coefficient == 99999 && num.exponent == 0 && num.digits == 5); num = 1234550; roundByMode(num, ctxHE); assert(num.coefficient == 12346 && num.exponent == 2 && num.digits == 5); DecimalContext ctxDN = ctxHE.setRounding(Rounding.DOWN); num = 1234550; roundByMode(num, ctxDN); assert(num.coefficient == 12345 && num.exponent == 2 && num.digits == 5); DecimalContext ctxUP = ctxHE.setRounding(Rounding.UP); num = 1234550; roundByMode(num, ctxUP); assert(num.coefficient == 12346 && num.exponent == 2 && num.digits == 5); } /// Shortens the coefficient of the number to the context precision, /// adjusts the exponent, and returns the (unsigned) remainder. /// If the number is already less than or equal to the precision, the /// number is unchanged and the remainder is zero. /// Otherwise the rounded flag is set, and if the remainder is not zero /// the inexact flag is also set. /// Flags: ROUNDED, INEXACT. private T getRemainder(T) (ref T num, const DecimalContext context = T.context) if (isDecimal!T) { T remainder = T.zero; int diff = num.digits - context.precision; if (diff <= 0) { return remainder; } contextFlags.setFlags(ROUNDED); auto divisor = T.pow10(diff); auto dividend = num.coefficient; auto quotient = dividend/divisor; auto mant = dividend - quotient*divisor; if (mant != 0) { remainder.zero; remainder.digits = diff; remainder.exponent = num.exponent; remainder.coefficient = mant; contextFlags.setFlags(INEXACT); } num.coefficient = quotient; num.digits = context.precision; num.exponent = num.exponent + diff; return remainder; } unittest { // getRemainder DecimalContext ctx5 = testContext.setPrecision(5); Decimal num, acrem, exnum, exrem; num = Decimal(1234567890123456L); acrem = getRemainder(num, ctx5); exnum = Decimal("1.2345E+15"); assert(num == exnum); exrem = 67890123456; assert(acrem == exrem); } /// Increments the coefficient by 1. If this causes an overflow /// the coefficient is adjusted by clipping the last digit (it will be zero) /// and incrementing the exponent. private void incrementAndRound(T)(ref T num) if (isDecimal!T) { num.coefficient = num.coefficient + 1; int digits = num.digits; // if num was zero if (digits == 0) { num.digits = 1; } else if (lastDigit(num.coefficient) == 0) { if (num.coefficient / T.pow10(digits) > 0) { num.coefficient = num.coefficient / 10; num.exponent = num.exponent + 1; } } } unittest { // increment(Decimal) Decimal num, expect; num = 10; expect = 11; incrementAndRound(num); assert(num == expect); num = 19; expect = 20; incrementAndRound(num); assert(num == expect); num = 999; expect = 1000; incrementAndRound(num); assert(num == expect); } /// Returns -1, 0, or 1 if the remainder is less than, equal to, or more than /// half of the least significant digit of the shortened coefficient. /// Exactly half is a five followed by zero or more zero digits. public int testFive(const ulong n) { int digits = numDigits(n); int first = cast(int)(n / TENS[digits-1]); if (first < 5) return -1; if (first > 5) return +1; int zeros = cast(int)(n % TENS[digits-1]); return (zeros != 0) ? 1 : 0; } /// Returns -1, 1, or 0 if the remainder is less than, more than, /// or exactly half the least significant digit of the shortened coefficient. /// Exactly half is a five followed by zero or more zero digits. // TODO: calls firstDigit and then numDigits: combine these calls. public int testFive(const uint128 arg) { int first = firstDigit(arg); if (first < 5) return -1; if (first > 5) return +1; uint128 zeros = (arg % TEN128^^(numDigits(arg)-1)).toUint; return (zeros != 0) ? 1 : 0; } /// Returns -1, 1, or 0 if the remainder is less than, more than, /// or exactly half the least significant digit of the shortened coefficient. /// Exactly half is a five followed by zero or more zero digits. // TODO: calls firstDigit and then numDigits: combine these calls. public int testFive(const BigInt arg) { int first = firstDigit(arg); if (first < 5) return -1; if (first > 5) return +1; BigInt big = mutable(arg); BigInt zeros = big % BIG_TEN^^(numDigits(arg)-1); return (zeros != 0) ? 1 : 0; } unittest { // firstDigit(BigInt) BigInt big = BigInt("82345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678905"); assert(firstDigit(big) == 8); } /// Returns -1, 1, or 0 if the remainder is less than, more than, /// or exactly half the least significant digit of the shortened coefficient. /// Exactly half is a five followed by zero or more zero digits. /*public int testFive(const BigInt arg) { return testFive(bigToLong(arg)); }*/ unittest { // testFive assert( 0 == testFive(5000)); assert(-1 == testFive(4999)); assert( 1 == testFive(5001)); assert( 0 == testFive(BigInt("5000000000000000000000"))); assert(-1 == testFive(BigInt("4999999999999999999999"))); assert( 1 == testFive(BigInt("50000000000000000000000000000000000000000000000001"))); } /// Converts an integer to a decimal (coefficient and exponent) form. /// The input value is rounded to the context precision, /// the number of digits is adjusted, and the exponent is returned. public uint setExponent(const bool sign, ref ulong mant, ref uint digits, const DecimalContext context) { uint inDigits = digits; ulong remainder = clipRemainder(mant, digits, context.precision); int expo = inDigits - digits; // if the remainder is zero, return if (remainder == 0) { return expo; } /* // check for deleted leading zeros in the remainder. // makes a difference only in round-half modes. if (halfRounding(context) && numDigits(remainder.coefficient) != remainder.digits) { return; }*/ switch (context.rounding) { case Rounding.DOWN: break; case Rounding.HALF_UP: if (firstDigit(remainder) >= 5) { increment(mant, digits); } break; case Rounding.HALF_EVEN: int five = testFive(remainder); if (five > 0) { increment(mant, digits); break; } if (five < 0) { break; } // remainder == 5 // if last digit is odd... if (mant & 1) { increment(mant, digits); } break; case Rounding.CEILING: if (!sign) { increment(mant, digits); } break; case Rounding.FLOOR: if (sign) { increment(mant, digits); } break; case Rounding.HALF_DOWN: if (firstDigit(remainder) > 5) { increment(mant, digits); } break; case Rounding.UP: if (remainder != 0) { increment(mant, digits); } break; default: break; } // end switch(mode) // this can only be true if the number was all 9s and rolled over; // e.g., 999 + 1 = 1000. So clip a zero and increment the exponent. if (digits > context.precision) { mant /= 10; expo++; digits--; } return expo; } // end setExponent() unittest { // setExponent DecimalContext ctx = testContext.setPrecision(5); ulong num; uint digits; int expo; num = 1000; digits = numDigits(num); expo = setExponent(false, num, digits, ctx); assert(num == 1000 && expo == 0 && digits == 4); num = 1000000; digits = numDigits(num); expo = setExponent(false, num, digits, ctx); assert(num == 10000 && expo == 2 && digits == 5); num = 99999; digits = numDigits(num); expo = setExponent(false, num, digits, ctx); assert(num == 99999 && expo == 0 && digits == 5); } /// Converts an integer to a decimal (coefficient and exponent) form. /// The input value is rounded to the context precision, /// the number of digits is adjusted, and the exponent is returned. public uint setExponent(const bool sign, ref uint128 mant, ref uint digits, const DecimalContext context) { uint inDigits = digits; uint128 remainder = clipRemainder(mant, digits, context.precision); int expo = inDigits - digits; // if the remainder is zero, return if (remainder == 0) { return expo; } /* // check for deleted leading zeros in the remainder. // makes a difference only in round-half modes. if (halfRounding(context) && numDigits(remainder.coefficient) != remainder.digits) { return; }*/ switch (context.rounding) { case Rounding.DOWN: break; case Rounding.HALF_UP: if (firstDigit(remainder) >= 5) { increment(mant, digits); } break; case Rounding.HALF_EVEN: int five = testFive(remainder); if (five > 0) { increment(mant, digits); break; } if (five < 0) { break; } // remainder == 5 // if last digit is odd... if (isOdd(mant)) { increment(mant, digits); } break; case Rounding.CEILING: if (!sign) { increment(mant, digits); } break; case Rounding.FLOOR: if (sign) { increment(mant, digits); } break; case Rounding.HALF_DOWN: if (firstDigit(remainder) > 5) { increment(mant, digits); } break; case Rounding.UP: if (remainder != 0) { increment(mant, digits); } break; default: break; } // end switch(mode) // this can only be true if the number was all 9s and rolled over; // e.g., 999 + 1 = 1000. So clip a zero and increment the exponent. if (digits > context.precision) { mant = mant / 10; expo++; digits--; } return expo; } // end setExponent() /// Shortens the number to the specified precision and /// returns the (unsigned) remainder. /// Flags: ROUNDED, INEXACT. private ulong clipRemainder(ref ulong num, ref uint digits, uint precision) { ulong remainder = 0; int diff = digits - precision; // if diff is less than or equal to zero no rounding is required. if (diff <= 0) { return remainder; } // if (remainder != 0) {...} ? //contextFlags.setFlags(ROUNDED); if (precision == 0) { num = 0; } else { // can't overflow -- diff <= 19 ulong divisor = 10L^^diff; ulong dividend = num; ulong quotient = dividend / divisor; num = quotient; remainder = dividend - quotient*divisor; digits = precision; } return remainder; } unittest { // clipRemainder ulong num, acrem, exnum, exrem; uint digits, precision; num = 1234567890123456L; digits = 16; precision = 5; acrem = clipRemainder(num, digits, precision); exnum = 12345L; assert(num == exnum); exrem = 67890123456L; assert(acrem == exrem); num = 12345768901234567L; digits = 17; precision = 5; acrem = clipRemainder(num, digits, precision); exnum = 12345L; assert(num == exnum); exrem = 768901234567L; assert(acrem == exrem); num = 123456789012345678L; digits = 18; precision = 5; acrem = clipRemainder(num, digits, precision); exnum = 12345L; assert(num == exnum); exrem = 6789012345678L; assert(acrem == exrem); num = 1234567890123456789L; digits = 19; precision = 5; acrem = clipRemainder(num, digits, precision); exnum = 12345L; assert(num == exnum); exrem = 67890123456789L; assert(acrem == exrem); num = 1234567890123456789L; digits = 19; precision = 4; acrem = clipRemainder(num, digits, precision); exnum = 1234L; assert(num == exnum); exrem = 567890123456789L; assert(acrem == exrem); num = 9223372036854775807L; digits = 19; precision = 1; acrem = clipRemainder(num, digits, precision); exnum = 9L; assert(num == exnum); exrem = 223372036854775807L; assert(acrem == exrem); } /// Shortens the number to the specified precision and /// returns the (unsigned) remainder. /// Flags: ROUNDED, INEXACT. private uint128 clipRemainder(ref uint128 num, ref uint digits, uint precision) { uint128 remainder = 0; int diff = digits - precision; // if diff is less than or equal to zero no rounding is required. if (diff <= 0) { return remainder; } // if (remainder != 0) {...} ? //contextFlags.setFlags(ROUNDED); if (precision == 0) { num = 0; } else { // can't overflow -- diff <= 19 uint128 divisor = 10L^^diff; uint128 dividend = num; uint128 quotient = dividend / divisor; num = quotient; remainder = dividend - quotient*divisor; digits = precision; } return remainder; } /// Increments the number by 1. /// Re-calculates the number of digits -- the increment may have caused /// an increase in the number of digits, i.e., input number was all 9s. private void increment(T)(ref T num, ref uint digits) { num++; digits = numDigits(num); } //----------------------------- // useful constants //----------------------------- // BigInt has problems with const and immutable; these should be const values. // the best I can do is to make them private. private enum BigInt BIG_ZERO = BigInt(0); private enum BigInt BIG_ONE = BigInt(1); private enum BigInt BIG_FIVE = BigInt(5); private enum BigInt BIG_TEN = BigInt(10); private enum BigInt BILLION = BigInt(1_000_000_000); private enum BigInt QUINTILLION = BigInt(1_000_000_000_000_000_000); //private uint128 TEN128 = 10; //private uint128 QUINT128 = uint128.TEN^^18; //uint128(1_000_000_000_000_000_000); /// An array of unsigned long integers with values of /// powers of ten from 10^^0 to 10^^18 public static immutable ulong[19] TENS = [10L^^0, 10L^^1, 10L^^2, 10L^^3, 10L^^4, 10L^^5, 10L^^6, 10L^^7, 10L^^8, 10L^^9, 10L^^10, 10L^^11, 10L^^12, 10L^^13, 10L^^14, 10L^^15, 10L^^16, 10L^^17, 10L^^18]; /// An array of unsigned long integers with values of /// powers of five from 5^^0 to 5^^26 public static immutable ulong[27] FIVES = [5L^^0, 5L^^1, 5L^^2, 5L^^3, 5L^^4, 5L^^5, 5L^^6, 5L^^7, 5L^^8, 5L^^9, 5L^^10, 5L^^11, 5L^^12, 5L^^13, 5L^^14, 5L^^15, 5L^^16, 5L^^17, 5L^^18, 5L^^19, 5L^^20, 5L^^21, 5L^^22, 5L^^23, 5L^^24, 5L^^25, 5L^^26]; /// The maximum number of decimal digits that fit in an int value. public const int MAX_INT_DIGITS = 9; /// The maximum decimal value that fits in an int. public const uint MAX_DECIMAL_INT = 10U^^MAX_INT_DIGITS - 1; /// The maximum number of decimal digits that fit in a long value. public const int MAX_LONG_DIGITS = 18; /// The maximum decimal value that fits in a long. public const ulong MAX_DECIMAL_LONG = 10UL^^MAX_LONG_DIGITS - 1; //----------------------------- // decimal digit functions //----------------------------- /// Returns the number of digits in the argument. public int numDigits(const BigInt arg) { // special cases if (arg == 0) return 0; int count = 0; long n = bigToLong(arg, count); return count + numDigits(n); } unittest { // numDigits(BigInt) BigInt big = BigInt("12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678905"); assert(101 == numDigits(big)); } /// Returns the number of digits in the argument. public int numDigits(const uint128 arg) { // special cases if (arg == 0) return 0; if (arg < 10) return 1; // otherwise reduce until number fits into a long integer... int count = 0; uint128 num = arg; // TODO: why is this commented out? /* if (num > QUINT128) { num /= QUINT128; writefln("QUINT128 = %s", QUINT128); count += 18; }*/ /// ...and delegate result to long integer version long n = num.toUlong; //writefln("num = %s", num); //writefln("n = %s", n); return count + numDigits(n); } /// Returns the number of digits in the argument, /// where the argument is an unsigned long integer. public int numDigits(const ulong n) { // special cases: if (n == 0) return 0; if (n < 10) return 1; if (n >= TENS[18]) return 19; // use a binary search to count the digits int min = 2; int max = 18; while (min <= max) { int mid = (min + max)/2; if (n < TENS[mid]) { max = mid - 1; } else { min = mid + 1; } } return min; } unittest { // numDigits(ulong) ulong num, expect; uint digits; num = 10; expect = 11; digits = numDigits(num); increment(num, digits); assert(num == expect); assert(digits == 2); num = 19; expect = 20; digits = numDigits(num); increment(num, digits); assert(num == expect); assert(digits == 2); num = 999; expect = 1000; digits = numDigits(num); increment(num, digits); assert(num == expect); assert(digits == 4); } unittest { // numDigits long n; n = 7; int expect = 1; int actual = numDigits(n); assert(actual == expect); n = 13; expect = 2; actual = numDigits(n); assert(actual == expect); n = 999; expect = 3; actual = numDigits(n); assert(actual == expect); n = 9999; expect = 4; actual = numDigits(n); assert(actual == expect); n = 25987; expect = 5; actual = numDigits(n); assert(actual == expect); n = 2008617; expect = 7; actual = numDigits(n); assert(actual == expect); n = 1234567890; expect = 10; actual = numDigits(n); assert(actual == expect); n = 10000000000; expect = 11; actual = numDigits(n); assert(actual == expect); n = 123456789012345; expect = 15; actual = numDigits(n); assert(actual == expect); n = 1234567890123456; expect = 16; actual = numDigits(n); assert(actual == expect); n = 123456789012345678; expect = 18; actual = numDigits(n); assert(actual == expect); n = long.max; expect = 19; actual = numDigits(n); assert(actual == expect); } public ulong bigToLong(const BigInt arg) { BigInt big = mutable(arg); while (big > QUINTILLION) { big /= QUINTILLION; } return big.toLong; } public ulong bigToLong(const BigInt arg, out int count) { count = 0; BigInt big = mutable(arg); while (big > QUINTILLION) { big /= QUINTILLION; count += 18; } return big.toLong; } /// Returns the first digit of the argument. public int firstDigit(const BigInt arg) { return firstDigit(bigToLong(arg)); } /// Returns the first digit of the argument. public int firstDigit(const uint128 arg) { if (arg == 0) return 0; if (arg < 10) return arg.toUint(); uint128 n = arg; while (n > TEN128^^18) { n /= TEN128^^18; } return firstDigit(n.toUlong()); } /// Returns the first digit of the argument. public int firstDigit(const ulong n) { //, int maxValue = 19) { if (n == 0) return 0; if (n < 10) return cast(int) n; int d = numDigits(n); //, maxValue); return cast(int)(n/TENS[d-1]); } unittest { // firstDigit long n; n = 7; int expect, actual; expect = 7; actual = firstDigit(n); assert(actual == expect); n = 13; expect = 1; actual = firstDigit(n); assert(actual == expect); n = 999; expect = 9; actual = firstDigit(n); assert(actual == expect); n = 9999; expect = 9; actual = firstDigit(n); assert(actual == expect); n = 25987; expect = 2; actual = firstDigit(n); assert(actual == expect); n = 5008617; expect = 5; actual = firstDigit(n); assert(actual == expect); n = 3234567890; expect = 3; actual = firstDigit(n); assert(actual == expect); n = 10000000000; expect = 1; actual = firstDigit(n); assert(actual == expect); n = 823456789012345; expect = 8; actual = firstDigit(n); assert(actual == expect); n = 4234567890123456; expect = 4; actual = firstDigit(n); assert(actual == expect); n = 623456789012345678; expect = 6; actual = firstDigit(n); assert(actual == expect); n = long.max; expect = 9; actual = firstDigit(n); assert(actual == expect); } /// Shifts the number left by the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted right. public BigInt shiftLeft(BigInt num, const int n, const int precision) { if (n > 0) { BigInt fives = n < 27 ? BigInt(FIVES[n]) : BIG_FIVE^^n; num = num << n; num *= fives; } if (n < 0) { num = shiftRight(num, -n, precision); } return num; } /// Shifts the number left by the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted right. public BigInt shiftLeft(BigInt num, const int n) { return shiftLeft(num, n, int.max); // const int precision = int.max /* if (n > 0) { BigInt fives = n < 27 ? BigInt(FIVES[n]) : BIG_FIVE^^n; num = num << n; num *= fives; } if (n < 0) { num = shiftRight(num, -n, precision); } return num;*/ } unittest { // shiftLeft(BigInt) BigInt m; int n; m = 12345; n = 2; assert(shiftLeft(m, n, 100) == 1234500); m = 1234567890; n = 7; assert(shiftLeft(m, n, 100) == BigInt(12345678900000000)); m = 12; n = 2; assert(shiftLeft(m, n, 100) == 1200); m = 12; n = 4; assert(shiftLeft(m, n, 100) == 120000); uint k; k = 12345; n = 2; assert(1234500 == cast(uint)shiftLeft(k, n, 9)); k = 1234567890; n = 7; assert(900000000 == cast(uint)shiftLeft(k, n, 9)); k = 12; n = 2; assert(1200 == cast(uint)shiftLeft(k, n, 9)); k = 12; n = 4; assert(120000 == cast(uint)shiftLeft(k, n, 9)); } /// Shifts the number to the left by the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted to the right. public ulong shiftLeft(ulong num, const int n, const int precision = MAX_LONG_DIGITS) { if (n > precision) return 0; if (n > 0) { // may need to clip before shifting int m = numDigits(num); int diff = precision - m - n; if (diff < 0 ) { num %= cast(ulong)TENS[m + diff]; } ulong scale = cast(ulong)TENS[n]; num *= scale; } if (n < 0) { num = shiftRight(num, -n, precision); } return num; } /// Shifts the number left by the specified number of decimal digits. /// If n <= 0 the number is returned unchanged. /// If n < 0 the number is shifted to the right. public uint shiftLeft(uint num, const int n, int precision = MAX_INT_DIGITS) { if (n > precision) return 0; if (n > 0) { // may need to clip before shifting int m = numDigits(num); int diff = precision - m - n; if (diff < 0 ) { num %= cast(uint)TENS[m + diff]; } uint scale = cast(uint)TENS[n]; num *= scale; } if (n < 0) { num = shiftRight(num, -n, precision); } return num; } unittest { // shiftLeft long m; int n; m = 12345; n = 2; assert(shiftLeft(m,n) == 1234500); m = 1234567890; n = 7; assert(shiftLeft(m,n) == 12345678900000000); m = 12; n = 2; assert(shiftLeft(m,n) == 1200); m = 12; n = 4; assert(shiftLeft(m,n) == 120000); } /// Shifts the number right the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted left. public BigInt shiftRight(BigInt num, const int n, const int precision = Decimal.context.precision) { if (n > 0) { BigInt fives = n < 27 ? BigInt(FIVES[n]) : BIG_FIVE^^n; num = num >> n; num /= fives; } if (n < 0) { num = shiftLeft(num, -n, precision); } return num; } /// Shifts the number right the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted left. public ulong shiftRight(ulong num, int n, const int precision = MAX_LONG_DIGITS) { if (n > 0) { num /= TENS[n]; } if (n < 0) { num = shiftLeft(num, -n, precision); } return num; } // TODO: test these fctns /// Shifts the number right (truncates) the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is shifted left. public uint shiftRight(uint num, int n, const int precision = MAX_INT_DIGITS) { if (n > precision) return 0; if (n > 0) { num /= TENS[n]; } if (n < 0) { num = shiftLeft(num, -n, precision); } return num; } /// Rotates the number to the left by the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is rotated to the right. public ulong rotateLeft(ulong num, const int n, const int precision) { if (n > precision) return 0; if (n > 0) { int m = precision - n; ulong rem = num / TENS[m]; num %= TENS[m]; num *= TENS[n]; num += rem; } if (n < 0) { num = rotateRight(num, precision, -n); } return num; } unittest { writeln("rotateLeft..."); ulong num = 1234567; writeln("num = ", num); ulong rot = rotateLeft(num, 7, 2); writeln("rot = ", rot); writeln("test missing"); } /// Rotates the number to the right by the specified number of decimal digits. /// If n == 0 the number is returned unchanged. /// If n < 0 the number is rotated to the left. public ulong rotateRight(ulong num, const int n, const int precision) { if (n > precision) return 0; if (n == precision) return num; if (n > 0) { int m = precision - n; ulong rem = num / TENS[n]; num %= TENS[n]; num *= TENS[m]; num += rem; } if (n < 0) { num = rotateLeft(num, precision, -n); } return num; } unittest { writeln("rotateRight..."); ulong num = 1234567; writeln("num = ", num); ulong rot = rotateRight(num, 7, 2); writeln("rot = ", rot); rot = rotateRight(num, 9, 2); writeln("rot = ", rot); rot = rotateRight(num, 7, -2); writeln("rot = ", rot); rot = rotateRight(num, 7, 7); writeln("rot = ", rot); writeln("test missing"); } /// Returns the last digit of the argument. public uint lastDigit(const BigInt arg) { BigInt big = mutable(arg); BigInt digit = big % BigInt(10); if (digit < 0) digit = -digit; return cast(uint)digit.toInt; } unittest { // lastDigit(BigInt) BigInt n; n = 7; assert(lastDigit(n) == 7); n = -13; assert(lastDigit(n) == 3); n = 999; assert(lastDigit(n) == 9); n = -9999; assert(lastDigit(n) == 9); n = 25987; assert(lastDigit(n) == 7); n = -5008615; assert(lastDigit(n) == 5); n = 3234567893; assert(lastDigit(n) == 3); n = -10000000000; assert(lastDigit(n) == 0); n = 823456789012348; assert(lastDigit(n) == 8); n = 4234567890123456; assert(lastDigit(n) == 6); n = 623456789012345674; assert(lastDigit(n) == 4); n = long.max; assert(lastDigit(n) == 7); } /// Returns the last digit of the argument. public uint lastDigit(const uint128 arg) { return (abs(arg) % 10UL).toUint(); } /// Returns the last digit of the argument. public uint lastDigit(const long num) { return cast(uint)(std.math.abs(num) % 10UL); } unittest { // lastDigit(ulong) long n; n = 7; assert(lastDigit(n) == 7); n = -13; assert(lastDigit(n) == 3); n = 999; assert(lastDigit(n) == 9); n = -9999; assert(lastDigit(n) == 9); n = 25987; assert(lastDigit(n) == 7); n = -5008615; assert(lastDigit(n) == 5); n = 3234567893; assert(lastDigit(n) == 3); n = -10000000000; assert(lastDigit(n) == 0); n = 823456789012348; assert(lastDigit(n) == 8); n = 4234567890123456; assert(lastDigit(n) == 6); n = 623456789012345674; assert(lastDigit(n) == 4); n = long.max; assert(lastDigit(n) == 7); } /// Returns the number of trailing zeros in the argument. public int trailingZeros(const BigInt arg, const int digits) { BigInt n = mutable(arg); // shortcuts for frequent values if (n == 0) return 0; if (n % 10) return 0; if (n % 100) return 1; // find by binary search int min = 3; int max = digits - 1; while (min <= max) { int mid = (min + max)/2; if (n % tens(mid) != 0) { max = mid - 1; } else { min = mid + 1; } } return max; } /// Returns the number of trailing zeros in the argument. public int trailingZeros(const ulong n) { // shortcuts for frequent values if (n == 0) return 0; if (n % 10) return 0; if (n % 100) return 1; // find by binary search int min = 3; int max = 18; while (min <= max) { int mid = (min + max)/2; if (n % TENS[mid]) { max = mid - 1; } else { min = mid + 1; } } return max; } /// Trims any trailing zeros and returns the number of zeros trimmed. public int trimZeros(ref ulong n, const int dummy) { int zeros = trailingZeros(n); if (zeros == 0) return 0; n /= TENS[zeros]; return zeros; } /// Trims any trailing zeros and returns the number of zeros trimmed. public int trimZeros(ref BigInt n, const int digits) { int zeros = trailingZeros(n, digits); if (zeros == 0) return 0; n /= tens(zeros); return zeros; } /// Returns a BigInt value of ten raised to the specified power. public BigInt tens(const int n) { if (n < 19) return BigInt(TENS[n]); BigInt num = 1; return shiftLeft(num, n); } //----------------------------- // helper functions //----------------------------- /// Returns true if argument is odd. public bool isOdd(const ulong n) { return n & 1; } public bool isOdd(const uint128 n) { return n.isOdd; } /// Returns a mutable copy of a BigInt public BigInt mutable(const BigInt num) { BigInt big = cast(BigInt)num; return big; } /// Returns the absolute value of a BigInt public BigInt abs(const BigInt num) { BigInt big = mutable(num); return big < 0 ? -big : big; } /// Returns the absolute value of a uint128 public uint128 abs(const uint128 num) { uint128 copy = num.dup; return num < 0 ? -copy : copy; } //-------------------------- // Context flags and trap-enablers //-------------------------- /// The base class for all decimal arithmetic exceptions. class DecimalException: object.Exception { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when the exponent of a result has been altered or constrained /// in order to fit the constraints of a specific concrete representation. /// General Decimal Arithmetic Specification, p. 15. class ClampedException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a non-zero dividend is divided by zero. /// General Decimal Arithmetic Specification, p. 15. class DivByZeroException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a result is not exact (one or more non-zero coefficient /// digits were discarded during rounding). /// General Decimal Arithmetic Specification, p. 15. class InexactException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a result would be undefined or impossible. /// General Decimal Arithmetic Specification, p. 15. class InvalidOperationException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when the exponent of a result is too large to be represented. /// General Decimal Arithmetic Specification, p. 15. class OverflowException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a result has been rounded (that is, some zero or non-zero /// coefficient digits were discarded). /// General Decimal Arithmetic Specification, p. 15. class RoundedException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a result is subnormal (its adjusted exponent is less /// than the minimum exponent) before any rounding. /// General Decimal Arithmetic Specification, p. 15. class SubnormalException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; /// Raised when a result is both subnormal and inexact. /// General Decimal Arithmetic Specification, p. 15. class UnderflowException: DecimalException { this(string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null) { super(msg, file, line, next); } }; unittest { import std.stdio; writeln("==================="); writeln("context.........end"); writeln("==================="); }
D
import dumbplayer; import settings; import config; import std.stdio; import gstreamer.gstreamer; import gtk.Main; int main(string[] args) { if(args.length > 1 && (args[1] == "-h" || args[1] == "--help")) { writeln( "Usage: \n\t", args[0], " [OPTIONS] [PATH]...\n\n", "Avaliable options: \n", "\t-h, --help\t\tPrint this message", ); return 0; } Main.init(args); GStreamer.init(args); try { new DumbPlayer(args, CONFIG_SETTINGS); } catch(Exception ex){ stderr.writeln("ERROR: ", ex.msg); return 1; } Main.run(); return 0; }
D
// URL: https://yukicoder.me/problems/no/27 import std.algorithm, std.array, std.container, std.math, std.range, std.typecons, std.string; version(unittest) {} else void main() { auto nv = 4, no = 3; int[] V; io.getA(nv, V); V.sort; auto mv = V[$-1]; auto calc(int[] o) { auto dp = new int[][](no+1, mv+1); foreach (ref dpi; dp) dpi[] = mv; dp[0][0] = 0; foreach (i; 0..no) foreach (j; 0..mv+1) { if (dp[i][j] < 0) continue; foreach (k; 0..mv+1) { if (j-k*o[i] < 0) break; dp[i+1][j] = min(dp[i+1][j], dp[i][j-k*o[i]]+k); } } return V.map!(Vi => dp[no][Vi]).sum; } auto r = mv*4; foreach (A; 0..mv+1) foreach (B; A+1..mv+1) foreach (C; B+1..mv+1) r = min(r, calc([A, B, C])); io.put(r); } auto io = IO!()(); import lib.io;
D
// REQUIRED_ARGS: -w // PERMUTE_ARGS: extern(C) int printf(const char*, ...); /******************************************/ class F { } int foo() { scope F f = new F(); // comment out and warning goes away return 0; } /******************************************/ int foo2() { try { return 0; } finally { } } /******************************************/ private int getNthInt(A...)(uint index, A args) { foreach (i, arg; args) { static if (is(typeof(arg) : long) || is(typeof(arg) : ulong)) { if (i != index) continue; return cast(int)(arg); } else { if (i == index) break; } } throw new Error("int expected"); } /******************************************/ class Foo2 { int foo() { synchronized(this){ return 8; } } } /******************************************/ void mainX() { int i=0; printf("This number is zero: "); goto inloop; for(; i<10; i++) { // this is line 7 printf("This number is nonzero: "); inloop: printf("%d\n", i); } } /******************************************/ string foo3(int bar) { switch (bar) { case 1: return "1"; case 2: return "2"; default: return "3"; } } /******************************************/ int foo4() { int i; for (;; ++i) { if (i == 10) return 0; } } /******************************************/ int foo5() { do { if (false) return 1; } while (true); } /******************************************/ nothrow int foo6() { int x = 2; try { } catch(Exception e) { x = 4; throw new Exception("xxx"); } return x; } /******************************************/ // 6518 template TypeTuple(T...) { alias T TypeTuple; } void test6518() { switch(2) { foreach(v; TypeTuple!(1, 2, 3)) case v: break; default: assert(0); } } /******************************************/ // 7232 bool test7232() { scope(failure) return false; return true; } /***************************************************/ struct S9332 { this(S9332) { // while (1) { } assert(0, "unreachable?"); } } /******************************************/ // 13201 class C13201 { void foo() { synchronized(this) { assert(0); } } } void test13201a() { auto c = new C13201(); synchronized(c) { assert(0); } } void test13201b() { struct S { ~this() {} } S s; assert(0); } /******************************************/ void main() { }
D
/** * Copyright: Enalye * License: Zlib * Authors: Enalye */ module grimoire.stdlib.pair; import grimoire.compiler, grimoire.runtime; package(grimoire.stdlib) void grLoadStdLibPair(GrLibrary library) { library.addClass("Pair", ["first", "second"], [grAny("A"), grAny("B")], ["A", "B"]); }
D
/++ Data structures and functions for lexing a string into a stream of tokens, to simplify later parsing. +/ module phrased.expression.lexer; private { import std.conv: to; import phrased: PhrasedException, PhrasedRange; } /++ The string and character type used throughout this module. dstring/dchar are required by std.uni +/ alias string_t = dstring; alias char_t = dchar; ///ditto /++ The different types of tokens. +/ enum TokenType { WORD, ///A simple word CHOICE_START, ///The start of a choice expression ($(TT {)) CHOICE_END, ///The end of a choice expression ($(TT })) CHOICE_SEPARATOR, ///The separator between elements of a choice expression ($(TT |)) VARIABLE_START, ///The start of a variable expression ($(TT $(DOLLAR)) for simple ones and $(TT $(DOLLAR)$(LPAREN)) for complex ones) VARIABLE_END, ///The end of a variable expression (empty for simple ones, and $(TT $(RPAREN)) for complex ones) } /++ The exception thrown when lexical analysis fails. +/ class LexerException: PhrasedException { this(string msg) { super(msg); } } /++ Representation of a single token +/ struct Token { TokenType type; ///The type of the token string_t value = null; ///The value of the token, if applicable //TODO: line, column } /++ A container for data used during lexing. See $(SYMBOL_LINK lex) for the recommended way to use this. +/ struct ExpressionLexer { import std.uni: isWhite; private PhrasedRange!char_t data; private int variableLevel; private int choiceLevel; Token[] result; ///The resulting sequence of tokens from a successful lex alias result this; /++ Populate internal data structures and perform lexical analysis. +/ this(string_t expression) { data = PhrasedRange!char_t(expression.dup); while(!data.empty) lex; } private void add(ValueType)(TokenType type, ValueType value) { result ~= Token(type, value.to!string_t); } private void ensure_nonempty(string message) { if(data.empty) throw new LexerException(message); } private void lex() { switch(data.front) { case '\\': return lex_escape; case '$': return lex_variable; case '{': return lex_choice; case '(': return lex_symbol; case ')': if(variableLevel == 0) return lex_symbol; break; case '|': case '}': if(choiceLevel == 0) return lex_symbol; break; default: if(data.front.isWhite) return lex_whitespace; return lex_word; } } private void lex_escape() { data.popFront; ensure_nonempty("Unterminated escape"); add(TokenType.WORD, data.front); data.popFront; } private void lex_variable() { variableLevel++; data.popFront; ensure_nonempty("Unterminated variable"); if(data.front == '(') { data.popFront; ensure_nonempty("Unterminated variable"); add(TokenType.VARIABLE_START, "$("); lex_word(true); while(!data.empty && data.front != ')') lex; if(result[$ - 2].type == TokenType.VARIABLE_START && result[$ - 1].value == "") throw new LexerException("Malformed variable"); ensure_nonempty("Unterminated variable"); data.popFront; add(TokenType.VARIABLE_END, ")"); } else { add(TokenType.VARIABLE_START, "$"); lex_word(true); if(result[$ - 1].value == "") throw new LexerException("Malformed variable"); add(TokenType.VARIABLE_END, ""); } variableLevel--; } private void lex_choice() { choiceLevel++; data.popFront; ensure_nonempty("Unterminated choice"); add(TokenType.CHOICE_START, "{"); loop: while(!data.empty) { switch(data.front) { case '|': data.popFront; add(TokenType.CHOICE_SEPARATOR, "|"); goto default; case '}': data.popFront; add(TokenType.CHOICE_END, "}"); break loop; default: lex; } } choiceLevel--; } private void lex_whitespace(bool discard = false) { auto mark = data.save; while(!data.empty && data.front.isWhite) data.popFront; if(!discard) add(TokenType.WORD, data.slice(mark)); } private void lex_word(bool simple = false) { import std.uni: isAlpha; auto mark = data.save; bool delegate() test; if(simple) test = () => data.front.isAlpha; else test = () => !data.front.isWhite && !data.front.special; while(!data.empty && test()) data.popFront; add(TokenType.WORD, data.slice(mark)); } private void lex_symbol() { add(TokenType.WORD, data.front); data.popFront; } } /++ Shortcut to instantiate $(SYMBOL_LINK ExpressionLexer) and get the result. +/ Token[] lex(StringType)(StringType source) if(is(StringType == string) || is(StringType == wstring) || is(StringType == dstring)) { return ExpressionLexer(source.to!string_t).result; } //unittest helpers private void expect(string source, Token[] result) { import std.stdio: writeln; auto lexed = source.lex; bool success = lexed == result; if(!success) { writeln("Expression: ", source); writeln("Wanted result: ", result); writeln("Actual result: ", lexed); assert(false); } } private void expect_exception(string source) { try { source.lex; assert(false, "Expression \"" ~ source ~ "\" should have thrown an exception"); } catch(PhrasedException err) {} } unittest { with(TokenType) { //simple words " ".expect( [ Token(WORD, " "), ] ); "\\$".expect( [ Token(WORD, "$"), ] ); "|}".expect( [ Token(WORD, "|"), Token(WORD, "}"), ] ); "\\{|}".expect( [ Token(WORD, "{"), Token(WORD, "|"), Token(WORD, "}"), ] ); "\"\"".expect( [ Token(WORD, "\"\""), ] ); "abc".expect( [ Token(WORD, "abc"), ] ); "(abc)".expect( [ Token(WORD, "("), Token(WORD, "abc"), Token(WORD, ")"), ] ); "abc def".expect( [ Token(WORD, "abc"), Token(WORD, " "), Token(WORD, "def"), ] ); //variables "$abc".expect( [ Token(VARIABLE_START, "$"), Token(WORD, "abc"), Token(VARIABLE_END, ""), ] ); "$abc$def".expect( [ Token(VARIABLE_START, "$"), Token(WORD, "abc"), Token(VARIABLE_END, ""), Token(VARIABLE_START, "$"), Token(WORD, "def"), Token(VARIABLE_END, ""), ] ); "$(abc)$def".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(VARIABLE_END, ")"), Token(VARIABLE_START, "$"), Token(WORD, "def"), Token(VARIABLE_END, ""), ] ); "$abc$(def)".expect( [ Token(VARIABLE_START, "$"), Token(WORD, "abc"), Token(VARIABLE_END, ""), Token(VARIABLE_START, "$("), Token(WORD, "def"), Token(VARIABLE_END, ")"), ] ); "abc$(def)ghi".expect( [ Token(WORD, "abc"), Token(VARIABLE_START, "$("), Token(WORD, "def"), Token(VARIABLE_END, ")"), Token(WORD, "ghi"), ] ); "$abc!".expect( [ Token(VARIABLE_START, "$"), Token(WORD, "abc"), Token(VARIABLE_END, ""), Token(WORD, "!"), ] ); "$(abc)".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(VARIABLE_END, ")"), ] ); "$(abc!)".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, "!"), Token(VARIABLE_END, ")"), ] ); "$(abc )".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, " "), Token(VARIABLE_END, ")"), ] ); "$(abc def)".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, " "), Token(WORD, "def"), Token(VARIABLE_END, ")"), ] ); "$(abc $def)".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, " "), Token(VARIABLE_START, "$"), Token(WORD, "def"), Token(VARIABLE_END, ""), Token(VARIABLE_END, ")"), ] ); "$(abc $(def ghi))".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, " "), Token(VARIABLE_START, "$("), Token(WORD, "def"), Token(WORD, " "), Token(WORD, "ghi"), Token(VARIABLE_END, ")"), Token(VARIABLE_END, ")"), ] ); //choices "{}".expect( [ Token(CHOICE_START, "{"), Token(CHOICE_END, "}"), ] ); "abc{}def".expect( [ Token(WORD, "abc"), Token(CHOICE_START, "{"), Token(CHOICE_END, "}"), Token(WORD, "def"), ] ); "{abc|}".expect( [ Token(CHOICE_START, "{"), Token(WORD, "abc"), Token(CHOICE_SEPARATOR, "|"), Token(CHOICE_END, "}"), ] ); "{abc|def}".expect( [ Token(CHOICE_START, "{"), Token(WORD, "abc"), Token(CHOICE_SEPARATOR, "|"), Token(WORD, "def"), Token(CHOICE_END, "}"), ] ); "{1|{2|3}|4}".expect( [ Token(CHOICE_START, "{"), Token(WORD, "1"), Token(CHOICE_SEPARATOR, "|"), Token(CHOICE_START, "{"), Token(WORD, "2"), Token(CHOICE_SEPARATOR, "|"), Token(WORD, "3"), Token(CHOICE_END, "}"), Token(CHOICE_SEPARATOR, "|"), Token(WORD, "4"), Token(CHOICE_END, "}"), ] ); //nesting of variables and choices "$(abc {def|ghi})".expect( [ Token(VARIABLE_START, "$("), Token(WORD, "abc"), Token(WORD, " "), Token(CHOICE_START, "{"), Token(WORD, "def"), Token(CHOICE_SEPARATOR, "|"), Token(WORD, "ghi"), Token(CHOICE_END, "}"), Token(VARIABLE_END, ")"), ] ); "{abc|$def}".expect( [ Token(CHOICE_START, "{"), Token(WORD, "abc"), Token(CHOICE_SEPARATOR, "|"), Token(VARIABLE_START, "$"), Token(WORD, "def"), Token(VARIABLE_END, ""), Token(CHOICE_END, "}"), ] ); "{abc|$(def ghi)}".expect( [ Token(CHOICE_START, "{"), Token(WORD, "abc"), Token(CHOICE_SEPARATOR, "|"), Token(VARIABLE_START, "$("), Token(WORD, "def"), Token(WORD, " "), Token(WORD, "ghi"), Token(VARIABLE_END, ")"), Token(CHOICE_END, "}"), ] ); //expected failures "\\".expect_exception; "$".expect_exception; "($)".expect_exception; "{".expect_exception; "{|".expect_exception; } } private bool special(char_t chr) pure { static immutable char_t[] specialCharacters = [ '\\', '$', '(', ')', '{', '|', '}', ]; foreach(special; specialCharacters) if(chr == special) return true; return false; }
D
/** * Defines the help texts for the CLI options offered by DMD. * * This file is not shared with other compilers which use the DMD front-end. * However, this file will be used to generate the * $(LINK2 https://dlang.org/dmd-linux.html, online documentation) and MAN pages. * * Copyright: Copyright (C) 1999-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/cli.d, _cli.d) * Documentation: https://dlang.org/phobos/dmd_cli.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/cli.d */ module dmd.cli; /// Bit decoding of the TargetOS enum TargetOS { all = int.max, linux = 1, windows = 2, macOS = 4, freeBSD = 8, solaris = 16, dragonFlyBSD = 32, } // Detect the current TargetOS version (linux) { private enum targetOS = TargetOS.linux; } else version(Windows) { private enum targetOS = TargetOS.windows; } else version(OSX) { private enum targetOS = TargetOS.macOS; } else version(FreeBSD) { private enum targetOS = TargetOS.freeBSD; } else version(DragonFlyBSD) { private enum targetOS = TargetOS.dragonFlyBSD; } else version(Solaris) { private enum targetOS = TargetOS.solaris; } else { private enum targetOS = TargetOS.all; } /** Checks whether `os` is the current $(LREF TargetOS). For `TargetOS.all` it will always return true. Params: os = $(LREF TargetOS) to check Returns: true iff `os` contains the current targetOS. */ bool isCurrentTargetOS(TargetOS os) { return (os & targetOS) > 0; } /** Capitalize a the first character of a ASCII string. Params: w = ASCII i string to capitalize Returns: capitalized string */ static string capitalize(string w) { char[] result = cast(char[]) w; char c1 = w.length ? w[0] : '\0'; if (c1 >= 'a' && c1 <= 'z') { enum adjustment = 'A' - 'a'; result = new char[] (w.length); result[0] = cast(char) (c1 + adjustment); result[1 .. $] = w[1 .. $]; } return cast(string) result; } /** Contains all available CLI $(LREF Usage.Option)s. See_Also: $(LREF Usage.Option) */ struct Usage { /** * Representation of a CLI `Option` * * The DDoc description `ddoxText` is only available when compiled with `-version=DdocOptions`. */ struct Option { string flag; /// The CLI flag without leading `-`, e.g. `color` string helpText; /// A detailed description of the flag TargetOS os = TargetOS.all; /// For which `TargetOS` the flags are applicable // Needs to be version-ed to prevent the text ending up in the binary // See also: https://issues.dlang.org/show_bug.cgi?id=18238 version(DdocOptions) string ddocText; /// Detailed description of the flag (in Ddoc) /** * Params: * flag = CLI flag without leading `-`, e.g. `color` * helpText = detailed description of the flag * os = for which `TargetOS` the flags are applicable * ddocText = detailed description of the flag (in Ddoc) */ this(string flag, string helpText, TargetOS os = TargetOS.all) { this.flag = flag; this.helpText = helpText; version(DdocOptions) this.ddocText = helpText; this.os = os; } /// ditto this(string flag, string helpText, string ddocText, TargetOS os = TargetOS.all) { this.flag = flag; this.helpText = helpText; version(DdocOptions) this.ddocText = ddocText; this.os = os; } } /// Returns all available CLI options static immutable options = [ Option("allinst", "generate code for all template instantiations" ), Option("betterC", "omit generating some runtime information and helper functions", "Adjusts the compiler to implement D as a $(LINK2 $(ROOT_DIR)spec/betterc.html, better C): $(UL $(LI Predefines `D_BetterC` $(LINK2 $(ROOT_DIR)spec/version.html#predefined-versions, version).) $(LI $(LINK2 $(ROOT_DIR)spec/expression.html#AssertExpression, Assert Expressions), when they fail, call the C runtime library assert failure function rather than a function in the D runtime.) $(LI $(LINK2 $(ROOT_DIR)spec/arrays.html#bounds, Array overflows) call the C runtime library assert failure function rather than a function in the D runtime.) $(LI $(LINK2 spec/statement.html#final-switch-statement/, Final switch errors) call the C runtime library assert failure function rather than a function in the D runtime.) $(LI Does not automatically link with phobos runtime library.) $(UNIX $(LI Does not generate Dwarf `eh_frame` with full unwinding information, i.e. exception tables are not inserted into `eh_frame`.) ) $(LI Module constructors and destructors are not generated meaning that $(LINK2 $(ROOT_DIR)spec/class.html#StaticConstructor, static) and $(LINK2 $(ROOT_DIR)spec/class.html#SharedStaticConstructor, shared static constructors) and $(LINK2 $(ROOT_DIR)spec/class.html#StaticDestructor, destructors) will not get called.) $(LI `ModuleInfo` is not generated.) $(LI $(LINK2 $(ROOT_DIR)phobos/object.html#.TypeInfo, `TypeInfo`) instances will not be generated for structs.) )", ), Option("boundscheck=[on|safeonly|off]", "bounds checks on, in @safe only, or off", `Controls if bounds checking is enabled. $(UL $(LI $(I on): Bounds checks are enabled for all code. This is the default.) $(LI $(I safeonly): Bounds checks are enabled only in $(D @safe) code. This is the default for $(SWLINK -release) builds.) $(LI $(I off): Bounds checks are disabled completely (even in $(D @safe) code). This option should be used with caution and as a last resort to improve performance. Confirm turning off $(D @safe) bounds checks is worthwhile by benchmarking.) )` ), Option("c", "compile only, do not link" ), Option("check=[assert|bounds|in|invariant|out|switch][=[on|off]]", "enable or disable specific checks", `Overrides default, -boundscheck, -release and -unittest options to enable or disable specific checks. $(UL $(LI $(B assert): assertion checking) $(LI $(B bounds): array bounds) $(LI $(B in): in contracts) $(LI $(B invariant): class/struct invariants) $(LI $(B out): out contracts) $(LI $(B switch): finalswitch failure checking) ) $(UL $(LI $(B on) or not specified: specified check is enabled.) $(LI $(B off): specified check is disabled.) )` ), Option("check=[h|help|?]", "list information on all available checks" ), Option("checkaction=[D|C|halt|context]", "behavior on assert/boundscheck/finalswitch failure", `Sets behavior when an assert fails, and array boundscheck fails, or a final switch errors. $(UL $(LI $(B D): Default behavior, which throws an unrecoverable $(D AssertError).) $(LI $(B C): Calls the C runtime library assert failure function.) $(LI $(B halt): Executes a halt instruction, terminating the program.) $(LI $(B context): Prints the error context as part of the unrecoverable $(D AssertError).) )` ), Option("checkaction=[h|help|?]", "list information on all available check actions" ), Option("color", "turn colored console output on" ), Option("color=[on|off|auto]", "force colored console output on or off, or only when not redirected (default)", `Show colored console output. The default depends on terminal capabilities. $(UL $(LI $(B auto): use colored output if a tty is detected (default)) $(LI $(B on): always use colored output.) $(LI $(B off): never use colored output.) )` ), Option("conf=<filename>", "use config file at filename" ), Option("cov", "do code coverage analysis" ), Option("cov=<nnn>", "require at least nnn% code coverage", `Perform $(LINK2 $(ROOT_DIR)code_coverage.html, code coverage analysis) and generate $(TT .lst) file with report.) --- dmd -cov -unittest myprog.d --- `, ), Option("D", "generate documentation", `$(P Generate $(LINK2 $(ROOT_DIR)spec/ddoc.html, documentation) from source.) $(P Note: mind the $(LINK2 $(ROOT_DIR)spec/ddoc.html#security, security considerations).) `, ), Option("Dd<directory>", "write documentation file to directory", `Write documentation file to $(I directory) . $(SWLINK -op) can be used if the original package hierarchy should be retained`, ), Option("Df<filename>", "write documentation file to filename" ), Option("d", "silently allow deprecated features and symbols", `Silently allow $(DDLINK deprecate,deprecate,deprecated features) and use of symbols with $(DDSUBLINK $(ROOT_DIR)spec/attribute, deprecated, deprecated attributes).`, ), Option("de", "issue an error when deprecated features or symbols are used (halt compilation)" ), Option("dw", "issue a message when deprecated features or symbols are used (default)" ), Option("debug", "compile in debug code", `Compile in $(LINK2 spec/version.html#debug, debug) code`, ), Option("debug=<level>", "compile in debug code <= level", `Compile in $(LINK2 spec/version.html#debug, debug level) &lt;= $(I level)`, ), Option("debug=<ident>", "compile in debug code identified by ident", `Compile in $(LINK2 spec/version.html#debug, debug identifier) $(I ident)`, ), Option("debuglib=<name>", "set symbolic debug library to name", `Link in $(I libname) as the default library when compiling for symbolic debugging instead of $(B $(LIB)). If $(I libname) is not supplied, then no default library is linked in.` ), Option("defaultlib=<name>", "set default library to name", `Link in $(I libname) as the default library when not compiling for symbolic debugging instead of $(B $(LIB)). If $(I libname) is not supplied, then no default library is linked in.`, ), Option("deps", "print module dependencies (imports/file/version/debug/lib)" ), Option("deps=<filename>", "write module dependencies to filename (only imports)", `Without $(I filename), print module dependencies (imports/file/version/debug/lib). With $(I filename), write module dependencies as text to $(I filename) (only imports).`, ), Option("extern-std=<standard>", "set C++ name mangling compatibility with <standard>", "Standards supported are: $(UL $(LI $(I c++98) (default): Use C++98 name mangling, Sets `__traits(getTargetInfo, \"cppStd\")` to `199711`) $(LI $(I c++11): Use C++11 name mangling, Sets `__traits(getTargetInfo, \"cppStd\")` to `201103`) $(LI $(I c++14): Use C++14 name mangling, Sets `__traits(getTargetInfo, \"cppStd\")` to `201402`) $(LI $(I c++17): Use C++17 name mangling, Sets `__traits(getTargetInfo, \"cppStd\")` to `201703`) )", ), Option("extern-std=[h|help|?]", "list all supported standards" ), Option("fPIC", "generate position independent code", TargetOS.all & ~(TargetOS.windows | TargetOS.macOS) ), Option("g", "add symbolic debug info", `$(WINDOWS Add CodeView symbolic debug info. See $(LINK2 http://dlang.org/windbg.html, Debugging on Windows). ) $(UNIX Add symbolic debug info in Dwarf format for debuggers such as $(D gdb) )`, ), Option("gf", "emit debug info for all referenced types", `Symbolic debug info is emitted for all types referenced by the compiled code, even if the definition is in an imported file not currently being compiled.`, ), Option("gs", "always emit stack frame" ), Option("gx", "add stack stomp code", `Adds stack stomp code, which overwrites the stack frame memory upon function exit.`, ), Option("H", "generate 'header' file", `Generate $(RELATIVE_LINK2 $(ROOT_DIR)interface-files, D interface file)`, ), Option("Hd=<directory>", "write 'header' file to directory", `Write D interface file to $(I dir) directory. $(SWLINK -op) can be used if the original package hierarchy should be retained.`, ), Option("Hf=<filename>", "write 'header' file to filename" ), Option("HC", "generate C++ 'header' file" ), Option("HCd=<directory>", "write C++ 'header' file to directory" ), Option("HCf=<filename>", "write C++ 'header' file to filename" ), Option("-help", "print help and exit" ), Option("I=<directory>", "look for imports also in directory" ), Option("i[=<pattern>]", "include imported modules in the compilation", q"{$(P Enables "include imports" mode, where the compiler will include imported modules in the compilation, as if they were given on the command line. By default, when this option is enabled, all imported modules are included except those in druntime/phobos. This behavior can be overriden by providing patterns via `-i=<pattern>`. A pattern of the form `-i=<package>` is an "inclusive pattern", whereas a pattern of the form `-i=-<package>` is an "exclusive pattern". Inclusive patterns will include all module's whose names match the pattern, whereas exclusive patterns will exclude them. For example. all modules in the package `foo.bar` can be included using `-i=foo.bar` or excluded using `-i=-foo.bar`. Note that each component of the fully qualified name must match the pattern completely, so the pattern `foo.bar` would not match a module named `foo.barx`.) $(P The default behavior of excluding druntime/phobos is accomplished by internally adding a set of standard exclusions, namely, `-i=-std -i=-core -i=-etc -i=-object`. Note that these can be overriden with `-i=std -i=core -i=etc -i=object`.) $(P When a module matches multiple patterns, matches are prioritized by their component length, where a match with more components takes priority (i.e. pattern `foo.bar.baz` has priority over `foo.bar`).) $(P By default modules that don't match any pattern will be included. However, if at least one inclusive pattern is given, then modules not matching any pattern will be excluded. This behavior can be overriden by usig `-i=.` to include by default or `-i=-.` to exclude by default.) $(P Note that multiple `-i=...` options are allowed, each one adds a pattern.)}" ), Option("ignore", "ignore unsupported pragmas" ), Option("inline", "do function inlining", `Inline functions at the discretion of the compiler. This can improve performance, at the expense of making it more difficult to use a debugger on it.`, ), Option("J=<directory>", "look for string imports also in directory", `Where to look for files for $(LINK2 $(ROOT_DIR)spec/expression.html#ImportExpression, $(I ImportExpression))s. This switch is required in order to use $(I ImportExpression)s. $(I path) is a ; separated list of paths. Multiple $(B -J)'s can be used, and the paths are searched in the same order.`, ), Option("L=<linkerflag>", "pass linkerflag to link", `Pass $(I linkerflag) to the $(WINDOWS linker $(OPTLINK)) $(UNIX linker), for example, ld`, ), Option("lib", "generate library rather than object files", `Generate library file as output instead of object file(s). All compiled source files, as well as object files and library files specified on the command line, are inserted into the output library. Compiled source modules may be partitioned into several object modules to improve granularity. The name of the library is taken from the name of the first source module to be compiled. This name can be overridden with the $(SWLINK -of) switch.`, ), Option("lowmem", "enable garbage collection for the compiler", `Enable the garbage collector for the compiler, reducing the compiler memory requirements but increasing compile times.`, ), Option("m32", "generate 32 bit code", `$(UNIX Compile a 32 bit executable. This is the default for the 32 bit dmd.) $(WINDOWS Compile a 32 bit executable. This is the default. The generated object code is in OMF and is meant to be used with the $(LINK2 http://www.digitalmars.com/download/freecompiler.html, Digital Mars C/C++ compiler)).`, (TargetOS.all & ~TargetOS.dragonFlyBSD) // available on all OS'es except DragonFly, which does not support 32-bit binaries ), Option("m32mscoff", "generate 32 bit code and write MS-COFF object files", TargetOS.windows ), Option("m64", "generate 64 bit code", `$(UNIX Compile a 64 bit executable. This is the default for the 64 bit dmd.) $(WINDOWS The generated object code is in MS-COFF and is meant to be used with the $(LINK2 https://msdn.microsoft.com/en-us/library/dd831853(v=vs.100).aspx, Microsoft Visual Studio 10) or later compiler.`, ), Option("main", "add default main() (e.g. for unittesting)", `Add a default $(D main()) function when compiling. This is useful when unittesting a library, as it enables running the unittests in a library without having to manually define an entry-point function.`, ), Option("man", "open web browser on manual page", `$(WINDOWS Open default browser on this page ) $(LINUX Open browser specified by the $(B BROWSER) environment variable on this page. If $(B BROWSER) is undefined, $(B x-www-browser) is assumed. ) $(FREEBSD Open browser specified by the $(B BROWSER) environment variable on this page. If $(B BROWSER) is undefined, $(B x-www-browser) is assumed. ) $(OSX Open browser specified by the $(B BROWSER) environment variable on this page. If $(B BROWSER) is undefined, $(B Safari) is assumed. )`, ), Option("map", "generate linker .map file", `Generate a $(TT .map) file`, ), Option("mcpu=<id>", "generate instructions for architecture identified by 'id'", `Set the target architecture for code generation, where: $(DL $(DT help)$(DD list alternatives) $(DT baseline)$(DD the minimum architecture for the target platform (default)) $(DT avx)$(DD generate $(LINK2 https://en.wikipedia.org/wiki/Advanced_Vector_Extensions, AVX) instructions instead of $(LINK2 https://en.wikipedia.org/wiki/Streaming_SIMD_Extensions, SSE) instructions for vector and floating point operations. Not available for 32 bit memory models other than OSX32. ) $(DT native)$(DD use the architecture the compiler is running on) )`, ), Option("mcpu=[h|help|?]", "list all architecture options" ), Option("mixin=<filename>", "expand and save mixins to file specified by <filename>" ), Option("mscrtlib=<libname>", "MS C runtime library to reference from main/WinMain/DllMain", "If building MS-COFF object files with -m64 or -m32mscoff, embed a reference to the given C runtime library $(I libname) into the object file containing `main`, `DllMain` or `WinMain` for automatic linking. The default is $(TT libcmt) (release version with static linkage), the other usual alternatives are $(TT libcmtd), $(TT msvcrt) and $(TT msvcrtd). If no Visual C installation is detected, a wrapper for the redistributable VC2010 dynamic runtime library and mingw based platform import libraries will be linked instead using the LLD linker provided by the LLVM project. The detection can be skipped explicitly if $(TT msvcrt120) is specified as $(I libname). If $(I libname) is empty, no C runtime library is automatically linked in.", TargetOS.windows, ), Option("mv=<package.module>=<filespec>", "use <filespec> as source file for <package.module>", `Use $(I path/filename) as the source file for $(I package.module). This is used when the source file path and names are not the same as the package and module hierarchy. The rightmost components of the $(I path/filename) and $(I package.module) can be omitted if they are the same.`, ), Option("noboundscheck", "no array bounds checking (deprecated, use -boundscheck=off)", `Turns off all array bounds checking, even for safe functions. $(RED Deprecated (use $(TT $(SWLINK -boundscheck)=off) instead).)`, ), Option("O", "optimize", `Optimize generated code. For fastest executables, compile with the $(TT $(SWLINK -O) $(SWLINK -release) $(SWLINK -inline) $(SWLINK -boundscheck)=off) switches together.`, ), Option("o-", "do not write object file", `Suppress generation of object file. Useful in conjuction with $(SWLINK -D) or $(SWLINK -H) flags.` ), Option("od=<directory>", "write object & library files to directory", `Write object files relative to directory $(I objdir) instead of to the current directory. $(SWLINK -op) can be used if the original package hierarchy should be retained`, ), Option("of=<filename>", "name output file to filename", `Set output file name to $(I filename) in the output directory. The output file can be an object file, executable file, or library file depending on the other switches.` ), Option("op", "preserve source path for output files", `Normally the path for $(B .d) source files is stripped off when generating an object, interface, or Ddoc file name. $(SWLINK -op) will leave it on.`, ), Option("preview=<id>", "enable an upcoming language change identified by 'id'", `Preview an upcoming language change identified by $(I id)`, ), Option("preview=[h|help|?]", "list all upcoming language changes" ), Option("profile", "profile runtime performance of generated code" ), Option("profile=gc", "profile runtime allocations", `$(LINK2 http://www.digitalmars.com/ctg/trace.html, profile) the runtime performance of the generated code. $(UL $(LI $(B gc): Instrument calls to memory allocation and write a report to the file $(TT profilegc.log) upon program termination.) )`, ), Option("release", "compile release version", `Compile release version, which means not emitting run-time checks for contracts and asserts. Array bounds checking is not done for system and trusted functions, and assertion failures are undefined behaviour.` ), Option("revert=<id>", "revert language change identified by 'id'", `Revert language change identified by $(I id)`, ), Option("revert=[h|help|?]", "list all revertable language changes" ), Option("run <srcfile>", "compile, link, and run the program srcfile", `Compile, link, and run the program $(I srcfile) with the rest of the command line, $(I args...), as the arguments to the program. No .$(OBJEXT) or executable file is left behind.` ), Option("shared", "generate shared library (DLL)", `$(UNIX Generate shared library) $(WINDOWS Generate DLL library)`, ), Option("transition=<id>", "help with language change identified by 'id'", `Show additional info about language change identified by $(I id)`, ), Option("transition=[h|help|?]", "list all language changes" ), Option("unittest", "compile in unit tests", `Compile in $(LINK2 spec/unittest.html, unittest) code, turns on asserts, and sets the $(D unittest) $(LINK2 spec/version.html#PredefinedVersions, version identifier)`, ), Option("v", "verbose", `Enable verbose output for each compiler pass`, ), Option("vcolumns", "print character (column) numbers in diagnostics" ), Option("verror-style=[digitalmars|gnu]", "set the style for file/line number annotations on compiler messages", `Set the style for file/line number annotations on compiler messages, where: $(DL $(DT digitalmars)$(DD 'file(line[,column]): message'. This is the default.) $(DT gnu)$(DD 'file:line[:column]: message', conforming to the GNU standard used by gcc and clang.) )`, ), Option("verrors=<num>", "limit the number of error messages (0 means unlimited)" ), Option("verrors=context", "show error messages with the context of the erroring source line" ), Option("verrors=spec", "show errors from speculative compiles such as __traits(compiles,...)" ), Option("-version", "print compiler version and exit" ), Option("version=<level>", "compile in version code >= level", `Compile in $(LINK2 $(ROOT_DIR)spec/version.html#version, version level) >= $(I level)`, ), Option("version=<ident>", "compile in version code identified by ident", `Compile in $(LINK2 $(ROOT_DIR)spec/version.html#version, version identifier) $(I ident)` ), Option("vgc", "list all gc allocations including hidden ones" ), Option("vtls", "list all variables going into thread local storage" ), Option("vtemplates", "list statistics on template instantiations" ), Option("w", "warnings as errors (compilation will halt)", `Enable $(LINK2 $(ROOT_DIR)articles/warnings.html, warnings)` ), Option("wi", "warnings as messages (compilation will continue)", `Enable $(LINK2 $(ROOT_DIR)articles/warnings.html, informational warnings (i.e. compilation still proceeds normally))`, ), Option("X", "generate JSON file" ), Option("Xf=<filename>", "write JSON file to filename" ), Option("Xcc=<driverflag>", "pass driverflag to linker driver (cc)", "Pass $(I driverflag) to the linker driver (`$CC` or `cc`)", TargetOS.all & ~TargetOS.windows ), ]; /// Representation of a CLI feature struct Feature { string name; /// name of the feature string paramName; // internal transition parameter name string helpText; // detailed description of the feature bool documented = true; // whether this option should be shown in the documentation bool deprecated_; /// whether the feature is still in use } /// Returns all available transitions static immutable transitions = [ Feature("field", "vfield", "list all non-mutable fields which occupy an object instance"), Feature("complex", "vcomplex", "give deprecation messages about all usages of complex or imaginary types"), Feature("tls", "vtls", "list all variables going into thread local storage"), Feature("vmarkdown", "vmarkdown", "list instances of Markdown replacements in Ddoc"), ]; /// Returns all available reverts static immutable reverts = [ Feature("dip25", "noDIP25", "revert DIP25 changes https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md"), ]; /// Returns all available previews static immutable previews = [ Feature("dip25", "useDIP25", "implement https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md (Sealed references)"), Feature("dip1000", "vsafe", "implement https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1000.md (Scoped Pointers)"), Feature("dip1008", "ehnogc", "implement https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1008.md (@nogc Throwable)"), Feature("dip1021", "useDIP1021", "implement https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md (Mutable function arguments)"), Feature("fieldwise", "fieldwise", "use fieldwise comparisons for struct equality"), Feature("markdown", "markdown", "enable Markdown replacements in Ddoc"), Feature("fixAliasThis", "fixAliasThis", "when a symbol is resolved, check alias this scope before going to upper scopes"), Feature("intpromote", "fix16997", "fix integral promotions for unary + - ~ operators"), Feature("dtorfields", "dtorFields", "destruct fields of partially constructed objects"), Feature("rvaluerefparam", "rvalueRefParam", "enable rvalue arguments to ref parameters"), Feature("nosharedaccess", "noSharedAccess", "disable access to shared memory objects"), Feature("in", "inMeansScopeConst", "in means scope const"), ]; } /** Formats the `Options` for CLI printing. */ struct CLIUsage { /** Returns a string of all available CLI options for the current targetOS. Options are separated by newlines. */ static string usage() { enum maxFlagLength = 18; enum s = () { char[] buf; foreach (option; Usage.options) { if (option.os.isCurrentTargetOS) { buf ~= " -" ~ option.flag; // create new lines if the flag name is too long if (option.flag.length >= 17) { buf ~= "\n "; } else if (option.flag.length <= maxFlagLength) { const spaces = maxFlagLength - option.flag.length - 1; buf.length += spaces; buf[$ - spaces .. $] = ' '; } else { buf ~= " "; } buf ~= option.helpText; buf ~= "\n"; } } return cast(string) buf; }(); return s; } /// CPU architectures supported -mcpu=id enum mcpuUsage = "CPU architectures supported by -mcpu=id: =[h|help|?] list information on all available choices =baseline use default architecture as determined by target =avx use AVX 1 instructions =avx2 use AVX 2 instructions =native use CPU architecture that this compiler is running on "; static string generateFeatureUsage(const Usage.Feature[] features, string flagName, string description) { enum maxFlagLength = 20; auto buf = description.capitalize ~ " listed by -"~flagName~"=name: "; auto allTransitions = [Usage.Feature("all", null, "list information on all " ~ description)] ~ features; foreach (t; allTransitions) { if (t.deprecated_) continue; if (!t.documented) continue; buf ~= " ="; buf ~= t.name; auto lineLength = 3 + t.name.length; foreach (i; lineLength .. maxFlagLength) buf ~= " "; buf ~= t.helpText; buf ~= "\n"; } return buf; } /// Language changes listed by -transition=id enum transitionUsage = generateFeatureUsage(Usage.transitions, "transition", "language transitions"); /// Language changes listed by -revert enum revertUsage = generateFeatureUsage(Usage.reverts, "revert", "revertable language changes"); /// Language previews listed by -preview enum previewUsage = generateFeatureUsage(Usage.previews, "preview", "upcoming language changes"); /// Options supported by -checkaction= enum checkActionUsage = "Behavior on assert/boundscheck/finalswitch failure: =[h|help|?] List information on all available choices =D Usual D behavior of throwing an AssertError =C Call the C runtime library assert failure function =halt Halt the program execution (very lightweight) =context Use D assert with context information (when available) "; /// Options supported by -check enum checkUsage = "Enable or disable specific checks: =[h|help|?] List information on all available choices =assert[=[on|off]] Assertion checking =bounds[=[on|off]] Array bounds checking =in[=[on|off]] Generate In contracts =invariant[=[on|off]] Class/struct invariants =out[=[on|off]] Out contracts =switch[=[on|off]] Final switch failure checking =on Enable all assertion checking (default for non-release builds) =off Disable all assertion checking "; /// Options supported by -extern-std enum externStdUsage = "Available C++ standards: =[h|help|?] List information on all available choices =c++98 Sets `__traits(getTargetInfo, \"cppStd\")` to `199711` =c++11 Sets `__traits(getTargetInfo, \"cppStd\")` to `201103` =c++14 Sets `__traits(getTargetInfo, \"cppStd\")` to `201402` =c++17 Sets `__traits(getTargetInfo, \"cppStd\")` to `201703` "; }
D
// Written in the D programming language. module windows.antimalware; public import windows.core; public import windows.com : HRESULT, IUnknown; public import windows.systemservices : BOOL, PWSTR; extern(Windows) @nogc nothrow: // Enums ///The <b>AMSI_RESULT</b> enumeration specifies the types of results returned by scans. alias AMSI_RESULT = int; enum : int { ///Known good. No detection found, and the result is likely not going to change after a future definition update. AMSI_RESULT_CLEAN = 0x00000000, ///No detection found, but the result might change after a future definition update. AMSI_RESULT_NOT_DETECTED = 0x00000001, ///Administrator policy blocked this content on this machine (beginning of range). AMSI_RESULT_BLOCKED_BY_ADMIN_START = 0x00004000, ///Administrator policy blocked this content on this machine (end of range). AMSI_RESULT_BLOCKED_BY_ADMIN_END = 0x00004fff, ///Detection found. The content is considered malware and should be blocked. AMSI_RESULT_DETECTED = 0x00008000, } ///The <b>AMSI_ATTRIBUTE</b> enumeration specifies the types of attributes that can be requested by ///IAmsiStream::GetAttribute. alias AMSI_ATTRIBUTE = int; enum : int { ///Return the name, version, or GUID string of the calling application, copied from a <b>LPWSTR</b>. AMSI_ATTRIBUTE_APP_NAME = 0x00000000, ///Return the filename, URL, unique script ID, or similar of the content, copied from a <b>LPWSTR</b>. AMSI_ATTRIBUTE_CONTENT_NAME = 0x00000001, ///Return the size of the input, as a <b>ULONGLONG</b>. AMSI_ATTRIBUTE_CONTENT_SIZE = 0x00000002, ///Return the memory address if the content is fully loaded into memory. AMSI_ATTRIBUTE_CONTENT_ADDRESS = 0x00000003, ///Session is used to associate different scan calls, such as if the contents to be scanned belong to the sample ///original script. Return a <b>PVOID</b> to the next portion of the content to be scanned. Return <b>nullptr</b> if ///the content is self-contained. AMSI_ATTRIBUTE_SESSION = 0x00000004, AMSI_ATTRIBUTE_REDIRECT_CHAIN_SIZE = 0x00000005, AMSI_ATTRIBUTE_REDIRECT_CHAIN_ADDRESS = 0x00000006, AMSI_ATTRIBUTE_ALL_SIZE = 0x00000007, AMSI_ATTRIBUTE_ALL_ADDRESS = 0x00000008, AMSI_ATTRIBUTE_QUIET = 0x00000009, } alias AMSI_UAC_REQUEST_TYPE = int; enum : int { AMSI_UAC_REQUEST_TYPE_EXE = 0x00000000, AMSI_UAC_REQUEST_TYPE_COM = 0x00000001, AMSI_UAC_REQUEST_TYPE_MSI = 0x00000002, AMSI_UAC_REQUEST_TYPE_AX = 0x00000003, AMSI_UAC_REQUEST_TYPE_PACKAGED_APP = 0x00000004, AMSI_UAC_REQUEST_TYPE_MAX = 0x00000005, } alias AMSI_UAC_TRUST_STATE = int; enum : int { AMSI_UAC_TRUST_STATE_TRUSTED = 0x00000000, AMSI_UAC_TRUST_STATE_UNTRUSTED = 0x00000001, AMSI_UAC_TRUST_STATE_BLOCKED = 0x00000002, AMSI_UAC_TRUST_STATE_MAX = 0x00000003, } alias AMSI_UAC_MSI_ACTION = int; enum : int { AMSI_UAC_MSI_ACTION_INSTALL = 0x00000000, AMSI_UAC_MSI_ACTION_UNINSTALL = 0x00000001, AMSI_UAC_MSI_ACTION_UPDATE = 0x00000002, AMSI_UAC_MSI_ACTION_MAINTENANCE = 0x00000003, AMSI_UAC_MSI_ACTION_MAX = 0x00000004, } // Structs struct AMSI_UAC_REQUEST_EXE_INFO { uint ulLength; PWSTR lpwszApplicationName; PWSTR lpwszCommandLine; PWSTR lpwszDLLParameter; } struct AMSI_UAC_REQUEST_COM_INFO { uint ulLength; PWSTR lpwszServerBinary; PWSTR lpwszRequestor; GUID Clsid; } struct AMSI_UAC_REQUEST_MSI_INFO { uint ulLength; AMSI_UAC_MSI_ACTION MsiAction; PWSTR lpwszProductName; PWSTR lpwszVersion; PWSTR lpwszLanguage; PWSTR lpwszManufacturer; PWSTR lpwszPackagePath; PWSTR lpwszPackageSource; uint ulUpdates; PWSTR* ppwszUpdates; PWSTR* ppwszUpdateSources; } struct AMSI_UAC_REQUEST_AX_INFO { uint ulLength; PWSTR lpwszLocalInstallPath; PWSTR lpwszSourceURL; } struct AMSI_UAC_REQUEST_PACKAGED_APP_INFO { uint ulLength; PWSTR lpwszApplicationName; PWSTR lpwszCommandLine; PWSTR lpPackageFamilyName; PWSTR lpApplicationId; } struct AMSI_UAC_REQUEST_CONTEXT { uint ulLength; uint ulRequestorProcessId; AMSI_UAC_TRUST_STATE UACTrustState; AMSI_UAC_REQUEST_TYPE Type; union RequestType { AMSI_UAC_REQUEST_EXE_INFO ExeInfo; AMSI_UAC_REQUEST_COM_INFO ComInfo; AMSI_UAC_REQUEST_MSI_INFO MsiInfo; AMSI_UAC_REQUEST_AX_INFO ActiveXInfo; AMSI_UAC_REQUEST_PACKAGED_APP_INFO PackagedAppInfo; } BOOL bAutoElevateRequest; } struct HAMSICONTEXT__ { int unused; } struct HAMSISESSION__ { int unused; } // Functions ///Initialize the AMSI API. ///Params: /// appName = The name, version, or GUID string of the app calling the AMSI API. /// amsiContext = A handle of type HAMSICONTEXT that must be passed to all subsequent calls to the AMSI API. ///Returns: /// If this function succeeds, it returns <b xmlns:loc="http://microsoft.com/wdcml/l10n">S_OK</b>. Otherwise, it /// returns an <b xmlns:loc="http://microsoft.com/wdcml/l10n">HRESULT</b> error code. /// @DllImport("Amsi") HRESULT AmsiInitialize(const(PWSTR) appName, ptrdiff_t* amsiContext); ///Remove the instance of the AMSI API that was originally opened by AmsiInitialize. ///Params: /// amsiContext = The handle of type HAMSICONTEXT that was initially received from AmsiInitialize. @DllImport("Amsi") void AmsiUninitialize(ptrdiff_t amsiContext); ///Opens a session within which multiple scan requests can be correlated. ///Params: /// amsiContext = The handle of type HAMSICONTEXT that was initially received from AmsiInitialize. /// amsiSession = A handle of type HAMSISESSION that must be passed to all subsequent calls to the AMSI API within the session. ///Returns: /// If this function succeeds, it returns <b xmlns:loc="http://microsoft.com/wdcml/l10n">S_OK</b>. Otherwise, it /// returns an <b xmlns:loc="http://microsoft.com/wdcml/l10n">HRESULT</b> error code. /// @DllImport("Amsi") HRESULT AmsiOpenSession(ptrdiff_t amsiContext, ptrdiff_t* amsiSession); ///Close a session that was opened by AmsiOpenSession. ///Params: /// amsiContext = The handle of type HAMSICONTEXT that was initially received from AmsiInitialize. /// amsiSession = The handle of type HAMSISESSION that was initially received from AmsiOpenSession. @DllImport("Amsi") void AmsiCloseSession(ptrdiff_t amsiContext, ptrdiff_t amsiSession); ///Scans a buffer-full of content for malware. ///Params: /// amsiContext = The handle of type HAMSICONTEXT that was initially received from AmsiInitialize. /// buffer = The buffer from which to read the data to be scanned. /// length = The length, in bytes, of the data to be read from <i>buffer</i>. /// contentName = The filename, URL, unique script ID, or similar of the content being scanned. /// amsiSession = If multiple scan requests are to be correlated within a session, set <i>session</i> to the handle of type /// HAMSISESSION that was initially received from AmsiOpenSession. Otherwise, set <i>session</i> to <b>nullptr</b>. /// result = The result of the scan. See AMSI_RESULT. An app should use AmsiResultIsMalware to determine whether the content /// should be blocked. ///Returns: /// If this function succeeds, it returns <b xmlns:loc="http://microsoft.com/wdcml/l10n">S_OK</b>. Otherwise, it /// returns an <b xmlns:loc="http://microsoft.com/wdcml/l10n">HRESULT</b> error code. /// @DllImport("Amsi") HRESULT AmsiScanBuffer(ptrdiff_t amsiContext, void* buffer, uint length, const(PWSTR) contentName, ptrdiff_t amsiSession, AMSI_RESULT* result); ///Scans a string for malware. ///Params: /// amsiContext = The handle of type HAMSICONTEXT that was initially received from AmsiInitialize. /// string = The string to be scanned. /// contentName = The filename, URL, unique script ID, or similar of the content being scanned. /// amsiSession = If multiple scan requests are to be correlated within a session, set <i>session</i> to the handle of type /// HAMSISESSION that was initially received from AmsiOpenSession. Otherwise, set <i>session</i> to <b>nullptr</b>. /// result = The result of the scan. See AMSI_RESULT. An app should use AmsiResultIsMalware to determine whether the content /// should be blocked. ///Returns: /// If this function succeeds, it returns <b xmlns:loc="http://microsoft.com/wdcml/l10n">S_OK</b>. Otherwise, it /// returns an <b xmlns:loc="http://microsoft.com/wdcml/l10n">HRESULT</b> error code. /// @DllImport("Amsi") HRESULT AmsiScanString(ptrdiff_t amsiContext, const(PWSTR) string, const(PWSTR) contentName, ptrdiff_t amsiSession, AMSI_RESULT* result); // Interfaces @GUID("FDB00E52-A214-4AA1-8FBA-4357BB0072EC") struct CAntimalware; ///Represents a stream to be scanned. For a code example, see the [IAmsiStream interface ///sample](https://github.com/Microsoft/Windows-classic-samples/tree/master/Samples/AmsiStream). @GUID("3E47F2E5-81D4-4D3B-897F-545096770373") interface IAmsiStream : IUnknown { ///Returns a requested attribute from the stream. ///Params: /// attribute = Specifies the type of attribute to be returned. See Remarks. /// dataSize = The size of the output buffer, <i>data</i>, in bytes. /// data = Buffer to receive the requested attribute. <i>data</i> must be set to its size in bytes. /// retData = The number of bytes returned in <i>data</i>. If this method returns <b>E_NOT_SUFFICIENT_BUFFER</b>, /// <i>retData</i> contains the number of bytes required. ///Returns: /// This method can return one of these values. <table> <tr> <th>Return code</th> <th>Description</th> </tr> <tr> /// <td width="40%"> <dl> <dt><b>S_OK</b></dt> </dl> </td> <td width="60%"> Success. </td> </tr> <tr> <td /// width="40%"> <dl> <dt><b>E_NOTIMPL</b></dt> </dl> </td> <td width="60%"> The attribute is not supported. /// </td> </tr> <tr> <td width="40%"> <dl> <dt><b>E_NOT_SUFFICIENT_BUFFER</b></dt> </dl> </td> <td width="60%"> /// The size of the output buffer, as indicated by <i>data</i>, is not large enough. <i>retData</i> contains the /// number of bytes required. </td> </tr> <tr> <td width="40%"> <dl> <dt><b>E_INVALIDARG</b></dt> </dl> </td> <td /// width="60%"> One or more argument is invalid. </td> </tr> <tr> <td width="40%"> <dl> /// <dt><b>E_NOT_VALID_STATE</b></dt> </dl> </td> <td width="60%"> The object is not initialized. </td> </tr> /// </table> /// HRESULT GetAttribute(AMSI_ATTRIBUTE attribute, uint dataSize, ubyte* data, uint* retData); ///Requests a buffer-full of content to be read. ///Params: /// position = The zero-based index into the content at which the read is to begin. /// size = The number of bytes to read from the content. /// buffer = Buffer into which the content is to be read. /// readSize = The number of bytes read into <i>buffer</i>. ///Returns: /// This method can return one of these values. <table> <tr> <th>Return code</th> <th>Description</th> </tr> <tr> /// <td width="40%"> <dl> <dt><b>S_OK</b></dt> </dl> </td> <td width="60%"> Success. </td> </tr> <tr> <td /// width="40%"> <dl> <dt><b>E_INVALIDARG</b></dt> </dl> </td> <td width="60%"> One or more argument is invalid. /// </td> </tr> <tr> <td width="40%"> <dl> <dt><b>E_NOT_VALID_STATE</b></dt> </dl> </td> <td width="60%"> The /// object is not initialized. </td> </tr> </table> /// HRESULT Read(ulong position, uint size, ubyte* buffer, uint* readSize); } ///Represents the provider of the antimalware product. For a code example, see the [IAntimalwareProvider interface ///sample](https://github.com/Microsoft/Windows-classic-samples/tree/master/Samples/AmsiProvider). The ///**IAntimalwareProvider** interface inherits from the [IUnknown ///interface](/windows/desktop/api/unknwn/nn-unknwn-iunknown). @GUID("B2CABFE3-FE04-42B1-A5DF-08D483D4D125") interface IAntimalwareProvider : IUnknown { ///Scan a stream of content. ///Params: /// stream = The IAmsiStream stream to be scanned. /// result = The result of the scan. See AMSI_RESULT. ///Returns: /// This method can return one of these values. <table> <tr> <th>Return code</th> <th>Description</th> </tr> <tr> /// <td width="40%"> <dl> <dt><b>S_OK</b></dt> </dl> </td> <td width="60%"> Success. </td> </tr> <tr> <td /// width="40%"> <dl> <dt><b>E_INVALIDARG</b></dt> </dl> </td> <td width="60%"> One or more argument is invalid. /// </td> </tr> <tr> <td width="40%"> <dl> <dt><b>E_NOT_VALID_STATE</b></dt> </dl> </td> <td width="60%"> The /// object is not initialized. </td> </tr> </table> /// HRESULT Scan(IAmsiStream stream, AMSI_RESULT* result); ///Closes the session. ///Params: /// session = Type: [ULONGLONG](/windows/desktop/winprog/windows-data-types void CloseSession(ulong session); ///The name of the antimalware provider to be displayed. ///Params: /// displayName = A pointer to a <b>LPWSTR</b> that contains the display name. ///Returns: /// This method can return one of these values. <table> <tr> <th>Return code</th> <th>Description</th> </tr> <tr> /// <td width="40%"> <dl> <dt><b>S_OK</b></dt> </dl> </td> <td width="60%"> Success. </td> </tr> <tr> <td /// width="40%"> <dl> <dt><b>E_INVALIDARG</b></dt> </dl> </td> <td width="60%"> The argument is invalid. </td> /// </tr> <tr> <td width="40%"> <dl> <dt><b>E_NOT_VALID_STATE</b></dt> </dl> </td> <td width="60%"> The object is /// not initialized. </td> </tr> </table> /// HRESULT DisplayName(PWSTR* displayName); } @GUID("B2CABFE4-FE04-42B1-A5DF-08D483D4D125") interface IAntimalwareUacProvider : IUnknown { HRESULT UacScan(AMSI_UAC_REQUEST_CONTEXT* context, AMSI_RESULT* result); HRESULT DisplayName(PWSTR* displayName); } ///Represents the antimalware product. @GUID("82D29C2E-F062-44E6-B5C9-3D9A2F24A2DF") interface IAntimalware : IUnknown { ///Scan a stream of content. ///Params: /// stream = The IAmsiStream stream to be scanned. /// result = The result of the scan. See AMSI_RESULT. /// provider = The IAntimalwareProvider provider of the antimalware product. ///Returns: /// This method can return one of these values. <table> <tr> <th>Return code</th> <th>Description</th> </tr> <tr> /// <td width="40%"> <dl> <dt><b>S_OK</b></dt> </dl> </td> <td width="60%"> Success. </td> </tr> <tr> <td /// width="40%"> <dl> <dt><b>E_INVALIDARG</b></dt> </dl> </td> <td width="60%"> One or more argument is invalid. /// </td> </tr> <tr> <td width="40%"> <dl> <dt><b>E_NOT_VALID_STATE</b></dt> </dl> </td> <td width="60%"> The /// object is not initialized. </td> </tr> </table> /// HRESULT Scan(IAmsiStream stream, AMSI_RESULT* result, IAntimalwareProvider* provider); ///Closes the session. ///Params: /// session = Type: [ULONGLONG](/windows/desktop/winprog/windows-data-types void CloseSession(ulong session); } // GUIDs const GUID CLSID_CAntimalware = GUIDOF!CAntimalware; const GUID IID_IAmsiStream = GUIDOF!IAmsiStream; const GUID IID_IAntimalware = GUIDOF!IAntimalware; const GUID IID_IAntimalwareProvider = GUIDOF!IAntimalwareProvider; const GUID IID_IAntimalwareUacProvider = GUIDOF!IAntimalwareUacProvider;
D
/** * Copyright: © 2014 Gushcha Anton * License: Subject to the terms of the MIT license, as written in the included LICENSE file. * Authors: NCrashed <ncrashed@gmail.com> */ module ogre.sphere; import ogre.c.fwd; import ogre.c.sphere; import ogre.wrapper; import ogre.vector; class Sphere { this(SphereHandle handle) { this.handle = handle; } this(Vector3 center, coiReal radius) { this.handle = create_sphere(&center.data, radius); } mixin Wrapper!(Sphere, SphereHandle, destroy_sphere); }
D
/MyGitHubProjects/ListPlaceholder/ListPlaceholder/.build/x86_64-apple-macosx10.10/debug/Classes.build/ListLoader.swift.o : /MyGitHubProjects/ListPlaceholder/ListPlaceholder/Classes/ListLoader.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 /MyGitHubProjects/ListPlaceholder/ListPlaceholder/.build/x86_64-apple-macosx10.10/debug/Classes.build/ListLoader~partial.swiftmodule : /MyGitHubProjects/ListPlaceholder/ListPlaceholder/Classes/ListLoader.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 /MyGitHubProjects/ListPlaceholder/ListPlaceholder/.build/x86_64-apple-macosx10.10/debug/Classes.build/ListLoader~partial.swiftdoc : /MyGitHubProjects/ListPlaceholder/ListPlaceholder/Classes/ListLoader.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
D
/* Windows is a registered trademark of Microsoft Corporation in the United States and other countries. */ module mystd.c.windows.windows; version (Windows): public import core.sys.windows.windows;
D
# FIXED nrf24network.obj: C:/Projects/embedded-software/src/nrf24network.c nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/string.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/_ti_config.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/linkage.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/cdefs.h nrf24network.obj: C:/Users/sglas/embeddedSoftware/accelTest/project_settings.h nrf24network.obj: C:/Projects/embedded-software/include/library.h nrf24network.obj: C:/Projects/embedded-software/include/macros.h nrf24network.obj: C:/Projects/embedded-software/include/int_def.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdint.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/stdint.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/_types.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/machine/_types.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/machine/_stdint.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/_stdint.h nrf24network.obj: C:/Projects/embedded-software/include/nrf24network.h nrf24network.obj: C:/Projects/embedded-software/include/timing.h nrf24network.obj: C:/Projects/embedded-software/include/nrf24.h nrf24network.obj: C:/Projects/embedded-software/include/task.h nrf24network.obj: C:/Projects/embedded-software/include/subsystem.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdarg.h nrf24network.obj: C:/Projects/embedded-software/include/uart.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdbool.h nrf24network.obj: C:/Projects/embedded-software/include/subsystem.h nrf24network.obj: C:/Projects/embedded-software/include/buffer_printf.h nrf24network.obj: C:/Projects/embedded-software/include/buffer.h nrf24network.obj: C:/Projects/embedded-software/hal/MSP430/MSP430F5529/hal_uart.h nrf24network.obj: C:/Projects/embedded-software/hal/MSP430/MSP430F5529/hal_general.h nrf24network.obj: C:/ti/ccsv8/ccs_base/msp430/include/msp430.h nrf24network.obj: C:/ti/ccsv8/ccs_base/msp430/include/msp430f5529.h nrf24network.obj: C:/ti/ccsv8/ccs_base/msp430/include/in430.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/intrinsics.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/intrinsics_legacy_undefs.h nrf24network.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/strings.h C:/Projects/embedded-software/src/nrf24network.c: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/string.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/_ti_config.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/linkage.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/cdefs.h: C:/Users/sglas/embeddedSoftware/accelTest/project_settings.h: C:/Projects/embedded-software/include/library.h: C:/Projects/embedded-software/include/macros.h: C:/Projects/embedded-software/include/int_def.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdint.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/stdint.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/_types.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/machine/_types.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/machine/_stdint.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/_stdint.h: C:/Projects/embedded-software/include/nrf24network.h: C:/Projects/embedded-software/include/timing.h: C:/Projects/embedded-software/include/nrf24.h: C:/Projects/embedded-software/include/task.h: C:/Projects/embedded-software/include/subsystem.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdarg.h: C:/Projects/embedded-software/include/uart.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdbool.h: C:/Projects/embedded-software/include/subsystem.h: C:/Projects/embedded-software/include/buffer_printf.h: C:/Projects/embedded-software/include/buffer.h: C:/Projects/embedded-software/hal/MSP430/MSP430F5529/hal_uart.h: C:/Projects/embedded-software/hal/MSP430/MSP430F5529/hal_general.h: C:/ti/ccsv8/ccs_base/msp430/include/msp430.h: C:/ti/ccsv8/ccs_base/msp430/include/msp430f5529.h: C:/ti/ccsv8/ccs_base/msp430/include/in430.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/intrinsics.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/intrinsics_legacy_undefs.h: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/strings.h:
D
// Written in the D programming language. /** Classes and functions for handling and transcoding between various encodings. For cases where the _encoding is known at compile-time, functions are provided for arbitrary _encoding and decoding of characters, arbitrary transcoding between strings of different type, as well as validation and sanitization. Encodings currently supported are UTF-8, UTF-16, UTF-32, ASCII, ISO-8859-1 (also known as LATIN-1), ISO-8859-2 (LATIN-2), WINDOWS-1250 and WINDOWS-1252. $(UL $(LI The type $(D AsciiChar) represents an ASCII character.) $(LI The type $(D AsciiString) represents an ASCII string.) $(LI The type $(D Latin1Char) represents an ISO-8859-1 character.) $(LI The type $(D Latin1String) represents an ISO-8859-1 string.) $(LI The type $(D Latin2Char) represents an ISO-8859-2 character.) $(LI The type $(D Latin2String) represents an ISO-8859-2 string.) $(LI The type $(D Windows1250Char) represents a Windows-1250 character.) $(LI The type $(D Windows1250String) represents a Windows-1250 string.) $(LI The type $(D Windows1252Char) represents a Windows-1252 character.) $(LI The type $(D Windows1252String) represents a Windows-1252 string.)) For cases where the _encoding is not known at compile-time, but is known at run-time, we provide the abstract class $(D EncodingScheme) and its subclasses. To construct a run-time encoder/decoder, one does e.g. ---------------------------------------------------- auto e = EncodingScheme.create("utf-8"); ---------------------------------------------------- This library supplies $(D EncodingScheme) subclasses for ASCII, ISO-8859-1 (also known as LATIN-1), ISO-8859-2 (LATIN-2), WINDOWS-1250, WINDOWS-1252, UTF-8, and (on little-endian architectures) UTF-16LE and UTF-32LE; or (on big-endian architectures) UTF-16BE and UTF-32BE. This library provides a mechanism whereby other modules may add $(D EncodingScheme) subclasses for any other _encoding. Copyright: Copyright Janice Caron 2008 - 2009. License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Janice Caron Source: $(PHOBOSSRC std/_encoding.d) */ /* Copyright Janice Caron 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 std.encoding; import std.traits; import std.typecons; import std.range.primitives; import std.internal.encodinginit; @system unittest { static ubyte[][] validStrings = [ // Plain ASCII cast(ubyte[])"hello", // First possible sequence of a certain length [ 0x00 ], // U+00000000 one byte [ 0xC2, 0x80 ], // U+00000080 two bytes [ 0xE0, 0xA0, 0x80 ], // U+00000800 three bytes [ 0xF0, 0x90, 0x80, 0x80 ], // U+00010000 three bytes // Last possible sequence of a certain length [ 0x7F ], // U+0000007F one byte [ 0xDF, 0xBF ], // U+000007FF two bytes [ 0xEF, 0xBF, 0xBF ], // U+0000FFFF three bytes // Other boundary conditions [ 0xED, 0x9F, 0xBF ], // U+0000D7FF Last character before surrogates [ 0xEE, 0x80, 0x80 ], // U+0000E000 First character after surrogates [ 0xEF, 0xBF, 0xBD ], // U+0000FFFD Unicode replacement character [ 0xF4, 0x8F, 0xBF, 0xBF ], // U+0010FFFF Very last character // Non-character code points /* NOTE: These are legal in UTF, and may be converted from one UTF to another, however they do not represent Unicode characters. These code points have been reserved by Unicode as non-character code points. They are permissible for data exchange within an application, but they are are not permitted to be used as characters. Since this module deals with UTF, and not with Unicode per se, we choose to accept them here. */ [ 0xDF, 0xBE ], // U+0000FFFE [ 0xDF, 0xBF ], // U+0000FFFF ]; static ubyte[][] invalidStrings = [ // First possible sequence of a certain length, but greater // than U+10FFFF [ 0xF8, 0x88, 0x80, 0x80, 0x80 ], // U+00200000 five bytes [ 0xFC, 0x84, 0x80, 0x80, 0x80, 0x80 ], // U+04000000 six bytes // Last possible sequence of a certain length, but greater than U+10FFFF [ 0xF7, 0xBF, 0xBF, 0xBF ], // U+001FFFFF four bytes [ 0xFB, 0xBF, 0xBF, 0xBF, 0xBF ], // U+03FFFFFF five bytes [ 0xFD, 0xBF, 0xBF, 0xBF, 0xBF, 0xBF ], // U+7FFFFFFF six bytes // Other boundary conditions [ 0xF4, 0x90, 0x80, 0x80 ], // U+00110000 // First code // point after // last character // Unexpected continuation bytes [ 0x80 ], [ 0xBF ], [ 0x20, 0x80, 0x20 ], [ 0x20, 0xBF, 0x20 ], [ 0x80, 0x9F, 0xA0 ], // Lonely start bytes [ 0xC0 ], [ 0xCF ], [ 0x20, 0xC0, 0x20 ], [ 0x20, 0xCF, 0x20 ], [ 0xD0 ], [ 0xDF ], [ 0x20, 0xD0, 0x20 ], [ 0x20, 0xDF, 0x20 ], [ 0xE0 ], [ 0xEF ], [ 0x20, 0xE0, 0x20 ], [ 0x20, 0xEF, 0x20 ], [ 0xF0 ], [ 0xF1 ], [ 0xF2 ], [ 0xF3 ], [ 0xF4 ], [ 0xF5 ], // If this were legal it would start a character > U+10FFFF [ 0xF6 ], // If this were legal it would start a character > U+10FFFF [ 0xF7 ], // If this were legal it would start a character > U+10FFFF [ 0xEF, 0xBF ], // Three byte sequence with third byte missing [ 0xF7, 0xBF, 0xBF ], // Four byte sequence with fourth byte missing [ 0xEF, 0xBF, 0xF7, 0xBF, 0xBF ], // Concatenation of the above // Impossible bytes [ 0xF8 ], [ 0xF9 ], [ 0xFA ], [ 0xFB ], [ 0xFC ], [ 0xFD ], [ 0xFE ], [ 0xFF ], [ 0x20, 0xF8, 0x20 ], [ 0x20, 0xF9, 0x20 ], [ 0x20, 0xFA, 0x20 ], [ 0x20, 0xFB, 0x20 ], [ 0x20, 0xFC, 0x20 ], [ 0x20, 0xFD, 0x20 ], [ 0x20, 0xFE, 0x20 ], [ 0x20, 0xFF, 0x20 ], // Overlong sequences, all representing U+002F /* With a safe UTF-8 decoder, all of the following five overlong representations of the ASCII character slash ("/") should be rejected like a malformed UTF-8 sequence */ [ 0xC0, 0xAF ], [ 0xE0, 0x80, 0xAF ], [ 0xF0, 0x80, 0x80, 0xAF ], [ 0xF8, 0x80, 0x80, 0x80, 0xAF ], [ 0xFC, 0x80, 0x80, 0x80, 0x80, 0xAF ], // Maximum overlong sequences /* Below you see the highest Unicode value that is still resulting in an overlong sequence if represented with the given number of bytes. This is a boundary test for safe UTF-8 decoders. All five characters should be rejected like malformed UTF-8 sequences. */ [ 0xC1, 0xBF ], // U+0000007F [ 0xE0, 0x9F, 0xBF ], // U+000007FF [ 0xF0, 0x8F, 0xBF, 0xBF ], // U+0000FFFF [ 0xF8, 0x87, 0xBF, 0xBF, 0xBF ], // U+001FFFFF [ 0xFC, 0x83, 0xBF, 0xBF, 0xBF, 0xBF ], // U+03FFFFFF // Overlong representation of the NUL character /* The following five sequences should also be rejected like malformed UTF-8 sequences and should not be treated like the ASCII NUL character. */ [ 0xC0, 0x80 ], [ 0xE0, 0x80, 0x80 ], [ 0xF0, 0x80, 0x80, 0x80 ], [ 0xF8, 0x80, 0x80, 0x80, 0x80 ], [ 0xFC, 0x80, 0x80, 0x80, 0x80, 0x80 ], // Illegal code positions /* The following UTF-8 sequences should be rejected like malformed sequences, because they never represent valid ISO 10646 characters and a UTF-8 decoder that accepts them might introduce security problems comparable to overlong UTF-8 sequences. */ [ 0xED, 0xA0, 0x80 ], // U+D800 [ 0xED, 0xAD, 0xBF ], // U+DB7F [ 0xED, 0xAE, 0x80 ], // U+DB80 [ 0xED, 0xAF, 0xBF ], // U+DBFF [ 0xED, 0xB0, 0x80 ], // U+DC00 [ 0xED, 0xBE, 0x80 ], // U+DF80 [ 0xED, 0xBF, 0xBF ], // U+DFFF ]; static string[] sanitizedStrings = [ "\uFFFD","\uFFFD", "\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD"," \uFFFD ", " \uFFFD ","\uFFFD\uFFFD\uFFFD","\uFFFD","\uFFFD"," \uFFFD "," \uFFFD ", "\uFFFD","\uFFFD"," \uFFFD "," \uFFFD ","\uFFFD","\uFFFD"," \uFFFD ", " \uFFFD ","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD", "\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD\uFFFD","\uFFFD","\uFFFD", "\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD"," \uFFFD ", " \uFFFD "," \uFFFD "," \uFFFD "," \uFFFD "," \uFFFD "," \uFFFD ", " \uFFFD ","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD", "\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD", "\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD","\uFFFD", ]; // Make sure everything that should be valid, is foreach (a;validStrings) { string s = cast(string) a; assert(isValid(s),"Failed to validate: "~makeReadable(s)); } // Make sure everything that shouldn't be valid, isn't foreach (a;invalidStrings) { string s = cast(string) a; assert(!isValid(s),"Incorrectly validated: "~makeReadable(s)); } // Make sure we can sanitize everything bad assert(invalidStrings.length == sanitizedStrings.length); for (int i=0; i<invalidStrings.length; ++i) { string s = cast(string) invalidStrings[i]; string t = sanitize(s); assert(isValid(t)); assert(t == sanitizedStrings[i]); ubyte[] u = cast(ubyte[]) t; validStrings ~= u; } // Make sure all transcodings work in both directions, using both forward // and reverse iteration foreach (a; validStrings) { string s = cast(string) a; string s2; wstring ws, ws2; dstring ds, ds2; transcode(s,ws); assert(isValid(ws)); transcode(ws,s2); assert(s == s2); transcode(s,ds); assert(isValid(ds)); transcode(ds,s2); assert(s == s2); transcode(ws,s); assert(isValid(s)); transcode(s,ws2); assert(ws == ws2); transcode(ws,ds); assert(isValid(ds)); transcode(ds,ws2); assert(ws == ws2); transcode(ds,s); assert(isValid(s)); transcode(s,ds2); assert(ds == ds2); transcode(ds,ws); assert(isValid(ws)); transcode(ws,ds2); assert(ds == ds2); transcodeReverse(s,ws); assert(isValid(ws)); transcodeReverse(ws,s2); assert(s == s2); transcodeReverse(s,ds); assert(isValid(ds)); transcodeReverse(ds,s2); assert(s == s2); transcodeReverse(ws,s); assert(isValid(s)); transcodeReverse(s,ws2); assert(ws == ws2); transcodeReverse(ws,ds); assert(isValid(ds)); transcodeReverse(ds,ws2); assert(ws == ws2); transcodeReverse(ds,s); assert(isValid(s)); transcodeReverse(s,ds2); assert(ds == ds2); transcodeReverse(ds,ws); assert(isValid(ws)); transcodeReverse(ws,ds2); assert(ds == ds2); } // Make sure the non-UTF encodings work too { auto s = "\u20AC100"; Windows1252String t; transcode(s,t); assert(t == cast(Windows1252Char[])[0x80, '1', '0', '0']); string u; transcode(s,u); assert(s == u); Latin1String v; transcode(s,v); assert(cast(string) v == "?100"); AsciiString w; transcode(v,w); assert(cast(string) w == "?100"); s = "\u017Dlu\u0165ou\u010Dk\u00FD k\u016F\u0148"; Latin2String x; transcode(s,x); assert(x == cast(Latin2Char[])[0xae, 'l', 'u', 0xbb, 'o', 'u', 0xe8, 'k', 0xfd, ' ', 'k', 0xf9, 0xf2]); Windows1250String y; transcode(s,y); assert(y == cast(Windows1250Char[])[0x8e, 'l', 'u', 0x9d, 'o', 'u', 0xe8, 'k', 0xfd, ' ', 'k', 0xf9, 0xf2]); } // Make sure we can count properly { assert(encodedLength!(char)('A') == 1); assert(encodedLength!(char)('\u00E3') == 2); assert(encodedLength!(char)('\u2028') == 3); assert(encodedLength!(char)('\U0010FFF0') == 4); assert(encodedLength!(wchar)('A') == 1); assert(encodedLength!(wchar)('\U0010FFF0') == 2); } // Make sure we can write into mutable arrays { char[4] buffer; auto n = encode(cast(dchar)'\u00E3',buffer); assert(n == 2); assert(buffer[0] == 0xC3); assert(buffer[1] == 0xA3); } } //============================================================================= /** Special value returned by $(D safeDecode) */ enum dchar INVALID_SEQUENCE = cast(dchar) 0xFFFFFFFF; template EncoderFunctions() { // Various forms of read template ReadFromString() { @property bool canRead() { return s.length != 0; } E peek() @safe pure @nogc nothrow { return s[0]; } E read() @safe pure @nogc nothrow { E t = s[0]; s = s[1..$]; return t; } } template ReverseReadFromString() { @property bool canRead() { return s.length != 0; } E peek() @safe pure @nogc nothrow { return s[$-1]; } E read() @safe pure @nogc nothrow { E t = s[$-1]; s = s[0..$-1]; return t; } } // Various forms of Write template WriteToString() { E[] s; void write(E c) @safe pure nothrow { s ~= c; } } template WriteToArray() { void write(E c) @safe pure @nogc nothrow { array[0] = c; array = array[1..$]; } } template WriteToDelegate() { void write(E c) { dg(c); } } // Functions we will export template EncodeViaWrite() { mixin encodeViaWrite; void encode(dchar c) { encodeViaWrite(c); } } template SkipViaRead() { mixin skipViaRead; void skip() @safe pure @nogc nothrow { skipViaRead(); } } template DecodeViaRead() { mixin decodeViaRead; dchar decode() @safe pure @nogc nothrow { return decodeViaRead(); } } template SafeDecodeViaRead() { mixin safeDecodeViaRead; dchar safeDecode() @safe pure @nogc nothrow { return safeDecodeViaRead(); } } template DecodeReverseViaRead() { mixin decodeReverseViaRead; dchar decodeReverse() @safe pure @nogc nothrow { return decodeReverseViaRead(); } } // Encoding to different destinations template EncodeToString() { mixin WriteToString; mixin EncodeViaWrite; } template EncodeToArray() { mixin WriteToArray; mixin EncodeViaWrite; } template EncodeToDelegate() { mixin WriteToDelegate; mixin EncodeViaWrite; } // Decoding functions template SkipFromString() { mixin ReadFromString; mixin SkipViaRead; } template DecodeFromString() { mixin ReadFromString; mixin DecodeViaRead; } template SafeDecodeFromString() { mixin ReadFromString; mixin SafeDecodeViaRead; } template DecodeReverseFromString() { mixin ReverseReadFromString; mixin DecodeReverseViaRead; } //========================================================================= // Below are the functions we will ultimately expose to the user E[] encode(dchar c) @safe pure nothrow { mixin EncodeToString e; e.encode(c); return e.s; } void encode(dchar c, ref E[] array) @safe pure nothrow { mixin EncodeToArray e; e.encode(c); } void encode(dchar c, void delegate(E) dg) { mixin EncodeToDelegate e; e.encode(c); } void skip(ref const(E)[] s) @safe pure nothrow { mixin SkipFromString e; e.skip(); } dchar decode(S)(ref S s) { mixin DecodeFromString e; return e.decode(); } dchar safeDecode(S)(ref S s) { mixin SafeDecodeFromString e; return e.safeDecode(); } dchar decodeReverse(ref const(E)[] s) @safe pure nothrow { mixin DecodeReverseFromString e; return e.decodeReverse(); } } //========================================================================= struct CodePoints(E) { const(E)[] s; this(const(E)[] s) in { assert(isValid(s)); } body { this.s = s; } int opApply(scope int delegate(ref dchar) dg) { int result = 0; while (s.length != 0) { dchar c = decode(s); result = dg(c); if (result != 0) break; } return result; } int opApply(scope int delegate(ref size_t, ref dchar) dg) { size_t i = 0; int result = 0; while (s.length != 0) { immutable len = s.length; dchar c = decode(s); size_t j = i; // We don't want the delegate corrupting i result = dg(j,c); if (result != 0) break; i += len - s.length; } return result; } int opApplyReverse(scope int delegate(ref dchar) dg) { int result = 0; while (s.length != 0) { dchar c = decodeReverse(s); result = dg(c); if (result != 0) break; } return result; } int opApplyReverse(scope int delegate(ref size_t, ref dchar) dg) { int result = 0; while (s.length != 0) { dchar c = decodeReverse(s); size_t i = s.length; result = dg(i,c); if (result != 0) break; } return result; } } struct CodeUnits(E) { E[] s; this(dchar d) in { assert(isValidCodePoint(d)); } body { s = encode!(E)(d); } int opApply(scope int delegate(ref E) dg) { int result = 0; foreach (E c;s) { result = dg(c); if (result != 0) break; } return result; } int opApplyReverse(scope int delegate(ref E) dg) { int result = 0; foreach_reverse (E c;s) { result = dg(c); if (result != 0) break; } return result; } } //============================================================================= template EncoderInstance(E) { static assert(false,"Cannot instantiate EncoderInstance for type " ~ E.stringof); } private template GenericEncoder() { bool canEncode(dchar c) @safe pure @nogc nothrow { if (c < m_charMapStart || (c > m_charMapEnd && c < 0x100)) return true; if (c >= 0xFFFD) return false; auto idx = 0; while (idx < bstMap.length) { if (bstMap[idx][0] == c) return true; idx = bstMap[idx][0] > c ? 2 * idx + 1 : 2 * idx + 2; // next BST index } return false; } bool isValidCodeUnit(E c) @safe pure @nogc nothrow { if (c < m_charMapStart || c > m_charMapEnd) return true; return charMap[c-m_charMapStart] != 0xFFFD; } size_t encodedLength(dchar c) @safe pure @nogc nothrow in { assert(canEncode(c)); } body { return 1; } void encodeViaWrite()(dchar c) { if (c < m_charMapStart || (c > m_charMapEnd && c < 0x100)) {} else if (c >= 0xFFFD) { c = '?'; } else { auto idx = 0; while (idx < bstMap.length) { if (bstMap[idx][0] == c) { write(cast(E) bstMap[idx][1]); return; } idx = bstMap[idx][0] > c ? 2 * idx + 1 : 2 * idx + 2; // next BST index } c = '?'; } write(cast(E) c); } void skipViaRead()() { read(); } dchar decodeViaRead()() { E c = read(); return (c >= m_charMapStart && c <= m_charMapEnd) ? charMap[c-m_charMapStart] : c; } dchar safeDecodeViaRead()() { immutable E c = read(); immutable d = (c >= m_charMapStart && c <= m_charMapEnd) ? charMap[c-m_charMapStart] : c; return d == 0xFFFD ? INVALID_SEQUENCE : d; } dchar decodeReverseViaRead()() { E c = read(); return (c >= m_charMapStart && c <= m_charMapEnd) ? charMap[c-m_charMapStart] : c; } @property EString replacementSequence() @safe pure @nogc nothrow { return cast(EString)("?"); } mixin EncoderFunctions; } //============================================================================= // ASCII //============================================================================= /** Defines various character sets. */ enum AsciiChar : ubyte { init } /// Ditto alias AsciiString = immutable(AsciiChar)[]; template EncoderInstance(CharType : AsciiChar) { alias E = AsciiChar; alias EString = AsciiString; @property string encodingName() @safe pure nothrow @nogc { return "ASCII"; } bool canEncode(dchar c) @safe pure nothrow @nogc { return c < 0x80; } bool isValidCodeUnit(AsciiChar c) @safe pure nothrow @nogc { return c < 0x80; } size_t encodedLength(dchar c) @safe pure nothrow @nogc in { assert(canEncode(c)); } body { return 1; } void encodeX(Range)(dchar c, Range r) { if (!canEncode(c)) c = '?'; r.write(cast(AsciiChar) c); } void encodeViaWrite()(dchar c) { if (!canEncode(c)) c = '?'; write(cast(AsciiChar) c); } void skipViaRead()() { read(); } dchar decodeViaRead()() { return read(); } dchar safeDecodeViaRead()() { immutable c = read(); return canEncode(c) ? c : INVALID_SEQUENCE; } dchar decodeReverseViaRead()() { return read(); } @property EString replacementSequence() @safe pure nothrow @nogc { return cast(EString)("?"); } mixin EncoderFunctions; } //============================================================================= // ISO-8859-1 //============================================================================= /** Defines an Latin1-encoded character. */ enum Latin1Char : ubyte { init } /** Defines an Latin1-encoded string (as an array of $(D immutable(Latin1Char))). */ alias Latin1String = immutable(Latin1Char)[]; template EncoderInstance(CharType : Latin1Char) { alias E = Latin1Char; alias EString = Latin1String; @property string encodingName() @safe pure nothrow @nogc { return "ISO-8859-1"; } bool canEncode(dchar c) @safe pure nothrow @nogc { return c < 0x100; } bool isValidCodeUnit(Latin1Char c) @safe pure nothrow @nogc { return true; } size_t encodedLength(dchar c) @safe pure nothrow @nogc in { assert(canEncode(c)); } body { return 1; } void encodeViaWrite()(dchar c) { if (!canEncode(c)) c = '?'; write(cast(Latin1Char) c); } void skipViaRead()() { read(); } dchar decodeViaRead()() { return read(); } dchar safeDecodeViaRead()() { return read(); } dchar decodeReverseViaRead()() { return read(); } @property EString replacementSequence() @safe pure nothrow @nogc { return cast(EString)("?"); } mixin EncoderFunctions; } //============================================================================= // ISO-8859-2 //============================================================================= /// Defines a Latin2-encoded character. enum Latin2Char : ubyte { init } /** * Defines an Latin2-encoded string (as an array of $(D * immutable(Latin2Char))). */ alias Latin2String = immutable(Latin2Char)[]; private template EncoderInstance(CharType : Latin2Char) { import std.typecons : Tuple, tuple; alias E = Latin2Char; alias EString = Latin2String; @property string encodingName() @safe pure nothrow @nogc { return "ISO-8859-2"; } private static immutable dchar m_charMapStart = 0xa1; private static immutable dchar m_charMapEnd = 0xff; private immutable wstring charMap = "\u0104\u02D8\u0141\u00A4\u013D\u015A\u00A7\u00A8"~ "\u0160\u015E\u0164\u0179\u00AD\u017D\u017B\u00B0"~ "\u0105\u02DB\u0142\u00B4\u013E\u015B\u02C7\u00B8"~ "\u0161\u015F\u0165\u017A\u02DD\u017E\u017C\u0154"~ "\u00C1\u00C2\u0102\u00C4\u0139\u0106\u00C7\u010C"~ "\u00C9\u0118\u00CB\u011A\u00CD\u00CE\u010E\u0110"~ "\u0143\u0147\u00D3\u00D4\u0150\u00D6\u00D7\u0158"~ "\u016E\u00DA\u0170\u00DC\u00DD\u0162\u00DF\u0155"~ "\u00E1\u00E2\u0103\u00E4\u013A\u0107\u00E7\u010D"~ "\u00E9\u0119\u00EB\u011B\u00ED\u00EE\u010F\u0111"~ "\u0144\u0148\u00F3\u00F4\u0151\u00F6\u00F7\u0159"~ "\u016F\u00FA\u0171\u00FC\u00FD\u0163\u02D9"; private immutable Tuple!(wchar, char)[] bstMap = [ tuple('\u0148','\xF2'), tuple('\u00F3','\xF3'), tuple('\u0165','\xBB'), tuple('\u00D3','\xD3'), tuple('\u010F','\xEF'), tuple('\u015B','\xB6'), tuple('\u017C','\xBF'), tuple('\u00C1','\xC1'), tuple('\u00E1','\xE1'), tuple('\u0103','\xE3'), tuple('\u013A','\xE5'), tuple('\u0155','\xE0'), tuple('\u0161','\xB9'), tuple('\u0171','\xFB'), tuple('\u02D8','\xA2'), tuple('\u00AD','\xAD'), tuple('\u00C9','\xC9'), tuple('\u00DA','\xDA'), tuple('\u00E9','\xE9'), tuple('\u00FA','\xFA'), tuple('\u0107','\xE6'), tuple('\u0119','\xEA'), tuple('\u0142','\xB3'), tuple('\u0151','\xF5'), tuple('\u0159','\xF8'), tuple('\u015F','\xBA'), tuple('\u0163','\xFE'), tuple('\u016F','\xF9'), tuple('\u017A','\xBC'), tuple('\u017E','\xBE'), tuple('\u02DB','\xB2'), tuple('\u00A7','\xA7'), tuple('\u00B4','\xB4'), tuple('\u00C4','\xC4'), tuple('\u00CD','\xCD'), tuple('\u00D6','\xD6'), tuple('\u00DD','\xDD'), tuple('\u00E4','\xE4'), tuple('\u00ED','\xED'), tuple('\u00F6','\xF6'), tuple('\u00FD','\xFD'), tuple('\u0105','\xB1'), tuple('\u010D','\xE8'), tuple('\u0111','\xF0'), tuple('\u011B','\xEC'), tuple('\u013E','\xB5'), tuple('\u0144','\xF1'), tuple('\u0150','\xD5'), tuple('\u0154','\xC0'), tuple('\u0158','\xD8'), tuple('\u015A','\xA6'), tuple('\u015E','\xAA'), tuple('\u0160','\xA9'), tuple('\u0162','\xDE'), tuple('\u0164','\xAB'), tuple('\u016E','\xD9'), tuple('\u0170','\xDB'), tuple('\u0179','\xAC'), tuple('\u017B','\xAF'), tuple('\u017D','\xAE'), tuple('\u02C7','\xB7'), tuple('\u02D9','\xFF'), tuple('\u02DD','\xBD'), tuple('\u00A4','\xA4'), tuple('\u00A8','\xA8'), tuple('\u00B0','\xB0'), tuple('\u00B8','\xB8'), tuple('\u00C2','\xC2'), tuple('\u00C7','\xC7'), tuple('\u00CB','\xCB'), tuple('\u00CE','\xCE'), tuple('\u00D4','\xD4'), tuple('\u00D7','\xD7'), tuple('\u00DC','\xDC'), tuple('\u00DF','\xDF'), tuple('\u00E2','\xE2'), tuple('\u00E7','\xE7'), tuple('\u00EB','\xEB'), tuple('\u00EE','\xEE'), tuple('\u00F4','\xF4'), tuple('\u00F7','\xF7'), tuple('\u00FC','\xFC'), tuple('\u0102','\xC3'), tuple('\u0104','\xA1'), tuple('\u0106','\xC6'), tuple('\u010C','\xC8'), tuple('\u010E','\xCF'), tuple('\u0110','\xD0'), tuple('\u0118','\xCA'), tuple('\u011A','\xCC'), tuple('\u0139','\xC5'), tuple('\u013D','\xA5'), tuple('\u0141','\xA3'), tuple('\u0143','\xD1'), tuple('\u0147','\xD2') ]; mixin GenericEncoder!(); } //============================================================================= // WINDOWS-1250 //============================================================================= /// Defines a Windows1250-encoded character. enum Windows1250Char : ubyte { init } /** * Defines an Windows1250-encoded string (as an array of $(D * immutable(Windows1250Char))). */ alias Windows1250String = immutable(Windows1250Char)[]; private template EncoderInstance(CharType : Windows1250Char) { import std.typecons : Tuple, tuple; alias E = Windows1250Char; alias EString = Windows1250String; @property string encodingName() @safe pure nothrow @nogc { return "windows-1250"; } private static immutable dchar m_charMapStart = 0x80; private static immutable dchar m_charMapEnd = 0xff; private immutable wstring charMap = "\u20AC\uFFFD\u201A\uFFFD\u201E\u2026\u2020\u2021"~ "\uFFFD\u2030\u0160\u2039\u015A\u0164\u017D\u0179"~ "\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014"~ "\uFFFD\u2122\u0161\u203A\u015B\u0165\u017E\u017A"~ "\u00A0\u02C7\u02D8\u0141\u00A4\u0104\u00A6\u00A7"~ "\u00A8\u00A9\u015E\u00AB\u00AC\u00AD\u00AE\u017B"~ "\u00B0\u00B1\u02DB\u0142\u00B4\u00B5\u00B6\u00B7"~ "\u00B8\u0105\u015F\u00BB\u013D\u02DD\u013E\u017C"~ "\u0154\u00C1\u00C2\u0102\u00C4\u0139\u0106\u00C7"~ "\u010C\u00C9\u0118\u00CB\u011A\u00CD\u00CE\u010E"~ "\u0110\u0143\u0147\u00D3\u00D4\u0150\u00D6\u00D7"~ "\u0158\u016E\u00DA\u0170\u00DC\u00DD\u0162\u00DF"~ "\u0155\u00E1\u00E2\u0103\u00E4\u013A\u0107\u00E7"~ "\u010D\u00E9\u0119\u00EB\u011B\u00ED\u00EE\u010F"~ "\u0111\u0144\u0148\u00F3\u00F4\u0151\u00F6\u00F7"~ "\u0159\u016F\u00FA\u0171\u00FC\u00FD\u0163\u02D9"; private immutable Tuple!(wchar, char)[] bstMap = [ tuple('\u011A','\xCC'), tuple('\u00DC','\xDC'), tuple('\u0179','\x8F'), tuple('\u00B7','\xB7'), tuple('\u00FC','\xFC'), tuple('\u0158','\xD8'), tuple('\u201C','\x93'), tuple('\u00AC','\xAC'), tuple('\u00CB','\xCB'), tuple('\u00EB','\xEB'), tuple('\u010C','\xC8'), tuple('\u0143','\xD1'), tuple('\u0162','\xDE'), tuple('\u02D9','\xFF'), tuple('\u2039','\x8B'), tuple('\u00A7','\xA7'), tuple('\u00B1','\xB1'), tuple('\u00C2','\xC2'), tuple('\u00D4','\xD4'), tuple('\u00E2','\xE2'), tuple('\u00F4','\xF4'), tuple('\u0104','\xA5'), tuple('\u0110','\xD0'), tuple('\u013D','\xBC'), tuple('\u0150','\xD5'), tuple('\u015E','\xAA'), tuple('\u016E','\xD9'), tuple('\u017D','\x8E'), tuple('\u2014','\x97'), tuple('\u2021','\x87'), tuple('\u20AC','\x80'), tuple('\u00A4','\xA4'), tuple('\u00A9','\xA9'), tuple('\u00AE','\xAE'), tuple('\u00B5','\xB5'), tuple('\u00BB','\xBB'), tuple('\u00C7','\xC7'), tuple('\u00CE','\xCE'), tuple('\u00D7','\xD7'), tuple('\u00DF','\xDF'), tuple('\u00E7','\xE7'), tuple('\u00EE','\xEE'), tuple('\u00F7','\xF7'), tuple('\u0102','\xC3'), tuple('\u0106','\xC6'), tuple('\u010E','\xCF'), tuple('\u0118','\xCA'), tuple('\u0139','\xC5'), tuple('\u0141','\xA3'), tuple('\u0147','\xD2'), tuple('\u0154','\xC0'), tuple('\u015A','\x8C'), tuple('\u0160','\x8A'), tuple('\u0164','\x8D'), tuple('\u0170','\xDB'), tuple('\u017B','\xAF'), tuple('\u02C7','\xA1'), tuple('\u02DD','\xBD'), tuple('\u2019','\x92'), tuple('\u201E','\x84'), tuple('\u2026','\x85'), tuple('\u203A','\x9B'), tuple('\u2122','\x99'), tuple('\u00A0','\xA0'), tuple('\u00A6','\xA6'), tuple('\u00A8','\xA8'), tuple('\u00AB','\xAB'), tuple('\u00AD','\xAD'), tuple('\u00B0','\xB0'), tuple('\u00B4','\xB4'), tuple('\u00B6','\xB6'), tuple('\u00B8','\xB8'), tuple('\u00C1','\xC1'), tuple('\u00C4','\xC4'), tuple('\u00C9','\xC9'), tuple('\u00CD','\xCD'), tuple('\u00D3','\xD3'), tuple('\u00D6','\xD6'), tuple('\u00DA','\xDA'), tuple('\u00DD','\xDD'), tuple('\u00E1','\xE1'), tuple('\u00E4','\xE4'), tuple('\u00E9','\xE9'), tuple('\u00ED','\xED'), tuple('\u00F3','\xF3'), tuple('\u00F6','\xF6'), tuple('\u00FA','\xFA'), tuple('\u00FD','\xFD'), tuple('\u0103','\xE3'), tuple('\u0105','\xB9'), tuple('\u0107','\xE6'), tuple('\u010D','\xE8'), tuple('\u010F','\xEF'), tuple('\u0111','\xF0'), tuple('\u0119','\xEA'), tuple('\u011B','\xEC'), tuple('\u013A','\xE5'), tuple('\u013E','\xBE'), tuple('\u0142','\xB3'), tuple('\u0144','\xF1'), tuple('\u0148','\xF2'), tuple('\u0151','\xF5'), tuple('\u0155','\xE0'), tuple('\u0159','\xF8'), tuple('\u015B','\x9C'), tuple('\u015F','\xBA'), tuple('\u0161','\x9A'), tuple('\u0163','\xFE'), tuple('\u0165','\x9D'), tuple('\u016F','\xF9'), tuple('\u0171','\xFB'), tuple('\u017A','\x9F'), tuple('\u017C','\xBF'), tuple('\u017E','\x9E'), tuple('\u02D8','\xA2'), tuple('\u02DB','\xB2'), tuple('\u2013','\x96'), tuple('\u2018','\x91'), tuple('\u201A','\x82'), tuple('\u201D','\x94'), tuple('\u2020','\x86'), tuple('\u2022','\x95'), tuple('\u2030','\x89') ]; mixin GenericEncoder!(); } //============================================================================= // WINDOWS-1252 //============================================================================= /// Defines a Windows1252-encoded character. enum Windows1252Char : ubyte { init } /** * Defines an Windows1252-encoded string (as an array of $(D * immutable(Windows1252Char))). */ alias Windows1252String = immutable(Windows1252Char)[]; template EncoderInstance(CharType : Windows1252Char) { import std.typecons : Tuple, tuple; alias E = Windows1252Char; alias EString = Windows1252String; @property string encodingName() @safe pure nothrow @nogc { return "windows-1252"; } private static immutable dchar m_charMapStart = 0x80; private static immutable dchar m_charMapEnd = 0x9f; private immutable wstring charMap = "\u20AC\uFFFD\u201A\u0192\u201E\u2026\u2020\u2021"~ "\u02C6\u2030\u0160\u2039\u0152\uFFFD\u017D\uFFFD"~ "\uFFFD\u2018\u2019\u201C\u201D\u2022\u2013\u2014"~ "\u02DC\u2122\u0161\u203A\u0153\uFFFD\u017E\u0178"; private immutable Tuple!(wchar, char)[] bstMap = [ tuple('\u201C','\x93'), tuple('\u0192','\x83'), tuple('\u2039','\x8B'), tuple('\u0161','\x9A'), tuple('\u2014','\x97'), tuple('\u2021','\x87'), tuple('\u20AC','\x80'), tuple('\u0153','\x9C'), tuple('\u017D','\x8E'), tuple('\u02DC','\x98'), tuple('\u2019','\x92'), tuple('\u201E','\x84'), tuple('\u2026','\x85'), tuple('\u203A','\x9B'), tuple('\u2122','\x99'), tuple('\u0152','\x8C'), tuple('\u0160','\x8A'), tuple('\u0178','\x9F'), tuple('\u017E','\x9E'), tuple('\u02C6','\x88'), tuple('\u2013','\x96'), tuple('\u2018','\x91'), tuple('\u201A','\x82'), tuple('\u201D','\x94'), tuple('\u2020','\x86'), tuple('\u2022','\x95'), tuple('\u2030','\x89') ]; mixin GenericEncoder!(); } //============================================================================= // UTF-8 //============================================================================= template EncoderInstance(CharType : char) { alias E = char; alias EString = immutable(char)[]; @property string encodingName() @safe pure nothrow @nogc { return "UTF-8"; } bool canEncode(dchar c) @safe pure nothrow @nogc { return isValidCodePoint(c); } bool isValidCodeUnit(char c) @safe pure nothrow @nogc { return (c < 0xC0 || (c >= 0xC2 && c < 0xF5)); } immutable ubyte[128] tailTable = [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, 3,3,3,3,3,3,3,3,4,4,4,4,5,5,6,0, ]; private int tails(char c) @safe pure nothrow @nogc in { assert(c >= 0x80); } body { return tailTable[c-0x80]; } size_t encodedLength(dchar c) @safe pure nothrow @nogc in { assert(canEncode(c)); } body { if (c < 0x80) return 1; if (c < 0x800) return 2; if (c < 0x10000) return 3; return 4; } void encodeViaWrite()(dchar c) { if (c < 0x80) { write(cast(char) c); } else if (c < 0x800) { write(cast(char)((c >> 6) + 0xC0)); write(cast(char)((c & 0x3F) + 0x80)); } else if (c < 0x10000) { write(cast(char)((c >> 12) + 0xE0)); write(cast(char)(((c >> 6) & 0x3F) + 0x80)); write(cast(char)((c & 0x3F) + 0x80)); } else { write(cast(char)((c >> 18) + 0xF0)); write(cast(char)(((c >> 12) & 0x3F) + 0x80)); write(cast(char)(((c >> 6) & 0x3F) + 0x80)); write(cast(char)((c & 0x3F) + 0x80)); } } void skipViaRead()() { auto c = read(); if (c < 0xC0) return; int n = tails(cast(char) c); for (size_t i=0; i<n; ++i) { read(); } } dchar decodeViaRead()() { dchar c = read(); if (c < 0xC0) return c; int n = tails(cast(char) c); c &= (1 << (6 - n)) - 1; for (size_t i=0; i<n; ++i) { c = (c << 6) + (read() & 0x3F); } return c; } dchar safeDecodeViaRead()() { dchar c = read(); if (c < 0x80) return c; int n = tails(cast(char) c); if (n == 0) return INVALID_SEQUENCE; if (!canRead) return INVALID_SEQUENCE; size_t d = peek(); immutable err = ( (c < 0xC2) // fail overlong 2-byte sequences || (c > 0xF4) // fail overlong 4-6-byte sequences || (c == 0xE0 && ((d & 0xE0) == 0x80)) // fail overlong 3-byte sequences || (c == 0xED && ((d & 0xE0) == 0xA0)) // fail surrogates || (c == 0xF0 && ((d & 0xF0) == 0x80)) // fail overlong 4-byte sequences || (c == 0xF4 && ((d & 0xF0) >= 0x90)) // fail code points > 0x10FFFF ); c &= (1 << (6 - n)) - 1; for (size_t i=0; i<n; ++i) { if (!canRead) return INVALID_SEQUENCE; d = peek(); if ((d & 0xC0) != 0x80) return INVALID_SEQUENCE; c = (c << 6) + (read() & 0x3F); } return err ? INVALID_SEQUENCE : c; } dchar decodeReverseViaRead()() { dchar c = read(); if (c < 0x80) return c; size_t shift = 0; c &= 0x3F; for (size_t i=0; i<4; ++i) { shift += 6; auto d = read(); size_t n = tails(cast(char) d); immutable mask = n == 0 ? 0x3F : (1 << (6 - n)) - 1; c += ((d & mask) << shift); if (n != 0) break; } return c; } @property EString replacementSequence() @safe pure nothrow @nogc { return "\uFFFD"; } mixin EncoderFunctions; } //============================================================================= // UTF-16 //============================================================================= template EncoderInstance(CharType : wchar) { alias E = wchar; alias EString = immutable(wchar)[]; @property string encodingName() @safe pure nothrow @nogc { return "UTF-16"; } bool canEncode(dchar c) @safe pure nothrow @nogc { return isValidCodePoint(c); } bool isValidCodeUnit(wchar c) @safe pure nothrow @nogc { return true; } size_t encodedLength(dchar c) @safe pure nothrow @nogc in { assert(canEncode(c)); } body { return (c < 0x10000) ? 1 : 2; } void encodeViaWrite()(dchar c) { if (c < 0x10000) { write(cast(wchar) c); } else { size_t n = c - 0x10000; write(cast(wchar)(0xD800 + (n >> 10))); write(cast(wchar)(0xDC00 + (n & 0x3FF))); } } void skipViaRead()() { immutable c = read(); if (c < 0xD800 || c >= 0xE000) return; read(); } dchar decodeViaRead()() { wchar c = read(); if (c < 0xD800 || c >= 0xE000) return cast(dchar) c; wchar d = read(); c &= 0x3FF; d &= 0x3FF; return 0x10000 + (c << 10) + d; } dchar safeDecodeViaRead()() { wchar c = read(); if (c < 0xD800 || c >= 0xE000) return cast(dchar) c; if (c >= 0xDC00) return INVALID_SEQUENCE; if (!canRead) return INVALID_SEQUENCE; wchar d = peek(); if (d < 0xDC00 || d >= 0xE000) return INVALID_SEQUENCE; d = read(); c &= 0x3FF; d &= 0x3FF; return 0x10000 + (c << 10) + d; } dchar decodeReverseViaRead()() { wchar c = read(); if (c < 0xD800 || c >= 0xE000) return cast(dchar) c; wchar d = read(); c &= 0x3FF; d &= 0x3FF; return 0x10000 + (d << 10) + c; } @property EString replacementSequence() @safe pure nothrow @nogc { return "\uFFFD"w; } mixin EncoderFunctions; } //============================================================================= // UTF-32 //============================================================================= template EncoderInstance(CharType : dchar) { alias E = dchar; alias EString = immutable(dchar)[]; @property string encodingName() @safe pure nothrow @nogc { return "UTF-32"; } bool canEncode(dchar c) @safe pure @nogc nothrow { return isValidCodePoint(c); } bool isValidCodeUnit(dchar c) @safe pure @nogc nothrow { return isValidCodePoint(c); } size_t encodedLength(dchar c) @safe pure @nogc nothrow in { assert(canEncode(c)); } body { return 1; } void encodeViaWrite()(dchar c) { write(c); } void skipViaRead()() { read(); } dchar decodeViaRead()() { return cast(dchar) read(); } dchar safeDecodeViaRead()() { immutable c = read(); return isValidCodePoint(c) ? c : INVALID_SEQUENCE; } dchar decodeReverseViaRead()() { return cast(dchar) read(); } @property EString replacementSequence() @safe pure nothrow @nogc { return "\uFFFD"d; } mixin EncoderFunctions; } //============================================================================= // Below are forwarding functions which expose the function to the user /** Returns true if c is a valid code point Note that this includes the non-character code points U+FFFE and U+FFFF, since these are valid code points (even though they are not valid characters). Supersedes: This function supersedes $(D std.utf.startsValidDchar()). Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be tested */ bool isValidCodePoint(dchar c) @safe pure nothrow @nogc { return c < 0xD800 || (c >= 0xE000 && c < 0x110000); } /** Returns the name of an encoding. The type of encoding cannot be deduced. Therefore, it is necessary to explicitly specify the encoding type. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 */ @property string encodingName(T)() { return EncoderInstance!(T).encodingName; } /// @safe unittest { assert(encodingName!(char) == "UTF-8"); assert(encodingName!(wchar) == "UTF-16"); assert(encodingName!(dchar) == "UTF-32"); assert(encodingName!(AsciiChar) == "ASCII"); assert(encodingName!(Latin1Char) == "ISO-8859-1"); assert(encodingName!(Latin2Char) == "ISO-8859-2"); assert(encodingName!(Windows1250Char) == "windows-1250"); assert(encodingName!(Windows1252Char) == "windows-1252"); } /** Returns true iff it is possible to represent the specified codepoint in the encoding. The type of encoding cannot be deduced. Therefore, it is necessary to explicitly specify the encoding type. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 */ bool canEncode(E)(dchar c) { return EncoderInstance!(E).canEncode(c); } /// @safe pure unittest { assert( canEncode!(Latin1Char)('A')); assert( canEncode!(Latin2Char)('A')); assert(!canEncode!(AsciiChar)('\u00A0')); assert( canEncode!(Latin1Char)('\u00A0')); assert( canEncode!(Latin2Char)('\u00A0')); assert( canEncode!(Windows1250Char)('\u20AC')); assert(!canEncode!(Windows1250Char)('\u20AD')); assert(!canEncode!(Windows1250Char)('\uFFFD')); assert( canEncode!(Windows1252Char)('\u20AC')); assert(!canEncode!(Windows1252Char)('\u20AD')); assert(!canEncode!(Windows1252Char)('\uFFFD')); assert(!canEncode!(char)(cast(dchar) 0x110000)); } /// How to check an entire string @safe pure unittest { import std.algorithm.searching : find; import std.utf : byDchar; assert("The quick brown fox" .byDchar .find!(x => !canEncode!AsciiChar(x)) .empty); } /** Returns true if the code unit is legal. For example, the byte 0x80 would not be legal in ASCII, because ASCII code units must always be in the range 0x00 to 0x7F. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code unit to be tested */ bool isValidCodeUnit(E)(E c) { return EncoderInstance!(E).isValidCodeUnit(c); } /// @system pure unittest { assert(!isValidCodeUnit(cast(char) 0xC0)); assert(!isValidCodeUnit(cast(char) 0xFF)); assert( isValidCodeUnit(cast(wchar) 0xD800)); assert(!isValidCodeUnit(cast(dchar) 0xD800)); assert(!isValidCodeUnit(cast(AsciiChar) 0xA0)); assert( isValidCodeUnit(cast(Windows1250Char) 0x80)); assert(!isValidCodeUnit(cast(Windows1250Char) 0x81)); assert( isValidCodeUnit(cast(Windows1252Char) 0x80)); assert(!isValidCodeUnit(cast(Windows1252Char) 0x81)); } /** Returns true if the string is encoded correctly Supersedes: This function supersedes std.utf.validate(), however note that this function returns a bool indicating whether the input was valid or not, whereas the older function would throw an exception. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be tested */ bool isValid(E)(const(E)[] s) { return s.length == validLength(s); } /// @system pure unittest { assert( isValid("\u20AC100")); assert(!isValid(cast(char[3])[167, 133, 175])); } /** Returns the length of the longest possible substring, starting from the first code unit, which is validly encoded. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be tested */ size_t validLength(E)(const(E)[] s) { size_t result, before = void; while ((before = s.length) > 0) { if (EncoderInstance!(E).safeDecode(s) == INVALID_SEQUENCE) break; result += before - s.length; } return result; } /** Sanitizes a string by replacing malformed code unit sequences with valid code unit sequences. The result is guaranteed to be valid for this encoding. If the input string is already valid, this function returns the original, otherwise it constructs a new string by replacing all illegal code unit sequences with the encoding's replacement character, Invalid sequences will be replaced with the Unicode replacement character (U+FFFD) if the character repertoire contains it, otherwise invalid sequences will be replaced with '?'. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be sanitized */ immutable(E)[] sanitize(E)(immutable(E)[] s) { size_t n = validLength(s); if (n == s.length) return s; auto repSeq = EncoderInstance!(E).replacementSequence; // Count how long the string needs to be. // Overestimating is not a problem size_t len = s.length; const(E)[] t = s[n..$]; while (t.length != 0) { immutable c = EncoderInstance!(E).safeDecode(t); assert(c == INVALID_SEQUENCE); len += repSeq.length; t = t[validLength(t)..$]; } // Now do the write E[] array = new E[len]; array[0 .. n] = s[0 .. n]; size_t offset = n; t = s[n..$]; while (t.length != 0) { immutable c = EncoderInstance!(E).safeDecode(t); assert(c == INVALID_SEQUENCE); array[offset .. offset+repSeq.length] = repSeq[]; offset += repSeq.length; n = validLength(t); array[offset .. offset+n] = t[0 .. n]; offset += n; t = t[n..$]; } return cast(immutable(E)[])array[0 .. offset]; } /// @system pure unittest { assert(sanitize("hello \xF0\x80world") == "hello \xEF\xBF\xBDworld"); } /** Returns the length of the first encoded sequence. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be sliced */ size_t firstSequence(E)(const(E)[] s) in { assert(s.length != 0); const(E)[] u = s; assert(safeDecode(u) != INVALID_SEQUENCE); } body { auto before = s.length; EncoderInstance!(E).skip(s); return before - s.length; } /// @system pure unittest { assert(firstSequence("\u20AC1000") == "\u20AC".length); assert(firstSequence("hel") == "h".length); } /** Returns the length of the last encoded sequence. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be sliced */ size_t lastSequence(E)(const(E)[] s) in { assert(s.length != 0); assert(isValid(s)); } body { const(E)[] t = s; EncoderInstance!(E).decodeReverse(s); return t.length - s.length; } /// @system pure unittest { assert(lastSequence("1000\u20AC") == "\u20AC".length); assert(lastSequence("hellö") == "ö".length); } /** Returns the array index at which the (n+1)th code point begins. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. Supersedes: This function supersedes std.utf.toUTFindex(). Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be counted n = the current code point index */ ptrdiff_t index(E)(const(E)[] s,int n) in { assert(isValid(s)); assert(n >= 0); } body { const(E)[] t = s; for (size_t i=0; i<n; ++i) EncoderInstance!(E).skip(s); return t.length - s.length; } /// @system pure unittest { assert(index("\u20AC100",1) == 3); assert(index("hällo",2) == 3); } /** Decodes a single code point. This function removes one or more code units from the start of a string, and returns the decoded code point which those code units represent. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. Supersedes: This function supersedes std.utf.decode(), however, note that the function codePoints() supersedes it more conveniently. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string whose first code point is to be decoded */ dchar decode(S)(ref S s) in { assert(s.length != 0); auto u = s; assert(safeDecode(u) != INVALID_SEQUENCE); } body { return EncoderInstance!(typeof(s[0])).decode(s); } /** Decodes a single code point from the end of a string. This function removes one or more code units from the end of a string, and returns the decoded code point which those code units represent. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string whose first code point is to be decoded */ dchar decodeReverse(E)(ref const(E)[] s) in { assert(s.length != 0); assert(isValid(s)); } body { return EncoderInstance!(E).decodeReverse(s); } /** Decodes a single code point. The input does not have to be valid. This function removes one or more code units from the start of a string, and returns the decoded code point which those code units represent. This function will accept an invalidly encoded string as input. If an invalid sequence is found at the start of the string, this function will remove it, and return the value INVALID_SEQUENCE. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string whose first code point is to be decoded */ dchar safeDecode(S)(ref S s) in { assert(s.length != 0); } body { return EncoderInstance!(typeof(s[0])).safeDecode(s); } /** Returns the number of code units required to encode a single code point. The input to this function MUST be a valid code point. This is enforced by the function's in-contract. The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be encoded */ size_t encodedLength(E)(dchar c) in { assert(isValidCodePoint(c)); } body { return EncoderInstance!(E).encodedLength(c); } /** Encodes a single code point. This function encodes a single code point into one or more code units. It returns a string containing those code units. The input to this function MUST be a valid code point. This is enforced by the function's in-contract. The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter. Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be encoded */ E[] encode(E)(dchar c) in { assert(isValidCodePoint(c)); } body { return EncoderInstance!(E).encode(c); } /** Encodes a single code point into an array. This function encodes a single code point into one or more code units The code units are stored in a user-supplied fixed-size array, which must be passed by reference. The input to this function MUST be a valid code point. This is enforced by the function's in-contract. The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter. Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be encoded array = the destination array Returns: the number of code units written to the array */ size_t encode(E)(dchar c, E[] array) in { assert(isValidCodePoint(c)); } body { E[] t = array; EncoderInstance!(E).encode(c,t); return array.length - t.length; } /* Encodes $(D c) in units of type $(D E) and writes the result to the output range $(D R). Returns the number of $(D E)s written. */ size_t encode(E, R)(dchar c, auto ref R range) if (isNativeOutputRange!(R, E)) { static if (is(Unqual!E == char)) { if (c <= 0x7F) { put(range, cast(char) c); return 1; } if (c <= 0x7FF) { put(range, cast(char)(0xC0 | (c >> 6))); put(range, cast(char)(0x80 | (c & 0x3F))); return 2; } if (c <= 0xFFFF) { put(range, cast(char)(0xE0 | (c >> 12))); put(range, cast(char)(0x80 | ((c >> 6) & 0x3F))); put(range, cast(char)(0x80 | (c & 0x3F))); return 3; } if (c <= 0x10FFFF) { put(range, cast(char)(0xF0 | (c >> 18))); put(range, cast(char)(0x80 | ((c >> 12) & 0x3F))); put(range, cast(char)(0x80 | ((c >> 6) & 0x3F))); put(range, cast(char)(0x80 | (c & 0x3F))); return 4; } else { assert(0); } } else static if (is(Unqual!E == wchar)) { if (c <= 0xFFFF) { range.put(cast(wchar) c); return 1; } range.put(cast(wchar) ((((c - 0x10000) >> 10) & 0x3FF) + 0xD800)); range.put(cast(wchar) (((c - 0x10000) & 0x3FF) + 0xDC00)); return 2; } else static if (is(Unqual!E == dchar)) { range.put(c); return 1; } else { static assert(0); } } @safe pure unittest { import std.array; Appender!(char[]) r; assert(encode!(char)('T', r) == 1); assert(encode!(wchar)('T', r) == 1); assert(encode!(dchar)('T', r) == 1); } /** Encodes a single code point to a delegate. This function encodes a single code point into one or more code units. The code units are passed one at a time to the supplied delegate. The input to this function MUST be a valid code point. This is enforced by the function's in-contract. The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding as a template parameter. Supersedes: This function supersedes std.utf.encode(), however, note that the function codeUnits() supersedes it more conveniently. Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be encoded dg = the delegate to invoke for each code unit */ void encode(E)(dchar c, void delegate(E) dg) in { assert(isValidCodePoint(c)); } body { EncoderInstance!(E).encode(c,dg); } /** Encodes the contents of $(D s) in units of type $(D Tgt), writing the result to an output range. Returns: The number of $(D Tgt) elements written. Params: Tgt = Element type of $(D range). s = Input array. range = Output range. */ size_t encode(Tgt, Src, R)(in Src[] s, R range) { size_t result; foreach (c; s) { result += encode!(Tgt)(c, range); } return result; } /** Returns a foreachable struct which can bidirectionally iterate over all code points in a string. The input to this function MUST be validly encoded. This is enforced by the function's in-contract. You can foreach either with or without an index. If an index is specified, it will be initialized at each iteration with the offset into the string at which the code point begins. Supersedes: This function supersedes std.utf.decode(). Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = the string to be decoded Example: -------------------------------------------------------- string s = "hello world"; foreach (c;codePoints(s)) { // do something with c (which will always be a dchar) } -------------------------------------------------------- Note that, currently, foreach (c:codePoints(s)) is superior to foreach (c;s) in that the latter will fall over on encountering U+FFFF. */ CodePoints!(E) codePoints(E)(immutable(E)[] s) in { assert(isValid(s)); } body { return CodePoints!(E)(s); } /// @system unittest { string s = "hello"; string t; foreach (c;codePoints(s)) { t ~= cast(char) c; } assert(s == t); } /** Returns a foreachable struct which can bidirectionally iterate over all code units in a code point. The input to this function MUST be a valid code point. This is enforced by the function's in-contract. The type of the output cannot be deduced. Therefore, it is necessary to explicitly specify the encoding type in the template parameter. Supersedes: This function supersedes std.utf.encode(). Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: c = the code point to be encoded */ CodeUnits!(E) codeUnits(E)(dchar c) in { assert(isValidCodePoint(c)); } body { return CodeUnits!(E)(c); } /// @system unittest { char[] a; foreach (c;codeUnits!(char)(cast(dchar)'\u20AC')) { a ~= c; } assert(a.length == 3); assert(a[0] == 0xE2); assert(a[1] == 0x82); assert(a[2] == 0xAC); } /** Convert a string from one encoding to another. Supersedes: This function supersedes std.utf.toUTF8(), std.utf.toUTF16() and std.utf.toUTF32() (but note that to!() supersedes it more conveniently). Standards: Unicode 5.0, ASCII, ISO-8859-1, ISO-8859-2, WINDOWS-1250, WINDOWS-1252 Params: s = Source string. $(B Must) be validly encoded. This is enforced by the function's in-contract. r = Destination string See_Also: $(REF to, std,conv) */ void transcode(Src, Dst)(Src[] s, out Dst[] r) in { assert(isValid(s)); } body { static if (is(Src == Dst) && is(Src == immutable)) { r = s; } else static if (is(Unqual!Src == AsciiChar)) { transcode(cast(const(char)[])s, r); } else { static if (is(Unqual!Dst == wchar)) { immutable minReservePlace = 2; } else static if (is(Unqual!Dst == dchar)) { immutable minReservePlace = 1; } else { immutable minReservePlace = 6; } auto buffer = new Unqual!Dst[s.length]; auto tmpBuffer = buffer; while (s.length != 0) { if (tmpBuffer.length < minReservePlace) { size_t prevLength = buffer.length; buffer.length += s.length + minReservePlace; tmpBuffer = buffer[prevLength - tmpBuffer.length .. $]; } EncoderInstance!(Unqual!Dst).encode(decode(s), tmpBuffer); } r = cast(Dst[]) buffer[0 .. buffer.length - tmpBuffer.length]; } } /// @system pure unittest { wstring ws; // transcode from UTF-8 to UTF-16 transcode("hello world",ws); assert(ws == "hello world"w); Latin1String ls; // transcode from UTF-16 to ISO-8859-1 transcode(ws, ls); assert(ws == "hello world"); } @system pure unittest { import std.meta; import std.range; { import std.conv : to; string asciiCharString = to!string(iota(0, 128, 1)); alias Types = AliasSeq!(string, Latin1String, Latin2String, AsciiString, Windows1250String, Windows1252String, dstring, wstring); foreach (S; Types) foreach (D; Types) { string str; S sStr; D dStr; transcode(asciiCharString, sStr); transcode(sStr, dStr); transcode(dStr, str); assert(asciiCharString == str); } } { string czechChars = "Příliš žluťoučký kůň úpěl ďábelské ódy."; alias Types = AliasSeq!(string, dstring, wstring); foreach (S; Types) foreach (D; Types) { string str; S sStr; D dStr; transcode(czechChars, sStr); transcode(sStr, dStr); transcode(dStr, str); assert(czechChars == str); } } } @system unittest // mutable/const input/output { import std.meta : AliasSeq; foreach (O; AliasSeq!(Latin1Char, const Latin1Char, immutable Latin1Char)) { O[] output; char[] mutableInput = "äbc".dup; transcode(mutableInput, output); assert(output == [0xE4, 'b', 'c']); const char[] constInput = "öbc"; transcode(constInput, output); assert(output == [0xF6, 'b', 'c']); immutable char[] immutInput = "übc"; transcode(immutInput, output); assert(output == [0xFC, 'b', 'c']); } // Make sure that const/mutable input is copied. foreach (C; AliasSeq!(char, const char)) { C[] input = "foo".dup; C[] output; transcode(input, output); assert(input == output); assert(input !is output); } // But immutable input should not be copied. string input = "foo"; string output; transcode(input, output); assert(input is output); } //============================================================================= /** The base class for exceptions thrown by this module */ class EncodingException : Exception { this(string msg) @safe pure { super(msg); } } class UnrecognizedEncodingException : EncodingException { private this(string msg) @safe pure { super(msg); } } /** Abstract base class of all encoding schemes */ abstract class EncodingScheme { import std.uni : toLower; /** * Registers a subclass of EncodingScheme. * * This function allows user-defined subclasses of EncodingScheme to * be declared in other modules. * * Params: * Klass = The subclass of EncodingScheme to register. * * Example: * ---------------------------------------------- * class Amiga1251 : EncodingScheme * { * shared static this() * { * EncodingScheme.register!Amiga1251; * } * } * ---------------------------------------------- */ static void register(Klass:EncodingScheme)() { scope scheme = new Klass(); foreach (encodingName;scheme.names()) { supported[toLower(encodingName)] = () => new Klass(); } } deprecated("Please pass the EncodingScheme subclass as template argument instead.") static void register(string className) { auto scheme = cast(EncodingScheme) ClassInfo.find(className).create(); if (scheme is null) throw new EncodingException("Unable to create class "~className); foreach (encodingName;scheme.names()) { supportedFactories[toLower(encodingName)] = className; } } /** * Obtains a subclass of EncodingScheme which is capable of encoding * and decoding the named encoding scheme. * * This function is only aware of EncodingSchemes which have been * registered with the register() function. * * Example: * --------------------------------------------------- * auto scheme = EncodingScheme.create("Amiga-1251"); * --------------------------------------------------- */ static EncodingScheme create(string encodingName) { encodingName = toLower(encodingName); if (auto p = encodingName in supported) return (*p)(); auto p = encodingName in supportedFactories; if (p is null) throw new EncodingException("Unrecognized Encoding: "~encodingName); string className = *p; auto scheme = cast(EncodingScheme) ClassInfo.find(className).create(); if (scheme is null) throw new EncodingException("Unable to create class "~className); return scheme; } const { /** * Returns the standard name of the encoding scheme */ abstract override string toString(); /** * Returns an array of all known names for this encoding scheme */ abstract string[] names(); /** * Returns true if the character c can be represented * in this encoding scheme. */ abstract bool canEncode(dchar c); /** * Returns the number of ubytes required to encode this code point. * * The input to this function MUST be a valid code point. * * Params: * c = the code point to be encoded * * Returns: * the number of ubytes required. */ abstract size_t encodedLength(dchar c); /** * Encodes a single code point into a user-supplied, fixed-size buffer. * * This function encodes a single code point into one or more ubytes. * The supplied buffer must be code unit aligned. * (For example, UTF-16LE or UTF-16BE must be wchar-aligned, * UTF-32LE or UTF-32BE must be dchar-aligned, etc.) * * The input to this function MUST be a valid code point. * * Params: * c = the code point to be encoded * buffer = the destination array * * Returns: * the number of ubytes written. */ abstract size_t encode(dchar c, ubyte[] buffer); /** * Decodes a single code point. * * This function removes one or more ubytes from the start of an array, * and returns the decoded code point which those ubytes represent. * * The input to this function MUST be validly encoded. * * Params: * s = the array whose first code point is to be decoded */ abstract dchar decode(ref const(ubyte)[] s); /** * Decodes a single code point. The input does not have to be valid. * * This function removes one or more ubytes from the start of an array, * and returns the decoded code point which those ubytes represent. * * This function will accept an invalidly encoded array as input. * If an invalid sequence is found at the start of the string, this * function will remove it, and return the value INVALID_SEQUENCE. * * Params: * s = the array whose first code point is to be decoded */ abstract dchar safeDecode(ref const(ubyte)[] s); /** * Returns the sequence of ubytes to be used to represent * any character which cannot be represented in the encoding scheme. * * Normally this will be a representation of some substitution * character, such as U+FFFD or '?'. */ abstract @property immutable(ubyte)[] replacementSequence(); } /** * Returns true if the array is encoded correctly * * Params: * s = the array to be tested */ bool isValid(const(ubyte)[] s) { while (s.length != 0) { if (safeDecode(s) == INVALID_SEQUENCE) return false; } return true; } /** * Returns the length of the longest possible substring, starting from * the first element, which is validly encoded. * * Params: * s = the array to be tested */ size_t validLength()(const(ubyte)[] s) { const(ubyte)[] r = s; const(ubyte)[] t = s; while (s.length != 0) { if (safeDecode(s) == INVALID_SEQUENCE) break; t = s; } return r.length - t.length; } /** * Sanitizes an array by replacing malformed ubyte sequences with valid * ubyte sequences. The result is guaranteed to be valid for this * encoding scheme. * * If the input array is already valid, this function returns the * original, otherwise it constructs a new array by replacing all illegal * sequences with the encoding scheme's replacement sequence. * * Params: * s = the string to be sanitized */ immutable(ubyte)[] sanitize()(immutable(ubyte)[] s) { auto n = validLength(s); if (n == s.length) return s; auto repSeq = replacementSequence; // Count how long the string needs to be. // Overestimating is not a problem auto len = s.length; const(ubyte)[] t = s[n..$]; while (t.length != 0) { immutable c = safeDecode(t); assert(c == INVALID_SEQUENCE); len += repSeq.length; t = t[validLength(t)..$]; } // Now do the write ubyte[] array = new ubyte[len]; array[0 .. n] = s[0 .. n]; auto offset = n; t = s[n..$]; while (t.length != 0) { immutable c = safeDecode(t); assert(c == INVALID_SEQUENCE); array[offset .. offset+repSeq.length] = repSeq[]; offset += repSeq.length; n = validLength(t); array[offset .. offset+n] = t[0 .. n]; offset += n; t = t[n..$]; } return cast(immutable(ubyte)[])array[0 .. offset]; } /** * Returns the length of the first encoded sequence. * * The input to this function MUST be validly encoded. * This is enforced by the function's in-contract. * * Params: * s = the array to be sliced */ size_t firstSequence()(const(ubyte)[] s) in { assert(s.length != 0); const(ubyte)[] u = s; assert(safeDecode(u) != INVALID_SEQUENCE); } body { const(ubyte)[] t = s; decode(s); return t.length - s.length; } /** * Returns the total number of code points encoded in a ubyte array. * * The input to this function MUST be validly encoded. * This is enforced by the function's in-contract. * * Params: * s = the string to be counted */ size_t count()(const(ubyte)[] s) in { assert(isValid(s)); } body { size_t n = 0; while (s.length != 0) { decode(s); ++n; } return n; } /** * Returns the array index at which the (n+1)th code point begins. * * The input to this function MUST be validly encoded. * This is enforced by the function's in-contract. * * Params: * s = the string to be counted * n = the current code point index */ ptrdiff_t index()(const(ubyte)[] s, size_t n) in { assert(isValid(s)); assert(n >= 0); } body { const(ubyte)[] t = s; for (size_t i=0; i<n; ++i) decode(s); return t.length - s.length; } __gshared EncodingScheme function()[string] supported; __gshared string[string] supportedFactories; } /** EncodingScheme to handle ASCII This scheme recognises the following names: "ANSI_X3.4-1968", "ANSI_X3.4-1986", "ASCII", "IBM367", "ISO646-US", "ISO_646.irv:1991", "US-ASCII", "cp367", "csASCII" "iso-ir-6", "us" */ class EncodingSchemeASCII : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeASCII"); }*/ const { override string[] names() @safe pure nothrow { return [ "ANSI_X3.4-1968", "ANSI_X3.4-1986", "ASCII", "IBM367", "ISO646-US", "ISO_646.irv:1991", "US-ASCII", "cp367", "csASCII", "iso-ir-6", "us" ]; } override string toString() @safe pure nothrow @nogc { return "ASCII"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(AsciiChar)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(AsciiChar)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(AsciiChar[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(AsciiChar)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(AsciiChar)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"?"; } } } /** EncodingScheme to handle Latin-1 This scheme recognises the following names: "CP819", "IBM819", "ISO-8859-1", "ISO_8859-1", "ISO_8859-1:1987", "csISOLatin1", "iso-ir-100", "l1", "latin1" */ class EncodingSchemeLatin1 : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeLatin1"); }*/ const { override string[] names() @safe pure nothrow { return [ "CP819", "IBM819", "ISO-8859-1", "ISO_8859-1", "ISO_8859-1:1987", "csISOLatin1", "iso-ir-100", "l1", "latin1" ]; } override string toString() @safe pure nothrow @nogc { return "ISO-8859-1"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(Latin1Char)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(Latin1Char)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(Latin1Char[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Latin1Char)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Latin1Char)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"?"; } } } /** EncodingScheme to handle Latin-2 This scheme recognises the following names: "Latin 2", "ISO-8859-2", "ISO_8859-2", "ISO_8859-2:1999", "Windows-28592" */ class EncodingSchemeLatin2 : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeLatin2"); }*/ const { override string[] names() @safe pure nothrow { return [ "Latin 2", "ISO-8859-2", "ISO_8859-2", "ISO_8859-2:1999", "windows-28592" ]; } override string toString() @safe pure nothrow @nogc { return "ISO-8859-2"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(Latin2Char)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(Latin2Char)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(Latin2Char[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Latin2Char)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Latin2Char)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"?"; } } } /** EncodingScheme to handle Windows-1250 This scheme recognises the following names: "windows-1250" */ class EncodingSchemeWindows1250 : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeWindows1250"); }*/ const { override string[] names() @safe pure nothrow { return [ "windows-1250" ]; } override string toString() @safe pure nothrow @nogc { return "windows-1250"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(Windows1250Char)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(Windows1250Char)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(Windows1250Char[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Windows1250Char)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Windows1250Char)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"?"; } } } /** EncodingScheme to handle Windows-1252 This scheme recognises the following names: "windows-1252" */ class EncodingSchemeWindows1252 : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeWindows1252"); }*/ const { override string[] names() @safe pure nothrow { return [ "windows-1252" ]; } override string toString() @safe pure nothrow @nogc { return "windows-1252"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(Windows1252Char)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(Windows1252Char)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(Windows1252Char[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Windows1252Char)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(Windows1252Char)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"?"; } } } /** EncodingScheme to handle UTF-8 This scheme recognises the following names: "UTF-8" */ class EncodingSchemeUtf8 : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeUtf8"); }*/ const { override string[] names() @safe pure nothrow { return [ "UTF-8" ]; } override string toString() @safe pure nothrow @nogc { return "UTF-8"; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(char)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(char)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(char[]) buffer; return std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(char)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc { auto t = cast(const(char)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"\uFFFD"; } } } /** EncodingScheme to handle UTF-16 in native byte order This scheme recognises the following names: "UTF-16LE" (little-endian architecture only) "UTF-16BE" (big-endian architecture only) */ class EncodingSchemeUtf16Native : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeUtf16Native"); }*/ const { version(LittleEndian) { enum string NAME = "UTF-16LE"; } version(BigEndian) { enum string NAME = "UTF-16BE"; } override string[] names() @safe pure nothrow { return [ NAME ]; } override string toString() @safe pure nothrow @nogc { return NAME; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(wchar)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(wchar)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(wchar[]) buffer; return wchar.sizeof * std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc in { assert((s.length & 1) == 0); } body { auto t = cast(const(wchar)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length * wchar.sizeof..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc in { assert((s.length & 1) == 0); } body { auto t = cast(const(wchar)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length * wchar.sizeof..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"\uFFFD"w; } } } @system unittest { version(LittleEndian) { auto efrom = EncodingScheme.create("utf-16le"); ubyte[6] sample = [154,1, 155,1, 156,1]; } version(BigEndian) { auto efrom = EncodingScheme.create("utf-16be"); ubyte[6] sample = [1,154, 1,155, 1,156]; } const(ubyte)[] ub = cast(const(ubyte)[])sample; dchar dc = efrom.safeDecode(ub); assert(dc == 410); assert(ub.length == 4); } /** EncodingScheme to handle UTF-32 in native byte order This scheme recognises the following names: "UTF-32LE" (little-endian architecture only) "UTF-32BE" (big-endian architecture only) */ class EncodingSchemeUtf32Native : EncodingScheme { /* // moved to std.internal.phobosinit shared static this() { EncodingScheme.register("std.encoding.EncodingSchemeUtf32Native"); }*/ const { version(LittleEndian) { enum string NAME = "UTF-32LE"; } version(BigEndian) { enum string NAME = "UTF-32BE"; } override string[] names() @safe pure nothrow { return [ NAME ]; } override string toString() @safe pure nothrow @nogc { return NAME; } override bool canEncode(dchar c) @safe pure nothrow @nogc { return std.encoding.canEncode!(dchar)(c); } override size_t encodedLength(dchar c) @safe pure nothrow @nogc { return std.encoding.encodedLength!(dchar)(c); } override size_t encode(dchar c, ubyte[] buffer) @safe pure nothrow @nogc { auto r = cast(dchar[]) buffer; return dchar.sizeof * std.encoding.encode(c,r); } override dchar decode(ref const(ubyte)[] s) @safe pure nothrow @nogc in { assert((s.length & 3) == 0); } body { auto t = cast(const(dchar)[]) s; dchar c = std.encoding.decode(t); s = s[$-t.length * dchar.sizeof..$]; return c; } override dchar safeDecode(ref const(ubyte)[] s) @safe pure nothrow @nogc in { assert((s.length & 3) == 0); } body { auto t = cast(const(dchar)[]) s; dchar c = std.encoding.safeDecode(t); s = s[$-t.length * dchar.sizeof..$]; return c; } override @property immutable(ubyte)[] replacementSequence() @safe pure nothrow @nogc { return cast(immutable(ubyte)[])"\uFFFD"d; } } } @system unittest { version(LittleEndian) { auto efrom = EncodingScheme.create("utf-32le"); ubyte[12] sample = [154,1,0,0, 155,1,0,0, 156,1,0,0]; } version(BigEndian) { auto efrom = EncodingScheme.create("utf-32be"); ubyte[12] sample = [0,0,1,154, 0,0,1,155, 0,0,1,156]; } const(ubyte)[] ub = cast(const(ubyte)[])sample; dchar dc = efrom.safeDecode(ub); assert(dc == 410); assert(ub.length == 8); } // shared static this() called from encodinginit to break ctor cycle extern(C) void std_encoding_shared_static_this() { EncodingScheme.register!EncodingSchemeASCII; EncodingScheme.register!EncodingSchemeLatin1; EncodingScheme.register!EncodingSchemeLatin2; EncodingScheme.register!EncodingSchemeWindows1250; EncodingScheme.register!EncodingSchemeWindows1252; EncodingScheme.register!EncodingSchemeUtf8; EncodingScheme.register!EncodingSchemeUtf16Native; EncodingScheme.register!EncodingSchemeUtf32Native; } //============================================================================= // Helper functions version(unittest) { void transcodeReverse(Src,Dst)(immutable(Src)[] s, out immutable(Dst)[] r) { static if (is(Src == Dst)) { return s; } else static if (is(Src == AsciiChar)) { transcodeReverse!(char,Dst)(cast(string) s,r); } else { foreach_reverse (d;codePoints(s)) { foreach_reverse (c;codeUnits!(Dst)(d)) { r = c ~ r; } } } } string makeReadable(string s) { string r = "\""; foreach (char c;s) { if (c >= 0x20 && c < 0x80) { r ~= c; } else { r ~= "\\x"; r ~= toHexDigit(c >> 4); r ~= toHexDigit(c); } } r ~= "\""; return r; } string makeReadable(wstring s) { string r = "\""; foreach (wchar c;s) { if (c >= 0x20 && c < 0x80) { r ~= cast(char) c; } else { r ~= "\\u"; r ~= toHexDigit(c >> 12); r ~= toHexDigit(c >> 8); r ~= toHexDigit(c >> 4); r ~= toHexDigit(c); } } r ~= "\"w"; return r; } string makeReadable(dstring s) { string r = "\""; foreach (dchar c; s) { if (c >= 0x20 && c < 0x80) { r ~= cast(char) c; } else if (c < 0x10000) { r ~= "\\u"; r ~= toHexDigit(c >> 12); r ~= toHexDigit(c >> 8); r ~= toHexDigit(c >> 4); r ~= toHexDigit(c); } else { r ~= "\\U00"; r ~= toHexDigit(c >> 20); r ~= toHexDigit(c >> 16); r ~= toHexDigit(c >> 12); r ~= toHexDigit(c >> 8); r ~= toHexDigit(c >> 4); r ~= toHexDigit(c); } } r ~= "\"d"; return r; } char toHexDigit(int n) { return "0123456789ABCDEF"[n & 0xF]; } } /** Definitions of common Byte Order Marks. The elements of the $(D enum) can used as indices into $(D bomTable) to get matching $(D BOMSeq). */ enum BOM { none = 0, /// no BOM was found utf32be = 1, /// [0x00, 0x00, 0xFE, 0xFF] utf32le = 2, /// [0xFF, 0xFE, 0x00, 0x00] utf7 = 3, /* [0x2B, 0x2F, 0x76, 0x38] [0x2B, 0x2F, 0x76, 0x39], [0x2B, 0x2F, 0x76, 0x2B], [0x2B, 0x2F, 0x76, 0x2F], [0x2B, 0x2F, 0x76, 0x38, 0x2D] */ utf1 = 8, /// [0xF7, 0x64, 0x4C] utfebcdic = 9, /// [0xDD, 0x73, 0x66, 0x73] scsu = 10, /// [0x0E, 0xFE, 0xFF] bocu1 = 11, /// [0xFB, 0xEE, 0x28] gb18030 = 12, /// [0x84, 0x31, 0x95, 0x33] utf8 = 13, /// [0xEF, 0xBB, 0xBF] utf16be = 14, /// [0xFE, 0xFF] utf16le = 15 /// [0xFF, 0xFE] } /// The type stored inside $(D bomTable). alias BOMSeq = Tuple!(BOM, "schema", ubyte[], "sequence"); /** Mapping of a byte sequence to $(B Byte Order Mark (BOM)) */ immutable bomTable = [ BOMSeq(BOM.none, null), BOMSeq(BOM.utf32be, cast(ubyte[])([0x00, 0x00, 0xFE, 0xFF])), BOMSeq(BOM.utf32le, cast(ubyte[])([0xFF, 0xFE, 0x00, 0x00])), BOMSeq(BOM.utf7, cast(ubyte[])([0x2B, 0x2F, 0x76, 0x39])), BOMSeq(BOM.utf7, cast(ubyte[])([0x2B, 0x2F, 0x76, 0x2B])), BOMSeq(BOM.utf7, cast(ubyte[])([0x2B, 0x2F, 0x76, 0x2F])), BOMSeq(BOM.utf7, cast(ubyte[])([0x2B, 0x2F, 0x76, 0x38, 0x2D])), BOMSeq(BOM.utf7, cast(ubyte[])([0x2B, 0x2F, 0x76, 0x38])), BOMSeq(BOM.utf1, cast(ubyte[])([0xF7, 0x64, 0x4C])), BOMSeq(BOM.utfebcdic, cast(ubyte[])([0xDD, 0x73, 0x66, 0x73])), BOMSeq(BOM.scsu, cast(ubyte[])([0x0E, 0xFE, 0xFF])), BOMSeq(BOM.bocu1, cast(ubyte[])([0xFB, 0xEE, 0x28])), BOMSeq(BOM.gb18030, cast(ubyte[])([0x84, 0x31, 0x95, 0x33])), BOMSeq(BOM.utf8, cast(ubyte[])([0xEF, 0xBB, 0xBF])), BOMSeq(BOM.utf16be, cast(ubyte[])([0xFE, 0xFF])), BOMSeq(BOM.utf16le, cast(ubyte[])([0xFF, 0xFE])) ]; /** Returns a $(D BOMSeq) for a given $(D input). If no $(D BOM) is present the $(D BOMSeq) for $(D BOM.none) is returned. The $(D BOM) sequence at the beginning of the range will not be comsumed from the passed range. If you pass a reference type range make sure that $(D save) creates a deep copy. Params: input = The sequence to check for the $(D BOM) Returns: the found $(D BOMSeq) corresponding to the passed $(D input). */ immutable(BOMSeq) getBOM(Range)(Range input) if (isForwardRange!Range && is(Unqual!(ElementType!Range) == ubyte)) { import std.algorithm.searching : startsWith; foreach (it; bomTable[1 .. $]) { if (startsWith(input.save, it.sequence)) { return it; } } return bomTable[0]; } /// @system unittest { import std.format : format; auto ts = dchar(0x0000FEFF) ~ "Hello World"d; auto entry = getBOM(cast(ubyte[]) ts); version(BigEndian) { assert(entry.schema == BOM.utf32be, format("%s", entry.schema)); } else { assert(entry.schema == BOM.utf32le, format("%s", entry.schema)); } } @system unittest { import std.format : format; foreach (idx, it; bomTable) { auto s = it[1] ~ cast(ubyte[])"hello world"; auto i = getBOM(s); assert(i[0] == bomTable[idx][0]); if (idx < 4 || idx > 7) // get around the multiple utf7 bom's { assert(i[0] == BOM.init + idx); assert(i[1] == it[1]); } } } @safe pure unittest { struct BOMInputRange { ubyte[] arr; @property ubyte front() { return this.arr.front; } @property bool empty() { return this.arr.empty; } void popFront() { this.arr = this.arr[1 .. $]; } @property typeof(this) save() { return this; } } static assert( isInputRange!BOMInputRange); static assert(!isArray!BOMInputRange); ubyte[] dummyEnd = [0,0,0,0]; foreach (idx, it; bomTable[1 .. $]) { { auto ir = BOMInputRange(it.sequence.dup); auto b = getBOM(ir); assert(b.schema == it.schema); assert(ir.arr == it.sequence); } { auto noBom = it.sequence[0 .. 1].dup ~ dummyEnd; size_t oldLen = noBom.length; assert(oldLen - 4 < it.sequence.length); auto ir = BOMInputRange(noBom.dup); auto b = getBOM(ir); assert(b.schema == BOM.none); assert(noBom.length == oldLen); } } } /** Constant defining a fully decoded BOM */ enum dchar utfBOM = 0xfeff;
D
/** * Represents connection to the PostgreSQL server * * Most functions is correspond to those in the documentation of Postgres: * $(HTTPS https://www.postgresql.org/docs/current/static/libpq.html) */ module dpq2.connection; import dpq2.query; import dpq2.args: QueryParams; import dpq2.result; import dpq2.exception; import derelict.pq.pq; import std.conv: to; import std.string: toStringz, fromStringz; import std.exception: enforce; import std.range; import std.stdio: File; import std.socket; import core.exception; import core.time: Duration; /* * Bugs: On Unix connection is not thread safe. * * On Unix, forking a process with open libpq connections can lead * to unpredictable results because the parent and child processes share * the same sockets and operating system resources. For this reason, * such usage is not recommended, though doing an exec from the child * process to load a new executable is safe. int PQisthreadsafe(); Returns 1 if the libpq is thread-safe and 0 if it is not. */ /// dumb flag for Connection ctor parametrization struct ConnectionStart {}; /// Connection class Connection { package PGconn* conn; invariant { assert(conn !is null); } /// Makes a new connection to the database server this(string connString) { conn = PQconnectdb(toStringz(connString)); enforce!OutOfMemoryError(conn, "Unable to allocate libpq connection data"); if(status != CONNECTION_OK) throw new ConnectionException(this, __FILE__, __LINE__); } /// Starts creation of a connection to the database server in a nonblocking manner this(ConnectionStart, string connString) { conn = PQconnectStart(toStringz(connString)); enforce!OutOfMemoryError(conn, "Unable to allocate libpq connection data"); if( status == CONNECTION_BAD ) throw new ConnectionException(this, __FILE__, __LINE__); } ~this() { PQfinish( conn ); } mixin Queries; /// Returns the blocking status of the database connection bool isNonBlocking() { return PQisnonblocking(conn) == 1; } /// Sets the nonblocking status of the connection private void setNonBlocking(bool state) { if( PQsetnonblocking(conn, state ? 1 : 0 ) == -1 ) throw new ConnectionException(this, __FILE__, __LINE__); } /// Begin reset the communication channel to the server, in a nonblocking manner /// /// Useful only for non-blocking operations. void resetStart() { if(PQresetStart(conn) == 0) throw new ConnectionException(this, __FILE__, __LINE__); } /// Useful only for non-blocking operations. PostgresPollingStatusType poll() nothrow { assert(conn); return PQconnectPoll(conn); } /// Useful only for non-blocking operations. PostgresPollingStatusType resetPoll() nothrow { assert(conn); return PQresetPoll(conn); } /// Returns the status of the connection ConnStatusType status() nothrow { return PQstatus(conn); } /** Returns the current in-transaction status of the server. The status can be: * PQTRANS_IDLE - currently idle * PQTRANS_ACTIVE - a command is in progress (reported only when a query has been sent to the server and not yet completed) * PQTRANS_INTRANS - idle, in a valid transaction block * PQTRANS_INERROR - idle, in a failed transaction block * PQTRANS_UNKNOWN - reported if the connection is bad */ PGTransactionStatusType transactionStatus() nothrow { return PQtransactionStatus(conn); } /// If input is available from the server, consume it /// /// Useful only for non-blocking operations. void consumeInput() { assert(conn); const size_t r = PQconsumeInput( conn ); if( r != 1 ) throw new ConnectionException(this, __FILE__, __LINE__); } package bool flush() { assert(conn); auto r = PQflush(conn); if( r == -1 ) throw new ConnectionException(this, __FILE__, __LINE__); return r == 0; } /// Obtains the file descriptor number of the connection socket to the server int posixSocket() { int r = PQsocket(conn); if(r == -1) throw new ConnectionException(this, __FILE__, __LINE__); return r; } /// Obtains duplicate file descriptor number of the connection socket to the server socket_t posixSocketDuplicate() { version(Windows) { assert(false, "FIXME: implement socket duplication"); } else // Posix OS { import core.sys.posix.unistd: dup; return cast(socket_t) dup(cast(socket_t) posixSocket); } } /// Obtains std.socket.Socket of the connection to the server /// /// Due to a limitation of Socket actually for the Socket creation /// duplicate of internal posix socket will be used. Socket socket() { return new Socket(posixSocketDuplicate, AddressFamily.UNSPEC); } /// Returns the error message most recently generated by an operation on the connection string errorMessage() const nothrow { return PQerrorMessage(conn).to!string; } /** * Sets or examines the current notice processor * * Returns the previous notice receiver or processor function pointer, and sets the new value. * If you supply a null function pointer, no action is taken, but the current pointer is returned. */ PQnoticeProcessor setNoticeProcessor(PQnoticeProcessor proc, void* arg) nothrow { assert(conn); return PQsetNoticeProcessor(conn, proc, arg); } /// Get next result after sending a non-blocking commands. Can return null. /// /// Useful only for non-blocking operations. immutable(Result) getResult() { // is guaranteed by libpq that the result will not be changed until it will not be destroyed auto r = cast(immutable) PQgetResult(conn); if(r) { auto container = new immutable ResultContainer(r); return new immutable Result(container); } return null; } /// Get result after PQexec* functions or throw exception if pull is empty package immutable(ResultContainer) createResultContainer(immutable PGresult* r) const { if(r is null) throw new ConnectionException(this, __FILE__, __LINE__); return new immutable ResultContainer(r); } /// Select single-row mode for the currently-executing query bool setSingleRowMode() { return PQsetSingleRowMode(conn) == 1; } /** Try to cancel query If the cancellation is effective, the current command will terminate early and return an error result or exception. If the cancellation will fails (say, because the server was already done processing the command) there will be no visible result at all. */ void cancel() { auto c = new Cancellation(this); c.doCancel; } /// bool isBusy() nothrow { assert(conn); return PQisBusy(conn) == 1; } /// string parameterStatus(string paramName) { assert(conn); auto res = PQparameterStatus(conn, toStringz(paramName)); if(res is null) throw new ConnectionException(this, __FILE__, __LINE__); return to!string(fromStringz(res)); } /// string escapeLiteral(string msg) { assert(conn); auto buf = PQescapeLiteral(conn, msg.toStringz, msg.length); if(buf is null) throw new ConnectionException(this, __FILE__, __LINE__); string res = buf.fromStringz.to!string; PQfreemem(buf); return res; } /// string escapeIdentifier(string msg) { assert(conn); auto buf = PQescapeIdentifier(conn, msg.toStringz, msg.length); if(buf is null) throw new ConnectionException(this, __FILE__, __LINE__); string res = buf.fromStringz.to!string; PQfreemem(buf); return res; } /// string dbName() const nothrow { assert(conn); return PQdb(conn).fromStringz.to!string; } /// string host() const nothrow { assert(conn); return PQhost(conn).fromStringz.to!string; } /// int protocolVersion() const nothrow { assert(conn); return PQprotocolVersion(conn); } /// int serverVersion() const nothrow { assert(conn); return PQserverVersion(conn); } /// void trace(ref File stream) { PQtrace(conn, stream.getFP); } /// void untrace() { PQuntrace(conn); } /// void setClientEncoding(string encoding) { if(PQsetClientEncoding(conn, encoding.toStringz) != 0) throw new ConnectionException(this, __FILE__, __LINE__); } } /// Check connection options in the provided connection string /// /// Throws exception if connection string isn't passes check. void connStringCheck(string connString) { char* errmsg = null; PQconninfoOption* r = PQconninfoParse(connString.toStringz, &errmsg); if(r is null) { enforce!OutOfMemoryError(errmsg, "Unable to allocate libpq conninfo data"); } else { PQconninfoFree(r); } if(errmsg !is null) { string s = errmsg.fromStringz.to!string; PQfreemem(cast(void*) errmsg); throw new ConnectionException(s, __FILE__, __LINE__); } } unittest { connStringCheck("dbname=postgres user=postgres"); { bool raised = false; try connStringCheck("wrong conninfo string"); catch(ConnectionException e) raised = true; assert(raised); } } /// Represents query cancellation process class Cancellation { private PGcancel* cancel; /// this(Connection c) { cancel = PQgetCancel(c.conn); if(cancel is null) throw new ConnectionException(c, __FILE__, __LINE__); } /// ~this() { PQfreeCancel(cancel); } /** Requests that the server abandon processing of the current command Throws exception if cancel request was not successfully dispatched. Successful dispatch is no guarantee that the request will have any effect, however. If the cancellation is effective, the current command will terminate early and return an error result (exception). If the cancellation fails (say, because the server was already done processing the command), then there will be no visible result at all. */ void doCancel() { char[256] errbuf; auto res = PQcancel(cancel, errbuf.ptr, errbuf.length); if(res != 1) throw new CancellationException(to!string(errbuf.ptr.fromStringz), __FILE__, __LINE__); } } /// class CancellationException : Dpq2Exception { this(string msg, string file = __FILE__, size_t line = __LINE__) { super(msg, file, line); } } /// Connection exception class ConnectionException : Dpq2Exception { this(in Connection c, string file = __FILE__, size_t line = __LINE__) { super(c.errorMessage(), file, line); } this(string msg, string file = __FILE__, size_t line = __LINE__) { super(msg, file, line); } } version (integration_tests) void _integration_test( string connParam ) { assert( PQlibVersion() >= 9_0100 ); { debug import std.experimental.logger; auto c = new Connection(connParam); auto dbname = c.dbName(); auto pver = c.protocolVersion(); auto sver = c.serverVersion(); debug { trace("DB name: ", dbname); trace("Protocol version: ", pver); trace("Server version: ", sver); } destroy(c); } { bool exceptionFlag = false; try auto c = new Connection(ConnectionStart(), "!!!some incorrect connection string!!!"); catch(ConnectionException e) { exceptionFlag = true; assert(e.msg.length > 40); // error message check } finally assert(exceptionFlag); } { auto c = new Connection(connParam); assert(c.escapeLiteral("abc'def") == "'abc''def'"); assert(c.escapeIdentifier("abc'def") == "\"abc'def\""); c.setClientEncoding("WIN866"); assert(c.exec("show client_encoding")[0][0].as!string == "WIN866"); } { auto c = new Connection(connParam); assert(c.transactionStatus == PQTRANS_IDLE); c.exec("BEGIN"); assert(c.transactionStatus == PQTRANS_INTRANS); try c.exec("DISCARD ALL"); catch (Exception) {} assert(c.transactionStatus == PQTRANS_INERROR); c.exec("ROLLBACK"); assert(c.transactionStatus == PQTRANS_IDLE); } }
D
/* [The "BSD license"] Copyright (c) 2005-2009 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.tree.RewriteEmptyStreamException; private import antlr.runtime.tree.RewriteCardinalityException; /** Ref to ID or expr but no tokens in ID stream or subtrees in expr stream */ public class RewriteEmptyStreamException : RewriteCardinalityException { public this(string elementDescription) { super(elementDescription); } }
D
module std.format; extern(D) проц форматДелай(проц delegate(дим) putc, ИнфОТипе[] arguments, спис_ва argptr); alias форматДелай doFormat;
D
in a typical manner
D
/***********************************************************************\ * w32api.d * * * * Windows API header module * * * * Translated from MinGW API for MS-Windows 3.12 * * by Stewart Gordon * * * * Placed into public domain * \***********************************************************************/ module win32.w32api; const __W32API_VERSION = 3.12; const __W32API_MAJOR_VERSION = 3; const __W32API_MINOR_VERSION = 12; /* These version identifiers are used to specify the minimum version of * Windows that an application will support. * * The programmer should set two version identifiers: one for the * minimum Windows NT version and one for the minimum Windows 9x * version. If no Windows NT version is specified, Windows NT 4 is * assumed. If no Windows 9x version is specified, Windows 95 is * assumed, unless WindowsNTonly, WindowsXP, Windows2003 or WindowsVista * is specified, implying that the application supports only the NT line of * versions. */ /* For Windows XP and later, assume no Windows 9x support. * API features new to Windows Vista are not yet included in this * translation or in MinGW, but this is here ready to start adding them. */ version (WindowsVista) { const uint _WIN32_WINNT = 0x600, _WIN32_WINDOWS = uint.max; } else version (Windows2003) { const uint _WIN32_WINNT = 0x502, _WIN32_WINDOWS = uint.max; } else version (WindowsXP) { const uint _WIN32_WINNT = 0x501, _WIN32_WINDOWS = uint.max; } else { /* for earlier Windows versions, separate version identifiers into * the NT and 9x lines */ version (Windows2000) { const uint _WIN32_WINNT = 0x500; } else { const uint _WIN32_WINNT = 0x400; } version (WindowsNTonly) { const uint _WIN32_WINDOWS = uint.max; } else version (WindowsME) { const uint _WIN32_WINDOWS = 0x500; } else version (Windows98) { const uint _WIN32_WINDOWS = 0x410; } else { const uint _WIN32_WINDOWS = 0x400; } } // Just a bit of syntactic sugar for the static ifs const uint WINVER = _WIN32_WINDOWS < _WIN32_WINNT ? _WIN32_WINDOWS : _WIN32_WINNT; const bool _WIN32_WINNT_ONLY = _WIN32_WINDOWS == uint.max; version (IE7) { const uint _WIN32_IE = 0x700; } else version (IE602) { const uint _WIN32_IE = 0x603; } else version (IE601) { const uint _WIN32_IE = 0x601; } else version (IE6) { const uint _WIN32_IE = 0x600; } else version (IE56) { const uint _WIN32_IE = 0x560; } else version (IE501) { const uint _WIN32_IE = 0x501; } else version (IE5) { const uint _WIN32_IE = 0x500; } else version (IE401) { const uint _WIN32_IE = 0x401; } else version (IE4) { const uint _WIN32_IE = 0x400; } else version (IE3) { const uint _WIN32_IE = 0x300; } else static if (WINVER >= 0x410) { const uint _WIN32_IE = 0x400; } else { const uint _WIN32_IE = 0; } debug (WindowsUnitTest) { unittest { printf("Windows NT version: %03x\n", _WIN32_WINNT); printf("Windows 9x version: %03x\n", _WIN32_WINDOWS); printf("IE version: %03x\n", _WIN32_IE); } }
D
// Copyright Steve Teale 2011. // 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) // Written in the D programming language module sheets; import std.stdio; import std.conv; import std.regex; import std.path; import std.file; import std.array; import std.math; import avery; import generic; import types; import mainwin; import common; import gdk.RGBA; import gtk.Widget; import gtk.Dialog; import gtk.VBox; import gtk.Layout; import gtk.Label; import gtk.TextView; import gtk.TextBuffer; import gtk.DrawingArea; import gtk.Button; import gtk.ToggleButton; import gtk.CheckButton; import gtk.Frame; import gtk.EditableIF; import gtk.Entry; import gtk.MenuItem; import gtkc.gtktypes; import cairo.Context; enum Paper { A4, US, OTHER } enum Category { MAILING = 0, BC, CARD, FOLDED, GP, SPECIAL, SEPARATOR, SCRAP, USER } immutable string[] categoryNames = [ "Mailing Label", "Business Card", "Card Product", "Folded sheet", "General Purpose", "Speciality", "Separator", "User Scrap", "User Defined" ]; immutable string[] gridNames = [ "grid", "iso", "mfr", "id", "description", "category", "paper", "seq", "cols", "rows", "w", "h", "topx", "topy", "hstride", "vstride", "round" ]; struct Grid { ushort cols, rows; double w, h; double topx, topy; double hstride, vstride; bool round; } struct LSRect { bool round; double x, y, w, h; } struct Sequence { int count; LSRect[] rects; } union SheetLayout { Grid g; Sequence s; } struct Sheet { bool iso; // metric? string mfr; // Avery, .... string id; // manufacterers ID string description; Category category; Paper paper; bool seq; SheetLayout layout; bool scaled = false; } void getBiggest(Sequence s, out double w, out double h) { double mw = 0, mh = 0; foreach (int i, LSRect r; s.rects) { if (i >= s.count) break; if (r.w > mw) mw = r.w; if (r.h > mh) mh = r.h; } w = mw; h = mh; } class SheetDetailsDlg: Dialog { AppWindow aw; Layout layout; TextView tv; this(AppWindow w) { GtkResponseType rta[1] = [ ResponseType.OK ]; string[1] sa = [ "Close" ]; super("Current Sheet Details", w, DialogFlags.DESTROY_WITH_PARENT, sa, rta); aw = w; setSizeRequest(350, 200); layout = new Layout(null, null); VBox vb = getContentArea(); vb.packStart(layout, 1, 1, 0); layout.show(); addGadgets(); string s = "The current sheet is:\n\n"; Sheet current = aw.currentSheet; s ~= "Manufacturer: " ~ current.mfr ~ "\n"; s ~= "Sheet ID: " ~ current.id ~ "\n"; s ~= "Description: " ~ current.description ~ "\n"; s ~= "Category: " ~ categoryNames[current.category]; tv.insertText(s); } void addGadgets() { tv = new TextView(); tv.setSensitive(0); Frame f = new Frame(tv, null); f.setSizeRequest(330, 150); f.show(); layout.put(f, 10, 10); tv.show(); } } class GridDlg: Dialog { AppWindow aw; string cfn, sheetName; Layout layout; DrawingArea da; TextView tv; RGBA red, black; Widget save; CheckButton isRound; Entry cols, rows, wide, high, leftx, topy, xstep, ystep, name, purpose; int tpw, tph; Grid g; Sheet ns; bool editing; this (AppWindow w, Sheet s) { this(w); setTitle("Editing a Custom Grid Sheet"); editing = true; cfn = s.id; ns = loadSheet(w, cfn); g = ns.layout.g; cols.setText(to!string(g.cols)); rows.setText(to!string(g.rows)); wide.setText(to!string(g.w)); high.setText(to!string(g.h)); leftx.setText(to!string(g.topx)); topy.setText(to!string(g.topy)); xstep.setText(to!string(g.hstride)); ystep.setText(to!string(g.vstride)); name.setText(to!string(ns.id)); purpose.setText(to!string(ns.description)); isRound.setActive(g.round); } this(AppWindow w) { GtkResponseType rta[1] = [ ResponseType.CANCEL ]; string[1] sa = [ "Cancel" ]; super("Set Up a Custom Grid Sheet", w, DialogFlags.DESTROY_WITH_PARENT, sa, rta); addOnResponse(&responseHandler); save = addButton("Save", ResponseType.OK); save.setSensitive(0); aw = w; black = new RGBA(0,0,0, 1); red = new RGBA(1, 0, 0, 1); setSizeRequest(780, 420); if (aw.config.iso) { tpw = 210; tph = 297; } else { tpw = cast(int) (25.4*8.5); tph = cast(int) (25.4*11); } g = Grid(0,0,0,0,0,0,0,0,false); ns = Sheet(aw.config.iso, "User", "", "", Category.USER, Paper.A4, false); if (!aw.config.iso) ns.paper = Paper.US; ns.layout.g = g; layout = new Layout(null, null); VBox vb = getContentArea(); vb.packStart(layout, 1, 1, 0); layout.show(); addGadgets(); da.show(); } void responseHandler(int rt, Dialog d) { if (rt == ResponseType.OK) { writeSheet(); if (!editing) { MenuItem mi = new MenuItem(&aw.mm.ssHandler, "User: "~sheetName); aw.mm.udefMenu.append(mi); mi.show(); } } destroy(); } void addGadgets() { int vp = 10, sizeRequest = 80; Label t = new Label("All grid sheets are designed as Portrait. COMPO will deal with rotating them."); t.show(); layout.put(t, 10, vp); vp += 20; string s = "Rows and cols are integers, other measurements in decimal " ~ (aw.config.iso? "mm.": "inches."); t = new Label(s); t.show(); layout.put(t, 10, vp); vp += 30; da = new DrawingArea(tpw, tph); da.addOnDraw(&drawCallback); Frame f = new Frame(da, null); f.setSizeRequest(tpw+4, tph+4); f.setShadowType(ShadowType.IN); layout.put(f, 540, vp); f.show(); isRound = new CheckButton("Items are round."); isRound.addOnToggled(&cbToggled); isRound.show(); layout.put(isRound, 10, vp); vp += 30; t = new Label("Number of columns:"); t.show(); layout.put(t, 10, vp); cols = new Entry(); cols.addOnChanged(&entryChanged); cols.setWidthChars(12); cols.show(); layout.put(cols, 150, vp); t = new Label("Number of rows:"); t.show(); layout.put(t, 280, vp); rows = new Entry(); rows.addOnChanged(&entryChanged); rows.setWidthChars(12); rows.show(); layout.put(rows, 410, vp); vp += 30; t = new Label("Width:"); t.show(); layout.put(t, 10, vp); wide = new Entry(); wide.addOnChanged(&entryChanged); wide.setWidthChars(12); wide.show(); layout.put(wide, 150, vp); t = new Label("Height:"); t.show(); layout.put(t, 280, vp); high = new Entry(); high.addOnChanged(&entryChanged); high.setWidthChars(12); high.show(); layout.put(high, 410, vp); vp += 30; t = new Label("Left margin:"); t.show(); layout.put(t, 10, vp); leftx = new Entry(); leftx.addOnChanged(&entryChanged); leftx.setWidthChars(12); leftx.show(); layout.put(leftx, 150, vp); t = new Label("Top margin:"); t.show(); layout.put(t, 280, vp); topy = new Entry(); topy.addOnChanged(&entryChanged); topy.setWidthChars(12); topy.show(); layout.put(topy, 410, vp); vp += 30; t = new Label("Horizontal stride:"); t.show(); layout.put(t, 10, vp); xstep = new Entry(); xstep.addOnChanged(&entryChanged); xstep.setWidthChars(12); xstep.show(); layout.put(xstep, 150, vp); t = new Label("Vertical stride:"); t.show(); layout.put(t, 280, vp); ystep = new Entry(); ystep.addOnChanged(&entryChanged); ystep.setWidthChars(12); ystep.show(); layout.put(ystep, 410, vp); vp += 30; t = new Label("Name of sheet:"); t.show(); layout.put(t, 10, vp); name = new Entry(); name.addOnChanged(&entryChanged); name.setWidthChars(12); name.show(); layout.put(name, 150, vp); t = new Label("Purpose reminder:"); t.show(); layout.put(t, 280, vp); purpose = new Entry(); purpose.setWidthChars(12); purpose.show(); layout.put(purpose, 410, vp); vp += 40; Button b = new Button("Check Entries"); b.setSizeRequest(100, -1); b.addOnPressed(&checkEntries); b.show(); layout.put(b, 10, vp); vp += 30; tv = new TextView(); tv.setWrapMode(WrapMode.WORD); tv.setSizeRequest(505, 50); tv.setSensitive(0); f = new Frame(tv, null); f.show(); layout.put(f, 10, vp); tv.show(); } void cbToggled(ToggleButton b) { save.setSensitive(0); tv.getBuffer().setText(""); } void entryChanged(EditableIF e) { save.setSensitive(0); tv.getBuffer().setText(""); } Grid normalize(Grid og) { Grid t = og; if (aw.config.iso) return t; float inch = 25.4; t.w *= inch; t.h *= inch; t.topx *= inch; t.topy *= inch; t.hstride *= inch; t.vstride *= inch; return t; } bool drawCallback(Context c, Widget widget) { c.setSourceRgba(1,1,1,1); c.paint(); c.setSourceRgb(0, 0, 0); c.setLineWidth(0.5); Grid lg = normalize(g); double xoff = lg.topx, yoff = lg.topy; for (int i = 0; i < lg.rows; i++) { for (int j = 0; j < lg.cols; j++) { if (lg.round) { c.arc(xoff+lg.w/2, yoff+lg.w/2, lg.w/2, 0, 2*PI); } else { c.moveTo(xoff, yoff); c.lineTo(xoff+lg.w, yoff); c.lineTo(xoff+lg.w, yoff+lg.h); c.lineTo(xoff, yoff+lg.h); c.closePath(); } c.stroke(); xoff += lg.hstride; } xoff = lg.topx; yoff += lg.vstride; } return true; } void report(string s, bool alert) { tv.getBuffer().setText(s); tv.overrideColor(tv.getStateFlags(), alert? red: black); } void checkEntries(Button b) { auto intrex = regex("^[1-9][0-9]{0,2}$"); string s = cols.getText(); if (!s.length) { report("You have not entered a value for Cols.", true); return; } auto im = match(s, intrex); if (im.empty()) { cols.overrideColor(cols.getStateFlags(), red); report("The entry for Cols is not an integral number", true); return; } else cols.overrideColor(cols.getStateFlags(), black); g.cols = to!ushort(s); s = rows.getText(); if (!s.length) { report("You have not entered a value for Rows.", true); return; } im = match(s, intrex); if (im.empty()) { rows.overrideColor(rows.getStateFlags(), red); report("The entry for Rows is not an integral number", true); return; } else rows.overrideColor(rows.getStateFlags(), black); g.rows = to!ushort(s); double t; s = wide.getText(); if (!s.length) { report("You have not entered a value for Width", true); return; } if (!getDecimal(wide, s, t)) { report("The entry for Width is not a valid decimal number.", true); return; } g.w = t; s = high.getText(); if (!s.length) { report("You have not entered a value for Height", true); return; } if (!getDecimal(high, s, t)) { report("The entry for Height is not a valid decimal number.", true); return; } g.h = t; s = leftx.getText(); if (!s.length) { report("You have not entered a value for Left margin", true); return; } if (!getDecimal(leftx, s, t)) { report("The entry for Left margin is not a valid decimal number.", true); return; } g.topx = t; s = topy.getText(); if (!s.length) { report("You have not entered a value for Top margin", true); return; } if (!getDecimal(topy, s, t)) { report("The entry for Top margin is not a valid decimal number.", true); return; } g.topy = t; s = xstep.getText(); if (!s.length) { report("You have not entered a value for Horizontal stride", true); return; } if (!getDecimal(xstep, s, t)) { report("The entry for Horizontal stride is not a valid decimal number.", true); return; } g.hstride = t; s = ystep.getText(); if (!s.length) { report("You have not entered a value for Vertical stride", true); return; } if (!getDecimal(ystep, s, t)) { report("The entry for Vertical stride is not a valid decimal number.", true); return; } g.vstride = t; string rv = checkGrid(); if (rv !is null) { report(rv, true); return; } g.round = (isRound.getActive() != 0); if (g.round && g.w != g.h) { report("You have specified that the items are round, but the width is different than the height!", true); return; } da.queueDraw(); s = name.getText(); if (!s.length) { report("You have not entered a name for the custom grid", true); return; } string fileName = expandTilde("~/.COMPO/userdef/"); if (aw.config.iso) fileName ~= "ISO/"; else fileName ~= "US/"; fileName ~= s; save.setSensitive(1); if (!editing && exists(cast(char[]) fileName)) { name.overrideColor(name.getStateFlags(), red); report("The name you have entered is already in use. You can save, but if you do you will overwrite the existing design.", true); return; } sheetName = s; ns.id = s; s = purpose.getText(); ns.description = s; report("Everything is technically OK, you are good to save.", false); } string checkGrid() { if (g.topx < 0) return "The current design hangs over the left edge of the page."; if (g.topy < 0) return "The current design hangs over the top edge of the page."; double lim = aw.config.iso? 210: 8.5; double t = g.topx; for (int i = 0; i < g.cols-1; i++) { t += g.hstride; } t += g.w; if (t > lim) return "The current design hangs over the right edge of the page."; lim = aw.config.iso? 297: 11; t = g.topy; for (int i = 0; i < g.rows-1; i++) { t += g.vstride; } t += g.h; if (t > lim) return "The current design hangs over the bottom edge of the page."; return null; } bool getDecimal(Entry e, string s, out double val) { double d; bool problem; try { d = to!double(s); } catch (Exception x) { problem = true; } if (problem) { e.overrideColor(e.getStateFlags(), red); return false; } else { e.overrideColor(e.getStateFlags(), black); val = d; return true; } } void writeSheet() { string s = ""; s ~= "grid=true\n"; s ~= "iso=" ~ to!string(aw.config.iso) ~ "\n"; s ~= "mfr=" ~ "User" ~ "\n"; s ~= "id=" ~ ns.id ~ "\n"; s ~= "description=" ~ ns.description ~ "\n"; s ~= "category=" ~ to!string(cast(int) ns.category) ~ "\n"; s ~= "paper=" ~ to!string(cast(int) ns.paper) ~ "\n"; s ~= "seq=" ~ "false\n"; s ~= "cols=" ~ to!string(g.cols) ~ "\n"; s ~= "rows=" ~ to!string(g.rows) ~ "\n"; s ~= "w=" ~ to!string(g.w) ~ "\n"; s ~= "h=" ~ to!string(g.h) ~ "\n"; s ~= "topx=" ~ to!string(g.topx) ~ "\n"; s ~= "topy=" ~ to!string(g.topy) ~ "\n"; s ~= "hstride=" ~ to!string(g.hstride) ~ "\n"; s ~= "vstride=" ~ to!string(g.vstride) ~ "\n"; s ~= "round=" ~ to!string(g.round) ~ "\n"; string fileName = expandTilde("~/.COMPO/userdef/"); if (aw.config.iso) fileName ~= "ISO/"; else fileName ~= "US/"; fileName ~= ns.id; std.file.write(fileName, s); } } class SequenceDlg: Dialog { AppWindow aw; Layout layout; DrawingArea da; TextView tv; RGBA red, green, black, selectedColor; Widget save; Label ci; int pos; Entry xpos, ypos, wide, high, name, purpose; CheckButton isRound; Button add, remove, prev, next, vdate; LSRect[] rects; LSRect r; int tpw, tph; Sheet ns; string fileName; string sheetName; bool editing, adding, pending; this(AppWindow w, Sheet s) { editing = true; this(w); setTitle("Editing a Custom Grid Sheet"); ns = loadSheet(w, s.id); rects = ns.layout.s.rects; name.setText(to!string(ns.id)); purpose.setText(to!string(ns.description)); setInfo(1, cast(int) rects.length); xpos.setText(to!string(rects[0].x)); ypos.setText(to!string(rects[0].y)); wide.setText(to!string(rects[0].w)); high.setText(to!string(rects[0].h)); add.setSensitive(1); remove.setSensitive(1); prev.setSensitive(1); next.setSensitive(1); } this(AppWindow w) { GtkResponseType rta[1] = [ ResponseType.CANCEL ]; string[1] sa = [ "Cancel" ]; super("Set Up a Sequence Sheet", w, DialogFlags.DESTROY_WITH_PARENT, sa, rta); addOnResponse(&responseHandler); save = addButton("Save", ResponseType.OK); save.setSensitive(0); aw = w; pos = 1; black = new RGBA(0,0,0,1); red = new RGBA(1,0,0,1); green = new RGBA(0,1,0,1); selectedColor = black; setSizeRequest(760, 390); if (aw.config.iso) { tpw = 210; tph = 297; } else { tpw = cast(int) (25.4*8.5); tph = cast(int) (25.4*11); } ns = Sheet(aw.config.iso, "User", "", "", Category.USER, Paper.A4, true); if (!aw.config.iso) ns.paper = Paper.US; layout = new Layout(null, null); VBox vb = getContentArea(); vb.packStart(layout, 1, 1, 0); layout.show(); addGadgets(); add.setSensitive(0); remove.setSensitive(0); prev.setSensitive(0); next.setSensitive(0); da.show(); } void responseHandler(int rt, Dialog d) { if (rt == ResponseType.OK) { writeSheet(); if (!editing) { MenuItem mi = new MenuItem(&aw.mm.ssHandler, "User: "~sheetName); aw.mm.udefMenu.append(mi); mi.show(); } } destroy(); } void addGadgets() { int vp = 10; string s = "measurements in decimal " ~ (aw.config.iso? "mm.": "inches."); string s2 = "All sequence sheets are designed as Portrait. COMPO will deal with rotating them.\n"; if (editing) s2 ~= "Edit as required, then validate. Use 'Add' to append an item to the list - "; else s2 ~= "Specify each separate area in turn, validate it, then add it - "; s2 ~= s; Label t = new Label(s2); t.show(); layout.put(t, 10, vp); vp += 60; da = new DrawingArea(tpw, tph); da.addOnDraw(&drawCallback); Frame f = new Frame(da, null); f.setSizeRequest(204, 264); f.setShadowType(ShadowType.IN); layout.put(f, 540, vp); f.show(); t = new Label("X position:"); t.show(); layout.put(t, 10, vp); xpos = new Entry(); xpos.setWidthChars(14); xpos.show(); layout.put(xpos, 150, vp); t = new Label("Y position:"); t.show(); layout.put(t, 290, vp); ypos = new Entry(); ypos.setWidthChars(14); ypos.show(); layout.put(ypos, 400, vp); vp += 30; t = new Label("Width:"); t.show(); layout.put(t, 10, vp); wide = new Entry(); wide.setWidthChars(14); wide.show(); layout.put(wide, 150, vp); t = new Label("Height:"); t.show(); layout.put(t, 290, vp); high = new Entry(); high.setWidthChars(14); high.show(); layout.put(high, 400, vp); vp += 25; isRound = new CheckButton("Item is round"); isRound.show(); layout.put(isRound, 10, vp); vp += 30; add = new Button("Add"); add.addOnPressed(&bPressed); add.show(); layout.put(add, 10, vp); remove = new Button("Remove"); remove.addOnPressed(&bPressed); remove.show(); layout.put(remove, 60, vp); prev = new Button("Prev"); prev.addOnPressed(&bPressed); prev.show(); layout.put(prev, 140, vp); next = new Button("Next"); next.addOnPressed(&bPressed); next.show(); layout.put(next, 190, vp); vdate = new Button("Validate"); vdate.addOnPressed(&bPressed); vdate.show(); layout.put(vdate, 240, vp); ci = new Label(""); setInfo(1, cast(int)rects.length); ci.show(); layout.put(ci, 350, vp); vp += 35; t = new Label("Name of sheet:"); t.show(); layout.put(t, 10, vp); name = new Entry(); name.setSizeRequest(180, -1); name.show(); layout.put(name, 150, vp); vp += 30; t = new Label("Purpose reminder:"); t.show(); layout.put(t, 10, vp); purpose = new Entry(); purpose.setSizeRequest(180, -1); purpose.show(); layout.put(purpose, 150, vp); vp +=25; Button b = new Button("Check Name"); b.setSizeRequest(100, -1); b.addOnPressed(&checkName); b.show(); layout.put(b, 10, vp); vp += 35; tv = new TextView(); tv.setWrapMode(WrapMode.WORD); tv.setSizeRequest(505, 45); tv.setSensitive(0); f = new Frame(tv, null); f.show(); layout.put(f, 10, vp); tv.show(); } LSRect normalize(LSRect r) { if (aw.config.iso) return r; r.x *= 25.4; r.y *= 25.4; r.w *= 25.4; r.h *= 25.4; return r; } bool drawCallback(Context c, Widget widget) { void drawOne(LSRect lsr) { LSRect tr = normalize(lsr); if (tr.round) { c.arc(tr.x+tr.w/2, tr.y+tr.h/2, tr.w/2, 0, 2*PI); } else { c.moveTo(tr.x, tr.y); c.lineTo(tr.x+tr.w, tr.y); c.lineTo(tr.x+tr.w, tr.y+tr.h); c.lineTo(tr.x, tr.y+tr.h); c.closePath(); } c.stroke(); } c.setSourceRgba(1,1,1,1); c.paint(); c.setLineWidth(0.5); foreach (int i, LSRect cr; rects) { c.setSourceRgb(0, 0, 0); drawOne(cr); } if (pending) { c.setSourceRgb(selectedColor.red, selectedColor.green, selectedColor.blue); drawOne(r); } selectedColor = black; return true; } void report(string s, bool alert) { tv.getBuffer().setText(s); tv.overrideColor(tv.getStateFlags(), alert? red: black); } void undo(Button b) { if (rects.length) rects.length = rects.length-1; da.queueDraw(); } void setInfo(int pos, int n) { if (editing) ci.setText("Editing #"~to!string(pos)~" of "~to!string(n)); else ci.setText("Creating item "~to!string(pos)); } void bPressed(Button b) { string label = b.getLabel(); double t; switch (label) { case "Add": if (editing) { adding = true; setInfo(cast(int)rects.length+1, cast(int)rects.length); } else { rects.length = rects.length+1; rects[rects.length-1] = r; pos = cast(int)rects.length; setInfo(pos+1, cast(int)rects.length); } pending = false; r.round = false; r.x = 0.0; r.y = 0.0; r.w = 0.0; r.h = 0.0; xpos.setText(""); ypos.setText(""); wide.setText(""); high.setText(""); add.setSensitive(0); remove.setSensitive(0); prev.setSensitive(0); next.setSensitive(0); selectedColor = black; da.queueDraw(); break; case "Remove": { if (rects.length == 1) { xpos.setText(""); ypos.setText(""); wide.setText(""); high.setText(""); add.setSensitive(0); setInfo(pos, 1); } int apos = pos-1; if (apos == rects.length-1) { rects.length = rects.length-1; pos--; apos--; } else { for (int i = apos; i < rects.length-1; i++) { rects[i] = rects[i+1]; } } xpos.setText(to!string(rects[apos].x)); ypos.setText(to!string(rects[apos].y)); wide.setText(to!string(rects[apos].w)); high.setText(to!string(rects[apos].h)); da.queueDraw(); setInfo(pos, cast(int)rects.length); } break; case "Prev": { if (pos == 1) break; pos--; int apos = pos-1; xpos.setText(to!string(rects[apos].x)); ypos.setText(to!string(rects[apos].y)); wide.setText(to!string(rects[apos].w)); high.setText(to!string(rects[apos].h)); setInfo(pos, cast(int)rects.length); da.queueDraw(); } break; case "Next": { if (pos == rects.length) break; pos++; int apos = pos-1; xpos.setText(to!string(rects[apos].x)); ypos.setText(to!string(rects[apos].y)); wide.setText(to!string(rects[apos].w)); high.setText(to!string(rects[apos].h)); setInfo(pos, cast(int) rects.length); da.queueDraw(); } break; case "Validate": { pending = true; selectedColor = red; string s = xpos.getText(); if (!s.length) { report("You have not entered a value for X position", true); da.queueDraw(); return; } if (!getDecimal(xpos, s, t)) { report("The entry for X position is not a valid decimal number.", true); return; } r.x = t; s = ypos.getText(); if (!s.length) { report("You have not entered a value for Y position", true); da.queueDraw(); return; } if (!getDecimal(ypos, s, t)) { report("The entry for Y position is not a valid decimal number.", true); da.queueDraw(); return; } r.y = t; s = wide.getText(); if (!s.length) { report("You have not entered a value for Width", true); da.queueDraw(); return; } if (!getDecimal(wide, s, t)) { report("The entry for Width is not a valid decimal number.", true); return; } r.w = t; s = high.getText(); if (!s.length) { report("You have not entered a value for Height", true); da.queueDraw(); return; } if (!getDecimal(high, s, t)) { report("The entry for Height is not a valid decimal number.", true); da.queueDraw(); return; } r.h = t; string rv = checkRect(r); if (rv !is null) { report(rv, true); da.queueDraw(); return; } if (isRound.getActive()) { if (r.w != r.h) { report("You have specified the item to be round, but the width is not equal to the height!", true); return; } r.round = true; } //next.setSensitive(1); //prev.setSensitive(1); if (editing && !adding) { rects[pos-1] = r; report("Item updated", false); selectedColor = black; } else { if (adding) { rects.length = rects.length+1; pos = cast(int)rects.length; rects[pos-1] = r; report("Item validated and added", false); setInfo(pos, cast(int)rects.length); selectedColor = black; add.setSensitive(1); remove.setSensitive(1); prev.setSensitive(1); next.setSensitive(1); } else { report("Item validated", false); add.setSensitive(1); selectedColor = green; } } adding = false; da.queueDraw(); } break; default: break; } } void checkName(Button b) { string s = name.getText(); if (!s.length) { report("You have not entered a name for the custom sequence", true); return; } sheetName = s; string fileName = expandTilde("~/.COMPO/userdef/"); if (aw.config.iso) fileName ~= "ISO/"; else fileName ~= "US/"; fileName ~= s; if (!editing && exists(cast(char[]) fileName)) { name.overrideColor(name.getStateFlags(), red); report("The name you have entered is already in use. You can save, but you will overwrite the existing design.", true); return; } ns.id = s; s = purpose.getText(); ns.description = s; report("Everything is technically OK, you are good to save.", false); save.setSensitive(1); } string checkRect(LSRect r) { if (r.x < 0) return "The current design hangs over the left edge of the page."; if (r.y < 0) return "The current design hangs over the top edge of the page."; double lim = aw.config.iso? 210: 8.5; if (r.x+r.w > lim) return "The current design hangs over the right edge of the page."; lim = aw.config.iso? 297: 11; if (r.y+r.h > lim) return "The current design hangs over the bottom edge of the page."; return null; } bool getDecimal(Entry e, string s, out double val) { double d; bool problem; try { d = to!double(s); } catch (Exception x) { problem = true; } if (problem) { e.overrideColor(e.getStateFlags(), red); return false; } else { e.overrideColor(e.getStateFlags(), black); val = d; return true; } } void writeSheet() { string s = ""; s ~= "grid=false\n"; s ~= "iso=" ~ to!string(aw.config.iso) ~ "\n"; s ~= "mfr=" ~ "User" ~ "\n"; s ~= "id=" ~ ns.id ~ "\n"; s ~= "description=" ~ ns.description ~ "\n"; s ~= "category=" ~ to!string(cast(int) ns.category) ~ "\n"; s ~= "paper=" ~ to!string(cast(int) ns.paper) ~ "\n"; s ~= "seq=" ~ "true\n"; s ~= "scount=" ~ to!string(rects.length) ~ "\n"; foreach (int i, LSRect r; rects) { s ~= to!string(i)~"="~to!string(r.round)~":"; s ~= to!string(r.x)~"|"~to!string(r.y)~"|"~to!string(r.w)~"|"~to!string(r.h)~"\n"; } string fileName = expandTilde("~/.COMPO/userdef/"); if (aw.config.iso) fileName ~= "ISO/"; else fileName ~= "US/"; fileName ~= ns.id; std.file.write(fileName, s); } } Sheet scaleSheet(AppWindow aw, Sheet s) { double sf = aw.screenRes; if (!s.iso) sf *= 24.5; if (s.seq) { Sequence seq = s.layout.s; foreach (ref LSRect r; seq.rects) { r.x *= sf; r.y *= sf; r.w *= sf; r.h *= sf; } s.layout.s = seq; } else { Grid g = s.layout.g; g.w *= sf; g.h *=sf; g.topx *= sf; g.topy *=sf; g.hstride *= sf; g.vstride *=sf; s.layout.g = g; } return s; } Sheet loadSheet(AppWindow aw, string name) { string fileName = expandTilde("~/.COMPO/userdef/"); if (aw.config.iso) fileName ~= "ISO/"; else fileName ~= "US/"; fileName ~= name; string s = cast(string) std.file.read(fileName); Sheet sheet; Grid g; string[] lines = split(s, "\n"); string[] nv; if (lines[0] == "grid=true") { foreach (int i, string line; lines) { if (i >= 17) break; nv = split(line,"="); assert(nv.length == 2); assert(nv[0] == gridNames[i]); switch (i) { case 0: break; case 1: sheet.iso = to!bool(nv[1]); break; case 2: sheet.mfr = nv[1]; break; case 3: sheet.id = nv[1]; break; case 4: sheet.description = nv[1]; break; case 5: sheet.category = cast(Category) to!int(nv[1]); break; case 6: sheet.paper = cast(Paper) to!int(nv[1]); break; case 7: sheet.seq = to!bool(nv[1]); break; case 8: g.cols = to!ushort(nv[1]); break; case 9: g.rows = to!ushort(nv[1]); break; case 10: g.w = to!double(nv[1]); break; case 11: g.h = to!double(nv[1]); break; case 12: g.topx = to!double(nv[1]); break; case 13: g.topy = to!double(nv[1]); break; case 14: g.hstride = to!double(nv[1]); break; case 15: g.vstride = to!double(nv[1]); break; case 16: g.round = to!bool(nv[1]); break; default: break; } } sheet.layout.g = g; } else { Sequence seq; foreach (int i, string line; lines) { if (i >= 8) break; nv = split(line,"="); assert(nv.length == 2); assert(nv[0] == gridNames[i]); switch (i) { case 0: break; case 1: sheet.iso = to!bool(nv[1]); break; case 2: sheet.mfr = nv[1]; break; case 3: sheet.id = nv[1]; break; case 4: sheet.description = nv[1]; break; case 5: sheet.category = cast(Category) to!int(nv[1]); break; case 6: sheet.paper = cast(Paper) to!int(nv[1]); break; case 7: sheet.seq = to!bool(nv[1]); break; default: break; } } nv = split(lines[8],"="); assert(nv.length == 2); assert(nv[0] == "scount"); int scount = to!int(nv[1]); seq.count = scount; int n = 0; for (size_t i = 9; i < lines.length; i++, n++) { LSRect r; if (lines[i].length == 0) break; nv = split(lines[i],"="); assert(nv.length == 2); assert(nv[0] == to!string(i-9)); nv = split(nv[1], ":"); r.round = to!bool(nv[0]); nv = split(nv[1], "|"); assert(nv.length == 4); r.x = to!double(nv[0]); r.y = to!double(nv[1]); r.w = to!double(nv[2]); r.h = to!double(nv[3]); seq.rects ~= r; } assert(n == scount); sheet.layout.s = seq; } return sheet; } interface Portfolio { int sheetCount(); Sheet* sheetPtr(); } class SheetLib { Sheet[] all; string[][string] mfrParts; int[string] specific; int[string][8] byCats; string[] menuStrings; AppWindow aw; this(AppWindow w, bool iso) { aw = w; Portfolio p; if (iso) { p = new GenericISO(); addSheets(p); p = new AveryISO(); addSheets(p); } else { p = new GenericUS(); addSheets(p); p = new AveryUS(); addSheets(p); } } void addSheets(Portfolio p) { int n = p.sheetCount(); Sheet* sp = p.sheetPtr(); size_t j = all.length; all.length = all.length+n; for (int i = 0; i < n; i++, sp++, j++) { if (sp.category == Category.SEPARATOR) { mfrParts[sp.mfr] ~= "---".idup; continue; } all[j] = *sp; string key = sp.mfr~": "~sp.id ; mfrParts[sp.mfr] ~= sp.id~" - "~sp.description; specific[key] = cast(int) j; byCats[sp.category][key] = cast(int) j; } } string[] getMenuForMfr(string mfr) { string[] t = mfrParts[mfr]; return t; } // Most sheets will probably never be used, so just scale them when asked for. void realizeSheet(Sheet* s) { if (s.scaled) return; double sf = aw.screenRes; if (!s.iso) sf *= 25.4; // from inches if (s.seq) { for (int i = 0; i < s.layout.s.count; i++) { s.layout.s.rects[i].x *= sf; s.layout.s.rects[i].y *= sf; s.layout.s.rects[i].w *= sf; s.layout.s.rects[i].h *= sf; } } else { s.layout.g.w *= sf; s.layout.g.h *= sf; s.layout.g.topx *=sf; s.layout.g.topy *= sf; s.layout.g.hstride *= sf; s.layout.g.vstride *= sf; } s.scaled = true; } Sheet getSheet(string mfrPart) { int i = specific[mfrPart]; Sheet t = all[i]; realizeSheet(&t); return t; } string[] getMenuForUser() { string xlate(string fp) { string[] a =fp.split("/"); string s = a[$-1]; return "User: "~s; } string[] list; string path = "userdef/"~(aw.config.iso? "ISO": "US"); string cfp = getConfigPath(path); foreach (string fp; dirEntries(cfp, SpanMode.depth)) { list ~= xlate(fp); } return list; } }
D
// REQUIRED_ARGS: -w // https://issues.dlang.org/show_bug.cgi?id=4375: Dangling else /* TEST_OUTPUT: --- fail_compilation/fail4375a.d(16): Warning: else is dangling, add { } after condition at fail_compilation/fail4375a.d(13) Error: warnings are treated as errors Use -wi if you wish to treat warnings only as informational. --- */ void main() { if (true) if (false) assert(3); else assert(4); }
D
module android.java.android.util.AndroidException_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import2 = android.java.java.io.PrintStream_d_interface; import import5 = android.java.java.lang.Class_d_interface; import import3 = android.java.java.io.PrintWriter_d_interface; import import4 = android.java.java.lang.StackTraceElement_d_interface; import import1 = android.java.java.lang.JavaException_d_interface; import import0 = android.java.java.lang.JavaThrowable_d_interface; final class AndroidException : IJavaObject { static immutable string[] _d_canCastTo = [ ]; @Import this(arsd.jni.Default); @Import this(string); @Import this(string, import0.JavaThrowable); @Import this(import1.JavaException); @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(import2.PrintStream); @Import void printStackTrace(import3.PrintWriter); @Import import0.JavaThrowable fillInStackTrace(); @Import import4.StackTraceElement[] getStackTrace(); @Import void setStackTrace(import4.StackTraceElement[]); @Import void addSuppressed(import0.JavaThrowable); @Import import0.JavaThrowable[] getSuppressed(); @Import import5.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 = "Landroid/util/AndroidException;"; }
D
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Debounce.o : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Debounce~partial.swiftmodule : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Debounce~partial.swiftdoc : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Debounce~partial.swiftsourceinfo : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 3.0.0 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */ module vtkCellDataToPointData; static import vtkd_im; static import core.stdc.config; static import std.conv; static import std.string; static import std.conv; static import std.string; static import vtkObjectBase; static import vtkDataSetAlgorithm; class vtkCellDataToPointData : vtkDataSetAlgorithm.vtkDataSetAlgorithm { private void* swigCPtr; public this(void* cObject, bool ownCObject) { super(vtkd_im.vtkCellDataToPointData_Upcast(cObject), ownCObject); swigCPtr = cObject; } public static void* swigGetCPtr(vtkCellDataToPointData obj) { return (obj is null) ? null : obj.swigCPtr; } mixin vtkd_im.SwigOperatorDefinitions; public override void dispose() { synchronized(this) { if (swigCPtr !is null) { if (swigCMemOwn) { swigCMemOwn = false; throw new object.Exception("C++ destructor does not have public access"); } swigCPtr = null; super.dispose(); } } } public static vtkCellDataToPointData New() { void* cPtr = vtkd_im.vtkCellDataToPointData_New(); vtkCellDataToPointData ret = (cPtr is null) ? null : new vtkCellDataToPointData(cPtr, false); return ret; } public static int IsTypeOf(string type) { auto ret = vtkd_im.vtkCellDataToPointData_IsTypeOf((type ? std.string.toStringz(type) : null)); return ret; } public static vtkCellDataToPointData SafeDownCast(vtkObjectBase.vtkObjectBase o) { void* cPtr = vtkd_im.vtkCellDataToPointData_SafeDownCast(vtkObjectBase.vtkObjectBase.swigGetCPtr(o)); vtkCellDataToPointData ret = (cPtr is null) ? null : new vtkCellDataToPointData(cPtr, false); return ret; } public vtkCellDataToPointData NewInstance() const { void* cPtr = vtkd_im.vtkCellDataToPointData_NewInstance(cast(void*)swigCPtr); vtkCellDataToPointData ret = (cPtr is null) ? null : new vtkCellDataToPointData(cPtr, false); return ret; } alias vtkDataSetAlgorithm.vtkDataSetAlgorithm.NewInstance NewInstance; public void SetPassCellData(int _arg) { vtkd_im.vtkCellDataToPointData_SetPassCellData(cast(void*)swigCPtr, _arg); } public int GetPassCellData() { auto ret = vtkd_im.vtkCellDataToPointData_GetPassCellData(cast(void*)swigCPtr); return ret; } public void PassCellDataOn() { vtkd_im.vtkCellDataToPointData_PassCellDataOn(cast(void*)swigCPtr); } public void PassCellDataOff() { vtkd_im.vtkCellDataToPointData_PassCellDataOff(cast(void*)swigCPtr); } }
D
/* REQUIRED_ARGS: -HC -c -o- PERMUTE_ARGS: TEST_OUTPUT: --- // Automatically generated by Digital Mars D Compiler v$n$ #pragma once #include <stddef.h> #include <stdint.h> // ignoring variable dtoh_VarDeclaration.x because of linkage // ignoring variable dtoh_VarDeclaration.y because of linkage extern "C" int32_t z; extern int32_t t; struct S; struct S2; // ignoring non-cpp class C class C2; union U; union U2; --- */ int x = 42; extern int y; extern (C) int z; extern (C++) __gshared int t; extern (C) struct S; extern (C++) struct S2; extern (C) class C; extern (C++) class C2; extern (C) union U; extern (C++) union U2;
D
a member of a Slavic people who settled in Serbia and neighboring areas in the 6th and 7th centuries
D
a container that is usually woven and has handles the quantity contained in a basket horizontal circular metal hoop supporting a net through which players try to throw the basketball a score in basketball made by throwing the ball through the hoop
D
module d.common.node; public import d.context.location; class Node { Location location; Node parent; this(Location location,Node parent = null) { this.location = location; this.parent = parent; } invariant() { // FIXME: reenable this when ct paradoxes know their location. // assert(location != Location.init, "node location must never be init"); } final: import d.context.context; auto getFullLocation(Context c) const { return location.getFullLocation(c); } }
D
// Written by Christopher E. Miller // See the included license.txt for copyright and license details. /// module dfl.combobox; private import dfl.internal.dlib; private import dfl.listbox, dfl.application, dfl.base, dfl.internal.winapi; private import dfl.event, dfl.drawing, dfl.collections, dfl.control, dfl.internal.utf; private extern(Windows) void _initCombobox(); /// enum ComboBoxStyle: ubyte { DROP_DOWN, /// DROP_DOWN_LIST, /// ditto SIMPLE, /// ditto } /// class ComboBox: ListControl // docmain { this() { _initCombobox(); wstyle |= WS_TABSTOP | WS_VSCROLL | CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_HASSTRINGS; wexstyle |= WS_EX_CLIENTEDGE; ctrlStyle |= ControlStyles.SELECTABLE; wclassStyle = comboboxClassStyle; icollection = createItemCollection(); } /// final @property void dropDownStyle(ComboBoxStyle ddstyle) // setter { LONG st; st = _style() & ~(CBS_DROPDOWN | CBS_DROPDOWNLIST | CBS_SIMPLE); final switch(ddstyle) { case ComboBoxStyle.DROP_DOWN: _style(st | CBS_DROPDOWN); break; case ComboBoxStyle.DROP_DOWN_LIST: _style(st | CBS_DROPDOWNLIST); break; case ComboBoxStyle.SIMPLE: _style(st | CBS_SIMPLE); break; } _crecreate(); } /// ditto final @property ComboBoxStyle dropDownStyle() // getter { LONG st; st = _style() & (CBS_DROPDOWN | CBS_DROPDOWNLIST | CBS_SIMPLE); switch(st) { case CBS_DROPDOWN: return ComboBoxStyle.DROP_DOWN; case CBS_DROPDOWNLIST: return ComboBoxStyle.DROP_DOWN_LIST; case CBS_SIMPLE: return ComboBoxStyle.SIMPLE; default: assert(0); } } /// final @property void integralHeight(bool byes) //setter { if(byes) _style(_style() & ~CBS_NOINTEGRALHEIGHT); else _style(_style() | CBS_NOINTEGRALHEIGHT); _crecreate(); } /// ditto final @property bool integralHeight() // getter { return (_style() & CBS_NOINTEGRALHEIGHT) == 0; } /// // This function has no effect if the drawMode is OWNER_DRAW_VARIABLE. @property void itemHeight(int h) // setter { if(drawMode == DrawMode.OWNER_DRAW_VARIABLE) return; iheight = h; if(isHandleCreated) prevwproc(CB_SETITEMHEIGHT, 0, h); } /// ditto // Return value is meaningless when drawMode is OWNER_DRAW_VARIABLE. @property int itemHeight() // getter { /+ if(drawMode == DrawMode.OWNER_DRAW_VARIABLE || !isHandleCreated) return iheight; int result = prevwproc(CB_GETITEMHEIGHT, 0, 0); if(result == CB_ERR) result = iheight; // ? else iheight = result; return result; +/ return iheight; } /// override @property void selectedIndex(int idx) // setter { if(isHandleCreated) { prevwproc(CB_SETCURSEL, cast(WPARAM)idx, 0); } } /// ditto override @property int selectedIndex() //getter { if(isHandleCreated) { LRESULT result; result = prevwproc(CB_GETCURSEL, 0, 0); if(CB_ERR != result) // Redundant. return cast(int)result; } return -1; } /// final @property void selectedItem(Object o) // setter { int i; i = items.indexOf(o); if(i != -1) selectedIndex = i; } /// ditto final @property void selectedItem(Dstring str) // setter { int i; i = items.indexOf(str); if(i != -1) selectedIndex = i; } /// ditto final @property Object selectedItem() // getter { int idx; idx = selectedIndex; if(idx == -1) return null; return items[idx]; } /// override @property void selectedValue(Object val) // setter { selectedItem = val; } /// ditto override @property void selectedValue(Dstring str) // setter { selectedItem = str; } /// ditto override @property Object selectedValue() // getter { return selectedItem; } /// final @property void sorted(bool byes) // setter { /+ if(byes) _style(_style() | CBS_SORT); else _style(_style() & ~CBS_SORT); +/ _sorting = byes; } /// ditto final @property bool sorted() // getter { //return (_style() & CBS_SORT) != 0; return _sorting; } /// final void beginUpdate() { prevwproc(WM_SETREDRAW, false, 0); } /// ditto final void endUpdate() { prevwproc(WM_SETREDRAW, true, 0); invalidate(true); // Show updates. } /// final int findString(Dstring str, int startIndex) { // TODO: find string if control not created ? int result = NO_MATCHES; if(isHandleCreated) { if(dfl.internal.utf.useUnicode) result = cast(int)prevwproc(CB_FINDSTRING, startIndex, cast(LPARAM)dfl.internal.utf.toUnicodez(str)); else result = cast(int)prevwproc(CB_FINDSTRING, startIndex, cast(LPARAM)dfl.internal.utf.unsafeAnsiz(str)); if(result == CB_ERR) // Redundant. result = NO_MATCHES; } return result; } /// ditto final int findString(Dstring str) { return findString(str, -1); // Start at beginning. } /// final int findStringExact(Dstring str, int startIndex) { // TODO: find string if control not created ? int result = NO_MATCHES; if(isHandleCreated) { if(dfl.internal.utf.useUnicode) result = cast(int)prevwproc(CB_FINDSTRINGEXACT, startIndex, cast(LPARAM)dfl.internal.utf.toUnicodez(str)); else result = cast(int)prevwproc(CB_FINDSTRINGEXACT, startIndex, cast(LPARAM)dfl.internal.utf.unsafeAnsiz(str)); if(result == CB_ERR) // Redundant. result = NO_MATCHES; } return result; } /// ditto final int findStringExact(Dstring str) { return findStringExact(str, -1); // Start at beginning. } /// final int getItemHeight(int idx) { int result = cast(int)prevwproc(CB_GETITEMHEIGHT, idx, 0); if(CB_ERR == result) throw new DflException("Unable to obtain item height"); return result; } /// final @property void drawMode(DrawMode dm) // setter { LONG wl = _style() & ~(CBS_OWNERDRAWVARIABLE | CBS_OWNERDRAWFIXED); final switch(dm) { case DrawMode.OWNER_DRAW_VARIABLE: wl |= CBS_OWNERDRAWVARIABLE; break; case DrawMode.OWNER_DRAW_FIXED: wl |= CBS_OWNERDRAWFIXED; break; case DrawMode.NORMAL: break; } _style(wl); _crecreate(); } /// ditto final @property DrawMode drawMode() // getter { LONG wl = _style(); if(wl & CBS_OWNERDRAWVARIABLE) return DrawMode.OWNER_DRAW_VARIABLE; if(wl & CBS_OWNERDRAWFIXED) return DrawMode.OWNER_DRAW_FIXED; return DrawMode.NORMAL; } /// final void selectAll() { if(isHandleCreated) prevwproc(CB_SETEDITSEL, 0, MAKELPARAM(0, cast(ushort)-1)); } /// final @property void maxLength(uint len) // setter { if(!len) lim = 0x7FFFFFFE; else lim = len; if(isHandleCreated) { Message m; m = Message(handle, CB_LIMITTEXT, cast(WPARAM)lim, 0); prevWndProc(m); } } /// ditto final @property uint maxLength() // getter { return lim; } /// final @property void selectionLength(uint len) // setter { if(isHandleCreated) { uint v1, v2; prevwproc(CB_GETEDITSEL, cast(WPARAM)&v1, cast(LPARAM)&v2); v2 = v1 + len; prevwproc(CB_SETEDITSEL, 0, MAKELPARAM(v1, v2)); } } /// ditto final @property uint selectionLength() // getter { if(isHandleCreated) { uint v1, v2; prevwproc(CB_GETEDITSEL, cast(WPARAM)&v1, cast(LPARAM)&v2); assert(v2 >= v1); return v2 - v1; } return 0; } /// final @property void selectionStart(uint pos) // setter { if(isHandleCreated) { uint v1, v2; prevwproc(CB_GETEDITSEL, cast(WPARAM)&v1, cast(LPARAM)&v2); assert(v2 >= v1); v2 = pos + (v2 - v1); prevwproc(CB_SETEDITSEL, 0, MAKELPARAM(pos, v2)); } } /// ditto final @property uint selectionStart() // getter { if(isHandleCreated) { uint v1, v2; prevwproc(CB_GETEDITSEL, cast(WPARAM)&v1, cast(LPARAM)&v2); return v1; } return 0; } /// // Number of characters in the textbox. // This does not necessarily correspond to the number of chars; some characters use multiple chars. // Return may be larger than the amount of characters. // This is a lot faster than retrieving the text, but retrieving the text is completely accurate. @property uint textLength() // getter { if(!(ctrlStyle & ControlStyles.CACHE_TEXT) && isHandleCreated) //return cast(uint)SendMessageA(handle, WM_GETTEXTLENGTH, 0, 0); return cast(uint)dfl.internal.utf.sendMessage(handle, WM_GETTEXTLENGTH, 0, 0); return cast(uint)wtext.length; } /// final @property void droppedDown(bool byes) // setter { if(isHandleCreated) prevwproc(CB_SHOWDROPDOWN, cast(WPARAM)byes, 0); } /// ditto final @property bool droppedDown() // getter { if(isHandleCreated) return prevwproc(CB_GETDROPPEDSTATE, 0, 0) != FALSE; return false; } /// final @property void dropDownWidth(int w) // setter { if(dropw == w) return; if(w < 0) w = 0; dropw = w; if(isHandleCreated) { if(dropw < width) prevwproc(CB_SETDROPPEDWIDTH, width, 0); else prevwproc(CB_SETDROPPEDWIDTH, dropw, 0); } } /// ditto final @property int dropDownWidth() // getter { if(isHandleCreated) { int w; w = cast(int)prevwproc(CB_GETDROPPEDWIDTH, 0, 0); if(dropw != -1) dropw = w; return w; } else { if(dropw < width) return width; return dropw; } } /// final @property ObjectCollection items() // getter { return icollection; } enum DEFAULT_ITEM_HEIGHT = 13; enum NO_MATCHES = CB_ERR; /// static class ObjectCollection { protected this(ComboBox lbox) { this.lbox = lbox; } protected this(ComboBox lbox, Object[] range) { this.lbox = lbox; addRange(range); } protected this(ComboBox lbox, Dstring[] range) { this.lbox = lbox; addRange(range); } /+ protected this(ComboBox lbox, ObjectCollection range) { this.lbox = lbox; addRange(range); } +/ void add(Object value) { add2(value); } void add(Dstring value) { add(new ListString(value)); } void addRange(Object[] range) { if(lbox.sorted) { foreach(Object value; range) { add(value); } } else { _wraparray.addRange(range); } } void addRange(Dstring[] range) { foreach(Dstring s; range) { add(s); } } private: ComboBox lbox; Object[] _items; this() { } LRESULT insert2(WPARAM idx, Dstring val) { insert(cast(int)idx, val); return idx; } LRESULT add2(Object val) { int i; if(lbox.sorted) { for(i = 0; i != _items.length; i++) { if(val < _items[i]) break; } } else { i = cast(int)_items.length; } insert(i, val); return i; } LRESULT add2(Dstring val) { return add2(new ListString(val)); } void _added(size_t idx, Object val) { if(lbox.isHandleCreated) { if(dfl.internal.utf.useUnicode) lbox.prevwproc(CB_INSERTSTRING, idx, cast(LPARAM)dfl.internal.utf.toUnicodez(getObjectString(val))); else lbox.prevwproc(CB_INSERTSTRING, idx, cast(LPARAM)dfl.internal.utf.toAnsiz(getObjectString(val))); // Can this be unsafeAnsiz()? } } void _removed(size_t idx, Object val) { if(size_t.max == idx) // Clear all. { if(lbox.isHandleCreated) { lbox.prevwproc(CB_RESETCONTENT, 0, 0); } } else { if(lbox.isHandleCreated) { lbox.prevwproc(CB_DELETESTRING, cast(WPARAM)idx, 0); } } } public: mixin ListWrapArray!(Object, _items, _blankListCallback!(Object), _added, _blankListCallback!(Object), _removed, true, false, false) _wraparray; } /// protected ObjectCollection createItemCollection() { return new ObjectCollection(this); } protected override void onHandleCreated(EventArgs ea) { super.onHandleCreated(ea); // Set the Ctrl ID to the HWND so that it is unique // and WM_MEASUREITEM will work properly. SetWindowLongA(hwnd, GWL_ID, cast(LONG)hwnd); //prevwproc(EM_SETLIMITTEXT, cast(WPARAM)lim, 0); maxLength = lim; // Call virtual function. if(dropw < width) prevwproc(CB_SETDROPPEDWIDTH, width, 0); else prevwproc(CB_SETDROPPEDWIDTH, dropw, 0); if(iheight != DEFAULT_ITEM_HEIGHT) prevwproc(CB_SETITEMHEIGHT, 0, iheight); Message m; m.hWnd = hwnd; m.msg = CB_INSERTSTRING; // Note: duplicate code. if(dfl.internal.utf.useUnicode) { foreach(int i, Object obj; icollection._items) { m.wParam = i; m.lParam = cast(LPARAM)dfl.internal.utf.toUnicodez(getObjectString(obj)); // <-- prevWndProc(m); //if(CB_ERR == m.result || CB_ERRSPACE == m.result) if(m.result < 0) throw new DflException("Unable to add combo box item"); //prevwproc(CB_SETITEMDATA, m.result, cast(LPARAM)cast(void*)obj); } } else { foreach(int i, Object obj; icollection._items) { m.wParam = i; m.lParam = cast(LPARAM)dfl.internal.utf.toAnsiz(getObjectString(obj)); // Can this be unsafeAnsiz()? // <-- prevWndProc(m); //if(CB_ERR == m.result || CB_ERRSPACE == m.result) if(m.result < 0) throw new DflException("Unable to add combo box item"); //prevwproc(CB_SETITEMDATA, m.result, cast(LPARAM)cast(void*)obj); } } //redrawEntire(); } package final @property bool hasDropList() // getter { return dropDownStyle != ComboBoxStyle.SIMPLE; } // This is needed for the SIMPLE style. protected override void onPaintBackground(PaintEventArgs pea) { RECT rect; pea.clipRectangle.getRect(&rect); FillRect(pea.graphics.handle, &rect, parent.hbrBg); // Hack. } override void createHandle() { if(isHandleCreated) return; // TODO: check if correct implementation. if(hasDropList) wrect.height = DEFAULT_ITEM_HEIGHT * 8; Dstring ft; ft = wtext; super.createHandle(); // Fix the cached window rect. // This is getting screen coords, not parent coords. Why was it here, anyway? //RECT rect; //GetWindowRect(hwnd, &rect); //wrect = Rect(&rect); // Fix the combo box's text since the initial window // text isn't put in the edit box for some reason. Message m; if(dfl.internal.utf.useUnicode) m = Message(hwnd, WM_SETTEXT, 0, cast(LPARAM)dfl.internal.utf.toUnicodez(ft)); else m = Message(hwnd, WM_SETTEXT, 0, cast(LPARAM)dfl.internal.utf.toAnsiz(ft)); // Can this be unsafeAnsiz()? prevWndProc(m); } protected override void createParams(ref CreateParams cp) { super.createParams(cp); cp.className = COMBOBOX_CLASSNAME; } //DrawItemEventHandler drawItem; Event!(ComboBox, DrawItemEventArgs) drawItem; //MeasureItemEventHandler measureItem; Event!(ComboBox, MeasureItemEventArgs) measureItem; protected: override @property Size defaultSize() // getter { return Size(120, 23); // ? } void onDrawItem(DrawItemEventArgs dieh) { drawItem(this, dieh); } void onMeasureItem(MeasureItemEventArgs miea) { measureItem(this, miea); } package final void _WmDrawItem(DRAWITEMSTRUCT* dis) in { assert(dis.hwndItem == handle); assert(dis.CtlType == ODT_COMBOBOX); } body { DrawItemState state; state = cast(DrawItemState)dis.itemState; if(dis.itemID == -1) { if(state & DrawItemState.FOCUS) DrawFocusRect(dis.hDC, &dis.rcItem); } else { DrawItemEventArgs diea; Color bc, fc; if(state & DrawItemState.SELECTED) { bc = Color.systemColor(COLOR_HIGHLIGHT); fc = Color.systemColor(COLOR_HIGHLIGHTTEXT); } else { bc = backColor; fc = foreColor; } prepareDc(dis.hDC); diea = new DrawItemEventArgs(new Graphics(dis.hDC, false), wfont, Rect(&dis.rcItem), dis.itemID, state, fc, bc); onDrawItem(diea); } } package final void _WmMeasureItem(MEASUREITEMSTRUCT* mis) in { assert(mis.CtlType == ODT_COMBOBOX); } body { MeasureItemEventArgs miea; scope Graphics gpx = new CommonGraphics(handle(), GetDC(handle)); miea = new MeasureItemEventArgs(gpx, mis.itemID, /+ mis.itemHeight +/ iheight); miea.itemWidth = mis.itemWidth; onMeasureItem(miea); mis.itemHeight = miea.itemHeight; mis.itemWidth = miea.itemWidth; } override void prevWndProc(ref Message msg) { //msg.result = CallWindowProcA(comboboxPrevWndProc, msg.hWnd, msg.msg, msg.wParam, msg.lParam); msg.result = dfl.internal.utf.callWindowProc(comboboxPrevWndProc, msg.hWnd, msg.msg, msg.wParam, msg.lParam); } protected override void onReflectedMessage(ref Message m) { super.onReflectedMessage(m); switch(m.msg) { case WM_DRAWITEM: _WmDrawItem(cast(DRAWITEMSTRUCT*)m.lParam); m.result = 1; break; case WM_MEASUREITEM: _WmMeasureItem(cast(MEASUREITEMSTRUCT*)m.lParam); m.result = 1; break; /+ case WM_CTLCOLORSTATIC: case WM_CTLCOLOREDIT: /+ //SetBkColor(cast(HDC)m.wParam, backColor.toRgb()); // ? SetBkMode(cast(HDC)m.wParam, OPAQUE); // ? +/ break; +/ case WM_COMMAND: //assert(cast(HWND)msg.lParam == handle); // Might be one of its children. switch(HIWORD(m.wParam)) { case CBN_SELCHANGE: /+ if(drawMode != DrawMode.NORMAL) { // Hack. Object item = selectedItem; text = item ? getObjectString(item) : cast(Dstring)null; } +/ onSelectedIndexChanged(EventArgs.empty); onTextChanged(EventArgs.empty); // ? break; case CBN_SETFOCUS: _wmSetFocus(); break; case CBN_KILLFOCUS: _wmKillFocus(); break; case CBN_EDITCHANGE: onTextChanged(EventArgs.empty); // ? break; default: } break; default: } } override void wndProc(ref Message msg) { switch(msg.msg) { case CB_ADDSTRING: //msg.result = icollection.add2(stringFromStringz(cast(char*)msg.lParam).dup); // TODO: fix. //msg.result = icollection.add2(stringFromStringz(cast(char*)msg.lParam).idup); // TODO: fix. // Needed in D2. Doesn't work in D1. msg.result = icollection.add2(cast(Dstring)stringFromStringz(cast(char*)msg.lParam).dup); // TODO: fix. // Needed in D2. return; case CB_INSERTSTRING: //msg.result = icollection.insert2(msg.wParam, stringFromStringz(cast(char*)msg.lParam).dup); // TODO: fix. //msg.result = icollection.insert2(msg.wParam, stringFromStringz(cast(char*)msg.lParam).idup); // TODO: fix. // Needed in D2. Doesn't work in D1. msg.result = icollection.insert2(msg.wParam, cast(Dstring)stringFromStringz(cast(char*)msg.lParam).dup); // TODO: fix. // Needed in D2. return; case CB_DELETESTRING: icollection.removeAt(cast(int)msg.wParam); msg.result = icollection.length; return; case CB_RESETCONTENT: icollection.clear(); return; case CB_SETITEMDATA: // Cannot set item data from outside DFL. msg.result = CB_ERR; return; case CB_DIR: msg.result = CB_ERR; return; case CB_LIMITTEXT: maxLength = cast(uint)msg.wParam; return; case WM_SETFOCUS: case WM_KILLFOCUS: prevWndProc(msg); return; // Handled by reflected message. default: } super.wndProc(msg); } private: int iheight = DEFAULT_ITEM_HEIGHT; int dropw = -1; ObjectCollection icollection; package uint lim = 30_000; // Documented as default. bool _sorting = false; package: final: LRESULT prevwproc(UINT msg, WPARAM wparam, LPARAM lparam) { //return CallWindowProcA(listviewPrevWndProc, hwnd, msg, wparam, lparam); return dfl.internal.utf.callWindowProc(comboboxPrevWndProc, hwnd, msg, wparam, lparam); } }
D
/// D interface to lapack /// /// Version with minor modification of the blip.bindings wrappers from /// http://www.dsource.org/projects/multiarray/browser/trunk/Gobo /// /// Copyright (C) 2006-2008 William V. Baxter III, OLM Digital, Inc. /// /// This software is provided 'as-is', without any express or implied /// warranty. In no event will the authors be held liable for any /// damages arising from the use of this software. /// /// Permission is granted to anyone to use this software for any /// purpose, including commercial applications, and to alter it and /// redistribute it freely, subject to the following restrictions: /// /// 1. The origin of this software must not be misrepresented; you must /// not claim that you wrote the original software. If you use this /// software in a product, an acknowledgment in the product /// documentation would be appreciated but is not required. /// /// 2. Altered source versions must be plainly marked as such, and must /// not be misrepresented as being the original software. /// 3. This notice may not be removed or altered from any source distribution. /// /// William Baxter wbaxter@gmail.com module blip.bindings.lapack.DLapack; import blip.bindings.lapack.Lapack; public import blip.bindings.blas.Types; // Prototypes for the raw Fortran interface to BLAS version (FORTRAN_FLOAT_FUNCTIONS_RETURN_DOUBLE) { } else { } /* LAPACK routines */ //-------------------------------------------------------- // ---- SIMPLE and DIVIDE AND CONQUER DRIVER routines ---- //--------------------------------------------------------- /// Solves a general system of linear equations AX=B. void gesv(f_int n, f_int nrhs, f_float *a, f_int lda, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sgesv_(&n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void gesv(f_int n, f_int nrhs, f_double *a, f_int lda, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dgesv_(&n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void gesv(f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cgesv_(&n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void gesv(f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zgesv_(&n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } /// Solves a general banded system of linear equations AX=B. void gbsv(f_int n, f_int kl, f_int ku, f_int nrhs, f_float *ab, f_int ldab, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sgbsv_(&n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbsv(f_int n, f_int kl, f_int ku, f_int nrhs, f_double *ab, f_int ldab, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dgbsv_(&n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbsv(f_int n, f_int kl, f_int ku, f_int nrhs, f_cfloat *ab, f_int ldab, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cgbsv_(&n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbsv(f_int n, f_int kl, f_int ku, f_int nrhs, f_cdouble *ab, f_int ldab, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zgbsv_(&n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } /// Solves a general tridiagonal system of linear equations AX=B. void gtsv(f_int n, f_int nrhs, f_float *dl, f_float *d, f_float *du, f_float *b, f_int ldb, ref f_int info) { sgtsv_(&n, &nrhs, dl, d, du, b, &ldb, &info); } void gtsv(f_int n, f_int nrhs, f_double *dl, f_double *d, f_double *du, f_double *b, f_int ldb, ref f_int info) { dgtsv_(&n, &nrhs, dl, d, du, b, &ldb, &info); } void gtsv(f_int n, f_int nrhs, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *b, f_int ldb, ref f_int info) { cgtsv_(&n, &nrhs, dl, d, du, b, &ldb, &info); } void gtsv(f_int n, f_int nrhs, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *b, f_int ldb, ref f_int info) { zgtsv_(&n, &nrhs, dl, d, du, b, &ldb, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B. void posv(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, ref f_int info) { sposv_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void posv(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, ref f_int info) { dposv_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void posv(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, ref f_int info) { cposv_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void posv(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, ref f_int info) { zposv_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B, where A is held in packed storage. void ppsv(char uplo, f_int n, f_int nrhs, f_float *ap, f_float *b, f_int ldb, ref f_int info) { sppsv_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void ppsv(char uplo, f_int n, f_int nrhs, f_double *ap, f_double *b, f_int ldb, ref f_int info) { dppsv_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void ppsv(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *b, f_int ldb, ref f_int info) { cppsv_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void ppsv(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *b, f_int ldb, ref f_int info) { zppsv_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } /// Solves a symmetric positive definite banded system /// of linear equations AX=B. void pbsv(char uplo, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *b, f_int ldb, ref f_int info) { spbsv_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbsv(char uplo, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *b, f_int ldb, ref f_int info) { dpbsv_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbsv(char uplo, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *b, f_int ldb, ref f_int info) { cpbsv_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbsv(char uplo, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *b, f_int ldb, ref f_int info) { zpbsv_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } /// Solves a symmetric positive definite tridiagonal system /// of linear equations AX=B. void ptsv(f_int n, f_int nrhs, f_float *d, f_float *e, f_float *b, f_int ldb, ref f_int info) { sptsv_(&n, &nrhs, d, e, b, &ldb, &info); } void ptsv(f_int n, f_int nrhs, f_double *d, f_double *e, f_double *b, f_int ldb, ref f_int info) { dptsv_(&n, &nrhs, d, e, b, &ldb, &info); } void ptsv(f_int n, f_int nrhs, f_float *d, f_cfloat *e, f_cfloat *b, f_int ldb, ref f_int info) { cptsv_(&n, &nrhs, d, e, b, &ldb, &info); } void ptsv(f_int n, f_int nrhs, f_double *d, f_cdouble *e, f_cdouble *b, f_int ldb, ref f_int info) { zptsv_(&n, &nrhs, d, e, b, &ldb, &info); } /// Solves a real symmetric indefinite system of linear equations AX=B. void sysv(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_int *ipiv, f_float *b, f_int ldb, f_float *work, f_int lwork, ref f_int info) { ssysv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } void sysv(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_int *ipiv, f_double *b, f_int ldb, f_double *work, f_int lwork, ref f_int info) { dsysv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } void sysv(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *work, f_int lwork, ref f_int info) { csysv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } void sysv(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *work, f_int lwork, ref f_int info) { zsysv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } /// Solves a complex Hermitian indefinite system of linear equations AX=B. void hesv(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *work, f_int lwork, ref f_int info) { chesv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } void hesv(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *work, f_int lwork, ref f_int info) { zhesv_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, work, &lwork, &info); } /// Solves a real symmetric indefinite system of linear equations AX=B, /// where A is held in packed storage. void spsv(char uplo, f_int n, f_int nrhs, f_float *ap, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sspsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void spsv(char uplo, f_int n, f_int nrhs, f_double *ap, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dspsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void spsv(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cspsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void spsv(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zspsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } /// Solves a complex Hermitian indefinite system of linear equations AX=B, /// where A is held in packed storage. void hpsv(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { chpsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void hpsv(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zhpsv_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } /// Computes the least squares solution to an over-determined system /// of linear equations, A X=B or A**H X=B, or the minimum norm /// solution of an under-determined system, where A is a general /// rectangular matrix of full rank, using a QR or LQ factorization /// of A. void gels(char trans, f_int m, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *work, f_int lwork, ref f_int info) { sgels_(&trans, &m, &n, &nrhs, a, &lda, b, &ldb, work, &lwork, &info); } void gels(char trans, f_int m, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *work, f_int lwork, ref f_int info) { dgels_(&trans, &m, &n, &nrhs, a, &lda, b, &ldb, work, &lwork, &info); } void gels(char trans, f_int m, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *work, f_int lwork, ref f_int info) { cgels_(&trans, &m, &n, &nrhs, a, &lda, b, &ldb, work, &lwork, &info); } void gels(char trans, f_int m, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *work, f_int lwork, ref f_int info) { zgels_(&trans, &m, &n, &nrhs, a, &lda, b, &ldb, work, &lwork, &info); } /// Computes the least squares solution to an over-determined system /// of linear equations, A X=B or A**H X=B, or the minimum norm /// solution of an under-determined system, using a divide and conquer /// method, where A is a general rectangular matrix of full rank, /// using a QR or LQ factorization of A. void gelsd(f_int m, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *s, f_float rcond, out f_int rank, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { sgelsd_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, iwork, &info); } void gelsd(f_int m, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *s, f_double rcond, out f_int rank, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dgelsd_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, iwork, &info); } void gelsd(f_int m, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *s, f_float rcond, out f_int rank, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, ref f_int info) { cgelsd_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, rwork, iwork, &info); } void gelsd(f_int m, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *s, f_double rcond, out f_int rank, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, ref f_int info) { zgelsd_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, rwork, iwork, &info); } /// Solves the LSE (Constrained Linear Least Squares Problem) using /// the GRQ (Generalized RQ) factorization void gglse(f_int m, f_int n, f_int p, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *c, f_float *d, f_float *x, f_float *work, f_int lwork, ref f_int info) { sgglse_(&m, &n, &p, a, &lda, b, &ldb, c, d, x, work, &lwork, &info); } void gglse(f_int m, f_int n, f_int p, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *c, f_double *d, f_double *x, f_double *work, f_int lwork, ref f_int info) { dgglse_(&m, &n, &p, a, &lda, b, &ldb, c, d, x, work, &lwork, &info); } void gglse(f_int m, f_int n, f_int p, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *c, f_cfloat *d, f_cfloat *x, f_cfloat *work, f_int lwork, ref f_int info) { cgglse_(&m, &n, &p, a, &lda, b, &ldb, c, d, x, work, &lwork, &info); } void gglse(f_int m, f_int n, f_int p, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *c, f_cdouble *d, f_cdouble *x, f_cdouble *work, f_int lwork, ref f_int info) { zgglse_(&m, &n, &p, a, &lda, b, &ldb, c, d, x, work, &lwork, &info); } /// Solves the GLM (Generalized Linear Regression Model) using /// the GQR (Generalized QR) factorization void ggglm(f_int n, f_int m, f_int p, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *d, f_float *x, f_float *y, f_float *work, f_int lwork, ref f_int info) { sggglm_(&n, &m, &p, a, &lda, b, &ldb, d, x, y, work, &lwork, &info); } void ggglm(f_int n, f_int m, f_int p, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *d, f_double *x, f_double *y, f_double *work, f_int lwork, ref f_int info) { dggglm_(&n, &m, &p, a, &lda, b, &ldb, d, x, y, work, &lwork, &info); } void ggglm(f_int n, f_int m, f_int p, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *d, f_cfloat *x, f_cfloat *y, f_cfloat *work, f_int lwork, ref f_int info) { cggglm_(&n, &m, &p, a, &lda, b, &ldb, d, x, y, work, &lwork, &info); } void ggglm(f_int n, f_int m, f_int p, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *d, f_cdouble *x, f_cdouble *y, f_cdouble *work, f_int lwork, ref f_int info) { zggglm_(&n, &m, &p, a, &lda, b, &ldb, d, x, y, work, &lwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric matrix. void syev(char jobz, char uplo, f_int n, f_float *a, f_int lda, f_float *w, f_float *work, f_int lwork, ref f_int info) { ssyev_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, &info); } void syev(char jobz, char uplo, f_int n, f_double *a, f_int lda, f_double *w, f_double *work, f_int lwork, ref f_int info) { dsyev_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian matrix. void heev(char jobz, char uplo, f_int n, f_cfloat *a, f_int lda, f_float *w, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cheev_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, rwork, &info); } void heev(char jobz, char uplo, f_int n, f_cdouble *a, f_int lda, f_double *w, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zheev_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, rwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric matrix. If eigenvectors are desired, it uses a divide /// and conquer algorithm. void syevd(char jobz, char uplo, f_int n, f_float *a, f_int lda, f_float *w, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ssyevd_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, iwork, &liwork, &info); } void syevd(char jobz, char uplo, f_int n, f_double *a, f_int lda, f_double *w, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dsyevd_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, iwork, &liwork, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian matrix. If eigenvectors are desired, it uses a divide /// and conquer algorithm. void heevd(char jobz, char uplo, f_int n, f_cfloat *a, f_int lda, f_float *w, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { cheevd_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void heevd(char jobz, char uplo, f_int n, f_cdouble *a, f_int lda, f_double *w, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zheevd_(&jobz, &uplo, &n, a, &lda, w, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric matrix in packed storage. void spev(char jobz, char uplo, f_int n, f_float *ap, f_float *w, f_float *z, f_int ldz, f_float *work, ref f_int info) { sspev_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &info); } void spev(char jobz, char uplo, f_int n, f_double *ap, f_double *w, f_double *z, f_int ldz, f_double *work, ref f_int info) { dspev_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &info); } /// Computes selected eigenvalues, and optionally, eigenvectors of a complex /// Hermitian matrix. Eigenvalues are computed by the dqds /// algorithm, and eigenvectors are computed from various "good" LDL^T /// representations (also known as Relatively Robust Representations). /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian matrix in packed storage. void hpev(char jobz, char uplo, f_int n, f_cfloat *ap, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, ref f_int info) { chpev_(&jobz, &uplo, &n, ap, w, z, &ldz, work, rwork, &info); } void hpev(char jobz, char uplo, f_int n, f_cdouble *ap, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, ref f_int info) { zhpev_(&jobz, &uplo, &n, ap, w, z, &ldz, work, rwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric matrix in packed storage. If eigenvectors are desired, /// it uses a divide and conquer algorithm. void spevd(char jobz, char uplo, f_int n, f_float *ap, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sspevd_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } void spevd(char jobz, char uplo, f_int n, f_double *ap, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dspevd_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian matrix in packed storage. If eigenvectors are desired, it /// uses a divide and conquer algorithm. void hpevd(char jobz, char uplo, f_int n, f_cfloat *ap, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { chpevd_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void hpevd(char jobz, char uplo, f_int n, f_cdouble *ap, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zhpevd_(&jobz, &uplo, &n, ap, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric band matrix. void sbev(char jobz, char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *w, f_float *z, f_int ldz, f_float *work, ref f_int info) { ssbev_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &info); } void sbev(char jobz, char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *w, f_double *z, f_int ldz, f_double *work, ref f_int info) { dsbev_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian band matrix. void hbev(char jobz, char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, ref f_int info) { chbev_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, rwork, &info); } void hbev(char jobz, char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, ref f_int info) { zhbev_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, rwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric band matrix. If eigenvectors are desired, it uses a /// divide and conquer algorithm. void sbevd(char jobz, char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ssbevd_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } void sbevd(char jobz, char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dsbevd_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a complex /// Hermitian band matrix. If eigenvectors are desired, it uses a divide /// and conquer algorithm. void hbevd(char jobz, char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { chbevd_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void hbevd(char jobz, char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zhbevd_(&jobz, &uplo, &n, &kd, ab, &ldab, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric tridiagonal matrix. void stev(char jobz, f_int n, f_float *d, f_float *e, f_float *z, f_int ldz, f_float *work, ref f_int info) { sstev_(&jobz, &n, d, e, z, &ldz, work, &info); } void stev(char jobz, f_int n, f_double *d, f_double *e, f_double *z, f_int ldz, f_double *work, ref f_int info) { dstev_(&jobz, &n, d, e, z, &ldz, work, &info); } /// Computes all eigenvalues, and optionally, eigenvectors of a real /// symmetric tridiagonal matrix. If eigenvectors are desired, it uses /// a divide and conquer algorithm. void stevd(char jobz, f_int n, f_float *d, f_float *e, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sstevd_(&jobz, &n, d, e, z, &ldz, work, &lwork, iwork, &liwork, &info); } void stevd(char jobz, f_int n, f_double *d, f_double *e, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dstevd_(&jobz, &n, d, e, z, &ldz, work, &lwork, iwork, &liwork, &info); } /// Computes the eigenvalues and Schur factorization of a general /// matrix, and orders the factorization so that selected eigenvalues /// are at the top left of the Schur form. void gees(char jobvs, char sort, FCB_SGEES_SELECT select, f_int n, f_float *a, f_int lda, f_int sdim, f_float *wr, f_float *wi, f_float *vs, f_int ldvs, f_float *work, f_int lwork, f_int bwork, ref f_int info) { sgees_(&jobvs, &sort, select, &n, a, &lda, &sdim, wr, wi, vs, &ldvs, work, &lwork, &bwork, &info); } void gees(char jobvs, char sort, FCB_DGEES_SELECT select, f_int n, f_double *a, f_int lda, f_int sdim, f_double *wr, f_double *wi, f_double *vs, f_int ldvs, f_double *work, f_int lwork, f_int bwork, ref f_int info) { dgees_(&jobvs, &sort, select, &n, a, &lda, &sdim, wr, wi, vs, &ldvs, work, &lwork, &bwork, &info); } void gees(char jobvs, char sort, FCB_CGEES_SELECT select, f_int n, f_cfloat *a, f_int lda, f_int sdim, f_cfloat *w, f_cfloat *vs, f_int ldvs, f_cfloat *work, f_int lwork, f_float *rwork, f_int bwork, ref f_int info) { cgees_(&jobvs, &sort, select, &n, a, &lda, &sdim, w, vs, &ldvs, work, &lwork, rwork, &bwork, &info); } void gees(char jobvs, char sort, FCB_ZGEES_SELECT select, f_int n, f_cdouble *a, f_int lda, f_int sdim, f_cdouble *w, f_cdouble *vs, f_int ldvs, f_cdouble *work, f_int lwork, f_double *rwork, f_int bwork, ref f_int info) { zgees_(&jobvs, &sort, select, &n, a, &lda, &sdim, w, vs, &ldvs, work, &lwork, rwork, &bwork, &info); } /// Computes the eigenvalues and left and right eigenvectors of /// a general matrix. void geev(char jobvl, char jobvr, f_int n, f_float *a, f_int lda, f_float *wr, f_float *wi, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_float *work, f_int lwork, ref f_int info) { sgeev_(&jobvl, &jobvr, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void geev(char jobvl, char jobvr, f_int n, f_double *a, f_int lda, f_double *wr, f_double *wi, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_double *work, f_int lwork, ref f_int info) { dgeev_(&jobvl, &jobvr, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void geev(char jobvl, char jobvr, f_int n, f_cfloat *a, f_int lda, f_cfloat *w, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgeev_(&jobvl, &jobvr, &n, a, &lda, w, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } void geev(char jobvl, char jobvr, f_int n, f_cdouble *a, f_int lda, f_cdouble *w, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgeev_(&jobvl, &jobvr, &n, a, &lda, w, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } /// Computes the singular value decomposition (SVD) of a general /// rectangular matrix. void gesvd(char jobu, char jobvt, f_int m, f_int n, f_float *a, f_int lda, f_float *s, f_float *u, f_int ldu, f_float *vt, f_int ldvt, f_float *work, f_int lwork, ref f_int info) { sgesvd_(&jobu, &jobvt, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, &info); } void gesvd(char jobu, char jobvt, f_int m, f_int n, f_double *a, f_int lda, f_double *s, f_double *u, f_int ldu, f_double *vt, f_int ldvt, f_double *work, f_int lwork, ref f_int info) { dgesvd_(&jobu, &jobvt, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, &info); } void gesvd(char jobu, char jobvt, f_int m, f_int n, f_cfloat *a, f_int lda, f_float *s, f_cfloat *u, f_int ldu, f_cfloat *vt, f_int ldvt, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgesvd_(&jobu, &jobvt, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, rwork, &info); } void gesvd(char jobu, char jobvt, f_int m, f_int n, f_cdouble *a, f_int lda, f_double *s, f_cdouble *u, f_int ldu, f_cdouble *vt, f_int ldvt, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgesvd_(&jobu, &jobvt, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, rwork, &info); } /// Computes the singular value decomposition (SVD) of a general /// rectangular matrix using divide-and-conquer. void gesdd(char jobz, f_int m, f_int n, f_float *a, f_int lda, f_float *s, f_float *u, f_int ldu, f_float *vt, f_int ldvt, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { sgesdd_(&jobz, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, iwork, &info); } void gesdd(char jobz, f_int m, f_int n, f_double *a, f_int lda, f_double *s, f_double *u, f_int ldu, f_double *vt, f_int ldvt, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dgesdd_(&jobz, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, iwork, &info); } void gesdd(char jobz, f_int m, f_int n, f_cfloat *a, f_int lda, f_float *s, f_cfloat *u, f_int ldu, f_cfloat *vt, f_int ldvt, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, ref f_int info) { cgesdd_(&jobz, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, rwork, iwork, &info); } void gesdd(char jobz, f_int m, f_int n, f_cdouble *a, f_int lda, f_double *s, f_cdouble *u, f_int ldu, f_cdouble *vt, f_int ldvt, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, ref f_int info) { zgesdd_(&jobz, &m, &n, a, &lda, s, u, &ldu, vt, &ldvt, work, &lwork, rwork, iwork, &info); } /// Computes all eigenvalues and the eigenvectors of a generalized /// symmetric-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. void sygv(f_int itype, char jobz, char uplo, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *w, f_float *work, f_int lwork, ref f_int info) { ssygv_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, &info); } void sygv(f_int itype, char jobz, char uplo, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *w, f_double *work, f_int lwork, ref f_int info) { dsygv_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, &info); } /// Computes all eigenvalues and the eigenvectors of a generalized /// Hermitian-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. void hegv(f_int itype, char jobz, char uplo, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *w, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { chegv_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, rwork, &info); } void hegv(f_int itype, char jobz, char uplo, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *w, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zhegv_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, rwork, &info); } /// Computes all eigenvalues and the eigenvectors of a generalized /// symmetric-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void sygvd(f_int itype, char jobz, char uplo, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *w, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ssygvd_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, iwork, &liwork, &info); } void sygvd(f_int itype, char jobz, char uplo, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *w, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dsygvd_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, iwork, &liwork, &info); } /// Computes all eigenvalues and the eigenvectors of a generalized /// Hermitian-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void hegvd(f_int itype, char jobz, char uplo, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *w, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { chegvd_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void hegvd(f_int itype, char jobz, char uplo, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *w, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zhegvd_(&itype, &jobz, &uplo, &n, a, &lda, b, &ldb, w, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes all eigenvalues and eigenvectors of a generalized /// symmetric-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. void spgv(f_int itype, char jobz, char uplo, f_int n, f_float *ap, f_float *bp, f_float *w, f_float *z, f_int ldz, f_float *work, ref f_int info) { sspgv_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &info); } void spgv(f_int itype, char jobz, char uplo, f_int n, f_double *ap, f_double *bp, f_double *w, f_double *z, f_int ldz, f_double *work, ref f_int info) { dspgv_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &info); } /// Computes all eigenvalues and eigenvectors of a generalized /// Hermitian-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. void hpgv(f_int itype, char jobz, char uplo, f_int n, f_cfloat *ap, f_cfloat *bp, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, ref f_int info) { chpgv_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, rwork, &info); } void hpgv(f_int itype, char jobz, char uplo, f_int n, f_cdouble *ap, f_cdouble *bp, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, ref f_int info) { zhpgv_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, rwork, &info); } /// Computes all eigenvalues and eigenvectors of a generalized /// symmetric-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void spgvd(f_int itype, char jobz, char uplo, f_int n, f_float *ap, f_float *bp, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sspgvd_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } void spgvd(f_int itype, char jobz, char uplo, f_int n, f_double *ap, f_double *bp, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dspgvd_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } /// Computes all eigenvalues and eigenvectors of a generalized /// Hermitian-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void hpgvd(f_int itype, char jobz, char uplo, f_int n, f_cfloat *ap, f_cfloat *bp, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { chpgvd_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void hpgvd(f_int itype, char jobz, char uplo, f_int n, f_cdouble *ap, f_cdouble *bp, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zhpgvd_(&itype, &jobz, &uplo, &n, ap, bp, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes all the eigenvalues, and optionally, the eigenvectors /// of a real generalized symmetric-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be symmetric /// and banded, and B is also positive definite. void sbgv(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_float *ab, f_int ldab, f_float *bb, f_int ldbb, f_float *w, f_float *z, f_int ldz, f_float *work, ref f_int info) { ssbgv_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &info); } void sbgv(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_double *ab, f_int ldab, f_double *bb, f_int ldbb, f_double *w, f_double *z, f_int ldz, f_double *work, ref f_int info) { dsbgv_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &info); } /// Computes all the eigenvalues, and optionally, the eigenvectors /// of a complex generalized Hermitian-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be Hermitian /// and banded, and B is also positive definite. void hbgv(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_cfloat *ab, f_int ldab, f_cfloat *bb, f_int ldbb, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, ref f_int info) { chbgv_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, rwork, &info); } void hbgv(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_cdouble *ab, f_int ldab, f_cdouble *bb, f_int ldbb, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, ref f_int info) { zhbgv_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, rwork, &info); } /// Computes all the eigenvalues, and optionally, the eigenvectors /// of a real generalized symmetric-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be symmetric /// and banded, and B is also positive definite. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void sbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_float *ab, f_int ldab, f_float *bb, f_int ldbb, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ssbgvd_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } void sbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_double *ab, f_int ldab, f_double *bb, f_int ldbb, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dsbgvd_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &lwork, iwork, &liwork, &info); } /// Computes all the eigenvalues, and optionally, the eigenvectors /// of a complex generalized Hermitian-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be Hermitian /// and banded, and B is also positive definite. /// If eigenvectors are desired, it uses a divide and conquer algorithm. void hbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_cfloat *ab, f_int ldab, f_cfloat *bb, f_int ldbb, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { chbgvd_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void hbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_cdouble *ab, f_int ldab, f_cdouble *bb, f_int ldbb, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zhbgvd_(&jobz, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, w, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes the generalized eigenvalues, Schur form, and left and/or /// right Schur vectors for a pair of nonsymmetric matrices void gegs(char jobvsl, char jobvsr, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *vsl, f_int ldvsl, f_float *vsr, f_int ldvsr, f_float *work, f_int lwork, ref f_int info) { sgegs_(&jobvsl, &jobvsr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, &info); } void gegs(char jobvsl, char jobvsr, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *vsl, f_int ldvsl, f_double *vsr, f_int ldvsr, f_double *work, f_int lwork, ref f_int info) { dgegs_(&jobvsl, &jobvsr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, &info); } void gegs(char jobvsl, char jobvsr, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphav, f_cfloat *betav, f_cfloat *vsl, f_int ldvsl, f_cfloat *vsr, f_int ldvsr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgegs_(&jobvsl, &jobvsr, &n, a, &lda, b, &ldb, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, rwork, &info); } void gegs(char jobvsl, char jobvsr, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphav, f_cdouble *betav, f_cdouble *vsl, f_int ldvsl, f_cdouble *vsr, f_int ldvsr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgegs_(&jobvsl, &jobvsr, &n, a, &lda, b, &ldb, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, rwork, &info); } /// Computes the generalized eigenvalues, Schur form, and left and/or /// right Schur vectors for a pair of nonsymmetric matrices void gges(char jobvsl, char jobvsr, char sort, FCB_SGGES_SELCTG selctg, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_int sdim, f_float *alphar, f_float *alphai, f_float *betav, f_float *vsl, f_int ldvsl, f_float *vsr, f_int ldvsr, f_float *work, f_int lwork, f_int bwork, ref f_int info) { sgges_(&jobvsl, &jobvsr, &sort, selctg, &n, a, &lda, b, &ldb, &sdim, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, &bwork, &info); } void gges(char jobvsl, char jobvsr, char sort, FCB_DGGES_DELCTG delctg, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_int sdim, f_double *alphar, f_double *alphai, f_double *betav, f_double *vsl, f_int ldvsl, f_double *vsr, f_int ldvsr, f_double *work, f_int lwork, f_int bwork, ref f_int info) { dgges_(&jobvsl, &jobvsr, &sort, delctg, &n, a, &lda, b, &ldb, &sdim, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, &bwork, &info); } void gges(char jobvsl, char jobvsr, char sort, FCB_CGGES_SELCTG selctg, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_int sdim, f_cfloat *alphav, f_cfloat *betav, f_cfloat *vsl, f_int ldvsl, f_cfloat *vsr, f_int ldvsr, f_cfloat *work, f_int lwork, f_float *rwork, f_int bwork, ref f_int info) { cgges_(&jobvsl, &jobvsr, &sort, selctg, &n, a, &lda, b, &ldb, &sdim, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, rwork, &bwork, &info); } void gges(char jobvsl, char jobvsr, char sort, FCB_ZGGES_DELCTG delctg, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_int sdim, f_cdouble *alphav, f_cdouble *betav, f_cdouble *vsl, f_int ldvsl, f_cdouble *vsr, f_int ldvsr, f_cdouble *work, f_int lwork, f_double *rwork, f_int bwork, ref f_int info) { zgges_(&jobvsl, &jobvsr, &sort, delctg, &n, a, &lda, b, &ldb, &sdim, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, work, &lwork, rwork, &bwork, &info); } /// Computes the generalized eigenvalues, and left and/or right /// generalized eigenvectors for a pair of nonsymmetric matrices void gegv(char jobvl, char jobvr, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_float *work, f_int lwork, ref f_int info) { sgegv_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void gegv(char jobvl, char jobvr, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_double *work, f_int lwork, ref f_int info) { dgegv_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void gegv(char jobvl, char jobvr, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphar, f_cfloat *betav, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgegv_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, betav, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } void gegv(char jobvl, char jobvr, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphar, f_cdouble *betav, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgegv_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, betav, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } /// Computes the generalized eigenvalues, and left and/or right /// generalized eigenvectors for a pair of nonsymmetric matrices void ggev(char jobvl, char jobvr, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_float *work, f_int lwork, ref f_int info) { sggev_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void ggev(char jobvl, char jobvr, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_double *work, f_int lwork, ref f_int info) { dggev_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, work, &lwork, &info); } void ggev(char jobvl, char jobvr, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphav, f_cfloat *betav, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cggev_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphav, betav, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } void ggev(char jobvl, char jobvr, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphav, f_cdouble *betav, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zggev_(&jobvl, &jobvr, &n, a, &lda, b, &ldb, alphav, betav, vl, &ldvl, vr, &ldvr, work, &lwork, rwork, &info); } /// Computes the Generalized Singular Value Decomposition void ggsvd(char jobu, char jobv, char jobq, f_int m, f_int n, f_int p, f_int k, f_int l, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphav, f_float *betav, f_float *u, f_int ldu, f_float *v, f_int ldv, f_float *q, f_int ldq, f_float *work, f_int *iwork, ref f_int info) { sggsvd_(&jobu, &jobv, &jobq, &m, &n, &p, &k, &l, a, &lda, b, &ldb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, iwork, &info); } void ggsvd(char jobu, char jobv, char jobq, f_int m, f_int n, f_int p, f_int k, f_int l, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphav, f_double *betav, f_double *u, f_int ldu, f_double *v, f_int ldv, f_double *q, f_int ldq, f_double *work, f_int *iwork, ref f_int info) { dggsvd_(&jobu, &jobv, &jobq, &m, &n, &p, &k, &l, a, &lda, b, &ldb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, iwork, &info); } void ggsvd(char jobu, char jobv, char jobq, f_int m, f_int n, f_int p, f_int k, f_int l, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *alphav, f_float *betav, f_cfloat *u, f_int ldu, f_cfloat *v, f_int ldv, f_cfloat *q, f_int ldq, f_cfloat *work, f_float *rwork, f_int *iwork, ref f_int info) { cggsvd_(&jobu, &jobv, &jobq, &m, &n, &p, &k, &l, a, &lda, b, &ldb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, rwork, iwork, &info); } void ggsvd(char jobu, char jobv, char jobq, f_int m, f_int n, f_int p, f_int k, f_int l, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *alphav, f_double *betav, f_cdouble *u, f_int ldu, f_cdouble *v, f_int ldv, f_cdouble *q, f_int ldq, f_cdouble *work, f_double *rwork, f_int *iwork, ref f_int info) { zggsvd_(&jobu, &jobv, &jobq, &m, &n, &p, &k, &l, a, &lda, b, &ldb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, rwork, iwork, &info); } //----------------------------------------------------- // ---- EXPERT and RRR DRIVER routines ---- //----------------------------------------------------- /// Solves a general system of linear equations AX=B, A**T X=B /// or A**H X=B, and provides an estimate of the condition number /// and error bounds on the solution. void gesvx(char fact, char trans, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, f_int *ipiv, char equed, f_float *r, f_float *c, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgesvx_(&fact, &trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gesvx(char fact, char trans, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, f_int *ipiv, char equed, f_double *r, f_double *c, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgesvx_(&fact, &trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gesvx(char fact, char trans, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, char equed, f_float *r, f_float *c, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgesvx_(&fact, &trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void gesvx(char fact, char trans, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, char equed, f_double *r, f_double *c, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgesvx_(&fact, &trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a general banded system of linear equations AX=B, /// A**T X=B or A**H X=B, and provides an estimate of the condition /// number and error bounds on the solution. void gbsvx(char fact, char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_float *ab, f_int ldab, f_float *afb, f_int ldafb, f_int *ipiv, char equed, f_float *r, f_float *c, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgbsvx_(&fact, &trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gbsvx(char fact, char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_double *ab, f_int ldab, f_double *afb, f_int ldafb, f_int *ipiv, char equed, f_double *r, f_double *c, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgbsvx_(&fact, &trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gbsvx(char fact, char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *afb, f_int ldafb, f_int *ipiv, char equed, f_float *r, f_float *c, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgbsvx_(&fact, &trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void gbsvx(char fact, char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *afb, f_int ldafb, f_int *ipiv, char equed, f_double *r, f_double *c, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgbsvx_(&fact, &trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, &equed, r, c, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a general tridiagonal system of linear equations AX=B, /// A**T X=B or A**H X=B, and provides an estimate of the condition /// number and error bounds on the solution. void gtsvx(char fact, char trans, f_int n, f_int nrhs, f_float *dl, f_float *d, f_float *du, f_float *dlf, f_float *df, f_float *duf, f_float *du2, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgtsvx_(&fact, &trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gtsvx(char fact, char trans, f_int n, f_int nrhs, f_double *dl, f_double *d, f_double *du, f_double *dlf, f_double *df, f_double *duf, f_double *du2, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgtsvx_(&fact, &trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void gtsvx(char fact, char trans, f_int n, f_int nrhs, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *dlf, f_cfloat *df, f_cfloat *duf, f_cfloat *du2, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgtsvx_(&fact, &trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void gtsvx(char fact, char trans, f_int n, f_int nrhs, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *dlf, f_cdouble *df, f_cdouble *duf, f_cdouble *du2, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgtsvx_(&fact, &trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B, and provides an estimate of the condition number /// and error bounds on the solution. void posvx(char fact, char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, char equed, f_float *s, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sposvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void posvx(char fact, char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, char equed, f_double *s, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dposvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void posvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, char equed, f_float *s, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cposvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void posvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, char equed, f_double *s, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zposvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B, where A is held in packed storage, and provides /// an estimate of the condition number and error bounds on the /// solution. void ppsvx(char fact, char uplo, f_int n, f_int nrhs, f_float *ap, f_float *afp, char equed, f_float *s, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sppsvx_(&fact, &uplo, &n, &nrhs, ap, afp, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void ppsvx(char fact, char uplo, f_int n, f_int nrhs, f_double *ap, f_double *afp, char equed, f_double *s, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dppsvx_(&fact, &uplo, &n, &nrhs, ap, afp, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void ppsvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, char equed, f_float *s, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cppsvx_(&fact, &uplo, &n, &nrhs, ap, afp, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void ppsvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, char equed, f_double *s, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zppsvx_(&fact, &uplo, &n, &nrhs, ap, afp, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a symmetric positive definite banded system /// of linear equations AX=B, and provides an estimate of the condition /// number and error bounds on the solution. void pbsvx(char fact, char uplo, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *afb, f_int ldafb, char equed, f_float *s, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { spbsvx_(&fact, &uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void pbsvx(char fact, char uplo, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *afb, f_int ldafb, char equed, f_double *s, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dpbsvx_(&fact, &uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void pbsvx(char fact, char uplo, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *afb, f_int ldafb, char equed, f_float *s, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cpbsvx_(&fact, &uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void pbsvx(char fact, char uplo, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *afb, f_int ldafb, char equed, f_double *s, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zpbsvx_(&fact, &uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, &equed, s, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a symmetric positive definite tridiagonal /// system of linear equations AX=B, and provides an estimate of /// the condition number and error bounds on the solution. void ptsvx(char fact, f_int n, f_int nrhs, f_float *d, f_float *e, f_float *df, f_float *ef, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, ref f_int info) { sptsvx_(&fact, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &info); } void ptsvx(char fact, f_int n, f_int nrhs, f_double *d, f_double *e, f_double *df, f_double *ef, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, ref f_int info) { dptsvx_(&fact, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &info); } void ptsvx(char fact, f_int n, f_int nrhs, f_float *d, f_cfloat *e, f_float *df, f_cfloat *ef, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cptsvx_(&fact, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void ptsvx(char fact, f_int n, f_int nrhs, f_double *d, f_cdouble *e, f_double *df, f_cdouble *ef, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zptsvx_(&fact, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a real symmetric /// indefinite system of linear equations AX=B, and provides an /// estimate of the condition number and error bounds on the solution. void sysvx(char fact, char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { ssysvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, iwork, &info); } void sysvx(char fact, char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dsysvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, iwork, &info); } void sysvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { csysvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, rwork, &info); } void sysvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zsysvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, rwork, &info); } /// Solves a complex Hermitian /// indefinite system of linear equations AX=B, and provides an /// estimate of the condition number and error bounds on the solution. void hesvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { chesvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, rwork, &info); } void hesvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zhesvx_(&fact, &uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, &lwork, rwork, &info); } /// Solves a real symmetric /// indefinite system of linear equations AX=B, where A is held /// in packed storage, and provides an estimate of the condition /// number and error bounds on the solution. void spsvx(char fact, char uplo, f_int n, f_int nrhs, f_float *ap, f_float *afp, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sspsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void spsvx(char fact, char uplo, f_int n, f_int nrhs, f_double *ap, f_double *afp, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dspsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, iwork, &info); } void spsvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cspsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void spsvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zspsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Solves a complex Hermitian /// indefinite system of linear equations AX=B, where A is held /// in packed storage, and provides an estimate of the condition /// number and error bounds on the solution. void hpsvx(char fact, char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float rcond, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { chpsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } void hpsvx(char fact, char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double rcond, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zhpsvx_(&fact, &uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, &rcond, ferr, berr, work, rwork, &info); } /// Computes the minimum norm least squares solution to an over- /// or under-determined system of linear equations A X=B, using a /// complete orthogonal factorization of A. void gelsx(f_int m, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_int jpvt, f_float rcond, out f_int rank, f_float *work, ref f_int info) { sgelsx_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &info); } void gelsx(f_int m, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_int jpvt, f_double rcond, out f_int rank, f_double *work, ref f_int info) { dgelsx_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &info); } void gelsx(f_int m, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_int jpvt, f_float rcond, out f_int rank, f_cfloat *work, f_float *rwork, ref f_int info) { cgelsx_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, rwork, &info); } void gelsx(f_int m, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_int jpvt, f_double rcond, out f_int rank, f_cdouble *work, f_double *rwork, ref f_int info) { zgelsx_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, rwork, &info); } /// Computes the minimum norm least squares solution to an over- /// or under-determined system of linear equations A X=B, using a /// complete orthogonal factorization of A. void gelsy(f_int m, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_int jpvt, f_float rcond, out f_int rank, f_float *work, f_int lwork, ref f_int info) { sgelsy_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &lwork, &info); } void gelsy(f_int m, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_int jpvt, f_double rcond, out f_int rank, f_double *work, f_int lwork, ref f_int info) { dgelsy_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &lwork, &info); } void gelsy(f_int m, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_int jpvt, f_float rcond, out f_int rank, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgelsy_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &lwork, rwork, &info); } void gelsy(f_int m, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_int jpvt, f_double rcond, out f_int rank, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgelsy_(&m, &n, &nrhs, a, &lda, b, &ldb, &jpvt, &rcond, &rank, work, &lwork, rwork, &info); } /// Computes the minimum norm least squares solution to an over- /// or under-determined system of linear equations A X=B, using /// the singular value decomposition of A. void gelss(f_int m, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *s, f_float rcond, out f_int rank, f_float *work, f_int lwork, ref f_int info) { sgelss_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, &info); } void gelss(f_int m, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *s, f_double rcond, out f_int rank, f_double *work, f_int lwork, ref f_int info) { dgelss_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, &info); } void gelss(f_int m, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *s, f_float rcond, out f_int rank, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgelss_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, rwork, &info); } void gelss(f_int m, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *s, f_double rcond, out f_int rank, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgelss_(&m, &n, &nrhs, a, &lda, b, &ldb, s, &rcond, &rank, work, &lwork, rwork, &info); } /// Computes selected eigenvalues and eigenvectors of a symmetric matrix. void syevx(char jobz, char range, char uplo, f_int n, f_float *a, f_int lda, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int ifail, ref f_int info) { ssyevx_(&jobz, &range, &uplo, &n, a, &lda, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, iwork, &ifail, &info); } void syevx(char jobz, char range, char uplo, f_int n, f_double *a, f_int lda, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int ifail, ref f_int info) { dsyevx_(&jobz, &range, &uplo, &n, a, &lda, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a Hermitian matrix. void heevx(char jobz, char range, char uplo, f_int n, f_cfloat *a, f_int lda, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { cheevx_(&jobz, &range, &uplo, &n, a, &lda, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, rwork, iwork, &ifail, &info); } void heevx(char jobz, char range, char uplo, f_int n, f_cdouble *a, f_int lda, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zheevx_(&jobz, &range, &uplo, &n, a, &lda, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, eigenvectors of a real /// symmetric matrix. Eigenvalues are computed by the dqds /// algorithm, and eigenvectors are computed from various "good" LDL^T /// representations (also known as Relatively Robust Representations). void syevr(char jobz, char range, char uplo, f_int n, f_float *a, f_int lda, f_float vl, f_float vu, f_int il, f_int iu, f_float abstol, out f_int m, f_float *w, f_float *z, f_int ldz, f_int *isuppz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ssyevr_(&jobz, &range, &uplo, &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, work, &lwork, iwork, &liwork, &info); } void syevr(char jobz, char range, char uplo, f_int n, f_double *a, f_int lda, f_double vl, f_double vu, f_int il, f_int iu, f_double abstol, out f_int m, f_double *w, f_double *z, f_int ldz, f_int *isuppz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dsyevr_(&jobz, &range, &uplo, &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, work, &lwork, iwork, &liwork, &info); } /// Computes selected eigenvalues, and optionally, eigenvectors of a complex /// Hermitian matrix. Eigenvalues are computed by the dqds /// algorithm, and eigenvectors are computed from various "good" LDL^T /// representations (also known as Relatively Robust Representations). void heevr(char jobz, char range, char uplo, f_int n, f_cfloat *a, f_int lda, f_float vl, f_float vu, f_int il, f_int iu, f_float abstol, out f_int m, f_float *w, f_cfloat *z, f_int ldz, f_int *isuppz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { cheevr_(&jobz, &range, &uplo, &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void heevr(char jobz, char range, char uplo, f_int n, f_cdouble *a, f_int lda, f_double vl, f_double vu, f_int il, f_int iu, f_double abstol, out f_int m, f_double *w, f_cdouble *z, f_int ldz, f_int* isuppz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zheevr_(&jobz, &range, &uplo, &n, a, &lda, &vl, &vu, &il, &iu, &abstol, &m, w, z, &ldz, isuppz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes selected eigenvalues, and optionally, the eigenvectors of /// a generalized symmetric-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. void sygvx(f_int itype, char jobz, char range, char uplo, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int ifail, ref f_int info) { ssygvx_(&itype, &jobz, &range, &uplo, &n, a, &lda, b, &ldb, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, iwork, &ifail, &info); } void sygvx(f_int itype, char jobz, char range, char uplo, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int ifail, ref f_int info) { dsygvx_(&itype, &jobz, &range, &uplo, &n, a, &lda, b, &ldb, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, the eigenvectors of /// a generalized Hermitian-definite generalized eigenproblem, /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. void hegvx(f_int itype, char jobz, char range, char uplo, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { chegvx_(&itype, &jobz, &range, &uplo, &n, a, &lda, b, &ldb, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, rwork, iwork, &ifail, &info); } void hegvx(f_int itype, char jobz, char range, char uplo, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zhegvx_(&itype, &jobz, &range, &uplo, &n, a, &lda, b, &ldb, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, &lwork, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a /// symmetric matrix in packed storage. void spevx(char jobz, char range, char uplo, f_int n, f_float *ap, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { sspevx_(&jobz, &range, &uplo, &n, ap, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } void spevx(char jobz, char range, char uplo, f_int n, f_double *ap, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dspevx_(&jobz, &range, &uplo, &n, ap, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a /// Hermitian matrix in packed storage. void hpevx(char jobz, char range, char uplo, f_int n, f_cfloat *ap, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { chpevx_(&jobz, &range, &uplo, &n, ap, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } void hpevx(char jobz, char range, char uplo, f_int n, f_cdouble *ap, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zhpevx_(&jobz, &range, &uplo, &n, ap, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, eigenvectors of /// a generalized symmetric-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. void spgvx(f_int itype, char jobz, char range, char uplo, f_int n, f_float *ap, f_float *bp, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { sspgvx_(&itype, &jobz, &range, &uplo, &n, ap, bp, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } void spgvx(f_int itype, char jobz, char range, char uplo, f_int n, f_double *ap, f_double *bp, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dspgvx_(&itype, &jobz, &range, &uplo, &n, ap, bp, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, the eigenvectors of /// a generalized Hermitian-definite generalized eigenproblem, Ax= lambda /// Bx, ABx= lambda x, or BAx= lambda x, where A and B are in packed /// storage. void hpgvx(f_int itype, char jobz, char range, char uplo, f_int n, f_cfloat *ap, f_cfloat *bp, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { chpgvx_(&itype, &jobz, &range, &uplo, &n, ap, bp, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } void hpgvx(f_int itype, char jobz, char range, char uplo, f_int n, f_cdouble *ap, f_cdouble *bp, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zhpgvx_(&itype, &jobz, &range, &uplo, &n, ap, bp, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a /// symmetric band matrix. void sbevx(char jobz, char range, char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *q, f_int ldq, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { ssbevx_(&jobz, &range, &uplo, &n, &kd, ab, &ldab, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } void sbevx(char jobz, char range, char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *q, f_int ldq, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dsbevx_(&jobz, &range, &uplo, &n, &kd, ab, &ldab, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a /// Hermitian band matrix. void hbevx(char jobz, char range, char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_cfloat *q, f_int ldq, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { chbevx_(&jobz, &range, &uplo, &n, &kd, ab, &ldab, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } void hbevx(char jobz, char range, char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_cdouble *q, f_int ldq, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zhbevx_(&jobz, &range, &uplo, &n, &kd, ab, &ldab, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, the eigenvectors /// of a real generalized symmetric-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be symmetric /// and banded, and B is also positive definite. void sbgvx(char jobz, char range, char uplo, f_int n, f_int ka, f_int kb, f_float *ab, f_int ldab, f_float *bb, f_int ldbb, f_float *q, f_int ldq, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { ssbgvx_(&jobz, &range, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } void sbgvx(char jobz, char range, char uplo, f_int n, f_int ka, f_int kb, f_double *ab, f_int ldab, f_double *bb, f_int ldbb, f_double *q, f_int ldq, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dsbgvx_(&jobz, &range, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, the eigenvectors /// of a complex generalized Hermitian-definite banded eigenproblem, of /// the form A*x=(lambda)*B*x. A and B are assumed to be Hermitian /// and banded, and B is also positive definite. void hbgvx(char jobz, char range, char uplo, f_int n, f_int ka, f_int kb, f_cfloat *ab, f_int ldab, f_cfloat *bb, f_int ldbb, f_cfloat *q, f_int ldq, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_float *rwork, f_int *iwork, f_int ifail, ref f_int info) { chbgvx_(&jobz, &range, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } void hbgvx(char jobz, char range, char uplo, f_int n, f_int ka, f_int kb, f_cdouble *ab, f_int ldab, f_cdouble *bb, f_int ldbb, f_cdouble *q, f_int ldq, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_double *rwork, f_int *iwork, f_int ifail, ref f_int info) { zhbgvx_(&jobz, &range, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, q, &ldq, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, rwork, iwork, &ifail, &info); } /// Computes selected eigenvalues and eigenvectors of a real /// symmetric tridiagonal matrix. void stevx(char jobz, char range, f_int n, f_float *d, f_float *e, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { sstevx_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } void stevx(char jobz, char range, f_int n, f_double *d, f_double *e, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dstevx_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, work, iwork, &ifail, &info); } /// Computes selected eigenvalues, and optionally, eigenvectors of a real /// symmetric tridiagonal matrix. Eigenvalues are computed by the dqds /// algorithm, and eigenvectors are computed from various "good" LDL^T /// representations (also known as Relatively Robust Representations). void stevr(char jobz, char range, f_int n, f_float *d, f_float *e, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_int isuppz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sstevr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } void stevr(char jobz, char range, f_int n, f_double *d, f_double *e, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_int isuppz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dstevr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } /// Computes the eigenvalues and Schur factorization of a general /// matrix, orders the factorization so that selected eigenvalues /// are at the top left of the Schur form, and computes reciprocal /// condition numbers for the average of the selected eigenvalues, /// and for the associated right invariant subspace. void geesx(char jobvs, char sort, FCB_SGEESX_SELECT select, char sense, f_int n, f_float *a, f_int lda, f_int sdim, f_float *wr, f_float *wi, f_float *vs, f_int ldvs, f_float *rconde, f_float *rcondv, f_float *work, f_int lwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { sgeesx_(&jobvs, &sort, select, &sense, &n, a, &lda, &sdim, wr, wi, vs, &ldvs, rconde, rcondv, work, &lwork, iwork, &liwork, &bwork, &info); } void geesx(char jobvs, char sort, FCB_DGEESX_SELECT select, char sense, f_int n, f_double *a, f_int lda, f_int sdim, f_double *wr, f_double *wi, f_double *vs, f_int ldvs, f_double *rconde, f_double *rcondv, f_double *work, f_int lwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { dgeesx_(&jobvs, &sort, select, &sense, &n, a, &lda, &sdim, wr, wi, vs, &ldvs, rconde, rcondv, work, &lwork, iwork, &liwork, &bwork, &info); } void geesx(char jobvs, char sort, FCB_CGEESX_SELECT select, char sense, f_int n, f_cfloat *a, f_int lda, f_int sdim, f_cfloat *w, f_cfloat *vs, f_int ldvs, f_float *rconde, f_float *rcondv, f_cfloat *work, f_int lwork, f_float *rwork, f_int bwork, ref f_int info) { cgeesx_(&jobvs, &sort, select, &sense, &n, a, &lda, &sdim, w, vs, &ldvs, rconde, rcondv, work, &lwork, rwork, &bwork, &info); } void geesx(char jobvs, char sort, FCB_ZGEESX_SELECT select, char sense, f_int n, f_cdouble *a, f_int lda, f_int sdim, f_cdouble *w, f_cdouble *vs, f_int ldvs, f_double *rconde, f_double *rcondv, f_cdouble *work, f_int lwork, f_double *rwork, f_int bwork, ref f_int info) { zgeesx_(&jobvs, &sort, select, &sense, &n, a, &lda, &sdim, w, vs, &ldvs, rconde, rcondv, work, &lwork, rwork, &bwork, &info); } /// Computes the generalized eigenvalues, the real Schur form, and, /// optionally, the left and/or right matrices of Schur vectors. void ggesx(char jobvsl, char jobvsr, char sort, FCB_SGGESX_SELCTG selctg, char sense, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_int sdim, f_float *alphar, f_float *alphai, f_float *betav, f_float *vsl, f_int ldvsl, f_float *vsr, f_int ldvsr, f_float *rconde, f_float *rcondv, f_float *work, f_int lwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { sggesx_(&jobvsl, &jobvsr, &sort, selctg, &sense, &n, a, &lda, b, &ldb, &sdim, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, rconde, rcondv, work, &lwork, iwork, &liwork, &bwork, &info); } void ggesx(char jobvsl, char jobvsr, char sort, FCB_DGGESX_DELCTG delctg, char sense, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_int sdim, f_double *alphar, f_double *alphai, f_double *betav, f_double *vsl, f_int ldvsl, f_double *vsr, f_int ldvsr, f_double *rconde, f_double *rcondv, f_double *work, f_int lwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { dggesx_(&jobvsl, &jobvsr, &sort, delctg, &sense, &n, a, &lda, b, &ldb, &sdim, alphar, alphai, betav, vsl, &ldvsl, vsr, &ldvsr, rconde, rcondv, work, &lwork, iwork, &liwork, &bwork, &info); } void ggesx(char jobvsl, char jobvsr, char sort, FCB_CGGESX_SELCTG selctg, char sense, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_int sdim, f_cfloat *alphav, f_cfloat *betav, f_cfloat *vsl, f_int ldvsl, f_cfloat *vsr, f_int ldvsr, f_float *rconde, f_float *rcondv, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { cggesx_(&jobvsl, &jobvsr, &sort, selctg, &sense, &n, a, &lda, b, &ldb, &sdim, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, rconde, rcondv, work, &lwork, rwork, iwork, &liwork, &bwork, &info); } void ggesx(char jobvsl, char jobvsr, char sort, FCB_ZGGESX_DELCTG delctg, char sense, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_int sdim, f_cdouble *alphav, f_cdouble *betav, f_cdouble *vsl, f_int ldvsl, f_cdouble *vsr, f_int ldvsr, f_double *rconde, f_double *rcondv, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, f_int liwork, f_int bwork, ref f_int info) { zggesx_(&jobvsl, &jobvsr, &sort, delctg, &sense, &n, a, &lda, b, &ldb, &sdim, alphav, betav, vsl, &ldvsl, vsr, &ldvsr, rconde, rcondv, work, &lwork, rwork, iwork, &liwork, &bwork, &info); } /// Computes the eigenvalues and left and right eigenvectors of /// a general matrix, with preliminary balancing of the matrix, /// and computes reciprocal condition numbers for the eigenvalues /// and right eigenvectors. void geevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_float *a, f_int lda, f_float *wr, f_float *wi, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_int ilo, f_int ihi, f_float *scale, f_float *abnrm, f_float *rconde, f_float *rcondv, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { sgeevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr, &ilo, &ihi, scale, abnrm, rconde, rcondv, work, &lwork, iwork, &info); } void geevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_double *a, f_int lda, f_double *wr, f_double *wi, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_int ilo, f_int ihi, f_double *scale, f_double *abnrm, f_double *rconde, f_double *rcondv, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dgeevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, wr, wi, vl, &ldvl, vr, &ldvr, &ilo, &ihi, scale, abnrm, rconde, rcondv, work, &lwork, iwork, &info); } void geevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_cfloat *a, f_int lda, f_cfloat *w, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_int ilo, f_int ihi, f_float *scale, f_float *abnrm, f_float *rconde, f_float *rcondv, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgeevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, w, vl, &ldvl, vr, &ldvr, &ilo, &ihi, scale, abnrm, rconde, rcondv, work, &lwork, rwork, &info); } void geevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_cdouble *a, f_int lda, f_cdouble *w, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_int ilo, f_int ihi, f_double *scale, f_double *abnrm, f_double *rconde, f_double *rcondv, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgeevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, w, vl, &ldvl, vr, &ldvr, &ilo, &ihi, scale, abnrm, rconde, rcondv, work, &lwork, rwork, &info); } /// Computes the generalized eigenvalues, and optionally, the left /// and/or right generalized eigenvectors. void ggevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_float *abnrm, f_float *bbnrm, f_float *rconde, f_float *rcondv, f_float *work, f_int lwork, f_int *iwork, f_int bwork, ref f_int info) { sggevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, &ilo, &ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork, iwork, &bwork, &info); } void ggevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_double *abnrm, f_double *bbnrm, f_double *rconde, f_double *rcondv, f_double *work, f_int lwork, f_int *iwork, f_int bwork, ref f_int info) { dggevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb, alphar, alphai, betav, vl, &ldvl, vr, &ldvr, &ilo, &ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork, iwork, &bwork, &info); } void ggevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphav, f_cfloat *betav, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_float *abnrm, f_float *bbnrm, f_float *rconde, f_float *rcondv, f_cfloat *work, f_int lwork, f_float *rwork, f_int *iwork, f_int bwork, ref f_int info) { cggevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb, alphav, betav, vl, &ldvl, vr, &ldvr, &ilo, &ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork, rwork, iwork, &bwork, &info); } void ggevx(char balanc, char jobvl, char jobvr, char sense, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphav, f_cdouble *betav, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_double *abnrm, f_double *bbnrm, f_double *rconde, f_double *rcondv, f_cdouble *work, f_int lwork, f_double *rwork, f_int *iwork, f_int bwork, ref f_int info) { zggevx_(&balanc, &jobvl, &jobvr, &sense, &n, a, &lda, b, &ldb, alphav, betav, vl, &ldvl, vr, &ldvr, &ilo, &ihi, lscale, rscale, abnrm, bbnrm, rconde, rcondv, work, &lwork, rwork, iwork, &bwork, &info); } //---------------------------------------- // ---- COMPUTATIONAL routines ---- //---------------------------------------- /// Computes the singular value decomposition (SVD) of a real bidiagonal /// matrix, using a divide and conquer method. void bdsdc(char uplo, char compq, f_int n, f_float *d, f_float *e, f_float *u, f_int ldu, f_float *vt, f_int ldvt, f_float *q, f_int iq, f_float *work, f_int *iwork, ref f_int info) { sbdsdc_(&uplo, &compq, &n, d, e, u, &ldu, vt, &ldvt, q, &iq, work, iwork, &info); } void bdsdc(char uplo, char compq, f_int n, f_double *d, f_double *e, f_double *u, f_int ldu, f_double *vt, f_int ldvt, f_double *q, f_int iq, f_double *work, f_int *iwork, ref f_int info) { dbdsdc_(&uplo, &compq, &n, d, e, u, &ldu, vt, &ldvt, q, &iq, work, iwork, &info); } /// Computes the singular value decomposition (SVD) of a real bidiagonal /// matrix, using the bidiagonal QR algorithm. void bdsqr(char uplo, f_int n, f_int ncvt, f_int nru, f_int ncc, f_float *d, f_float *e, f_float *vt, f_int ldvt, f_float *u, f_int ldu, f_float *c, f_int ldc, f_float *work, ref f_int info) { sbdsqr_(&uplo, &n, &ncvt, &nru, &ncc, d, e, vt, &ldvt, u, &ldu, c, &ldc, work, &info); } void bdsqr(char uplo, f_int n, f_int ncvt, f_int nru, f_int ncc, f_double *d, f_double *e, f_double *vt, f_int ldvt, f_double *u, f_int ldu, f_double *c, f_int ldc, f_double *work, ref f_int info) { dbdsqr_(&uplo, &n, &ncvt, &nru, &ncc, d, e, vt, &ldvt, u, &ldu, c, &ldc, work, &info); } void bdsqr(char uplo, f_int n, f_int ncvt, f_int nru, f_int ncc, f_float *d, f_float *e, f_cfloat *vt, f_int ldvt, f_cfloat *u, f_int ldu, f_cfloat *c, f_int ldc, f_float *rwork, ref f_int info) { cbdsqr_(&uplo, &n, &ncvt, &nru, &ncc, d, e, vt, &ldvt, u, &ldu, c, &ldc, rwork, &info); } void bdsqr(char uplo, f_int n, f_int ncvt, f_int nru, f_int ncc, f_double *d, f_double *e, f_cdouble *vt, f_int ldvt, f_cdouble *u, f_int ldu, f_cdouble *c, f_int ldc, f_double *rwork, ref f_int info) { zbdsqr_(&uplo, &n, &ncvt, &nru, &ncc, d, e, vt, &ldvt, u, &ldu, c, &ldc, rwork, &info); } /// Computes the reciprocal condition numbers for the eigenvectors of a /// real symmetric or complex Hermitian matrix or for the left or right /// singular vectors of a general matrix. void disna(char job, f_int m, f_int n, f_float *d, f_float *sep, ref f_int info) { sdisna_(&job, &m, &n, d, sep, &info); } void disna(char job, f_int m, f_int n, f_double *d, f_double *sep, ref f_int info) { ddisna_(&job, &m, &n, d, sep, &info); } /// Reduces a general band matrix to real upper bidiagonal form /// by an orthogonal transformation. void gbbrd(char vect, f_int m, f_int n, f_int ncc, f_int kl, f_int ku, f_float *ab, f_int ldab, f_float *d, f_float *e, f_float *q, f_int ldq, f_float *pt, f_int ldpt, f_float *c, f_int ldc, f_float *work, ref f_int info) { sgbbrd_(&vect, &m, &n, &ncc, &kl, &ku, ab, &ldab, d, e, q, &ldq, pt, &ldpt, c, &ldc, work, &info); } void gbbrd(char vect, f_int m, f_int n, f_int ncc, f_int kl, f_int ku, f_double *ab, f_int ldab, f_double *d, f_double *e, f_double *q, f_int ldq, f_double *pt, f_int ldpt, f_double *c, f_int ldc, f_double *work, ref f_int info) { dgbbrd_(&vect, &m, &n, &ncc, &kl, &ku, ab, &ldab, d, e, q, &ldq, pt, &ldpt, c, &ldc, work, &info); } void gbbrd(char vect, f_int m, f_int n, f_int ncc, f_int kl, f_int ku, f_cfloat *ab, f_int ldab, f_float *d, f_float *e, f_cfloat *q, f_int ldq, f_cfloat *pt, f_int ldpt, f_cfloat *c, f_int ldc, f_cfloat *work, f_float *rwork, ref f_int info) { cgbbrd_(&vect, &m, &n, &ncc, &kl, &ku, ab, &ldab, d, e, q, &ldq, pt, &ldpt, c, &ldc, work, rwork, &info); } void gbbrd(char vect, f_int m, f_int n, f_int ncc, f_int kl, f_int ku, f_cdouble *ab, f_int ldab, f_double *d, f_double *e, f_cdouble *q, f_int ldq, f_cdouble *pt, f_int ldpt, f_cdouble *c, f_int ldc, f_cdouble *work, f_double *rwork, ref f_int info) { zgbbrd_(&vect, &m, &n, &ncc, &kl, &ku, ab, &ldab, d, e, q, &ldq, pt, &ldpt, c, &ldc, work, rwork, &info); } /// Estimates the reciprocal of the condition number of a general /// band matrix, in either the 1-norm or the infinity-norm, using /// the LU factorization computed by SGBTRF. void gbcon(char norm, f_int n, f_int kl, f_int ku, f_float *ab, f_int ldab, f_int *ipiv, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { sgbcon_(&norm, &n, &kl, &ku, ab, &ldab, ipiv, anorm, &rcond, work, iwork, &info); } void gbcon(char norm, f_int n, f_int kl, f_int ku, f_double *ab, f_int ldab, f_int *ipiv, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dgbcon_(&norm, &n, &kl, &ku, ab, &ldab, ipiv, anorm, &rcond, work, iwork, &info); } void gbcon(char norm, f_int n, f_int kl, f_int ku, f_cfloat *ab, f_int ldab, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { cgbcon_(&norm, &n, &kl, &ku, ab, &ldab, ipiv, anorm, &rcond, work, rwork, &info); } void gbcon(char norm, f_int n, f_int kl, f_int ku, f_cdouble *ab, f_int ldab, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { zgbcon_(&norm, &n, &kl, &ku, ab, &ldab, ipiv, anorm, &rcond, work, rwork, &info); } /// Computes row and column scalings to equilibrate a general band /// matrix and reduce its condition number. void gbequ(f_int m, f_int n, f_int kl, f_int ku, f_float *ab, f_int ldab, f_float *r, f_float *c, f_float *rowcnd, f_float *colcnd, f_float *amax, ref f_int info) { sgbequ_(&m, &n, &kl, &ku, ab, &ldab, r, c, rowcnd, colcnd, amax, &info); } void gbequ(f_int m, f_int n, f_int kl, f_int ku, f_double *ab, f_int ldab, f_double *r, f_double *c, f_double *rowcnd, f_double *colcnd, f_double *amax, ref f_int info) { dgbequ_(&m, &n, &kl, &ku, ab, &ldab, r, c, rowcnd, colcnd, amax, &info); } void gbequ(f_int m, f_int n, f_int kl, f_int ku, f_cfloat *ab, f_int ldab, f_float *r, f_float *c, f_float *rowcnd, f_float *colcnd, f_float *amax, ref f_int info) { cgbequ_(&m, &n, &kl, &ku, ab, &ldab, r, c, rowcnd, colcnd, amax, &info); } void gbequ(f_int m, f_int n, f_int kl, f_int ku, f_cdouble *ab, f_int ldab, f_double *r, f_double *c, f_double *rowcnd, f_double *colcnd, f_double *amax, ref f_int info) { zgbequ_(&m, &n, &kl, &ku, ab, &ldab, r, c, rowcnd, colcnd, amax, &info); } /// Improves the computed solution to a general banded system of /// linear equations AX=B, A**T X=B or A**H X=B, and provides forward /// and backward error bounds for the solution. void gbrfs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_float *ab, f_int ldab, f_float *afb, f_int ldafb, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgbrfs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gbrfs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_double *ab, f_int ldab, f_double *afb, f_int ldafb, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgbrfs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gbrfs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *afb, f_int ldafb, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgbrfs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void gbrfs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *afb, f_int ldafb, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgbrfs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, afb, &ldafb, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes an LU factorization of a general band matrix, using /// partial pivoting with row interchanges. void gbtrf(f_int m, f_int n, f_int kl, f_int ku, f_float *ab, f_int ldab, f_int *ipiv, ref f_int info) { sgbtrf_(&m, &n, &kl, &ku, ab, &ldab, ipiv, &info); } void gbtrf(f_int m, f_int n, f_int kl, f_int ku, f_double *ab, f_int ldab, f_int *ipiv, ref f_int info) { dgbtrf_(&m, &n, &kl, &ku, ab, &ldab, ipiv, &info); } void gbtrf(f_int m, f_int n, f_int kl, f_int ku, f_cfloat *ab, f_int ldab, f_int *ipiv, ref f_int info) { cgbtrf_(&m, &n, &kl, &ku, ab, &ldab, ipiv, &info); } void gbtrf(f_int m, f_int n, f_int kl, f_int ku, f_cdouble *ab, f_int ldab, f_int *ipiv, ref f_int info) { zgbtrf_(&m, &n, &kl, &ku, ab, &ldab, ipiv, &info); } /// Solves a general banded system of linear equations AX=B, /// A**T X=B or A**H X=B, using the LU factorization computed /// by SGBTRF. void gbtrs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_float *ab, f_int ldab, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sgbtrs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbtrs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_double *ab, f_int ldab, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dgbtrs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbtrs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cfloat *ab, f_int ldab, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cgbtrs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } void gbtrs(char trans, f_int n, f_int kl, f_int ku, f_int nrhs, f_cdouble *ab, f_int ldab, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zgbtrs_(&trans, &n, &kl, &ku, &nrhs, ab, &ldab, ipiv, b, &ldb, &info); } /// Transforms eigenvectors of a balanced matrix to those of the /// original matrix supplied to SGEBAL. void gebak(char job, char side, f_int n, f_int ilo, f_int ihi, f_float *scale, f_int m, f_float *v, f_int ldv, ref f_int info) { sgebak_(&job, &side, &n, &ilo, &ihi, scale, &m, v, &ldv, &info); } void gebak(char job, char side, f_int n, f_int ilo, f_int ihi, f_double *scale, f_int m, f_double *v, f_int ldv, ref f_int info) { dgebak_(&job, &side, &n, &ilo, &ihi, scale, &m, v, &ldv, &info); } void gebak(char job, char side, f_int n, f_int ilo, f_int ihi, f_float *scale, f_int m, f_cfloat *v, f_int ldv, ref f_int info) { cgebak_(&job, &side, &n, &ilo, &ihi, scale, &m, v, &ldv, &info); } void gebak(char job, char side, f_int n, f_int ilo, f_int ihi, f_double *scale, f_int m, f_cdouble *v, f_int ldv, ref f_int info) { zgebak_(&job, &side, &n, &ilo, &ihi, scale, &m, v, &ldv, &info); } /// Balances a general matrix in order to improve the accuracy /// of computed eigenvalues. void gebal(char job, f_int n, f_float *a, f_int lda, f_int ilo, f_int ihi, f_float *scale, ref f_int info) { sgebal_(&job, &n, a, &lda, &ilo, &ihi, scale, &info); } void gebal(char job, f_int n, f_double *a, f_int lda, f_int ilo, f_int ihi, f_double *scale, ref f_int info) { dgebal_(&job, &n, a, &lda, &ilo, &ihi, scale, &info); } void gebal(char job, f_int n, f_cfloat *a, f_int lda, f_int ilo, f_int ihi, f_float *scale, ref f_int info) { cgebal_(&job, &n, a, &lda, &ilo, &ihi, scale, &info); } void gebal(char job, f_int n, f_cdouble *a, f_int lda, f_int ilo, f_int ihi, f_double *scale, ref f_int info) { zgebal_(&job, &n, a, &lda, &ilo, &ihi, scale, &info); } /// Reduces a general rectangular matrix to real bidiagonal form /// by an orthogonal transformation. void gebrd(f_int m, f_int n, f_float *a, f_int lda, f_float *d, f_float *e, f_float *tauq, f_float *taup, f_float *work, f_int lwork, ref f_int info) { sgebrd_(&m, &n, a, &lda, d, e, tauq, taup, work, &lwork, &info); } void gebrd(f_int m, f_int n, f_double *a, f_int lda, f_double *d, f_double *e, f_double *tauq, f_double *taup, f_double *work, f_int lwork, ref f_int info) { dgebrd_(&m, &n, a, &lda, d, e, tauq, taup, work, &lwork, &info); } void gebrd(f_int m, f_int n, f_cfloat *a, f_int lda, f_float *d, f_float *e, f_cfloat *tauq, f_cfloat *taup, f_cfloat *work, f_int lwork, ref f_int info) { cgebrd_(&m, &n, a, &lda, d, e, tauq, taup, work, &lwork, &info); } void gebrd(f_int m, f_int n, f_cdouble *a, f_int lda, f_double *d, f_double *e, f_cdouble *tauq, f_cdouble *taup, f_cdouble *work, f_int lwork, ref f_int info) { zgebrd_(&m, &n, a, &lda, d, e, tauq, taup, work, &lwork, &info); } /// Estimates the reciprocal of the condition number of a general /// matrix, in either the 1-norm or the infinity-norm, using the /// LU factorization computed by SGETRF. void gecon(char norm, f_int n, f_float *a, f_int lda, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { sgecon_(&norm, &n, a, &lda, anorm, &rcond, work, iwork, &info); } void gecon(char norm, f_int n, f_double *a, f_int lda, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dgecon_(&norm, &n, a, &lda, anorm, &rcond, work, iwork, &info); } void gecon(char norm, f_int n, f_cfloat *a, f_int lda, f_float *anorm, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { cgecon_(&norm, &n, a, &lda, anorm, &rcond, work, rwork, &info); } void gecon(char norm, f_int n, f_cdouble *a, f_int lda, f_double *anorm, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { zgecon_(&norm, &n, a, &lda, anorm, &rcond, work, rwork, &info); } /// Computes row and column scalings to equilibrate a general /// rectangular matrix and reduce its condition number. void geequ(f_int m, f_int n, f_float *a, f_int lda, f_float *r, f_float *c, f_float *rowcnd, f_float *colcnd, f_float *amax, ref f_int info) { sgeequ_(&m, &n, a, &lda, r, c, rowcnd, colcnd, amax, &info); } void geequ(f_int m, f_int n, f_double *a, f_int lda, f_double *r, f_double *c, f_double *rowcnd, f_double *colcnd, f_double *amax, ref f_int info) { dgeequ_(&m, &n, a, &lda, r, c, rowcnd, colcnd, amax, &info); } void geequ(f_int m, f_int n, f_cfloat *a, f_int lda, f_float *r, f_float *c, f_float *rowcnd, f_float *colcnd, f_float *amax, ref f_int info) { cgeequ_(&m, &n, a, &lda, r, c, rowcnd, colcnd, amax, &info); } void geequ(f_int m, f_int n, f_cdouble *a, f_int lda, f_double *r, f_double *c, f_double *rowcnd, f_double *colcnd, f_double *amax, ref f_int info) { zgeequ_(&m, &n, a, &lda, r, c, rowcnd, colcnd, amax, &info); } /// Reduces a general matrix to upper Hessenberg form by an /// orthogonal similarity transformation. void gehrd(f_int n, f_int ilo, f_int ihi, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgehrd_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } void gehrd(f_int n, f_int ilo, f_int ihi, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgehrd_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } void gehrd(f_int n, f_int ilo, f_int ihi, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cgehrd_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } void gehrd(f_int n, f_int ilo, f_int ihi, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zgehrd_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } /// Computes an LQ factorization of a general rectangular matrix. void gelqf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgelqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gelqf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgelqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gelqf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cgelqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gelqf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zgelqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } /// Computes a QL factorization of a general rectangular matrix. void geqlf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgeqlf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqlf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgeqlf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqlf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cgeqlf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqlf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zgeqlf_(&m, &n, a, &lda, tau, work, &lwork, &info); } /// Computes a QR factorization with column pivoting of a general /// rectangular matrix using Level 3 BLAS. void geqp3(f_int m, f_int n, f_float *a, f_int lda, f_int jpvt, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgeqp3_(&m, &n, a, &lda, &jpvt, tau, work, &lwork, &info); } void geqp3(f_int m, f_int n, f_double *a, f_int lda, f_int jpvt, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgeqp3_(&m, &n, a, &lda, &jpvt, tau, work, &lwork, &info); } void geqp3(f_int m, f_int n, f_cfloat *a, f_int lda, f_int jpvt, f_cfloat *tau, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { cgeqp3_(&m, &n, a, &lda, &jpvt, tau, work, &lwork, rwork, &info); } void geqp3(f_int m, f_int n, f_cdouble *a, f_int lda, f_int jpvt, f_cdouble *tau, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zgeqp3_(&m, &n, a, &lda, &jpvt, tau, work, &lwork, rwork, &info); } /// Computes a QR factorization with column pivoting of a general /// rectangular matrix. void geqpf(f_int m, f_int n, f_float *a, f_int lda, f_int jpvt, f_float *tau, f_float *work, ref f_int info) { sgeqpf_(&m, &n, a, &lda, &jpvt, tau, work, &info); } void geqpf(f_int m, f_int n, f_double *a, f_int lda, f_int jpvt, f_double *tau, f_double *work, ref f_int info) { dgeqpf_(&m, &n, a, &lda, &jpvt, tau, work, &info); } void geqpf(f_int m, f_int n, f_cfloat *a, f_int lda, f_int jpvt, f_cfloat *tau, f_cfloat *work, f_float *rwork, ref f_int info) { cgeqpf_(&m, &n, a, &lda, &jpvt, tau, work, rwork, &info); } void geqpf(f_int m, f_int n, f_cdouble *a, f_int lda, f_int jpvt, f_cdouble *tau, f_cdouble *work, f_double *rwork, ref f_int info) { zgeqpf_(&m, &n, a, &lda, &jpvt, tau, work, rwork, &info); } /// Computes a QR factorization of a general rectangular matrix. void geqrf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgeqrf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqrf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgeqrf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqrf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cgeqrf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void geqrf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zgeqrf_(&m, &n, a, &lda, tau, work, &lwork, &info); } /// Improves the computed solution to a general system of linear /// equations AX=B, A**T X=B or A**H X=B, and provides forward and /// backward error bounds for the solution. void gerfs(char trans, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgerfs_(&trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gerfs(char trans, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgerfs_(&trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gerfs(char trans, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgerfs_(&trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void gerfs(char trans, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgerfs_(&trans, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes an RQ factorization of a general rectangular matrix. void gerqf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sgerqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gerqf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dgerqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gerqf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cgerqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void gerqf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zgerqf_(&m, &n, a, &lda, tau, work, &lwork, &info); } /// Computes an LU factorization of a general matrix, using partial /// pivoting with row interchanges. void getrf(f_int m, f_int n, f_float *a, f_int lda, f_int *ipiv, ref f_int info) { sgetrf_(&m, &n, a, &lda, ipiv, &info); } void getrf(f_int m, f_int n, f_double *a, f_int lda, f_int *ipiv, ref f_int info) { dgetrf_(&m, &n, a, &lda, ipiv, &info); } void getrf(f_int m, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, ref f_int info) { cgetrf_(&m, &n, a, &lda, ipiv, &info); } void getrf(f_int m, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, ref f_int info) { zgetrf_(&m, &n, a, &lda, ipiv, &info); } /// Computes the inverse of a general matrix, using the LU factorization /// computed by SGETRF. void getri(f_int n, f_float *a, f_int lda, f_int *ipiv, f_float *work, f_int lwork, ref f_int info) { sgetri_(&n, a, &lda, ipiv, work, &lwork, &info); } void getri(f_int n, f_double *a, f_int lda, f_int *ipiv, f_double *work, f_int lwork, ref f_int info) { dgetri_(&n, a, &lda, ipiv, work, &lwork, &info); } void getri(f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *work, f_int lwork, ref f_int info) { cgetri_(&n, a, &lda, ipiv, work, &lwork, &info); } void getri(f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *work, f_int lwork, ref f_int info) { zgetri_(&n, a, &lda, ipiv, work, &lwork, &info); } /// Solves a general system of linear equations AX=B, A**T X=B /// or A**H X=B, using the LU factorization computed by SGETRF. void getrs(char trans, f_int n, f_int nrhs, f_float *a, f_int lda, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sgetrs_(&trans, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void getrs(char trans, f_int n, f_int nrhs, f_double *a, f_int lda, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dgetrs_(&trans, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void getrs(char trans, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cgetrs_(&trans, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void getrs(char trans, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zgetrs_(&trans, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } /// Forms the right or left eigenvectors of the generalized eigenvalue /// problem by backward transformation on the computed eigenvectors of /// the balanced pair of matrices output by SGGBAL. void ggbak(char job, char side, f_int n, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_int m, f_float *v, f_int ldv, ref f_int info) { sggbak_(&job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v, &ldv, &info); } void ggbak(char job, char side, f_int n, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_int m, f_double *v, f_int ldv, ref f_int info) { dggbak_(&job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v, &ldv, &info); } void ggbak(char job, char side, f_int n, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_int m, f_cfloat *v, f_int ldv, ref f_int info) { cggbak_(&job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v, &ldv, &info); } void ggbak(char job, char side, f_int n, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_int m, f_cdouble *v, f_int ldv, ref f_int info) { zggbak_(&job, &side, &n, &ilo, &ihi, lscale, rscale, &m, v, &ldv, &info); } /// Balances a pair of general real matrices for the generalized /// eigenvalue problem A x = lambda B x. void ggbal(char job, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_float *work, ref f_int info) { sggbal_(&job, &n, a, &lda, b, &ldb, &ilo, &ihi, lscale, rscale, work, &info); } void ggbal(char job, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_double *work, ref f_int info) { dggbal_(&job, &n, a, &lda, b, &ldb, &ilo, &ihi, lscale, rscale, work, &info); } void ggbal(char job, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_int ilo, f_int ihi, f_float *lscale, f_float *rscale, f_float *work, ref f_int info) { cggbal_(&job, &n, a, &lda, b, &ldb, &ilo, &ihi, lscale, rscale, work, &info); } void ggbal(char job, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_int ilo, f_int ihi, f_double *lscale, f_double *rscale, f_double *work, ref f_int info) { zggbal_(&job, &n, a, &lda, b, &ldb, &ilo, &ihi, lscale, rscale, work, &info); } /// Reduces a pair of real matrices to generalized upper /// Hessenberg form using orthogonal transformations void gghrd(char compq, char compz, f_int n, f_int ilo, f_int ihi, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *q, f_int ldq, f_float *z, f_int ldz, ref f_int info) { sgghrd_(&compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, q, &ldq, z, &ldz, &info); } void gghrd(char compq, char compz, f_int n, f_int ilo, f_int ihi, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *q, f_int ldq, f_double *z, f_int ldz, ref f_int info) { dgghrd_(&compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, q, &ldq, z, &ldz, &info); } void gghrd(char compq, char compz, f_int n, f_int ilo, f_int ihi, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *q, f_int ldq, f_cfloat *z, f_int ldz, ref f_int info) { cgghrd_(&compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, q, &ldq, z, &ldz, &info); } void gghrd(char compq, char compz, f_int n, f_int ilo, f_int ihi, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *q, f_int ldq, f_cdouble *z, f_int ldz, ref f_int info) { zgghrd_(&compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, q, &ldq, z, &ldz, &info); } /// Computes a generalized QR factorization of a pair of matrices. void ggqrf(f_int n, f_int m, f_int p, f_float *a, f_int lda, f_float *taua, f_float *b, f_int ldb, f_float *taub, f_float *work, f_int lwork, ref f_int info) { sggqrf_(&n, &m, &p, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggqrf(f_int n, f_int m, f_int p, f_double *a, f_int lda, f_double *taua, f_double *b, f_int ldb, f_double *taub, f_double *work, f_int lwork, ref f_int info) { dggqrf_(&n, &m, &p, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggqrf(f_int n, f_int m, f_int p, f_cfloat *a, f_int lda, f_cfloat *taua, f_cfloat *b, f_int ldb, f_cfloat *taub, f_cfloat *work, f_int lwork, ref f_int info) { cggqrf_(&n, &m, &p, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggqrf(f_int n, f_int m, f_int p, f_cdouble *a, f_int lda, f_cdouble *taua, f_cdouble *b, f_int ldb, f_cdouble *taub, f_cdouble *work, f_int lwork, ref f_int info) { zggqrf_(&n, &m, &p, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } /// Computes a generalized RQ factorization of a pair of matrices. void ggrqf(f_int m, f_int p, f_int n, f_float *a, f_int lda, f_float *taua, f_float *b, f_int ldb, f_float *taub, f_float *work, f_int lwork, ref f_int info) { sggrqf_(&m, &p, &n, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggrqf(f_int m, f_int p, f_int n, f_double *a, f_int lda, f_double *taua, f_double *b, f_int ldb, f_double *taub, f_double *work, f_int lwork, ref f_int info) { dggrqf_(&m, &p, &n, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggrqf(f_int m, f_int p, f_int n, f_cfloat *a, f_int lda, f_cfloat *taua, f_cfloat *b, f_int ldb, f_cfloat *taub, f_cfloat *work, f_int lwork, ref f_int info) { cggrqf_(&m, &p, &n, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } void ggrqf(f_int m, f_int p, f_int n, f_cdouble *a, f_int lda, f_cdouble *taua, f_cdouble *b, f_int ldb, f_cdouble *taub, f_cdouble *work, f_int lwork, ref f_int info) { zggrqf_(&m, &p, &n, a, &lda, taua, b, &ldb, taub, work, &lwork, &info); } /// Computes orthogonal matrices as a preprocessing step /// for computing the generalized singular value decomposition void ggsvp(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *tola, f_float *tolb, f_int k, f_int l, f_float *u, f_int ldu, f_float *v, f_int ldv, f_float *q, f_int ldq, f_int *iwork, f_float *tau, f_float *work, ref f_int info) { sggsvp_(&jobu, &jobv, &jobq, &m, &p, &n, a, &lda, b, &ldb, tola, tolb, &k, &l, u, &ldu, v, &ldv, q, &ldq, iwork, tau, work, &info); } void ggsvp(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *tola, f_double *tolb, f_int k, f_int l, f_double *u, f_int ldu, f_double *v, f_int ldv, f_double *q, f_int ldq, f_int *iwork, f_double *tau, f_double *work, ref f_int info) { dggsvp_(&jobu, &jobv, &jobq, &m, &p, &n, a, &lda, b, &ldb, tola, tolb, &k, &l, u, &ldu, v, &ldv, q, &ldq, iwork, tau, work, &info); } void ggsvp(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *tola, f_float *tolb, f_int k, f_int l, f_cfloat *u, f_int ldu, f_cfloat *v, f_int ldv, f_cfloat *q, f_int ldq, f_int *iwork, f_float *rwork, f_cfloat *tau, f_cfloat *work, ref f_int info) { cggsvp_(&jobu, &jobv, &jobq, &m, &p, &n, a, &lda, b, &ldb, tola, tolb, &k, &l, u, &ldu, v, &ldv, q, &ldq, iwork, rwork, tau, work, &info); } void ggsvp(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *tola, f_double *tolb, f_int k, f_int l, f_cdouble *u, f_int ldu, f_cdouble *v, f_int ldv, f_cdouble *q, f_int ldq, f_int *iwork, f_double *rwork, f_cdouble *tau, f_cdouble *work, ref f_int info) { zggsvp_(&jobu, &jobv, &jobq, &m, &p, &n, a, &lda, b, &ldb, tola, tolb, &k, &l, u, &ldu, v, &ldv, q, &ldq, iwork, rwork, tau, work, &info); } /// Estimates the reciprocal of the condition number of a general /// tridiagonal matrix, in either the 1-norm or the infinity-norm, /// using the LU factorization computed by SGTTRF. void gtcon(char norm, f_int n, f_float *dl, f_float *d, f_float *du, f_float *du2, f_int *ipiv, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { sgtcon_(&norm, &n, dl, d, du, du2, ipiv, anorm, &rcond, work, iwork, &info); } void gtcon(char norm, f_int n, f_double *dl, f_double *d, f_double *du, f_double *du2, f_int *ipiv, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dgtcon_(&norm, &n, dl, d, du, du2, ipiv, anorm, &rcond, work, iwork, &info); } void gtcon(char norm, f_int n, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *du2, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, ref f_int info) { cgtcon_(&norm, &n, dl, d, du, du2, ipiv, anorm, &rcond, work, &info); } void gtcon(char norm, f_int n, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *du2, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, ref f_int info) { zgtcon_(&norm, &n, dl, d, du, du2, ipiv, anorm, &rcond, work, &info); } /// Improves the computed solution to a general tridiagonal system /// of linear equations AX=B, A**T X=B or A**H X=B, and provides /// forward and backward error bounds for the solution. void gtrfs(char trans, f_int n, f_int nrhs, f_float *dl, f_float *d, f_float *du, f_float *dlf, f_float *df, f_float *duf, f_float *du2, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sgtrfs_(&trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gtrfs(char trans, f_int n, f_int nrhs, f_double *dl, f_double *d, f_double *du, f_double *dlf, f_double *df, f_double *duf, f_double *du2, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dgtrfs_(&trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void gtrfs(char trans, f_int n, f_int nrhs, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *dlf, f_cfloat *df, f_cfloat *duf, f_cfloat *du2, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cgtrfs_(&trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void gtrfs(char trans, f_int n, f_int nrhs, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *dlf, f_cdouble *df, f_cdouble *duf, f_cdouble *du2, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zgtrfs_(&trans, &n, &nrhs, dl, d, du, dlf, df, duf, du2, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes an LU factorization of a general tridiagonal matrix, /// using partial pivoting with row interchanges. void gttrf(f_int n, f_float *dl, f_float *d, f_float *du, f_float *du2, f_int *ipiv, ref f_int info) { sgttrf_(&n, dl, d, du, du2, ipiv, &info); } void gttrf(f_int n, f_double *dl, f_double *d, f_double *du, f_double *du2, f_int *ipiv, ref f_int info) { dgttrf_(&n, dl, d, du, du2, ipiv, &info); } void gttrf(f_int n, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *du2, f_int *ipiv, ref f_int info) { cgttrf_(&n, dl, d, du, du2, ipiv, &info); } void gttrf(f_int n, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *du2, f_int *ipiv, ref f_int info) { zgttrf_(&n, dl, d, du, du2, ipiv, &info); } /// Solves a general tridiagonal system of linear equations AX=B, /// A**T X=B or A**H X=B, using the LU factorization computed by /// SGTTRF. void gttrs(char trans, f_int n, f_int nrhs, f_float *dl, f_float *d, f_float *du, f_float *du2, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { sgttrs_(&trans, &n, &nrhs, dl, d, du, du2, ipiv, b, &ldb, &info); } void gttrs(char trans, f_int n, f_int nrhs, f_double *dl, f_double *d, f_double *du, f_double *du2, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dgttrs_(&trans, &n, &nrhs, dl, d, du, du2, ipiv, b, &ldb, &info); } void gttrs(char trans, f_int n, f_int nrhs, f_cfloat *dl, f_cfloat *d, f_cfloat *du, f_cfloat *du2, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { cgttrs_(&trans, &n, &nrhs, dl, d, du, du2, ipiv, b, &ldb, &info); } void gttrs(char trans, f_int n, f_int nrhs, f_cdouble *dl, f_cdouble *d, f_cdouble *du, f_cdouble *du2, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zgttrs_(&trans, &n, &nrhs, dl, d, du, du2, ipiv, b, &ldb, &info); } /// Implements a single-/f_double-shift version of the QZ method for /// finding the generalized eigenvalues of the equation /// det(A - w(i) B) = 0 void hgeqz(char job, char compq, char compz, f_int n, f_int ilo, f_int ihi, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *q, f_int ldq, f_float *z, f_int ldz, f_float *work, f_int lwork, ref f_int info) { shgeqz_(&job, &compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, alphar, alphai, betav, q, &ldq, z, &ldz, work, &lwork, &info); } void hgeqz(char job, char compq, char compz, f_int n, f_int ilo, f_int ihi, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *q, f_int ldq, f_double *z, f_int ldz, f_double *work, f_int lwork, ref f_int info) { dhgeqz_(&job, &compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, alphar, alphai, betav, q, &ldq, z, &ldz, work, &lwork, &info); } void hgeqz(char job, char compq, char compz, f_int n, f_int ilo, f_int ihi, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphav, f_cfloat *betav, f_cfloat *q, f_int ldq, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, ref f_int info) { chgeqz_(&job, &compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, alphav, betav, q, &ldq, z, &ldz, work, &lwork, rwork, &info); } void hgeqz(char job, char compq, char compz, f_int n, f_int ilo, f_int ihi, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphav, f_cdouble *betav, f_cdouble *q, f_int ldq, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, ref f_int info) { zhgeqz_(&job, &compq, &compz, &n, &ilo, &ihi, a, &lda, b, &ldb, alphav, betav, q, &ldq, z, &ldz, work, &lwork, rwork, &info); } /// Computes specified right and/or left eigenvectors of an upper /// Hessenberg matrix by inverse iteration. void hsein(char side, char eigsrc, char initv, f_int select, f_int n, f_float *h, f_int ldh, f_float *wr, f_float *wi, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_int mm, f_int m, f_float *work, f_int ifaill, f_int ifailr, ref f_int info) { shsein_(&side, &eigsrc, &initv, &select, &n, h, &ldh, wr, wi, vl, &ldvl, vr, &ldvr, &mm, &m, work, &ifaill, &ifailr, &info); } void hsein(char side, char eigsrc, char initv, f_int select, f_int n, f_double *h, f_int ldh, f_double *wr, f_double *wi, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_int mm, f_int m, f_double *work, f_int ifaill, f_int ifailr, ref f_int info) { dhsein_(&side, &eigsrc, &initv, &select, &n, h, &ldh, wr, wi, vl, &ldvl, vr, &ldvr, &mm, &m, work, &ifaill, &ifailr, &info); } void hsein(char side, char eigsrc, char initv, f_int select, f_int n, f_cfloat *h, f_int ldh, f_cfloat *w, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_int mm, f_int m, f_cfloat *work, f_float *rwork, f_int ifaill, f_int ifailr, ref f_int info) { chsein_(&side, &eigsrc, &initv, &select, &n, h, &ldh, w, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &ifaill, &ifailr, &info); } void hsein(char side, char eigsrc, char initv, f_int select, f_int n, f_cdouble *h, f_int ldh, f_cdouble *w, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_int mm, f_int m, f_cdouble *work, f_double *rwork, f_int ifaill, f_int ifailr, ref f_int info) { zhsein_(&side, &eigsrc, &initv, &select, &n, h, &ldh, w, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &ifaill, &ifailr, &info); } /// Computes the eigenvalues and Schur factorization of an upper /// Hessenberg matrix, using the multishift QR algorithm. void hseqr(char job, char compz, f_int n, f_int ilo, f_int ihi, f_float *h, f_int ldh, f_float *wr, f_float *wi, f_float *z, f_int ldz, f_float *work, f_int lwork, ref f_int info) { shseqr_(&job, &compz, &n, &ilo, &ihi, h, &ldh, wr, wi, z, &ldz, work, &lwork, &info); } void hseqr(char job, char compz, f_int n, f_int ilo, f_int ihi, f_double *h, f_int ldh, f_double *wr, f_double *wi, f_double *z, f_int ldz, f_double *work, f_int lwork, ref f_int info) { dhseqr_(&job, &compz, &n, &ilo, &ihi, h, &ldh, wr, wi, z, &ldz, work, &lwork, &info); } void hseqr(char job, char compz, f_int n, f_int ilo, f_int ihi, f_cfloat *h, f_int ldh, f_cfloat *w, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, ref f_int info) { chseqr_(&job, &compz, &n, &ilo, &ihi, h, &ldh, w, z, &ldz, work, &lwork, &info); } void hseqr(char job, char compz, f_int n, f_int ilo, f_int ihi, f_cdouble *h, f_int ldh, f_cdouble *w, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, ref f_int info) { zhseqr_(&job, &compz, &n, &ilo, &ihi, h, &ldh, w, z, &ldz, work, &lwork, &info); } /// Generates the orthogonal transformation matrix from /// a reduction to tridiagonal form determined by SSPTRD. void opgtr(char uplo, f_int n, f_float *ap, f_float *tau, f_float *q, f_int ldq, f_float *work, ref f_int info) { sopgtr_(&uplo, &n, ap, tau, q, &ldq, work, &info); } void opgtr(char uplo, f_int n, f_double *ap, f_double *tau, f_double *q, f_int ldq, f_double *work, ref f_int info) { dopgtr_(&uplo, &n, ap, tau, q, &ldq, work, &info); } /// Generates the unitary transformation matrix from /// a reduction to tridiagonal form determined by CHPTRD. void upgtr(char uplo, f_int n, f_cfloat *ap, f_cfloat *tau, f_cfloat *q, f_int ldq, f_cfloat *work, ref f_int info) { cupgtr_(&uplo, &n, ap, tau, q, &ldq, work, &info); } void upgtr(char uplo, f_int n, f_cdouble *ap, f_cdouble *tau, f_cdouble *q, f_int ldq, f_cdouble *work, ref f_int info) { zupgtr_(&uplo, &n, ap, tau, q, &ldq, work, &info); } /// Multiplies a general matrix by the orthogonal /// transformation matrix from a reduction to tridiagonal form /// determined by SSPTRD. void opmtr(char side, char uplo, char trans, f_int m, f_int n, f_float *ap, f_float *tau, f_float *c, f_int ldc, f_float *work, ref f_int info) { sopmtr_(&side, &uplo, &trans, &m, &n, ap, tau, c, &ldc, work, &info); } void opmtr(char side, char uplo, char trans, f_int m, f_int n, f_double *ap, f_double *tau, f_double *c, f_int ldc, f_double *work, ref f_int info) { dopmtr_(&side, &uplo, &trans, &m, &n, ap, tau, c, &ldc, work, &info); } /// Generates the orthogonal transformation matrices from /// a reduction to bidiagonal form determined by SGEBRD. void orgbr(char vect, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorgbr_(&vect, &m, &n, &k, a, &lda, tau, work, &lwork, &info); } void orgbr(char vect, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorgbr_(&vect, &m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates the unitary transformation matrices from /// a reduction to bidiagonal form determined by CGEBRD. void ungbr(char vect, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cungbr_(&vect, &m, &n, &k, a, &lda, tau, work, &lwork, &info); } void ungbr(char vect, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zungbr_(&vect, &m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates the orthogonal transformation matrix from /// a reduction to Hessenberg form determined by SGEHRD. void orghr(f_int n, f_int ilo, f_int ihi, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorghr_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } void orghr(f_int n, f_int ilo, f_int ihi, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorghr_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } /// Generates the unitary transformation matrix from /// a reduction to Hessenberg form determined by CGEHRD. void unghr(f_int n, f_int ilo, f_int ihi, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cunghr_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } void unghr(f_int n, f_int ilo, f_int ihi, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zunghr_(&n, &ilo, &ihi, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the orthogonal matrix Q from /// an LQ factorization determined by SGELQF. void orglq(f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorglq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void orglq(f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorglq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the unitary matrix Q from /// an LQ factorization determined by CGELQF. void unglq(f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cunglq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void unglq(f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zunglq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the orthogonal matrix Q from /// a QL factorization determined by SGEQLF. void orgql(f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorgql_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void orgql(f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorgql_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the unitary matrix Q from /// a QL factorization determined by CGEQLF. void ungql(f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cungql_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void ungql(f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zungql_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the orthogonal matrix Q from /// a QR factorization determined by SGEQRF. void orgqr(f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorgqr_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void orgqr(f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorgqr_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the unitary matrix Q from /// a QR factorization determined by CGEQRF. void ungqr(f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cungqr_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void ungqr(f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zungqr_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the orthogonal matrix Q from /// an RQ factorization determined by SGERQF. void orgrq(f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorgrq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void orgrq(f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorgrq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates all or part of the unitary matrix Q from /// an RQ factorization determined by CGERQF. void ungrq(f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cungrq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } void ungrq(f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zungrq_(&m, &n, &k, a, &lda, tau, work, &lwork, &info); } /// Generates the orthogonal transformation matrix from /// a reduction to tridiagonal form determined by SSYTRD. void orgtr(char uplo, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { sorgtr_(&uplo, &n, a, &lda, tau, work, &lwork, &info); } void orgtr(char uplo, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dorgtr_(&uplo, &n, a, &lda, tau, work, &lwork, &info); } /// Generates the unitary transformation matrix from /// a reduction to tridiagonal form determined by CHETRD. void ungtr(char uplo, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { cungtr_(&uplo, &n, a, &lda, tau, work, &lwork, &info); } void ungtr(char uplo, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zungtr_(&uplo, &n, a, &lda, tau, work, &lwork, &info); } /// Multiplies a general matrix by one of the orthogonal /// transformation matrices from a reduction to bidiagonal form /// determined by SGEBRD. void ormbr(char vect, char side, char trans, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormbr_(&vect, &side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormbr(char vect, char side, char trans, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormbr_(&vect, &side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by one of the unitary /// transformation matrices from a reduction to bidiagonal form /// determined by CGEBRD. void unmbr(char vect, char side, char trans, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmbr_(&vect, &side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmbr(char vect, char side, char trans, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmbr_(&vect, &side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the orthogonal transformation /// matrix from a reduction to Hessenberg form determined by SGEHRD. void ormhr(char side, char trans, f_int m, f_int n, f_int ilo, f_int ihi, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormhr_(&side, &trans, &m, &n, &ilo, &ihi, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormhr(char side, char trans, f_int m, f_int n, f_int ilo, f_int ihi, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormhr_(&side, &trans, &m, &n, &ilo, &ihi, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary transformation /// matrix from a reduction to Hessenberg form determined by CGEHRD. void unmhr(char side, char trans, f_int m, f_int n, f_int ilo, f_int ihi, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmhr_(&side, &trans, &m, &n, &ilo, &ihi, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmhr(char side, char trans, f_int m, f_int n, f_int ilo, f_int ihi, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmhr_(&side, &trans, &m, &n, &ilo, &ihi, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the orthogonal matrix /// from an LQ factorization determined by SGELQF. void ormlq(char side, char trans, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormlq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormlq(char side, char trans, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormlq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary matrix /// from an LQ factorization determined by CGELQF. void unmlq(char side, char trans, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmlq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmlq(char side, char trans, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmlq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the orthogonal matrix /// from a QL factorization determined by SGEQLF. void ormql(char side, char trans, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormql_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormql(char side, char trans, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormql_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary matrix /// from a QL factorization determined by CGEQLF. void unmql(char side, char trans, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmql_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmql(char side, char trans, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmql_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the orthogonal matrix /// from a QR factorization determined by SGEQRF. void ormqr(char side, char trans, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormqr_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormqr(char side, char trans, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormqr_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary matrix /// from a QR factorization determined by CGEQRF. void unmqr(char side, char trans, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmqr_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmqr(char side, char trans, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmqr_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiples a general matrix by the orthogonal matrix /// from an RZ factorization determined by STZRZF. void ormr3(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, ref f_int info) { sormr3_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &info); } void ormr3(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, ref f_int info) { dormr3_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &info); } /// Multiples a general matrix by the unitary matrix /// from an RZ factorization determined by CTZRZF. void unmr3(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, ref f_int info) { cunmr3_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &info); } void unmr3(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, ref f_int info) { zunmr3_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &info); } /// Multiplies a general matrix by the orthogonal matrix /// from an RQ factorization determined by SGERQF. void ormrq(char side, char trans, f_int m, f_int n, f_int k, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormrq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormrq(char side, char trans, f_int m, f_int n, f_int k, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormrq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary matrix /// from an RQ factorization determined by CGERQF. void unmrq(char side, char trans, f_int m, f_int n, f_int k, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmrq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmrq(char side, char trans, f_int m, f_int n, f_int k, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmrq_(&side, &trans, &m, &n, &k, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiples a general matrix by the orthogonal matrix /// from an RZ factorization determined by STZRZF. void ormrz(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormrz_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormrz(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormrz_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiples a general matrix by the unitary matrix /// from an RZ factorization determined by CTZRZF. void unmrz(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmrz_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmrz(char side, char trans, f_int m, f_int n, f_int k, f_int l, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmrz_(&side, &trans, &m, &n, &k, &l, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the orthogonal /// transformation matrix from a reduction to tridiagonal form /// determined by SSYTRD. void ormtr(char side, char uplo, char trans, f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *c, f_int ldc, f_float *work, f_int lwork, ref f_int info) { sormtr_(&side, &uplo, &trans, &m, &n, a, &lda, tau, c, &ldc, work, &lwork, &info); } void ormtr(char side, char uplo, char trans, f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *c, f_int ldc, f_double *work, f_int lwork, ref f_int info) { dormtr_(&side, &uplo, &trans, &m, &n, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Multiplies a general matrix by the unitary /// transformation matrix from a reduction to tridiagonal form /// determined by CHETRD. void unmtr(char side, char uplo, char trans, f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, f_int lwork, ref f_int info) { cunmtr_(&side, &uplo, &trans, &m, &n, a, &lda, tau, c, &ldc, work, &lwork, &info); } void unmtr(char side, char uplo, char trans, f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, f_int lwork, ref f_int info) { zunmtr_(&side, &uplo, &trans, &m, &n, a, &lda, tau, c, &ldc, work, &lwork, &info); } /// Estimates the reciprocal of the condition number of a /// symmetric positive definite band matrix, using the /// Cholesky factorization computed by SPBTRF. void pbcon(char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { spbcon_(&uplo, &n, &kd, ab, &ldab, anorm, &rcond, work, iwork, &info); } void pbcon(char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dpbcon_(&uplo, &n, &kd, ab, &ldab, anorm, &rcond, work, iwork, &info); } void pbcon(char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float *anorm, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { cpbcon_(&uplo, &n, &kd, ab, &ldab, anorm, &rcond, work, rwork, &info); } void pbcon(char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double *anorm, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { zpbcon_(&uplo, &n, &kd, ab, &ldab, anorm, &rcond, work, rwork, &info); } /// Computes row and column scalings to equilibrate a symmetric /// positive definite band matrix and reduce its condition number. void pbequ(char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *s, f_float *scond, f_float *amax, ref f_int info) { spbequ_(&uplo, &n, &kd, ab, &ldab, s, scond, amax, &info); } void pbequ(char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *s, f_double *scond, f_double *amax, ref f_int info) { dpbequ_(&uplo, &n, &kd, ab, &ldab, s, scond, amax, &info); } void pbequ(char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float *s, f_float *scond, f_float *amax, ref f_int info) { cpbequ_(&uplo, &n, &kd, ab, &ldab, s, scond, amax, &info); } void pbequ(char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double *s, f_double *scond, f_double *amax, ref f_int info) { zpbequ_(&uplo, &n, &kd, ab, &ldab, s, scond, amax, &info); } /// Improves the computed solution to a symmetric positive /// definite banded system of linear equations AX=B, and provides /// forward and backward error bounds for the solution. void pbrfs(char uplo, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *afb, f_int ldafb, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { spbrfs_(&uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void pbrfs(char uplo, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *afb, f_int ldafb, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dpbrfs_(&uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void pbrfs(char uplo, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *afb, f_int ldafb, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cpbrfs_(&uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void pbrfs(char uplo, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *afb, f_int ldafb, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zpbrfs_(&uplo, &n, &kd, &nrhs, ab, &ldab, afb, &ldafb, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes a split Cholesky factorization of a real symmetric positive /// definite band matrix. void pbstf(char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, ref f_int info) { spbstf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbstf(char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, ref f_int info) { dpbstf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbstf(char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, ref f_int info) { cpbstf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbstf(char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, ref f_int info) { zpbstf_(&uplo, &n, &kd, ab, &ldab, &info); } /// Computes the Cholesky factorization of a symmetric /// positive definite band matrix. void pbtrf(char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, ref f_int info) { spbtrf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbtrf(char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, ref f_int info) { dpbtrf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbtrf(char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, ref f_int info) { cpbtrf_(&uplo, &n, &kd, ab, &ldab, &info); } void pbtrf(char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, ref f_int info) { zpbtrf_(&uplo, &n, &kd, ab, &ldab, &info); } /// Solves a symmetric positive definite banded system /// of linear equations AX=B, using the Cholesky factorization /// computed by SPBTRF. void pbtrs(char uplo, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *b, f_int ldb, ref f_int info) { spbtrs_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbtrs(char uplo, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *b, f_int ldb, ref f_int info) { dpbtrs_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbtrs(char uplo, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *b, f_int ldb, ref f_int info) { cpbtrs_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void pbtrs(char uplo, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *b, f_int ldb, ref f_int info) { zpbtrs_(&uplo, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } /// Estimates the reciprocal of the condition number of a /// symmetric positive definite matrix, using the /// Cholesky factorization computed by SPOTRF. void pocon(char uplo, f_int n, f_float *a, f_int lda, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { spocon_(&uplo, &n, a, &lda, anorm, &rcond, work, iwork, &info); } void pocon(char uplo, f_int n, f_double *a, f_int lda, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dpocon_(&uplo, &n, a, &lda, anorm, &rcond, work, iwork, &info); } void pocon(char uplo, f_int n, f_cfloat *a, f_int lda, f_float *anorm, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { cpocon_(&uplo, &n, a, &lda, anorm, &rcond, work, rwork, &info); } void pocon(char uplo, f_int n, f_cdouble *a, f_int lda, f_double *anorm, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { zpocon_(&uplo, &n, a, &lda, anorm, &rcond, work, rwork, &info); } /// Computes row and column scalings to equilibrate a symmetric /// positive definite matrix and reduce its condition number. void poequ(f_int n, f_float *a, f_int lda, f_float *s, f_float *scond, f_float *amax, ref f_int info) { spoequ_(&n, a, &lda, s, scond, amax, &info); } void poequ(f_int n, f_double *a, f_int lda, f_double *s, f_double *scond, f_double *amax, ref f_int info) { dpoequ_(&n, a, &lda, s, scond, amax, &info); } void poequ(f_int n, f_cfloat *a, f_int lda, f_float *s, f_float *scond, f_float *amax, ref f_int info) { cpoequ_(&n, a, &lda, s, scond, amax, &info); } void poequ(f_int n, f_cdouble *a, f_int lda, f_double *s, f_double *scond, f_double *amax, ref f_int info) { zpoequ_(&n, a, &lda, s, scond, amax, &info); } /// Improves the computed solution to a symmetric positive /// definite system of linear equations AX=B, and provides forward /// and backward error bounds for the solution. void porfs(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { sporfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void porfs(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dporfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void porfs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cporfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void porfs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zporfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes the Cholesky factorization of a symmetric /// positive definite matrix. void potrf(char uplo, f_int n, f_float *a, f_int lda, ref f_int info) { spotrf_(&uplo, &n, a, &lda, &info); } void potrf(char uplo, f_int n, f_double *a, f_int lda, ref f_int info) { dpotrf_(&uplo, &n, a, &lda, &info); } void potrf(char uplo, f_int n, f_cfloat *a, f_int lda, ref f_int info) { cpotrf_(&uplo, &n, a, &lda, &info); } void potrf(char uplo, f_int n, f_cdouble *a, f_int lda, ref f_int info) { zpotrf_(&uplo, &n, a, &lda, &info); } /// Computes the inverse of a symmetric positive definite /// matrix, using the Cholesky factorization computed by SPOTRF. void potri(char uplo, f_int n, f_float *a, f_int lda, ref f_int info) { spotri_(&uplo, &n, a, &lda, &info); } void potri(char uplo, f_int n, f_double *a, f_int lda, ref f_int info) { dpotri_(&uplo, &n, a, &lda, &info); } void potri(char uplo, f_int n, f_cfloat *a, f_int lda, ref f_int info) { cpotri_(&uplo, &n, a, &lda, &info); } void potri(char uplo, f_int n, f_cdouble *a, f_int lda, ref f_int info) { zpotri_(&uplo, &n, a, &lda, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B, using the Cholesky factorization computed by /// SPOTRF. void potrs(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, ref f_int info) { spotrs_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void potrs(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, ref f_int info) { dpotrs_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void potrs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, ref f_int info) { cpotrs_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } void potrs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, ref f_int info) { zpotrs_(&uplo, &n, &nrhs, a, &lda, b, &ldb, &info); } /// Estimates the reciprocal of the condition number of a /// symmetric positive definite matrix in packed storage, /// using the Cholesky factorization computed by SPPTRF. void ppcon(char uplo, f_int n, f_float *ap, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { sppcon_(&uplo, &n, ap, anorm, &rcond, work, iwork, &info); } void ppcon(char uplo, f_int n, f_double *ap, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dppcon_(&uplo, &n, ap, anorm, &rcond, work, iwork, &info); } void ppcon(char uplo, f_int n, f_cfloat *ap, f_float *anorm, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { cppcon_(&uplo, &n, ap, anorm, &rcond, work, rwork, &info); } void ppcon(char uplo, f_int n, f_cdouble *ap, f_double *anorm, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { zppcon_(&uplo, &n, ap, anorm, &rcond, work, rwork, &info); } /// Computes row and column scalings to equilibrate a symmetric /// positive definite matrix in packed storage and reduce its condition /// number. void ppequ(char uplo, f_int n, f_float *ap, f_float *s, f_float *scond, f_float *amax, ref f_int info) { sppequ_(&uplo, &n, ap, s, scond, amax, &info); } void ppequ(char uplo, f_int n, f_double *ap, f_double *s, f_double *scond, f_double *amax, ref f_int info) { dppequ_(&uplo, &n, ap, s, scond, amax, &info); } void ppequ(char uplo, f_int n, f_cfloat *ap, f_float *s, f_float *scond, f_float *amax, ref f_int info) { cppequ_(&uplo, &n, ap, s, scond, amax, &info); } void ppequ(char uplo, f_int n, f_cdouble *ap, f_double *s, f_double *scond, f_double *amax, ref f_int info) { zppequ_(&uplo, &n, ap, s, scond, amax, &info); } /// Improves the computed solution to a symmetric positive /// definite system of linear equations AX=B, where A is held in /// packed storage, and provides forward and backward error bounds /// for the solution. void pprfs(char uplo, f_int n, f_int nrhs, f_float *ap, f_float *afp, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { spprfs_(&uplo, &n, &nrhs, ap, afp, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void pprfs(char uplo, f_int n, f_int nrhs, f_double *ap, f_double *afp, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dpprfs_(&uplo, &n, &nrhs, ap, afp, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void pprfs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cpprfs_(&uplo, &n, &nrhs, ap, afp, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void pprfs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zpprfs_(&uplo, &n, &nrhs, ap, afp, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes the Cholesky factorization of a symmetric /// positive definite matrix in packed storage. void pptrf(char uplo, f_int n, f_float *ap, ref f_int info) { spptrf_(&uplo, &n, ap, &info); } void pptrf(char uplo, f_int n, f_double *ap, ref f_int info) { dpptrf_(&uplo, &n, ap, &info); } void pptrf(char uplo, f_int n, f_cfloat *ap, ref f_int info) { cpptrf_(&uplo, &n, ap, &info); } void pptrf(char uplo, f_int n, f_cdouble *ap, ref f_int info) { zpptrf_(&uplo, &n, ap, &info); } /// Computes the inverse of a symmetric positive definite /// matrix in packed storage, using the Cholesky factorization computed /// by SPPTRF. void pptri(char uplo, f_int n, f_float *ap, ref f_int info) { spptri_(&uplo, &n, ap, &info); } void pptri(char uplo, f_int n, f_double *ap, ref f_int info) { dpptri_(&uplo, &n, ap, &info); } void pptri(char uplo, f_int n, f_cfloat *ap, ref f_int info) { cpptri_(&uplo, &n, ap, &info); } void pptri(char uplo, f_int n, f_cdouble *ap, ref f_int info) { zpptri_(&uplo, &n, ap, &info); } /// Solves a symmetric positive definite system of linear /// equations AX=B, where A is held in packed storage, using the /// Cholesky factorization computed by SPPTRF. void pptrs(char uplo, f_int n, f_int nrhs, f_float *ap, f_float *b, f_int ldb, ref f_int info) { spptrs_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void pptrs(char uplo, f_int n, f_int nrhs, f_double *ap, f_double *b, f_int ldb, ref f_int info) { dpptrs_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void pptrs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *b, f_int ldb, ref f_int info) { cpptrs_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } void pptrs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *b, f_int ldb, ref f_int info) { zpptrs_(&uplo, &n, &nrhs, ap, b, &ldb, &info); } /// Computes the reciprocal of the condition number of a /// symmetric positive definite tridiagonal matrix, /// using the LDL**H factorization computed by SPTTRF. void ptcon(f_int n, f_float *d, f_float *e, f_float *anorm, f_float rcond, f_float *work, ref f_int info) { sptcon_(&n, d, e, anorm, &rcond, work, &info); } void ptcon(f_int n, f_double *d, f_double *e, f_double *anorm, f_double rcond, f_double *work, ref f_int info) { dptcon_(&n, d, e, anorm, &rcond, work, &info); } void ptcon(f_int n, f_float *d, f_cfloat *e, f_float *anorm, f_float rcond, f_float *rwork, ref f_int info) { cptcon_(&n, d, e, anorm, &rcond, rwork, &info); } void ptcon(f_int n, f_double *d, f_cdouble *e, f_double *anorm, f_double rcond, f_double *rwork, ref f_int info) { zptcon_(&n, d, e, anorm, &rcond, rwork, &info); } /// Computes all eigenvalues and eigenvectors of a real symmetric /// positive definite tridiagonal matrix, by computing the SVD of /// its bidiagonal Cholesky factor. void pteqr(char compz, f_int n, f_float *d, f_float *e, f_float *z, f_int ldz, f_float *work, ref f_int info) { spteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void pteqr(char compz, f_int n, f_double *d, f_double *e, f_double *z, f_int ldz, f_double *work, ref f_int info) { dpteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void pteqr(char compz, f_int n, f_float *d, f_float *e, f_cfloat *z, f_int ldz, f_float *work, ref f_int info) { cpteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void pteqr(char compz, f_int n, f_double *d, f_double *e, f_cdouble *z, f_int ldz, f_double *work, ref f_int info) { zpteqr_(&compz, &n, d, e, z, &ldz, work, &info); } /// Improves the computed solution to a symmetric positive /// definite tridiagonal system of linear equations AX=B, and provides /// forward and backward error bounds for the solution. void ptrfs(f_int n, f_int nrhs, f_float *d, f_float *e, f_float *df, f_float *ef, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, ref f_int info) { sptrfs_(&n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, ferr, berr, work, &info); } void ptrfs(f_int n, f_int nrhs, f_double *d, f_double *e, f_double *df, f_double *ef, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, ref f_int info) { dptrfs_(&n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, ferr, berr, work, &info); } void ptrfs(char uplo, f_int n, f_int nrhs, f_float *d, f_cfloat *e, f_float *df, f_cfloat *ef, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cptrfs_(&uplo, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void ptrfs(char uplo, f_int n, f_int nrhs, f_double *d, f_cdouble *e, f_double *df, f_cdouble *ef, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zptrfs_(&uplo, &n, &nrhs, d, e, df, ef, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes the LDL**H factorization of a symmetric /// positive definite tridiagonal matrix. void pttrf(f_int n, f_float *d, f_float *e, ref f_int info) { spttrf_(&n, d, e, &info); } void pttrf(f_int n, f_double *d, f_double *e, ref f_int info) { dpttrf_(&n, d, e, &info); } void pttrf(f_int n, f_float *d, f_cfloat *e, ref f_int info) { cpttrf_(&n, d, e, &info); } void pttrf(f_int n, f_double *d, f_cdouble *e, ref f_int info) { zpttrf_(&n, d, e, &info); } /// Solves a symmetric positive definite tridiagonal /// system of linear equations, using the LDL**H factorization /// computed by SPTTRF. void pttrs(f_int n, f_int nrhs, f_float *d, f_float *e, f_float *b, f_int ldb, ref f_int info) { spttrs_(&n, &nrhs, d, e, b, &ldb, &info); } void pttrs(f_int n, f_int nrhs, f_double *d, f_double *e, f_double *b, f_int ldb, ref f_int info) { dpttrs_(&n, &nrhs, d, e, b, &ldb, &info); } void pttrs(char uplo, f_int n, f_int nrhs, f_float *d, f_cfloat *e, f_cfloat *b, f_int ldb, ref f_int info) { cpttrs_(&uplo, &n, &nrhs, d, e, b, &ldb, &info); } void pttrs(char uplo, f_int n, f_int nrhs, f_double *d, f_cdouble *e, f_cdouble *b, f_int ldb, ref f_int info) { zpttrs_(&uplo, &n, &nrhs, d, e, b, &ldb, &info); } /// Reduces a real symmetric-definite banded generalized eigenproblem /// A x = lambda B x to standard form, where B has been factorized by /// SPBSTF (Crawford's algorithm). void sbgst(char vect, char uplo, f_int n, f_int ka, f_int kb, f_float *ab, f_int ldab, f_float *bb, f_int ldbb, f_float *x, f_int ldx, f_float *work, ref f_int info) { ssbgst_(&vect, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, x, &ldx, work, &info); } void sbgst(char vect, char uplo, f_int n, f_int ka, f_int kb, f_double *ab, f_int ldab, f_double *bb, f_int ldbb, f_double *x, f_int ldx, f_double *work, ref f_int info) { dsbgst_(&vect, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, x, &ldx, work, &info); } /// Reduces a complex Hermitian-definite banded generalized eigenproblem /// A x = lambda B x to standard form, where B has been factorized by /// CPBSTF (Crawford's algorithm). void hbgst(char vect, char uplo, f_int n, f_int ka, f_int kb, f_cfloat *ab, f_int ldab, f_cfloat *bb, f_int ldbb, f_cfloat *x, f_int ldx, f_cfloat *work, f_float *rwork, ref f_int info) { chbgst_(&vect, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, x, &ldx, work, rwork, &info); } void hbgst(char vect, char uplo, f_int n, f_int ka, f_int kb, f_cdouble *ab, f_int ldab, f_cdouble *bb, f_int ldbb, f_cdouble *x, f_int ldx, f_cdouble *work, f_double *rwork, ref f_int info) { zhbgst_(&vect, &uplo, &n, &ka, &kb, ab, &ldab, bb, &ldbb, x, &ldx, work, rwork, &info); } /// Reduces a symmetric band matrix to real symmetric /// tridiagonal form by an orthogonal similarity transformation. void sbtrd(char vect, char uplo, f_int n, f_int kd, f_float *ab, f_int ldab, f_float *d, f_float *e, f_float *q, f_int ldq, f_float *work, ref f_int info) { ssbtrd_(&vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work, &info); } void sbtrd(char vect, char uplo, f_int n, f_int kd, f_double *ab, f_int ldab, f_double *d, f_double *e, f_double *q, f_int ldq, f_double *work, ref f_int info) { dsbtrd_(&vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work, &info); } /// Reduces a Hermitian band matrix to real symmetric /// tridiagonal form by a unitary similarity transformation. void hbtrd(char vect, char uplo, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float *d, f_float *e, f_cfloat *q, f_int ldq, f_cfloat *work, ref f_int info) { chbtrd_(&vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work, &info); } void hbtrd(char vect, char uplo, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double *d, f_double *e, f_cdouble *q, f_int ldq, f_cdouble *work, ref f_int info) { zhbtrd_(&vect, &uplo, &n, &kd, ab, &ldab, d, e, q, &ldq, work, &info); } /// Estimates the reciprocal of the condition number of a /// real symmetric indefinite /// matrix in packed storage, using the factorization computed /// by SSPTRF. void spcon(char uplo, f_int n, f_float *ap, f_int *ipiv, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { sspcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, iwork, &info); } void spcon(char uplo, f_int n, f_double *ap, f_int *ipiv, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dspcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, iwork, &info); } void spcon(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, ref f_int info) { cspcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, &info); } void spcon(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, ref f_int info) { zspcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, &info); } /// Estimates the reciprocal of the condition number of a /// complex Hermitian indefinite /// matrix in packed storage, using the factorization computed /// by CHPTRF. void hpcon(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, ref f_int info) { chpcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, &info); } void hpcon(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, ref f_int info) { zhpcon_(&uplo, &n, ap, ipiv, anorm, &rcond, work, &info); } /// Reduces a symmetric-definite generalized eigenproblem /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x, to standard /// form, where A and B are held in packed storage, and B has been /// factorized by SPPTRF. void spgst(f_int itype, char uplo, f_int n, f_float *ap, f_float *bp, ref f_int info) { sspgst_(&itype, &uplo, &n, ap, bp, &info); } void spgst(f_int itype, char uplo, f_int n, f_double *ap, f_double *bp, ref f_int info) { dspgst_(&itype, &uplo, &n, ap, bp, &info); } /// Reduces a Hermitian-definite generalized eigenproblem /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x, to standard /// form, where A and B are held in packed storage, and B has been /// factorized by CPPTRF. void hpgst(f_int itype, char uplo, f_int n, f_cfloat *ap, f_cfloat *bp, ref f_int info) { chpgst_(&itype, &uplo, &n, ap, bp, &info); } void hpgst(f_int itype, char uplo, f_int n, f_cdouble *ap, f_cdouble *bp, ref f_int info) { zhpgst_(&itype, &uplo, &n, ap, bp, &info); } /// Improves the computed solution to a real /// symmetric indefinite system of linear equations /// AX=B, where A is held in packed storage, and provides forward /// and backward error bounds for the solution. void sprfs(char uplo, f_int n, f_int nrhs, f_float *ap, f_float *afp, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { ssprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void sprfs(char uplo, f_int n, f_int nrhs, f_double *ap, f_double *afp, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dsprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void sprfs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { csprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void sprfs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zsprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Improves the computed solution to a complex /// Hermitian indefinite system of linear equations /// AX=B, where A is held in packed storage, and provides forward /// and backward error bounds for the solution. void hprfs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *afp, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { chprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void hprfs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *afp, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zhprfs_(&uplo, &n, &nrhs, ap, afp, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Reduces a symmetric matrix in packed storage to real /// symmetric tridiagonal form by an orthogonal similarity /// transformation. void sptrd(char uplo, f_int n, f_float *ap, f_float *d, f_float *e, f_float *tau, ref f_int info) { ssptrd_(&uplo, &n, ap, d, e, tau, &info); } void sptrd(char uplo, f_int n, f_double *ap, f_double *d, f_double *e, f_double *tau, ref f_int info) { dsptrd_(&uplo, &n, ap, d, e, tau, &info); } /// Reduces a Hermitian matrix in packed storage to real /// symmetric tridiagonal form by a unitary similarity /// transformation. void hptrd(char uplo, f_int n, f_cfloat *ap, f_float *d, f_float *e, f_cfloat *tau, ref f_int info) { chptrd_(&uplo, &n, ap, d, e, tau, &info); } void hptrd(char uplo, f_int n, f_cdouble *ap, f_double *d, f_double *e, f_cdouble *tau, ref f_int info) { zhptrd_(&uplo, &n, ap, d, e, tau, &info); } /// Computes the factorization of a real /// symmetric-indefinite matrix in packed storage, /// using the diagonal pivoting method. void sptrf(char uplo, f_int n, f_float *ap, f_int *ipiv, ref f_int info) { ssptrf_(&uplo, &n, ap, ipiv, &info); } void sptrf(char uplo, f_int n, f_double *ap, f_int *ipiv, ref f_int info) { dsptrf_(&uplo, &n, ap, ipiv, &info); } void sptrf(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, ref f_int info) { csptrf_(&uplo, &n, ap, ipiv, &info); } void sptrf(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, ref f_int info) { zsptrf_(&uplo, &n, ap, ipiv, &info); } /// Computes the factorization of a complex /// Hermitian-indefinite matrix in packed storage, /// using the diagonal pivoting method. void hptrf(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, ref f_int info) { chptrf_(&uplo, &n, ap, ipiv, &info); } void hptrf(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, ref f_int info) { zhptrf_(&uplo, &n, ap, ipiv, &info); } /// Computes the inverse of a real symmetric /// indefinite matrix in packed storage, using the factorization /// computed by SSPTRF. void sptri(char uplo, f_int n, f_float *ap, f_int *ipiv, f_float *work, ref f_int info) { ssptri_(&uplo, &n, ap, ipiv, work, &info); } void sptri(char uplo, f_int n, f_double *ap, f_int *ipiv, f_double *work, ref f_int info) { dsptri_(&uplo, &n, ap, ipiv, work, &info); } void sptri(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, f_cfloat *work, ref f_int info) { csptri_(&uplo, &n, ap, ipiv, work, &info); } void sptri(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, f_cdouble *work, ref f_int info) { zsptri_(&uplo, &n, ap, ipiv, work, &info); } /// Computes the inverse of a complex /// Hermitian indefinite matrix in packed storage, using the factorization /// computed by CHPTRF. void hptri(char uplo, f_int n, f_cfloat *ap, f_int *ipiv, f_cfloat *work, ref f_int info) { chptri_(&uplo, &n, ap, ipiv, work, &info); } void hptri(char uplo, f_int n, f_cdouble *ap, f_int *ipiv, f_cdouble *work, ref f_int info) { zhptri_(&uplo, &n, ap, ipiv, work, &info); } /// Solves a real symmetric /// indefinite system of linear equations AX=B, where A is held /// in packed storage, using the factorization computed /// by SSPTRF. void sptrs(char uplo, f_int n, f_int nrhs, f_float *ap, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { ssptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void sptrs(char uplo, f_int n, f_int nrhs, f_double *ap, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dsptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void sptrs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { csptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void sptrs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zsptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } /// Solves a complex Hermitian /// indefinite system of linear equations AX=B, where A is held /// in packed storage, using the factorization computed /// by CHPTRF. void hptrs(char uplo, f_int n, f_int nrhs, f_cfloat *ap, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { chptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } void hptrs(char uplo, f_int n, f_int nrhs, f_cdouble *ap, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zhptrs_(&uplo, &n, &nrhs, ap, ipiv, b, &ldb, &info); } /// Computes selected eigenvalues of a real symmetric tridiagonal /// matrix by bisection. void stebz(char range, char order, f_int n, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_float *d, f_float *e, f_int m, f_int nsplit, f_float *w, f_int iblock, f_int isplit, f_float *work, f_int *iwork, ref f_int info) { sstebz_(&range, &order, &n, vl, vu, &il, &iu, abstol, d, e, &m, &nsplit, w, &iblock, &isplit, work, iwork, &info); } void stebz(char range, char order, f_int n, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_double *d, f_double *e, f_int m, f_int nsplit, f_double *w, f_int iblock, f_int isplit, f_double *work, f_int *iwork, ref f_int info) { dstebz_(&range, &order, &n, vl, vu, &il, &iu, abstol, d, e, &m, &nsplit, w, &iblock, &isplit, work, iwork, &info); } /// Computes all eigenvalues and, optionally, eigenvectors of a /// symmetric tridiagonal matrix using the divide and conquer algorithm. void stedc(char compz, f_int n, f_float *d, f_float *e, f_float *z, f_int ldz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sstedc_(&compz, &n, d, e, z, &ldz, work, &lwork, iwork, &liwork, &info); } void stedc(char compz, f_int n, f_double *d, f_double *e, f_double *z, f_int ldz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dstedc_(&compz, &n, d, e, z, &ldz, work, &lwork, iwork, &liwork, &info); } void stedc(char compz, f_int n, f_float *d, f_float *e, f_cfloat *z, f_int ldz, f_cfloat *work, f_int lwork, f_float *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { cstedc_(&compz, &n, d, e, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } void stedc(char compz, f_int n, f_double *d, f_double *e, f_cdouble *z, f_int ldz, f_cdouble *work, f_int lwork, f_double *rwork, f_int lrwork, f_int *iwork, f_int liwork, ref f_int info) { zstedc_(&compz, &n, d, e, z, &ldz, work, &lwork, rwork, &lrwork, iwork, &liwork, &info); } /// Computes selected eigenvalues and, optionally, eigenvectors of a /// symmetric tridiagonal matrix. The eigenvalues are computed by the /// dqds algorithm, while eigenvectors are computed from various "good" /// LDL^T representations (also known as Relatively Robust Representations.) void stegr(char jobz, char range, f_int n, f_float *d, f_float *e, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_float *z, f_int ldz, f_int isuppz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { sstegr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } void stegr(char jobz, char range, f_int n, f_double *d, f_double *e, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_double *z, f_int ldz, f_int isuppz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dstegr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } void stegr(char jobz, char range, f_int n, f_float *d, f_float *e, f_float *vl, f_float *vu, f_int il, f_int iu, f_float *abstol, f_int m, f_float *w, f_cfloat *z, f_int ldz, f_int isuppz, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { cstegr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } void stegr(char jobz, char range, f_int n, f_double *d, f_double *e, f_double *vl, f_double *vu, f_int il, f_int iu, f_double *abstol, f_int m, f_double *w, f_cdouble *z, f_int ldz, f_int isuppz, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { zstegr_(&jobz, &range, &n, d, e, vl, vu, &il, &iu, abstol, &m, w, z, &ldz, &isuppz, work, &lwork, iwork, &liwork, &info); } /// Computes selected eigenvectors of a real symmetric tridiagonal /// matrix by inverse iteration. void stein(f_int n, f_float *d, f_float *e, f_int m, f_float *w, f_int iblock, f_int isplit, f_float *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { sstein_(&n, d, e, &m, w, &iblock, &isplit, z, &ldz, work, iwork, &ifail, &info); } void stein(f_int n, f_double *d, f_double *e, f_int m, f_double *w, f_int iblock, f_int isplit, f_double *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { dstein_(&n, d, e, &m, w, &iblock, &isplit, z, &ldz, work, iwork, &ifail, &info); } void stein(f_int n, f_float *d, f_float *e, f_int m, f_float *w, f_int iblock, f_int isplit, f_cfloat *z, f_int ldz, f_float *work, f_int *iwork, f_int ifail, ref f_int info) { cstein_(&n, d, e, &m, w, &iblock, &isplit, z, &ldz, work, iwork, &ifail, &info); } void stein(f_int n, f_double *d, f_double *e, f_int m, f_double *w, f_int iblock, f_int isplit, f_cdouble *z, f_int ldz, f_double *work, f_int *iwork, f_int ifail, ref f_int info) { zstein_(&n, d, e, &m, w, &iblock, &isplit, z, &ldz, work, iwork, &ifail, &info); } /// Computes all eigenvalues and eigenvectors of a real symmetric /// tridiagonal matrix, using the implicit QL or QR algorithm. void steqr(char compz, f_int n, f_float *d, f_float *e, f_float *z, f_int ldz, f_float *work, ref f_int info) { ssteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void steqr(char compz, f_int n, f_double *d, f_double *e, f_double *z, f_int ldz, f_double *work, ref f_int info) { dsteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void steqr(char compz, f_int n, f_float *d, f_float *e, f_cfloat *z, f_int ldz, f_float *work, ref f_int info) { csteqr_(&compz, &n, d, e, z, &ldz, work, &info); } void steqr(char compz, f_int n, f_double *d, f_double *e, f_cdouble *z, f_int ldz, f_double *work, ref f_int info) { zsteqr_(&compz, &n, d, e, z, &ldz, work, &info); } /// Computes all eigenvalues of a real symmetric tridiagonal matrix, /// using a root-free variant of the QL or QR algorithm. void sterf(f_int n, f_float *d, f_float *e, ref f_int info) { ssterf_(&n, d, e, &info); } void sterf(f_int n, f_double *d, f_double *e, ref f_int info) { dsterf_(&n, d, e, &info); } /// Estimates the reciprocal of the condition number of a /// real symmetric indefinite matrix, /// using the factorization computed by SSYTRF. void sycon(char uplo, f_int n, f_float *a, f_int lda, f_int *ipiv, f_float *anorm, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { ssycon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, iwork, &info); } void sycon(char uplo, f_int n, f_double *a, f_int lda, f_int *ipiv, f_double *anorm, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dsycon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, iwork, &info); } void sycon(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, ref f_int info) { csycon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, &info); } void sycon(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, ref f_int info) { zsycon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, &info); } /// Estimates the reciprocal of the condition number of a /// complex Hermitian indefinite matrix, /// using the factorization computed by CHETRF. void hecon(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_float *anorm, f_float rcond, f_cfloat *work, ref f_int info) { checon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, &info); } void hecon(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_double *anorm, f_double rcond, f_cdouble *work, ref f_int info) { zhecon_(&uplo, &n, a, &lda, ipiv, anorm, &rcond, work, &info); } /// Reduces a symmetric-definite generalized eigenproblem /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x, to standard /// form, where B has been factorized by SPOTRF. void sygst(f_int itype, char uplo, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, ref f_int info) { ssygst_(&itype, &uplo, &n, a, &lda, b, &ldb, &info); } void sygst(f_int itype, char uplo, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, ref f_int info) { dsygst_(&itype, &uplo, &n, a, &lda, b, &ldb, &info); } /// Reduces a Hermitian-definite generalized eigenproblem /// Ax= lambda Bx, ABx= lambda x, or BAx= lambda x, to standard /// form, where B has been factorized by CPOTRF. void hegst(f_int itype, char uplo, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, ref f_int info) { chegst_(&itype, &uplo, &n, a, &lda, b, &ldb, &info); } void hegst(f_int itype, char uplo, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, ref f_int info) { zhegst_(&itype, &uplo, &n, a, &lda, b, &ldb, &info); } /// Improves the computed solution to a real /// symmetric indefinite system of linear equations /// AX=B, and provides forward and backward error bounds for the /// solution. void syrfs(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *af, f_int ldaf, f_int *ipiv, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { ssyrfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void syrfs(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *af, f_int ldaf, f_int *ipiv, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dsyrfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void syrfs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { csyrfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void syrfs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zsyrfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Improves the computed solution to a complex /// Hermitian indefinite system of linear equations /// AX=B, and provides forward and backward error bounds for the /// solution. void herfs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *af, f_int ldaf, f_int *ipiv, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { cherfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void herfs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *af, f_int ldaf, f_int *ipiv, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { zherfs_(&uplo, &n, &nrhs, a, &lda, af, &ldaf, ipiv, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Reduces a symmetric matrix to real symmetric tridiagonal /// form by an orthogonal similarity transformation. void sytrd(char uplo, f_int n, f_float *a, f_int lda, f_float *d, f_float *e, f_float *tau, f_float *work, f_int lwork, ref f_int info) { ssytrd_(&uplo, &n, a, &lda, d, e, tau, work, &lwork, &info); } void sytrd(char uplo, f_int n, f_double *a, f_int lda, f_double *d, f_double *e, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dsytrd_(&uplo, &n, a, &lda, d, e, tau, work, &lwork, &info); } /// Reduces a Hermitian matrix to real symmetric tridiagonal /// form by an orthogonal/unitary similarity transformation. void hetrd(char uplo, f_int n, f_cfloat *a, f_int lda, f_float *d, f_float *e, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { chetrd_(&uplo, &n, a, &lda, d, e, tau, work, &lwork, &info); } void hetrd(char uplo, f_int n, f_cdouble *a, f_int lda, f_double *d, f_double *e, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { zhetrd_(&uplo, &n, a, &lda, d, e, tau, work, &lwork, &info); } /// Computes the factorization of a real symmetric-indefinite matrix, /// using the diagonal pivoting method. void sytrf(char uplo, f_int n, f_float *a, f_int lda, f_int *ipiv, f_float *work, f_int lwork, ref f_int info) { ssytrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } void sytrf(char uplo, f_int n, f_double *a, f_int lda, f_int *ipiv, f_double *work, f_int lwork, ref f_int info) { dsytrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } void sytrf(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *work, f_int lwork, ref f_int info) { csytrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } void sytrf(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *work, f_int lwork, ref f_int info) { zsytrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } /// Computes the factorization of a complex Hermitian-indefinite matrix, /// using the diagonal pivoting method. void hetrf(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *work, f_int lwork, ref f_int info) { chetrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } void hetrf(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *work, f_int lwork, ref f_int info) { zhetrf_(&uplo, &n, a, &lda, ipiv, work, &lwork, &info); } /// Computes the inverse of a real symmetric indefinite matrix, /// using the factorization computed by SSYTRF. void sytri(char uplo, f_int n, f_float *a, f_int lda, f_int *ipiv, f_float *work, ref f_int info) { ssytri_(&uplo, &n, a, &lda, ipiv, work, &info); } void sytri(char uplo, f_int n, f_double *a, f_int lda, f_int *ipiv, f_double *work, ref f_int info) { dsytri_(&uplo, &n, a, &lda, ipiv, work, &info); } void sytri(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *work, ref f_int info) { csytri_(&uplo, &n, a, &lda, ipiv, work, &info); } void sytri(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *work, ref f_int info) { zsytri_(&uplo, &n, a, &lda, ipiv, work, &info); } /// Computes the inverse of a complex Hermitian indefinite matrix, /// using the factorization computed by CHETRF. void hetri(char uplo, f_int n, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *work, ref f_int info) { chetri_(&uplo, &n, a, &lda, ipiv, work, &info); } void hetri(char uplo, f_int n, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *work, ref f_int info) { zhetri_(&uplo, &n, a, &lda, ipiv, work, &info); } /// Solves a real symmetric indefinite system of linear equations AX=B, /// using the factorization computed by SSPTRF. void sytrs(char uplo, f_int n, f_int nrhs, f_float *a, f_int lda, f_int *ipiv, f_float *b, f_int ldb, ref f_int info) { ssytrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void sytrs(char uplo, f_int n, f_int nrhs, f_double *a, f_int lda, f_int *ipiv, f_double *b, f_int ldb, ref f_int info) { dsytrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void sytrs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { csytrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void sytrs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zsytrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } /// Solves a complex Hermitian indefinite system of linear equations AX=B, /// using the factorization computed by CHPTRF. void hetrs(char uplo, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_int *ipiv, f_cfloat *b, f_int ldb, ref f_int info) { chetrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } void hetrs(char uplo, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_int *ipiv, f_cdouble *b, f_int ldb, ref f_int info) { zhetrs_(&uplo, &n, &nrhs, a, &lda, ipiv, b, &ldb, &info); } /// Estimates the reciprocal of the condition number of a triangular /// band matrix, in either the 1-norm or the infinity-norm. void tbcon(char norm, char uplo, char diag, f_int n, f_int kd, f_float *ab, f_int ldab, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { stbcon_(&norm, &uplo, &diag, &n, &kd, ab, &ldab, &rcond, work, iwork, &info); } void tbcon(char norm, char uplo, char diag, f_int n, f_int kd, f_double *ab, f_int ldab, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dtbcon_(&norm, &uplo, &diag, &n, &kd, ab, &ldab, &rcond, work, iwork, &info); } void tbcon(char norm, char uplo, char diag, f_int n, f_int kd, f_cfloat *ab, f_int ldab, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { ctbcon_(&norm, &uplo, &diag, &n, &kd, ab, &ldab, &rcond, work, rwork, &info); } void tbcon(char norm, char uplo, char diag, f_int n, f_int kd, f_cdouble *ab, f_int ldab, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { ztbcon_(&norm, &uplo, &diag, &n, &kd, ab, &ldab, &rcond, work, rwork, &info); } /// Provides forward and backward error bounds for the solution /// of a triangular banded system of linear equations AX=B, /// A**T X=B or A**H X=B. void tbrfs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { stbrfs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void tbrfs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dtbrfs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void tbrfs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { ctbrfs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void tbrfs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { ztbrfs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Solves a triangular banded system of linear equations AX=B, /// A**T X=B or A**H X=B. void tbtrs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_float *ab, f_int ldab, f_float *b, f_int ldb, ref f_int info) { stbtrs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void tbtrs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_double *ab, f_int ldab, f_double *b, f_int ldb, ref f_int info) { dtbtrs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void tbtrs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_cfloat *ab, f_int ldab, f_cfloat *b, f_int ldb, ref f_int info) { ctbtrs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } void tbtrs(char uplo, char trans, char diag, f_int n, f_int kd, f_int nrhs, f_cdouble *ab, f_int ldab, f_cdouble *b, f_int ldb, ref f_int info) { ztbtrs_(&uplo, &trans, &diag, &n, &kd, &nrhs, ab, &ldab, b, &ldb, &info); } /// Computes some or all of the right and/or left generalized eigenvectors /// of a pair of upper triangular matrices. void tgevc(char side, char howmny, f_int select, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_int mm, f_int m, f_float *work, ref f_int info) { stgevc_(&side, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, &mm, &m, work, &info); } void tgevc(char side, char howmny, f_int select, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_int mm, f_int m, f_double *work, ref f_int info) { dtgevc_(&side, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, &mm, &m, work, &info); } void tgevc(char side, char howmny, f_int select, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_int mm, f_int m, f_cfloat *work, f_float *rwork, ref f_int info) { ctgevc_(&side, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &info); } void tgevc(char side, char howmny, f_int select, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_int mm, f_int m, f_cdouble *work, f_double *rwork, ref f_int info) { ztgevc_(&side, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &info); } /// Reorders the generalized real Schur decomposition of a real /// matrix pair (A,B) using an orthogonal equivalence transformation /// so that the diagonal block of (A,B) with row index IFST is moved /// to row ILST. void tgexc(f_int wantq, f_int wantz, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *q, f_int ldq, f_float *z, f_int ldz, f_int ifst, f_int ilst, f_float *work, f_int lwork, ref f_int info) { stgexc_(&wantq, &wantz, &n, a, &lda, b, &ldb, q, &ldq, z, &ldz, &ifst, &ilst, work, &lwork, &info); } void tgexc(f_int wantq, f_int wantz, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *q, f_int ldq, f_double *z, f_int ldz, f_int ifst, f_int ilst, f_double *work, f_int lwork, ref f_int info) { dtgexc_(&wantq, &wantz, &n, a, &lda, b, &ldb, q, &ldq, z, &ldz, &ifst, &ilst, work, &lwork, &info); } void tgexc(f_int wantq, f_int wantz, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *q, f_int ldq, f_cfloat *z, f_int ldz, f_int ifst, f_int ilst, ref f_int info) { ctgexc_(&wantq, &wantz, &n, a, &lda, b, &ldb, q, &ldq, z, &ldz, &ifst, &ilst, &info); } void tgexc(f_int wantq, f_int wantz, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *q, f_int ldq, f_cdouble *z, f_int ldz, f_int ifst, f_int ilst, ref f_int info) { ztgexc_(&wantq, &wantz, &n, a, &lda, b, &ldb, q, &ldq, z, &ldz, &ifst, &ilst, &info); } /// Reorders the generalized real Schur decomposition of a real /// matrix pair (A, B) so that a selected cluster of eigenvalues /// appears in the leading diagonal blocks of the upper quasi-triangular /// matrix A and the upper triangular B. void tgsen(f_int ijob, f_int wantq, f_int wantz, f_int select, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *alphar, f_float *alphai, f_float *betav, f_float *q, f_int ldq, f_float *z, f_int ldz, f_int m, f_float *pl, f_float *pr, f_float *dif, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { stgsen_(&ijob, &wantq, &wantz, &select, &n, a, &lda, b, &ldb, alphar, alphai, betav, q, &ldq, z, &ldz, &m, pl, pr, dif, work, &lwork, iwork, &liwork, &info); } void tgsen(f_int ijob, f_int wantq, f_int wantz, f_int select, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *alphar, f_double *alphai, f_double *betav, f_double *q, f_int ldq, f_double *z, f_int ldz, f_int m, f_double *pl, f_double *pr, f_double *dif, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dtgsen_(&ijob, &wantq, &wantz, &select, &n, a, &lda, b, &ldb, alphar, alphai, betav, q, &ldq, z, &ldz, &m, pl, pr, dif, work, &lwork, iwork, &liwork, &info); } void tgsen(f_int ijob, f_int wantq, f_int wantz, f_int select, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *alphav, f_cfloat *betav, f_cfloat *q, f_int ldq, f_cfloat *z, f_int ldz, f_int m, f_float *pl, f_float *pr, f_float *dif, f_cfloat *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ctgsen_(&ijob, &wantq, &wantz, &select, &n, a, &lda, b, &ldb, alphav, betav, q, &ldq, z, &ldz, &m, pl, pr, dif, work, &lwork, iwork, &liwork, &info); } void tgsen(f_int ijob, f_int wantq, f_int wantz, f_int select, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *alphav, f_cdouble *betav, f_cdouble *q, f_int ldq, f_cdouble *z, f_int ldz, f_int m, f_double *pl, f_double *pr, f_double *dif, f_cdouble *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { ztgsen_(&ijob, &wantq, &wantz, &select, &n, a, &lda, b, &ldb, alphav, betav, q, &ldq, z, &ldz, &m, pl, pr, dif, work, &lwork, iwork, &liwork, &info); } /// Computes the generalized singular value decomposition of two real /// upper triangular (or trapezoidal) matrices as output by SGGSVP. void tgsja(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_int k, f_int l, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *tola, f_float *tolb, f_float *alphav, f_float *betav, f_float *u, f_int ldu, f_float *v, f_int ldv, f_float *q, f_int ldq, f_float *work, f_int ncycle, ref f_int info) { stgsja_(&jobu, &jobv, &jobq, &m, &p, &n, &k, &l, a, &lda, b, &ldb, tola, tolb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, &ncycle, &info); } void tgsja(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_int k, f_int l, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *tola, f_double *tolb, f_double *alphav, f_double *betav, f_double *u, f_int ldu, f_double *v, f_int ldv, f_double *q, f_int ldq, f_double *work, f_int ncycle, ref f_int info) { dtgsja_(&jobu, &jobv, &jobq, &m, &p, &n, &k, &l, a, &lda, b, &ldb, tola, tolb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, &ncycle, &info); } void tgsja(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_int k, f_int l, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_float *tola, f_float *tolb, f_float *alphav, f_float *betav, f_cfloat *u, f_int ldu, f_cfloat *v, f_int ldv, f_cfloat *q, f_int ldq, f_cfloat *work, f_int ncycle, ref f_int info) { ctgsja_(&jobu, &jobv, &jobq, &m, &p, &n, &k, &l, a, &lda, b, &ldb, tola, tolb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, &ncycle, &info); } void tgsja(char jobu, char jobv, char jobq, f_int m, f_int p, f_int n, f_int k, f_int l, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_double *tola, f_double *tolb, f_double *alphav, f_double *betav, f_cdouble *u, f_int ldu, f_cdouble *v, f_int ldv, f_cdouble *q, f_int ldq, f_cdouble *work, f_int ncycle, ref f_int info) { ztgsja_(&jobu, &jobv, &jobq, &m, &p, &n, &k, &l, a, &lda, b, &ldb, tola, tolb, alphav, betav, u, &ldu, v, &ldv, q, &ldq, work, &ncycle, &info); } /// Estimates reciprocal condition numbers for specified /// eigenvalues and/or eigenvectors of a matrix pair (A, B) in /// generalized real Schur canonical form, as returned by SGGES. void tgsna(char job, char howmny, f_int select, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_float *s, f_float *dif, f_int mm, f_int m, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { stgsna_(&job, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, s, dif, &mm, &m, work, &lwork, iwork, &info); } void tgsna(char job, char howmny, f_int select, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_double *s, f_double *dif, f_int mm, f_int m, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dtgsna_(&job, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, s, dif, &mm, &m, work, &lwork, iwork, &info); } void tgsna(char job, char howmny, f_int select, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_float *s, f_float *dif, f_int mm, f_int m, f_cfloat *work, f_int lwork, f_int *iwork, ref f_int info) { ctgsna_(&job, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, s, dif, &mm, &m, work, &lwork, iwork, &info); } void tgsna(char job, char howmny, f_int select, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_double *s, f_double *dif, f_int mm, f_int m, f_cdouble *work, f_int lwork, f_int *iwork, ref f_int info) { ztgsna_(&job, &howmny, &select, &n, a, &lda, b, &ldb, vl, &ldvl, vr, &ldvr, s, dif, &mm, &m, work, &lwork, iwork, &info); } /// Solves the generalized Sylvester equation. void tgsyl(char trans, f_int ijob, f_int m, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *c, f_int ldc, f_float *d, f_int ldd, f_float *e, f_int lde, f_float *f, f_int ldf, f_float *scale, f_float *dif, f_float *work, f_int lwork, f_int *iwork, ref f_int info) { stgsyl_(&trans, &ijob, &m, &n, a, &lda, b, &ldb, c, &ldc, d, &ldd, e, &lde, f, &ldf, scale, dif, work, &lwork, iwork, &info); } void tgsyl(char trans, f_int ijob, f_int m, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *c, f_int ldc, f_double *d, f_int ldd, f_double *e, f_int lde, f_double *f, f_int ldf, f_double *scale, f_double *dif, f_double *work, f_int lwork, f_int *iwork, ref f_int info) { dtgsyl_(&trans, &ijob, &m, &n, a, &lda, b, &ldb, c, &ldc, d, &ldd, e, &lde, f, &ldf, scale, dif, work, &lwork, iwork, &info); } void tgsyl(char trans, f_int ijob, f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *c, f_int ldc, f_cfloat *d, f_int ldd, f_cfloat *e, f_int lde, f_cfloat *f, f_int ldf, f_float *scale, f_float *dif, f_cfloat *work, f_int lwork, f_int *iwork, ref f_int info) { ctgsyl_(&trans, &ijob, &m, &n, a, &lda, b, &ldb, c, &ldc, d, &ldd, e, &lde, f, &ldf, scale, dif, work, &lwork, iwork, &info); } void tgsyl(char trans, f_int ijob, f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *c, f_int ldc, f_cdouble *d, f_int ldd, f_cdouble *e, f_int lde, f_cdouble *f, f_int ldf, f_double *scale, f_double *dif, f_cdouble *work, f_int lwork, f_int *iwork, ref f_int info) { ztgsyl_(&trans, &ijob, &m, &n, a, &lda, b, &ldb, c, &ldc, d, &ldd, e, &lde, f, &ldf, scale, dif, work, &lwork, iwork, &info); } /// Estimates the reciprocal of the condition number of a triangular /// matrix in packed storage, in either the 1-norm or the infinity-norm. void tpcon(char norm, char uplo, char diag, f_int n, f_float *ap, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { stpcon_(&norm, &uplo, &diag, &n, ap, &rcond, work, iwork, &info); } void tpcon(char norm, char uplo, char diag, f_int n, f_double *ap, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dtpcon_(&norm, &uplo, &diag, &n, ap, &rcond, work, iwork, &info); } void tpcon(char norm, char uplo, char diag, f_int n, f_cfloat *ap, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { ctpcon_(&norm, &uplo, &diag, &n, ap, &rcond, work, rwork, &info); } void tpcon(char norm, char uplo, char diag, f_int n, f_cdouble *ap, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { ztpcon_(&norm, &uplo, &diag, &n, ap, &rcond, work, rwork, &info); } /// Provides forward and backward error bounds for the solution /// of a triangular system of linear equations AX=B, A**T X=B or /// A**H X=B, where A is held in packed storage. void tprfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_float *ap, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { stprfs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void tprfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_double *ap, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dtprfs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void tprfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { ctprfs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void tprfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { ztprfs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Computes the inverse of a triangular matrix in packed storage. void tptri(char uplo, char diag, f_int n, f_float *ap, ref f_int info) { stptri_(&uplo, &diag, &n, ap, &info); } void tptri(char uplo, char diag, f_int n, f_double *ap, ref f_int info) { dtptri_(&uplo, &diag, &n, ap, &info); } void tptri(char uplo, char diag, f_int n, f_cfloat *ap, ref f_int info) { ctptri_(&uplo, &diag, &n, ap, &info); } void tptri(char uplo, char diag, f_int n, f_cdouble *ap, ref f_int info) { ztptri_(&uplo, &diag, &n, ap, &info); } /// Solves a triangular system of linear equations AX=B, /// A**T X=B or A**H X=B, where A is held in packed storage. void tptrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_float *ap, f_float *b, f_int ldb, ref f_int info) { stptrs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, &info); } void tptrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_double *ap, f_double *b, f_int ldb, ref f_int info) { dtptrs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, &info); } void tptrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cfloat *ap, f_cfloat *b, f_int ldb, ref f_int info) { ctptrs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, &info); } void tptrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cdouble *ap, f_cdouble *b, f_int ldb, ref f_int info) { ztptrs_(&uplo, &trans, &diag, &n, &nrhs, ap, b, &ldb, &info); } /// Estimates the reciprocal of the condition number of a triangular /// matrix, in either the 1-norm or the infinity-norm. void trcon(char norm, char uplo, char diag, f_int n, f_float *a, f_int lda, f_float rcond, f_float *work, f_int *iwork, ref f_int info) { strcon_(&norm, &uplo, &diag, &n, a, &lda, &rcond, work, iwork, &info); } void trcon(char norm, char uplo, char diag, f_int n, f_double *a, f_int lda, f_double rcond, f_double *work, f_int *iwork, ref f_int info) { dtrcon_(&norm, &uplo, &diag, &n, a, &lda, &rcond, work, iwork, &info); } void trcon(char norm, char uplo, char diag, f_int n, f_cfloat *a, f_int lda, f_float rcond, f_cfloat *work, f_float *rwork, ref f_int info) { ctrcon_(&norm, &uplo, &diag, &n, a, &lda, &rcond, work, rwork, &info); } void trcon(char norm, char uplo, char diag, f_int n, f_cdouble *a, f_int lda, f_double rcond, f_cdouble *work, f_double *rwork, ref f_int info) { ztrcon_(&norm, &uplo, &diag, &n, a, &lda, &rcond, work, rwork, &info); } /// Computes some or all of the right and/or left eigenvectors of /// an upper quasi-triangular matrix. void trevc(char side, char howmny, f_int select, f_int n, f_float *t, f_int ldt, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_int mm, f_int m, f_float *work, ref f_int info) { strevc_(&side, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, &mm, &m, work, &info); } void trevc(char side, char howmny, f_int select, f_int n, f_double *t, f_int ldt, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_int mm, f_int m, f_double *work, ref f_int info) { dtrevc_(&side, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, &mm, &m, work, &info); } void trevc(char side, char howmny, f_int select, f_int n, f_cfloat *t, f_int ldt, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_int mm, f_int m, f_cfloat *work, f_float *rwork, ref f_int info) { ctrevc_(&side, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &info); } void trevc(char side, char howmny, f_int select, f_int n, f_cdouble *t, f_int ldt, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_int mm, f_int m, f_cdouble *work, f_double *rwork, ref f_int info) { ztrevc_(&side, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, &mm, &m, work, rwork, &info); } /// Reorders the Schur factorization of a matrix by an orthogonal /// similarity transformation. void trexc(char compq, f_int n, f_float *t, f_int ldt, f_float *q, f_int ldq, f_int ifst, f_int ilst, f_float *work, ref f_int info) { strexc_(&compq, &n, t, &ldt, q, &ldq, &ifst, &ilst, work, &info); } void trexc(char compq, f_int n, f_double *t, f_int ldt, f_double *q, f_int ldq, f_int ifst, f_int ilst, f_double *work, ref f_int info) { dtrexc_(&compq, &n, t, &ldt, q, &ldq, &ifst, &ilst, work, &info); } void trexc(char compq, f_int n, f_cfloat *t, f_int ldt, f_cfloat *q, f_int ldq, f_int ifst, f_int ilst, ref f_int info) { ctrexc_(&compq, &n, t, &ldt, q, &ldq, &ifst, &ilst, &info); } void trexc(char compq, f_int n, f_cdouble *t, f_int ldt, f_cdouble *q, f_int ldq, f_int ifst, f_int ilst, ref f_int info) { ztrexc_(&compq, &n, t, &ldt, q, &ldq, &ifst, &ilst, &info); } /// Provides forward and backward error bounds for the solution /// of a triangular system of linear equations A X=B, A**T X=B or /// A**H X=B. void trrfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *x, f_int ldx, f_float *ferr, f_float *berr, f_float *work, f_int *iwork, ref f_int info) { strrfs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void trrfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *x, f_int ldx, f_double *ferr, f_double *berr, f_double *work, f_int *iwork, ref f_int info) { dtrrfs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, x, &ldx, ferr, berr, work, iwork, &info); } void trrfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *x, f_int ldx, f_float *ferr, f_float *berr, f_cfloat *work, f_float *rwork, ref f_int info) { ctrrfs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } void trrfs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *x, f_int ldx, f_double *ferr, f_double *berr, f_cdouble *work, f_double *rwork, ref f_int info) { ztrrfs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, x, &ldx, ferr, berr, work, rwork, &info); } /// Reorders the Schur factorization of a matrix in order to find /// an orthonormal basis of a right invariant subspace corresponding /// to selected eigenvalues, and returns reciprocal condition numbers /// (sensitivities) of the average of the cluster of eigenvalues /// and of the invariant subspace. void trsen(char job, char compq, f_int select, f_int n, f_float *t, f_int ldt, f_float *q, f_int ldq, f_float *wr, f_float *wi, f_int m, f_float *s, f_float *sep, f_float *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { strsen_(&job, &compq, &select, &n, t, &ldt, q, &ldq, wr, wi, &m, s, sep, work, &lwork, iwork, &liwork, &info); } void trsen(char job, char compq, f_int select, f_int n, f_double *t, f_int ldt, f_double *q, f_int ldq, f_double *wr, f_double *wi, f_int m, f_double *s, f_double *sep, f_double *work, f_int lwork, f_int *iwork, f_int liwork, ref f_int info) { dtrsen_(&job, &compq, &select, &n, t, &ldt, q, &ldq, wr, wi, &m, s, sep, work, &lwork, iwork, &liwork, &info); } void trsen(char job, char compq, f_int select, f_int n, f_cfloat *t, f_int ldt, f_cfloat *q, f_int ldq, f_cfloat *w, f_int m, f_float *s, f_float *sep, f_cfloat *work, f_int lwork, ref f_int info) { ctrsen_(&job, &compq, &select, &n, t, &ldt, q, &ldq, w, &m, s, sep, work, &lwork, &info); } void trsen(char job, char compq, f_int select, f_int n, f_cdouble *t, f_int ldt, f_cdouble *q, f_int ldq, f_cdouble *w, f_int m, f_double *s, f_double *sep, f_cdouble *work, f_int lwork, ref f_int info) { ztrsen_(&job, &compq, &select, &n, t, &ldt, q, &ldq, w, &m, s, sep, work, &lwork, &info); } /// Estimates the reciprocal condition numbers (sensitivities) /// of selected eigenvalues and eigenvectors of an upper /// quasi-triangular matrix. void trsna(char job, char howmny, f_int select, f_int n, f_float *t, f_int ldt, f_float *vl, f_int ldvl, f_float *vr, f_int ldvr, f_float *s, f_float *sep, f_int mm, f_int m, f_float *work, f_int ldwork, f_int *iwork, ref f_int info) { strsna_(&job, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, s, sep, &mm, &m, work, &ldwork, iwork, &info); } void trsna(char job, char howmny, f_int select, f_int n, f_double *t, f_int ldt, f_double *vl, f_int ldvl, f_double *vr, f_int ldvr, f_double *s, f_double *sep, f_int mm, f_int m, f_double *work, f_int ldwork, f_int *iwork, ref f_int info) { dtrsna_(&job, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, s, sep, &mm, &m, work, &ldwork, iwork, &info); } void trsna(char job, char howmny, f_int select, f_int n, f_cfloat *t, f_int ldt, f_cfloat *vl, f_int ldvl, f_cfloat *vr, f_int ldvr, f_float *s, f_float *sep, f_int mm, f_int m, f_cfloat *work, f_int ldwork, f_float *rwork, ref f_int info) { ctrsna_(&job, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, s, sep, &mm, &m, work, &ldwork, rwork, &info); } void trsna(char job, char howmny, f_int select, f_int n, f_cdouble *t, f_int ldt, f_cdouble *vl, f_int ldvl, f_cdouble *vr, f_int ldvr, f_double *s, f_double *sep, f_int mm, f_int m, f_cdouble *work, f_int ldwork, f_double *rwork, ref f_int info) { ztrsna_(&job, &howmny, &select, &n, t, &ldt, vl, &ldvl, vr, &ldvr, s, sep, &mm, &m, work, &ldwork, rwork, &info); } /// Solves the Sylvester matrix equation A X +/- X B=C where A /// and B are upper quasi-triangular, and may be transposed. void trsyl(char trana, char tranb, f_int isgn, f_int m, f_int n, f_float *a, f_int lda, f_float *b, f_int ldb, f_float *c, f_int ldc, f_float *scale, ref f_int info) { strsyl_(&trana, &tranb, &isgn, &m, &n, a, &lda, b, &ldb, c, &ldc, scale, &info); } void trsyl(char trana, char tranb, f_int isgn, f_int m, f_int n, f_double *a, f_int lda, f_double *b, f_int ldb, f_double *c, f_int ldc, f_double *scale, ref f_int info) { dtrsyl_(&trana, &tranb, &isgn, &m, &n, a, &lda, b, &ldb, c, &ldc, scale, &info); } void trsyl(char trana, char tranb, f_int isgn, f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, f_cfloat *c, f_int ldc, f_float *scale, ref f_int info) { ctrsyl_(&trana, &tranb, &isgn, &m, &n, a, &lda, b, &ldb, c, &ldc, scale, &info); } void trsyl(char trana, char tranb, f_int isgn, f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, f_cdouble *c, f_int ldc, f_double *scale, ref f_int info) { ztrsyl_(&trana, &tranb, &isgn, &m, &n, a, &lda, b, &ldb, c, &ldc, scale, &info); } /// Computes the inverse of a triangular matrix. void trtri(char uplo, char diag, f_int n, f_float *a, f_int lda, ref f_int info) { strtri_(&uplo, &diag, &n, a, &lda, &info); } void trtri(char uplo, char diag, f_int n, f_double *a, f_int lda, ref f_int info) { dtrtri_(&uplo, &diag, &n, a, &lda, &info); } void trtri(char uplo, char diag, f_int n, f_cfloat *a, f_int lda, ref f_int info) { ctrtri_(&uplo, &diag, &n, a, &lda, &info); } void trtri(char uplo, char diag, f_int n, f_cdouble *a, f_int lda, ref f_int info) { ztrtri_(&uplo, &diag, &n, a, &lda, &info); } /// Solves a triangular system of linear equations AX=B, /// A**T X=B or A**H X=B. void trtrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_float *a, f_int lda, f_float *b, f_int ldb, ref f_int info) { strtrs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, &info); } void trtrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_double *a, f_int lda, f_double *b, f_int ldb, ref f_int info) { dtrtrs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, &info); } void trtrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cfloat *a, f_int lda, f_cfloat *b, f_int ldb, ref f_int info) { ctrtrs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, &info); } void trtrs(char uplo, char trans, char diag, f_int n, f_int nrhs, f_cdouble *a, f_int lda, f_cdouble *b, f_int ldb, ref f_int info) { ztrtrs_(&uplo, &trans, &diag, &n, &nrhs, a, &lda, b, &ldb, &info); } /// Computes an RQ factorization of an upper trapezoidal matrix. void tzrqf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, ref f_int info) { stzrqf_(&m, &n, a, &lda, tau, &info); } void tzrqf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, ref f_int info) { dtzrqf_(&m, &n, a, &lda, tau, &info); } void tzrqf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, ref f_int info) { ctzrqf_(&m, &n, a, &lda, tau, &info); } void tzrqf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, ref f_int info) { ztzrqf_(&m, &n, a, &lda, tau, &info); } /// Computes an RZ factorization of an upper trapezoidal matrix /// (blocked version of STZRQF). void tzrzf(f_int m, f_int n, f_float *a, f_int lda, f_float *tau, f_float *work, f_int lwork, ref f_int info) { stzrzf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void tzrzf(f_int m, f_int n, f_double *a, f_int lda, f_double *tau, f_double *work, f_int lwork, ref f_int info) { dtzrzf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void tzrzf(f_int m, f_int n, f_cfloat *a, f_int lda, f_cfloat *tau, f_cfloat *work, f_int lwork, ref f_int info) { ctzrzf_(&m, &n, a, &lda, tau, work, &lwork, &info); } void tzrzf(f_int m, f_int n, f_cdouble *a, f_int lda, f_cdouble *tau, f_cdouble *work, f_int lwork, ref f_int info) { ztzrzf_(&m, &n, a, &lda, tau, work, &lwork, &info); } /// Multiplies a general matrix by the unitary /// transformation matrix from a reduction to tridiagonal form /// determined by CHPTRD. void upmtr(char side, char uplo, char trans, f_int m, f_int n, f_cfloat *ap, f_cfloat *tau, f_cfloat *c, f_int ldc, f_cfloat *work, ref f_int info) { cupmtr_(&side, &uplo, &trans, &m, &n, ap, tau, c, &ldc, work, &info); } void upmtr(char side, char uplo, char trans, f_int m, f_int n, f_cdouble *ap, f_cdouble *tau, f_cdouble *c, f_int ldc, f_cdouble *work, ref f_int info) { zupmtr_(&side, &uplo, &trans, &m, &n, ap, tau, c, &ldc, work, &info); } //------------------------------------ // ----- MISC routines ----- //------------------------------------ f_int ilaenv(f_int ispec, char *name, char *opts, f_int n1, f_int n2, f_int n3, f_int n4, f_int len_name, f_int len_opts) { return ilaenv_(&ispec, name, opts, &n1, &n2, &n3, &n4, len_name, len_opts); } void ilaenvset(f_int ispec, char *name, char *opts, f_int n1, f_int n2, f_int n3, f_int n4, f_int nvalue, ref f_int info, f_int len_name, f_int len_opts) { // hmm this doesn't seem to exist in the lib in -g debug builds for some reason //ilaenvset_(&ispec, name, opts, &n1, &n2, &n3, &n4, &nvalue, &info, len_name, len_opts); } /// f_float slamch(char[]cmach) { return slamch_(cmach.ptr, cast(uint)cmach.length); } f_double dlamch(char[]cmach) { return dlamch_(cmach.ptr, cast(uint)cmach.length); } /+ // not available on mac... /// lapack_float_ret_t second() { return second_(); } f_double secnd() { return dsecnd_(); } +/
D
module source.swar.dec; /** * Check we have enough digits in front of us to use SWAR. */ bool startsWith8DecDigits(string s, ref ulong state) { import source.swar.util; auto v = read!ulong(s); // Set the high bit if the character isn't between '0' and '9'. auto lessThan0 = v - 0x3030303030303030; auto moreThan9 = v + 0x4646464646464646; // Combine auto c = lessThan0 | moreThan9; // Check that none of the high bits are set. state = c & 0x8080808080808080; return state == 0; } bool hasMoreDigits(ulong state) { return (state & 0x80) == 0; } uint getDigitCount(ulong state) in(state != 0 && (state & 0x8080808080808080) == state) { import core.bitop, util.math; return bsf(mulhi(state, 0x0204081020408100)); } unittest { static check(string s, uint count) { ulong state; if (startsWith8DecDigits(s, state)) { assert(count >= 8); } else { assert(hasMoreDigits(state) == (count > 0)); assert(getDigitCount(state) == count); } } check("", 0); static bool isDecChar(char c) { return '0' <= c && c <= '9'; } // Test all combinations of 2 characters. foreach (char c0; 0 .. 256) { immutable char[1] s0 = [c0]; auto isC0Dec = isDecChar(c0); check(s0[], isC0Dec); foreach (char c1; 0 .. 256) { immutable char[2] s1 = [c0, c1]; auto isC1Dec = isDecChar(c1); check(s1[], isC0Dec + (isC0Dec && isC1Dec)); static immutable char[] Chars = ['0', '9']; foreach (char c3; Chars) { foreach (char c4; Chars) { immutable char[4] s2 = [c0, c1, c3, c4]; check(s2[], isC0Dec + 3 * (isC0Dec && isC1Dec)); immutable char[4] s3 = [c4, c3, c1, c0]; check(s3[], 2 + isC1Dec + (isC0Dec && isC1Dec)); immutable char[8] s4 = [c0, c1, c0, c1, c0, c1, c3, c4]; check(s4[], isC0Dec + 7 * (isC0Dec && isC1Dec)); immutable char[8] s5 = [c4, c3, c3, c4, c3, c4, c1, c0]; check(s5[], 6 + isC1Dec + (isC0Dec && isC1Dec)); } } } } } /** * Parse decimal numbers using SWAR. * * http://0x80.pl/notesen/2014-10-12-parsing-decimal-numbers-part-1-swar.html * Archive: https://archive.ph/1xl45 * * https://lemire.me/blog/2022/01/21/swar-explained-parsing-eight-digits/ * Archive: https://archive.ph/of2xZ */ private auto loadBuffer(T)(string s) in(s.length >= T.sizeof) { import source.swar.util; auto v = unalignedLoad!T(s); /** * We could simply go for * return v & cast(T) 0x0f0f0f0f0f0f0f0f; * but this form is prefered as the computation is * already done in startsWith8DecDigits. */ return v - cast(T) 0x3030303030303030; } ubyte parseDecDigits(T : ubyte)(string s) in(s.length >= 2) { uint v = loadBuffer!ushort(s); v = (2561 * v) >> 8; return v & 0xff; } unittest { foreach (s, v; ["00": 0, "09": 9, "10": 10, "28": 28, "42": 42, "56": 56, "73": 73, "99": 99]) { ulong state; assert(!startsWith8DecDigits(s, state), s); assert(hasMoreDigits(state)); assert(getDigitCount(state) == 2, s); assert(parseDecDigits!ubyte(s) == v, s); } } ushort parseDecDigits(T : ushort)(string s) in(s.length >= 4) { // v = [a, b, c, d] auto v = loadBuffer!uint(s); // v = [ba, dc] v = (2561 * v) >> 8; v &= 0x00ff00ff; // dcba v *= 6553601; return v >> 16; } unittest { foreach (s, v; ["0000": 0, "0123": 123, "4567": 4567, "5040": 5040, "8901": 8901, "9999": 9999]) { ulong state; assert(!startsWith8DecDigits(s, state), s); assert(hasMoreDigits(state)); assert(getDigitCount(state) == 4, s); assert(parseDecDigits!ushort(s) == v, s); } } private uint reduceValue(ulong v) { // v = [ba, dc, fe, hg] v *= 2561; // a = [fe00ba, fe] auto a = (v >> 24) & 0x000000ff000000ff; a *= 0x0000271000000001; // b = [hg00dc00, hg00] auto b = (v >> 8) & 0x000000ff000000ff; b *= 0x000F424000000064; // hgfedcba return (a + b) >> 32; } uint parseDecDigits(T : uint)(string s) in(s.length >= 8) { auto v = loadBuffer!ulong(s); return reduceValue(v); } unittest { foreach (s, v; ["00000000": 0, "01234567": 1234567, "10000019": 10000019, "34567890": 34567890, "52350178": 52350178, "99999999": 99999999]) { ulong state; assert(startsWith8DecDigits(s, state), s); assert(parseDecDigits!uint(s) == v, s); } } uint parseDecDigits(string s, uint count) in(count < 8 && count > 0 && s.length >= count) { import source.swar.util; auto v = read!ulong(s); v <<= (64 - 8 * count); v &= 0x0f0f0f0f0f0f0f0f; return reduceValue(v); } unittest { foreach (s, v; ["0000a000": 0, "0123456!": 123456, "100000": 100000, "345678^!": 345678, "523501": 523501, "9999999": 9999999]) { ulong state; assert(!startsWith8DecDigits(s, state), s); assert(hasMoreDigits(state)); assert(parseDecDigits(s, getDigitCount(state)) == v, s); } }
D
/+ + Copyright (c) Charles Petzold, 1998. + Ported to the D Programming Language by Andrej Mitrovic, 2011. +/ module Checker1; import core.runtime; import core.thread; import std.conv; import std.math; import std.range; import std.string; import std.utf; auto toUTF16z(S)(S s) { return toUTFz!(const(wchar)*)(s); } pragma(lib, "gdi32.lib"); import win32.windef; import win32.winuser; import win32.wingdi; extern (Windows) int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow) { int result; void exceptionHandler(Throwable e) { throw e; } try { Runtime.initialize(&exceptionHandler); result = myWinMain(hInstance, hPrevInstance, lpCmdLine, iCmdShow); Runtime.terminate(&exceptionHandler); } catch (Throwable o) { MessageBox(null, o.toString().toUTF16z, "Error", MB_OK | MB_ICONEXCLAMATION); result = 0; } return result; } int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow) { string appName = "Checker1"; HWND hwnd; MSG msg; WNDCLASS wndclass; wndclass.style = CS_HREDRAW | CS_VREDRAW; wndclass.lpfnWndProc = &WndProc; wndclass.cbClsExtra = 0; wndclass.cbWndExtra = 0; wndclass.hInstance = hInstance; wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); wndclass.hbrBackground = cast(HBRUSH) GetStockObject(WHITE_BRUSH); wndclass.lpszMenuName = NULL; wndclass.lpszClassName = appName.toUTF16z; if (!RegisterClass(&wndclass)) { MessageBox(NULL, "This program requires Windows NT!", appName.toUTF16z, MB_ICONERROR); return 0; } hwnd = CreateWindow(appName.toUTF16z, // window class name "Checker1 Mouse Hit-Test Demo", // window caption WS_OVERLAPPEDWINDOW, // window style CW_USEDEFAULT, // initial x position CW_USEDEFAULT, // initial y position CW_USEDEFAULT, // initial x size CW_USEDEFAULT, // initial y size NULL, // parent window handle NULL, // window menu handle hInstance, // program instance handle NULL); // creation parameters ShowWindow(hwnd, iCmdShow); UpdateWindow(hwnd); while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); DispatchMessage(&msg); } return msg.wParam; } extern (Windows) LRESULT WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { enum DIVISIONS = 5; static BOOL[DIVISIONS][DIVISIONS] fState; static int cxBlock, cyBlock; HDC hdc; int x, y; // id of selected block (mouse pixel index / block width) PAINTSTRUCT ps; RECT rect; switch (message) { case WM_SIZE: cxBlock = LOWORD(lParam) / DIVISIONS; cyBlock = HIWORD(lParam) / DIVISIONS; return 0; case WM_LBUTTONDOWN: x = LOWORD(lParam) / cxBlock; y = HIWORD(lParam) / cyBlock; if (x < DIVISIONS && y < DIVISIONS) { fState[x][y] ^= 1; rect.left = x * cxBlock; rect.top = y * cyBlock; rect.right = (x + 1) * cxBlock; rect.bottom = (y + 1) * cyBlock; InvalidateRect(hwnd, &rect, FALSE); } else MessageBeep(0); return 0; case WM_PAINT: hdc = BeginPaint(hwnd, &ps); for (x = 0; x < DIVISIONS; x++) { for (y = 0; y < DIVISIONS; y++) { Rectangle(hdc, x * cxBlock, y * cyBlock, (x + 1) * cxBlock, (y + 1) * cyBlock); if (fState[x][y]) { // Draw '\' MoveToEx(hdc, x * cxBlock, y * cyBlock, NULL); LineTo(hdc, (x + 1) * cxBlock, (y + 1) * cyBlock); // Draw '/' MoveToEx(hdc, x * cxBlock, (y + 1) * cyBlock, NULL); LineTo(hdc, (x + 1) * cxBlock, y * cyBlock); } } } EndPaint(hwnd, &ps); return 0; case WM_DESTROY: PostQuitMessage(0); return 0; default: } return DefWindowProc(hwnd, message, wParam, lParam); }
D
a person who slips or slides because of loss of traction someone who races the luge freshwater turtle of United States and South America a fastball that curves slightly away from the side from which it was thrown
D
// Written in the D programming language. /** * Convert Win32 error code to string. * * Copyright: Copyright Digital Mars 2006 - 2013. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: $(WEB digitalmars.com, Walter Bright) * Credits: Based on code written by Regan Heath * * Copyright Digital Mars 2006 - 2013. * 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 std.windows.syserror; import std.traits : isSomeString; version (StdDdoc) { private { alias DWORD = uint; enum LANG_NEUTRAL = 0, SUBLANG_DEFAULT = 1; } /// Query the text for a Windows error code (as returned by $(LINK2 /// http://msdn.microsoft.com/en-us/library/windows/desktop/ms679360.aspx, /// $(D GetLastError))) as a D string. string sysErrorString( DWORD errCode, // MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT) is the user's default language int langId = LANG_NEUTRAL, int subLangId = SUBLANG_DEFAULT) @trusted; /********************* * Thrown if errors that set $(LINK2 * http://msdn.microsoft.com/en-us/library/windows/desktop/ms679360.aspx, * $(D GetLastError)) occur. */ class WindowsException : Exception { private alias DWORD = int; final @property DWORD code(); /// $(D GetLastError)'s return value. @disable this(int dummy); } /++ If $(D !!value) is true, $(D value) is returned. Otherwise, $(D new WindowsException(GetLastError(), msg)) is thrown. $(D WindowsException) assumes that the last operation set $(D GetLastError()) appropriately. Example: -------------------- wenforce(DeleteFileA("junk.tmp"), "DeleteFile failed"); -------------------- +/ T wenforce(T, S)(T value, lazy S msg = null, string file = __FILE__, size_t line = __LINE__) if (isSomeString!S); } else: version (Windows): import std.windows.charset; import std.array : appender; import std.conv : to; import std.format : formattedWrite; import core.sys.windows.windows; string sysErrorString( DWORD errCode, // MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT) is the user's default language int langId = LANG_NEUTRAL, int subLangId = SUBLANG_DEFAULT) @trusted { auto buf = appender!string(); if (!putSysError(errCode, buf, MAKELANGID(langId, subLangId))) { throw new Exception( "failed getting error string for WinAPI error code: " ~ sysErrorString(GetLastError())); } return buf.data; } bool putSysError(Writer)(DWORD code, Writer w, /*WORD*/int langId = 0) { wchar *lpMsgBuf = null; auto res = FormatMessageW( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, null, code, langId, cast(LPWSTR)&lpMsgBuf, 0, null); scope(exit) if (lpMsgBuf) LocalFree(lpMsgBuf); if (lpMsgBuf) { import std.string : strip; w.put(lpMsgBuf[0..res].strip()); return true; } else return false; } class WindowsException : Exception { import core.sys.windows.windows; final @property DWORD code() { return _code; } /// $(D GetLastError)'s return value. private DWORD _code; this(DWORD code, string str=null, string file = null, size_t line = 0) @trusted { _code = code; auto buf = appender!string(); if (str) { buf.put(str); buf.put(": "); } auto success = putSysError(code, buf); formattedWrite(buf, success ? " (error %d)" : "Error %d", code); super(buf.data, file, line); } } T wenforce(T, S)(T value, lazy S msg = null, string file = __FILE__, size_t line = __LINE__) if (isSomeString!S) { if (!value) throw new WindowsException(GetLastError(), to!string(msg), file, line); return value; } version(Windows) unittest { import std.exception; import std.string; auto e = collectException!WindowsException( DeleteFileA("unexisting.txt").wenforce("DeleteFile") ); assert(e.code == ERROR_FILE_NOT_FOUND); assert(e.msg.startsWith("DeleteFile: ")); // can't test the entire message, as it depends on Windows locale assert(e.msg.endsWith(" (error 2)")); }
D
module misc.stringTools; //fuck that module name is annoying string chomp(string str) //if only I knew where this was in std package { ubyte[] strBs = cast(ubyte[])str; strBs.length--; return cast(string)strBs; }
D
// Copyright 2018 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS-IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // Converted to D: madric@gmail.com (Vijay Nayar) module s2.s2text_format_test; import s2.s2text_format; import s2.mutable_s2shape_index; import s2.s1angle; import s2.s2latlng; import s2.s2lax_polygon_shape; import s2.s2lax_polyline_shape; import s2.s2loop; //import s2.s2polygon; import s2.s2latlng_rect; import s2.s2point; import s2.s2polyline; import s2.s2testing; import std.algorithm : find; import std.array : split; import std.math : pow, lround; import std.range : empty, back; import fluent.asserts; private enum int kIters = 10000; // Verify that s2textformat::ToString() formats the given lat/lng with at most // "max_digits" after the decimal point and has no trailing zeros. void expectMaxDigits(in S2LatLng ll, int max_digits) { string result = toString(ll.toS2Point()); string[] values = result.split(':'); Assert.equal(values.length, 2, result); foreach (value; values) { size_t num_digits = 0; if (!value.find('.').empty) { num_digits = value.find('.').length - 1; Assert.notEqual(value.back(), '0'); } Assert.notGreaterThan(num_digits, max_digits, value); } } void expectString(string expected, in S2LatLng ll) { Assert.equal(expected, toString(ll.toS2Point())); } @("ToString.SpecialCases") unittest { expectString("0:0", S2LatLng.fromDegrees(0, 0)); expectString("1e-20:1e-30", S2LatLng.fromDegrees(1e-20, 1e-30)); } @("ToString.MinimalDigitsE5") unittest { S2Testing.rnd.reset(1); for (int iter = 0; iter < kIters; ++iter) { auto ll = S2LatLng(S2Testing.randomPoint()); auto ll_e5 = S2LatLng.fromE5(ll.lat().e5(), ll.lng().e5()); expectMaxDigits(ll_e5, 5); } } @("ToString.MinimalDigitsE6") unittest { for (int iter = 0; iter < kIters; ++iter) { auto ll = S2LatLng(S2Testing.randomPoint()); auto ll_e6 = S2LatLng.fromE6(ll.lat().e6(), ll.lng().e6()); expectMaxDigits(ll_e6, 6); } } @("ToString.MinimalDigitsE7") unittest { expectMaxDigits(S2LatLng.fromDegrees(0, 0), 7); for (int iter = 0; iter < kIters; ++iter) { auto ll = S2LatLng(S2Testing.randomPoint()); auto ll_e7 = S2LatLng.fromE7(ll.lat().e7(), ll.lng().e7()); expectMaxDigits(ll_e7, 7); } } @("ToString.MinimalDigitsDoubleConstants") unittest { // Verify that points specified as floating-point literals in degrees using // up to 10 digits after the decimal point are formatted with the minimal // number of digits. for (int iter = 0; iter < kIters; ++iter) { int max_digits = S2Testing.rnd.uniform(11); long scale = lround(pow(10.0, max_digits)); long lat = lround(S2Testing.rnd.uniformDouble(-90 * scale, 90 * scale)); long lng = lround(S2Testing.rnd.uniformDouble(-180 * scale, 180 * scale)); S2LatLng ll = S2LatLng.fromDegrees(lat / cast(double) scale, lng / cast(double) scale); expectMaxDigits(ll, max_digits); } } @("ToString.UninitializedLoop") unittest { auto loop = new S2Loop(); Assert.equal(toString(loop), ""); } @("ToString.EmptyLoop") unittest { auto empty = new S2Loop(S2Loop.empty()); Assert.equal("empty", toString(empty)); } @("ToString.FullLoop") unittest { auto full = new S2Loop(S2Loop.full()); Assert.equal("full", toString(full)); } @("ToString.EmptyPolyline") unittest { auto polyline = new S2Polyline(); Assert.equal(toString(polyline), ""); } @("ToString.EmptyPointVector") unittest { S2Point[] points; Assert.equal(toString(points), ""); } // @("ToString.EmptyPolygon") unittest { // S2Polygon empty; // Assert.equal(toString(empty), "empty"); // } // TEST(ToString, FullPolygon) { // S2Polygon full(absl::make_unique<S2Loop>(S2Loop::kFull())); // EXPECT_EQ("full", s2textformat::ToString(full)); // } @("MakeLaxPolygon.Empty") unittest { // Verify that "" and "empty" both create empty polygons. auto shape = makeLaxPolygonOrDie(""); Assert.equal(shape.numLoops(), 0); shape = makeLaxPolygonOrDie("empty"); Assert.equal(0, shape.numLoops()); } @("MakeLaxPolygon.Full") unittest { auto shape = makeLaxPolygonOrDie("full"); Assert.equal(shape.numLoops(), 1); Assert.equal(shape.numLoopVertices(0), 0); } @("MakeLaxPolygon.FullWithHole") unittest { auto shape = makeLaxPolygonOrDie("full; 0:0"); Assert.equal(shape.numLoops(), 2); Assert.equal(shape.numLoopVertices(0), 0); Assert.equal(shape.numLoopVertices(1), 1); Assert.equal(shape.numEdges(), 1); } void checkS2ShapeIndex(in string str) { Assert.equal(toString(makeIndexOrDie(str)), str); } @("ToString.S2ShapeIndex") unittest { checkS2ShapeIndex("# #"); checkS2ShapeIndex("0:0 # #"); checkS2ShapeIndex("0:0 | 1:0 # #"); checkS2ShapeIndex("0:0 | 1:0 # #"); checkS2ShapeIndex("# 0:0, 0:0 #"); checkS2ShapeIndex("# 0:0, 0:0 | 1:0, 2:0 #"); checkS2ShapeIndex("# # 0:0"); checkS2ShapeIndex("# # 0:0, 0:1"); checkS2ShapeIndex("# # 0:0, 0:1, 1:0"); checkS2ShapeIndex("# # 0:0, 0:1, 1:0; 2:2"); } @("MakePoint.ValidInput") unittest { S2Point point; Assert.equal(makePoint("-20:150", point), true); Assert.equal(S2LatLng.fromDegrees(-20, 150).toS2Point(), point); } @("MakePoint.InvalidInput") unittest { S2Point point; Assert.equal(makePoint("blah", point), false); } @("SafeParseLatLngs.ValidInput") unittest { S2LatLng[] latlngs; Assert.equal(parseLatLngs("-20:150, -20:151, -19:150", latlngs), true); Assert.equal(latlngs.length, 3); Assert.equal(S2LatLng.fromDegrees(-20, 150), latlngs[0]); Assert.equal(S2LatLng.fromDegrees(-20, 151), latlngs[1]); Assert.equal(S2LatLng.fromDegrees(-19, 150), latlngs[2]); } @("SafeParseLatLngs.InvalidInput") unittest { S2LatLng[] latlngs; Assert.equal(parseLatLngs("blah", latlngs), false); } @("SafeParsePoints.ValidInput") unittest { S2Point[] vertices; Assert.equal(parsePoints("-20:150, -20:151, -19:150", vertices), true); Assert.equal(vertices.length, 3); Assert.equal(S2LatLng.fromDegrees(-20, 150).toS2Point(), vertices[0]); Assert.equal(S2LatLng.fromDegrees(-20, 151).toS2Point(), vertices[1]); Assert.equal(S2LatLng.fromDegrees(-19, 150).toS2Point(), vertices[2]); } @("SafeParsePoints.InvalidInput") unittest { S2Point[] vertices; Assert.equal(parsePoints("blah", vertices), false); } @("SafeMakeLatLngRect.ValidInput") unittest { S2LatLngRect rect; Assert.equal(makeLatLngRect("-10:-10, 10:10", rect), true); Assert.equal(new S2LatLngRect(S2LatLng.fromDegrees(-10, -10), S2LatLng.fromDegrees(10, 10)), rect); } @("SafeMakeLatLngRect.InvalidInput") unittest { S2LatLngRect rect; Assert.equal(makeLatLngRect("blah", rect), false); } @("SafeMakeLatLng.ValidInput") unittest { S2LatLng latlng; Assert.equal(makeLatLng("-12.3:45.6", latlng), true); Assert.equal(S2LatLng.fromDegrees(-12.3, 45.6), latlng); } @("SafeMakeLatLng.InvalidInput") unittest { S2LatLng latlng; Assert.equal(makeLatLng("blah", latlng), false); } // @("SafeMakeLoop.ValidInput") unittest { // std::unique_ptr<S2Loop> loop; // EXPECT_TRUE(s2textformat::MakeLoop("-20:150, -20:151, -19:150", &loop)); // EXPECT_TRUE(loop->BoundaryApproxEquals( // S2Loop({S2LatLng::FromDegrees(-20, 150).ToPoint(), // S2LatLng::FromDegrees(-20, 151).ToPoint(), // S2LatLng::FromDegrees(-19, 150).ToPoint()}))); // } // TEST(SafeMakeLoop, InvalidInput) { // std::unique_ptr<S2Loop> loop; // EXPECT_FALSE(s2textformat::MakeLoop("blah", &loop)); // } @("SafeMakePolyline.ValidInput") unittest { S2Polyline polyline; Assert.equal( makePolyline("-20:150, -20:151, -19:150", polyline), true); auto expected = new S2Polyline([ S2LatLng.fromDegrees(-20, 150).toS2Point(), S2LatLng.fromDegrees(-20, 151).toS2Point(), S2LatLng.fromDegrees(-19, 150).toS2Point()]); Assert.equal(polyline, expected); } @("SafeMakePolyline.InvalidInput") unittest { S2Polyline polyline; Assert.equal(makePolyline("blah", polyline), false); } @("SafeMakeLaxPolyline.ValidInput") unittest { S2LaxPolylineShape lax_polyline; Assert.equal(makeLaxPolyline("-20:150, -20:151, -19:150", lax_polyline), true); // No easy equality check for LaxPolylines; check vertices instead. Assert.equal(lax_polyline.numVertices(), 3); Assert.equal( S2LatLng(lax_polyline.vertex(0)).approxEquals(S2LatLng.fromDegrees(-20, 150)), true); Assert.equal( S2LatLng(lax_polyline.vertex(1)).approxEquals(S2LatLng.fromDegrees(-20, 151)), true); Assert.equal( S2LatLng(lax_polyline.vertex(2)).approxEquals(S2LatLng.fromDegrees(-19, 150)), true); } @("SafeMakeLaxPolyline.InvalidInput") unittest { S2LaxPolylineShape lax_polyline; Assert.equal(makeLaxPolyline("blah", lax_polyline), false); } // @("SafeMakePolygon.ValidInput") unittest { // S2Polygon polygon; // Assert.equal(makePolygon("-20:150, -20:151, -19:150", polygon), true); // S2Point[] vertices = [ // S2LatLng.fromDegrees(-20, 150).toS2Point(), // S2LatLng.fromDegrees(-20, 151).toS2Point(), // S2LatLng.fromDegrees(-19, 150).toS2Point()]; // S2Polygon expected(absl::make_unique<S2Loop>(vertices)); // EXPECT_TRUE(polygon->Equals(&expected)); // } // TEST(SafeMakePolygon, InvalidInput) { // std::unique_ptr<S2Polygon> polygon; // EXPECT_FALSE(s2textformat::MakePolygon("blah", &polygon)); // } // TEST(SafeMakePolygon, Empty) { // // Verify that "" and "empty" both create empty polygons. // std::unique_ptr<S2Polygon> polygon; // EXPECT_TRUE(s2textformat::MakePolygon("", &polygon)); // EXPECT_TRUE(polygon->is_empty()); // EXPECT_TRUE(s2textformat::MakePolygon("empty", &polygon)); // EXPECT_TRUE(polygon->is_empty()); // } // TEST(SafeMakePolygon, Full) { // // Verify that "full" creates the full polygon. // std::unique_ptr<S2Polygon> polygon; // EXPECT_TRUE(s2textformat::MakePolygon("full", &polygon)); // EXPECT_TRUE(polygon->is_full()); // } // TEST(SafeMakeVerbatimPolygon, ValidInput) { // std::unique_ptr<S2Polygon> polygon; // EXPECT_TRUE( // s2textformat::MakeVerbatimPolygon("-20:150, -20:151, -19:150", &polygon)); // std::vector<S2Point> vertices({S2LatLng::FromDegrees(-20, 150).ToPoint(), // S2LatLng::FromDegrees(-20, 151).ToPoint(), // S2LatLng::FromDegrees(-19, 150).ToPoint()}); // S2Polygon expected(absl::make_unique<S2Loop>(vertices)); // EXPECT_TRUE(polygon->Equals(&expected)); // } // TEST(SafeMakeVerbatimPolygon, InvalidInput) { // std::unique_ptr<S2Polygon> polygon; // EXPECT_FALSE(s2textformat::MakeVerbatimPolygon("blah", &polygon)); // } @("SafeMakeLaxPolygon.ValidInput") unittest { S2LaxPolygonShape lax_polygon; Assert.equal(makeLaxPolygon("-20:150, -20:151, -19:150", lax_polygon), true); // No easy equality check for LaxPolygons; check vertices instead. Assert.equal(lax_polygon.numLoops(), 1); Assert.equal(lax_polygon.numVertices(), 3); Assert.equal( S2LatLng(lax_polygon.loopVertex(0, 0)).approxEquals(S2LatLng.fromDegrees(-20, 150)), true); Assert.equal( S2LatLng(lax_polygon.loopVertex(0, 1)).approxEquals(S2LatLng.fromDegrees(-20, 151)), true); Assert.equal( S2LatLng(lax_polygon.loopVertex(0, 2)).approxEquals(S2LatLng.fromDegrees(-19, 150)), true); } @("SafeMakeLaxPolygon.InvalidInput") unittest { S2LaxPolygonShape lax_polygon; Assert.equal(makeLaxPolygon("blah", lax_polygon), false); } @("SafeMakeIndex.ValidInput") unittest { auto index = new MutableS2ShapeIndex(); Assert.equal(makeIndex("# 0:0, 0:0 | 1:0, 2:0 #", index), true); Assert.equal("# 0:0, 0:0 | 1:0, 2:0 #", toString(index)); } @("SafeMakeIndex.InvalidInput") unittest { auto index = new MutableS2ShapeIndex(); Assert.equal(makeIndex("# blah #", index), false); }
D
module logdefer.common; import std.array : Appender, front; import std.string : format; import logdefer.timer : Timer; import logdefer.time.duration : Nanos; import unixtime : UnixTimeHiRes; alias Verbosity = immutable int; alias Metadata = string[string]; // Define the basic log levels enum LogLevel { Error = 10, Warn = 20, Info = 30, Trace = 40 }; // Represents a log entry @safe struct LogEntry { immutable Nanos endOffset; // duration from start immutable Verbosity verbosity; // log level immutable string msg; // log message string toString() const { return "%s, %s, %s".format(endOffset, verbosity, msg); } } // Represents the event that the logs entries pertain to @safe struct EventContext { UnixTimeHiRes realStartTime; // Time when event first started UnixTimeHiRes monotonicStartTime; // Time when event first started in monotonic clock Nanos endOffset; // Monotonic duration of the event Metadata metadata; // Associated metadata with the event Appender!(LogEntry[]) logs; // log entries Appender!(Timer[]) timers; // user timers this(immutable EventContext other) immutable { realStartTime = other.realStartTime; monotonicStartTime = other.monotonicStartTime; endOffset = other.endOffset; metadata = other.metadata; logs = other.logs; timers = other.timers; } this(shared EventContext other) shared { realStartTime = other.realStartTime; monotonicStartTime = other.monotonicStartTime; endOffset = other.endOffset; metadata = other.metadata; logs = other.logs; timers = other.timers; } string toString() const { return "%s, %s, %s, %(%s, %), ".format( realStartTime, endOffset, metadata, logs.data ); } } @safe alias DelegateWriter = void delegate(string msg); // By default use system clock @safe static const DefaultTimeProvider = () { return UnixTimeHiRes.now(); };
D
module UnrealScript.TribesGame.TrVehicleWeapon_HERCPilot; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.TrVehicleWeapon; extern(C++) interface TrVehicleWeapon_HERCPilot : TrVehicleWeapon { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static ScriptClass StaticClass() { mixin(MGSCC("Class TribesGame.TrVehicleWeapon_HERCPilot")); } private static __gshared TrVehicleWeapon_HERCPilot mDefaultProperties; @property final static TrVehicleWeapon_HERCPilot DefaultProperties() { mixin(MGDPC("TrVehicleWeapon_HERCPilot", "TrVehicleWeapon_HERCPilot TribesGame.Default__TrVehicleWeapon_HERCPilot")); } }
D
/** $(SCRIPT inhibitQuickIndex = 1;) This is a submodule of $(LINK2 std_experimental_ndslice.html, std.experimental.ndslice). Selectors create new views and iteration patterns over the same data, without copying. $(H2 Subspace selectors) Subspace selectors serve to generalize and combine other selectors easily. For a slice of `Slice!(N, Range)` type `slice.pack!K` creates a slice of slices of `Slice!(N-K, Slice!(K+1, Range))` type by packing the last `K` dimensions of the top dimension pack, and the type of element of `slice.byElement` is `Slice!(K, Range)`. Another way to use $(LREF pack) is transposition of dimension packs using $(LREF evertPack). Examples of use of subspace selectors are available for selectors, $(SUBREF slice, Slice.shape), and $(SUBREF slice, Slice.elementsCount). $(BOOKTABLE , $(TR $(TH Function Name) $(TH Description)) $(T2 pack , returns slice of slices) $(T2 unpack , merges all dimension packs) $(T2 evertPack, reverses dimension packs) ) $(BOOKTABLE $(H2 Selectors), $(TR $(TH Function Name) $(TH Description)) $(T2 byElement, flat, random access range of all elements with `index` property) $(T2 byElementInStandardSimplex, an input range of all elements in standard simplex of hypercube with `index` property. If the slice has two dimensions, it is a range of all elements of upper left triangular matrix.) $(T2 indexSlice, lazy slice with initial multidimensional index) $(T2 iotaSlice, lazy slice with initial flattened (continuous) index) $(T2 reshape, new slice with changed dimensions for the same data) $(T2 diagonal, 1-dimensional slice composed of diagonal elements) $(T2 blocks, n-dimensional slice composed of n-dimensional non-overlapping blocks. If the slice has two dimensions, it is a block matrix.) $(T2 windows, n-dimensional slice of n-dimensional overlapping windows. If the slice has two dimensions, it is a sliding window.) ) License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Ilya Yaroshenko Source: $(PHOBOSSRC std/_experimental/_ndslice/_selection.d) Macros: SUBMODULE = $(LINK2 std_experimental_ndslice_$1.html, std.experimental.ndslice.$1) SUBREF = $(LINK2 std_experimental_ndslice_$1.html#.$2, $(TT $2))$(NBSP) T2=$(TR $(TDNW $(LREF $1)) $(TD $+)) T4=$(TR $(TDNW $(LREF $1)) $(TD $2) $(TD $3) $(TD $4)) */ module std.experimental.ndslice.selection; import std.traits; import std.meta; //: allSatisfy; import std.experimental.ndslice.internal; import std.experimental.ndslice.slice; //: Slice; /++ Creates a packed slice, i.e. slice of slices. The function does not carry out any calculations, it simply returns the same binary data presented differently. Params: K = sizes of dimension packs Returns: `pack!K` returns `Slice!(N-K, Slice!(K+1, Range))`; `slice.pack!(K1, K2, ..., Kn)` is the same as `slice.pack!K1.pack!K2. ... pack!Kn`. +/ template pack(K...) { auto pack(size_t N, Range)(auto ref Slice!(N, Range) slice) { template Template(size_t NInner, Range, R...) { static if (R.length > 0) { static if (NInner > R[0]) alias Template = Template!(NInner - R[0], Slice!(R[0] + 1, Range), R[1 .. $]); else static assert(0, "Sum of all lengths of packs " ~ K.stringof ~ " should be less than N = "~ N.stringof ~ tailErrorMessage!()); } else { alias Template = Slice!(NInner, Range); } } with (slice) return Template!(N, Range, K)(_lengths, _strides, _ptr); } } /// @safe @nogc pure nothrow unittest { import std.experimental.ndslice.slice; import std.range.primitives: ElementType; import std.range: iota; auto r = (3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11).iota; auto a = r.sliced(3, 4, 5, 6, 7, 8, 9, 10, 11); auto b = a.pack!(2, 3); // same as `a.pack!2.pack!3` auto c = b[1, 2, 3, 4]; auto d = c[5, 6, 7]; auto e = d[8, 9]; auto g = a[1, 2, 3, 4, 5, 6, 7, 8, 9]; assert(e == g); assert(a == b); assert(c == a[1, 2, 3, 4]); alias R = typeof(r); static assert(is(typeof(b) == typeof(a.pack!2.pack!3))); static assert(is(typeof(b) == Slice!(4, Slice!(4, Slice!(3, R))))); static assert(is(typeof(c) == Slice!(3, Slice!(3, R)))); static assert(is(typeof(d) == Slice!(2, R))); static assert(is(typeof(e) == ElementType!R)); } @safe @nogc pure nothrow unittest { auto a = iotaSlice(3, 4, 5, 6, 7, 8, 9, 10, 11); auto b = a.pack!(2, 3); static assert(b.shape.length == 4); static assert(b.structure.lengths.length == 4); static assert(b.structure.strides.length == 4); static assert(b .byElement.front .shape.length == 3); static assert(b .byElement.front .byElement.front .shape.length == 2); // test save b.byElement.save.popFront; static assert(b .byElement.front .shape.length == 3); } /++ Unpacks a packed slice. The function does not carry out any calculations, it simply returns the same binary data presented differently. Params: slice = packed slice Returns: unpacked slice See_also: $(LREF pack), $(LREF evertPack) +/ Slice!(N, Range).PureThis unpack(size_t N, Range)(auto ref Slice!(N, Range) slice) { with (slice) return PureThis(_lengths, _strides, _ptr); } /// pure nothrow unittest { auto a = iotaSlice(3, 4, 5, 6, 7, 8, 9, 10, 11); auto b = a.pack!(2, 3).unpack(); static assert(is(typeof(a) == typeof(b))); assert(a == b); } /++ Reverses the order of dimension packs. This function is used in a functional pipeline with other selectors. Params: slice = packed slice Returns: packed slice See_also: $(LREF pack), $(LREF unpack) +/ SliceFromSeq!(Slice!(N, Range).PureRange, NSeqEvert!(Slice!(N, Range).NSeq)) evertPack(size_t N, Range)(auto ref Slice!(N, Range) slice) { mixin _DefineRet; static assert(Ret.NSeq.length > 0); with (slice) { alias C = Snowball!(Parts!NSeq); alias D = Reverse!(Snowball!(Reverse!(Parts!NSeq))); foreach (i, _; NSeq) { foreach (j; Iota!(0, C[i + 1] - C[i])) { ret._lengths[j + D[i + 1]] = _lengths[j + C[i]]; ret._strides[j + D[i + 1]] = _strides[j + C[i]]; } } ret._ptr = _ptr; return ret; } } /// @safe @nogc pure nothrow unittest { import std.experimental.ndslice.iteration: transposed; auto slice = iotaSlice(3, 4, 5, 6, 7, 8, 9, 10, 11); assert(slice .pack!2 .evertPack .unpack == slice.transposed!( slice.shape.length-2, slice.shape.length-1)); } /// pure nothrow unittest { import std.experimental.ndslice.slice; import std.experimental.ndslice.iteration: transposed; import std.range.primitives: ElementType; import std.range: iota; import std.algorithm.comparison: equal; auto r = (3 * 4 * 5 * 6 * 7 * 8 * 9 * 10 * 11).iota; auto a = r.sliced(3, 4, 5, 6, 7, 8, 9, 10, 11); auto b = a .pack!(2, 3) .evertPack; auto c = b[8, 9]; auto d = c[5, 6, 7]; auto e = d[1, 2, 3, 4]; auto g = a[1, 2, 3, 4, 5, 6, 7, 8, 9]; assert(e == g); assert(a == b.evertPack); assert(c == a.transposed!(7, 8, 4, 5, 6)[8, 9]); alias R = typeof(r); static assert(is(typeof(b) == Slice!(2, Slice!(4, Slice!(5, R))))); static assert(is(typeof(c) == Slice!(3, Slice!(5, R)))); static assert(is(typeof(d) == Slice!(4, R))); static assert(is(typeof(e) == ElementType!R)); } @safe @nogc pure nothrow unittest { import std.experimental.ndslice.slice; static assert(is(typeof(slice!int(20) .evertPack) == Slice!(1LU, int*))); static assert(is(typeof(slice!int(20) .sliced(3) .evertPack) == Slice!(2LU, int*))); static assert(is(typeof(slice!int(20) .sliced(1,2,3) .sliced(3) .evertPack) == Slice!(3LU, Slice!(2LU, int*)))); static assert(is(typeof(slice!int(20) .sliced(1,2,3) .evertPack) == Slice!(4LU, int*))); } /++ Returns a 1-dimensional slice over the main diagonal of an n-dimensional slice. `diagonal` can be generalized with other selectors such as $(LREF blocks) (diagonal blocks) and $(LREF windows) (multi-diagonal slice). Params: N = dimension count slice = input slice Returns: 1-dimensional slice composed of diagonal elements +/ Slice!(1, Range) diagonal(size_t N, Range)(auto ref Slice!(N, Range) slice) { auto NewN = slice.PureN - N + 1; mixin _DefineRet; ret._lengths[0] = slice._lengths[0]; ret._strides[0] = slice._strides[0]; foreach (i; Iota!(1, N)) { if (ret._lengths[0] > slice._lengths[i]) ret._lengths[0] = slice._lengths[i]; ret._strides[0] += slice._strides[i]; } foreach (i; Iota!(1, ret.PureN)) { ret._lengths[i] = slice._lengths[i + N - 1]; ret._strides[i] = slice._strides[i + N - 1]; } ret._ptr = slice._ptr; return ret; } /// Matrix, main diagonal @safe @nogc pure nothrow unittest { // ------- // | 0 1 2 | // | 3 4 5 | // ------- //-> // | 0 4 | static immutable d = [0, 4]; assert(iotaSlice(2, 3).diagonal == d); } /// Non-square matrix @safe @nogc pure nothrow unittest { import std.algorithm.comparison: equal; import std.range: only; // ------- // | 0 1 | // | 2 3 | // | 4 5 | // ------- //-> // | 0 3 | assert(iotaSlice(3, 2) .diagonal .equal(only(0, 3))); } /// Loop through diagonal pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(3, 3); int i; foreach (ref e; slice.diagonal) e = ++i; assert(slice == [ [1, 0, 0], [0, 2, 0], [0, 0, 3]]); } /// Matrix, subdiagonal @safe @nogc pure nothrow unittest { import std.experimental.ndslice.iteration: dropOne; // ------- // | 0 1 2 | // | 3 4 5 | // ------- //-> // | 1 5 | static immutable d = [1, 5]; assert(iotaSlice(2, 3).dropOne!1.diagonal == d); } /// Matrix, antidiagonal @safe @nogc pure nothrow unittest { import std.experimental.ndslice.iteration: dropToHypercube, reversed; // ------- // | 0 1 2 | // | 3 4 5 | // ------- //-> // | 1 3 | static immutable d = [1, 3]; assert(iotaSlice(2, 3).dropToHypercube.reversed!1.diagonal == d); } /// 3D, main diagonal @safe @nogc pure nothrow unittest { // ----------- // | 0 1 2 | // | 3 4 5 | // - - - - - - // | 6 7 8 | // | 9 10 11 | // ----------- //-> // | 0 10 | static immutable d = [0, 10]; assert(iotaSlice(2, 2, 3).diagonal == d); } /// 3D, subdiagonal @safe @nogc pure nothrow unittest { import std.experimental.ndslice.iteration: dropOne; // ----------- // | 0 1 2 | // | 3 4 5 | // - - - - - - // | 6 7 8 | // | 9 10 11 | // ----------- //-> // | 1 11 | static immutable d = [1, 11]; assert(iotaSlice(2, 2, 3).dropOne!2.diagonal == d); } /// 3D, diagonal plain @nogc @safe pure nothrow unittest { import std.experimental.ndslice.iteration: dropOne; // ----------- // | 0 1 2 | // | 3 4 5 | // | 6 7 8 | // - - - - - - // | 9 10 11 | // | 12 13 14 | // | 15 16 17 | // - - - - - - // | 18 20 21 | // | 22 23 24 | // | 24 25 26 | // ----------- //-> // ----------- // | 0 4 8 | // | 9 13 17 | // | 18 23 26 | // ----------- static immutable d = [[ 0, 4, 8], [ 9, 13, 17], [18, 22, 26]]; auto slice = iotaSlice(3, 3, 3) .pack!2 .evertPack .diagonal .evertPack; assert(slice == d); } /++ Returns an n-dimensional slice of n-dimensional non-overlapping blocks. `blocks` can be generalized with other selectors. For example, `blocks` in combination with $(LREF diagonal) can be used to get a slice of diagonal blocks. Params: N = dimension count slice = slice to be split into blocks lengths = dimensions of block, residual blocks are ignored Returns: packed `N`-dimensional slice composed of `N`-dimensional slices +/ Slice!(N, Slice!(N+1, Range)) blocks(size_t N, Range, Lengths...)(auto ref Slice!(N, Range) slice, Lengths lengths) if (allSatisfy!(isIndex, Lengths) && Lengths.length == N) in { foreach (i, length; lengths) assert(length > 0, "length of dimension = " ~ i.stringof ~ " must be positive" ~ tailErrorMessage!()); } body { mixin _DefineRet; foreach (dimension; Iota!(0, N)) { ret._lengths[dimension] = slice._lengths[dimension] / lengths[dimension]; ret._strides[dimension] = slice._strides[dimension]; if (ret._lengths[dimension]) //do not remove `if (...)` ret._strides[dimension] *= lengths[dimension]; ret._lengths[dimension + N] = lengths[dimension]; ret._strides[dimension + N] = slice._strides[dimension]; } foreach (dimension; Iota!(N, slice.PureN)) { ret._lengths[dimension + N] = slice._lengths[dimension]; ret._strides[dimension + N] = slice._strides[dimension]; } ret._ptr = slice._ptr; return ret; } /// pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 8); auto blocks = slice.blocks(2, 3); int i; foreach (block; blocks.byElement) block[] = ++i; assert(blocks == [[[[1, 1, 1], [1, 1, 1]], [[2, 2, 2], [2, 2, 2]]], [[[3, 3, 3], [3, 3, 3]], [[4, 4, 4], [4, 4, 4]]]]); assert( slice == [[1, 1, 1, 2, 2, 2, 0, 0], [1, 1, 1, 2, 2, 2, 0, 0], [3, 3, 3, 4, 4, 4, 0, 0], [3, 3, 3, 4, 4, 4, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]); } /// Diagonal blocks pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 8); auto blocks = slice.blocks(2, 3); auto diagonalBlocks = blocks.diagonal.unpack; diagonalBlocks[0][] = 1; diagonalBlocks[1][] = 2; assert(diagonalBlocks == [[[1, 1, 1], [1, 1, 1]], [[2, 2, 2], [2, 2, 2]]]); assert(blocks == [[[[1, 1, 1], [1, 1, 1]], [[0, 0, 0], [0, 0, 0]]], [[[0, 0, 0], [0, 0, 0]], [[2, 2, 2], [2, 2, 2]]]]); assert(slice == [[1, 1, 1, 0, 0, 0, 0, 0], [1, 1, 1, 0, 0, 0, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 2, 2, 2, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]); } /// Matrix divided into vertical blocks pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 13); auto blocks = slice .pack!1 .evertPack .blocks(3) .unpack .pack!2; int i; foreach (block; blocks.byElement) block[] = ++i; assert(slice == [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0], [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0], [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0], [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0], [1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0]]); } /++ Returns an n-dimensional slice of n-dimensional overlapping windows. `windows` can be generalized with other selectors. For example, `windows` in combination with $(LREF diagonal) can be used to get a multi-diagonal slice. Params: N = dimension count slice = slice to be iterated lengths = dimensions of windows Returns: packed `N`-dimensional slice composed of `N`-dimensional slices +/ Slice!(N, Slice!(N+1, Range)) windows(size_t N, Range, Lengths...)(auto ref Slice!(N, Range) slice, Lengths lengths) if (allSatisfy!(isIndex, Lengths) && Lengths.length == N) in { foreach (i, length; lengths) assert(length > 0, "length of dimension = " ~ i.stringof ~ " must be positive" ~ tailErrorMessage!()); } body { mixin _DefineRet; foreach (dimension; Iota!(0, N)) { ret._lengths[dimension] = slice._lengths[dimension] >= lengths[dimension] ? slice._lengths[dimension] - lengths[dimension] + 1: 0; ret._strides[dimension] = slice._strides[dimension]; ret._lengths[dimension + N] = lengths[dimension]; ret._strides[dimension + N] = slice._strides[dimension]; } foreach (dimension; Iota!(N, slice.PureN)) { ret._lengths[dimension + N] = slice._lengths[dimension]; ret._strides[dimension + N] = slice._strides[dimension]; } ret._ptr = slice._ptr; return ret; } /// pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 8); auto windows = slice.windows(2, 3); foreach (window; windows.byElement) window[] += 1; assert(slice == [[1, 2, 3, 3, 3, 3, 2, 1], [2, 4, 6, 6, 6, 6, 4, 2], [2, 4, 6, 6, 6, 6, 4, 2], [2, 4, 6, 6, 6, 6, 4, 2], [1, 2, 3, 3, 3, 3, 2, 1]]); } /// pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 8); auto windows = slice.windows(2, 3); windows[1, 2][] = 1; windows[1, 2][0, 1] += 1; windows.unpack[1, 2, 0, 1] += 1; assert(slice == [[0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 3, 1, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0]]); } /// Multi-diagonal matrix pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(8, 8); auto windows = slice.windows(3, 3); auto multidiagonal = windows .diagonal .unpack; foreach (window; multidiagonal) window[] += 1; assert(slice == [[ 1, 1, 1, 0, 0, 0, 0, 0], [ 1, 2, 2, 1, 0, 0, 0, 0], [ 1, 2, 3, 2, 1, 0, 0, 0], [0, 1, 2, 3, 2, 1, 0, 0], [0, 0, 1, 2, 3, 2, 1, 0], [0, 0, 0, 1, 2, 3, 2, 1], [0, 0, 0, 0, 1, 2, 2, 1], [0, 0, 0, 0, 0, 1, 1, 1]]); } /// Sliding window over matrix columns pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(5, 8); auto windows = slice .pack!1 .evertPack .windows(3) .unpack .pack!2; foreach (window; windows.byElement) window[] += 1; assert(slice == [[1, 2, 3, 3, 3, 3, 2, 1], [1, 2, 3, 3, 3, 3, 2, 1], [1, 2, 3, 3, 3, 3, 2, 1], [1, 2, 3, 3, 3, 3, 2, 1], [1, 2, 3, 3, 3, 3, 2, 1]]); } /++ Returns a new slice for the same data with different dimensions. Params: slice = slice to be reshaped lengths = list of new dimensions. One of the lengths can be set to `-1`. In this case, the corresponding dimension is inferable. Returns: reshaped slice Throws: $(LREF ReshapeException) if the slice cannot be reshaped with the input lengths. +/ Slice!(Lengths.length, Range) reshape ( size_t N, Range , Lengths... ) (auto ref Slice!(N, Range) slice, Lengths lengths) if ( allSatisfy!(isIndex, Lengths) && Lengths.length) { mixin _DefineRet; foreach (i; Iota!(0, ret.N)) ret._lengths[i] = lengths[i]; immutable size_t eco = slice.elementsCount; size_t ecn = ret .elementsCount; if (eco == 0) throw new ReshapeException( slice._lengths.dup, slice._strides.dup, ret. _lengths.dup, "slice should be not empty"); foreach (i; Iota!(0, ret.N)) if (ret._lengths[i] == -1) { ecn = -ecn; ret._lengths[i] = eco / ecn; ecn *= ret._lengths[i]; break; } if (eco != ecn) throw new ReshapeException( slice._lengths.dup, slice._strides.dup, ret. _lengths.dup, "total element count should be the same"); for (size_t oi, ni, oj, nj; oi < slice.N && ni < ret.N; oi = oj, ni = nj) { size_t op = slice._lengths[oj++]; size_t np = ret ._lengths[nj++]; for (;;) { if (op < np) op *= slice._lengths[oj++]; if (op > np) np *= ret ._lengths[nj++]; if (op == np) break; } while (oj < slice.N && slice._lengths[oj] == 1) oj++; while (nj < ret .N && ret ._lengths[nj] == 1) nj++; for (size_t l = oi, r = oi + 1; r < oj; r++) if (slice._lengths[r] != 1) { if (slice._strides[l] != slice._lengths[r] * slice._strides[r]) throw new ReshapeException( slice._lengths.dup, slice._strides.dup, ret. _lengths.dup, "structure is incompatible with new shape"); l = r; } ret._strides[nj - 1] = slice._strides[oj - 1]; foreach_reverse (i; ni .. nj - 1) ret._strides[i] = ret._lengths[i + 1] * ret._strides[i + 1]; assert((oi == slice.N) == (ni == ret.N)); } foreach (i; Iota!(ret.N, ret.PureN)) { ret._lengths[i] = slice._lengths[i + slice.N - ret.N]; ret._strides[i] = slice._strides[i + slice.N - ret.N]; } ret._ptr = slice._ptr; return ret; } /// @safe pure unittest { import std.experimental.ndslice.iteration: allReversed; auto slice = iotaSlice(3, 4) .allReversed .reshape(-1, 3); assert(slice == [[11, 10, 9], [ 8, 7, 6], [ 5, 4, 3], [ 2, 1, 0]]); } /// Reshaping with memory allocation pure unittest { import std.experimental.ndslice.slice; import std.experimental.ndslice.iteration: reversed; import std.array: array; auto reshape2(S, L...)(S slice, L lengths) { // Tries to reshape without allocation try return slice.reshape(lengths); catch(ReshapeException e) //allocates the elements and creates a slice //Note: -1 length is not supported by reshape2 return slice.byElement.array.sliced(lengths); } auto slice = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] .sliced(3, 4) .reversed!0; assert(reshape2(slice, 4, 3) == [[ 8, 9, 10], [11, 4, 5], [ 6, 7, 0], [ 1, 2, 3]]); } @safe pure unittest { import std.experimental.ndslice.iteration: allReversed; auto slice = iotaSlice(1, 1, 3, 2, 1, 2, 1).allReversed; assert(slice.reshape(1, -1, 1, 1, 3, 1) == [[[[[[11], [10], [9]]]], [[[[ 8], [ 7], [6]]]], [[[[ 5], [ 4], [3]]]], [[[[ 2], [ 1], [0]]]]]]); } // Issue 15919 unittest { assert(iotaSlice(3, 4, 5, 6, 7).pack!2.reshape(4, 3, 5)[0, 0, 0].shape == cast(size_t[2])[6, 7]); } @safe pure unittest { import std.experimental.ndslice.slice; import std.range: iota; import std.exception: assertThrown; auto e = 1.iotaSlice(1); // resize to the wrong dimension assertThrown!ReshapeException(e.reshape(2)); e.popFront; // test with an empty slice assertThrown!ReshapeException(e.reshape(1)); } unittest { auto pElements = iotaSlice(3, 4, 5, 6, 7) .pack!2 .byElement(); assert(pElements[0][0] == iotaSlice(7)); assert(pElements[$-1][$-1] == iotaSlice([7], 2513)); } /// See_also: $(LREF reshape) class ReshapeException: SliceException { /// Old lengths size_t[] lengths; /// Old strides sizediff_t[] strides; /// New lengths size_t[] newLengths; /// this( size_t[] lengths, sizediff_t[] strides, size_t[] newLengths, string msg, string file = __FILE__, uint line = cast(uint)__LINE__, Throwable next = null ) pure nothrow @nogc @safe { super(msg, file, line, next); this.lengths = lengths; this.strides = strides; this.newLengths = newLengths; } } /++ Returns a random access range of all elements of a slice. The order of elements is preserved. `byElement` can be generalized with other selectors. Params: N = dimension count slice = slice to be iterated Returns: random access range composed of elements of the `slice` +/ auto byElement(size_t N, Range)(auto ref Slice!(N, Range) slice) { with (Slice!(N, Range)) { /++ ByElement shifts the range's `_ptr` without modifying its strides and lengths. +/ static struct ByElement { This _slice; size_t _length; size_t[N] _indexes; static if (canSave!PureRange) auto save() @property { return typeof(this)(_slice.save, _length, _indexes); } bool empty() const @property { pragma(inline, true); return _length == 0; } size_t length() const @property { pragma(inline, true); return _length; } auto ref front() @property { assert(!this.empty); static if (N == PureN) { return _slice._ptr[0]; } else with (_slice) { alias M = DeepElemType.PureN; return DeepElemType(_lengths[$ - M .. $], _strides[$ - M .. $], _ptr); } } static if (PureN == 1 && isMutable!DeepElemType && !hasAccessByRef) auto front(E)(E elem) @property { assert(!this.empty); return _slice._ptr[0] = elem; } void popFront() { assert(_length != 0); _length--; popFrontImpl; } private void popFrontImpl() { foreach_reverse (i; Iota!(0, N)) with (_slice) { _ptr += _strides[i]; _indexes[i]++; if (_indexes[i] < _lengths[i]) return; debug (ndslice) assert(_indexes[i] == _lengths[i]); _ptr -= _lengths[i] * _strides[i]; _indexes[i] = 0; } } auto ref back() @property { assert(!this.empty); return opIndex(_length - 1); } static if (PureN == 1 && isMutable!DeepElemType && !hasAccessByRef) auto back(E)(E elem) @property { assert(!this.empty); return opIndexAssign(_length - 1, elem); } void popBack() { pragma(inline, true); assert(_length != 0); _length--; } void popFrontExactly(size_t n) in { assert(n <= _length); } body { _length -= n; //calculates shift and new indexes sizediff_t _shift; n += _indexes[N-1]; foreach_reverse (i; Iota!(1, N)) with (_slice) { immutable v = n / _lengths[i]; n %= _lengths[i]; _shift += (n - _indexes[i]) * _strides[i]; _indexes[i] = n; n = _indexes[i - 1] + v; } assert(n <= _slice._lengths[0]); with (_slice) { _shift += (n - _indexes[0]) * _strides[0]; _indexes[0] = n; } _slice._ptr += _shift; } void popBackExactly(size_t n) in { assert(n <= _length); } body { pragma(inline, true); _length -= n; } //calculates shift for index n private sizediff_t getShift(size_t n) in { assert(n < _length); } body { sizediff_t _shift; n += _indexes[N-1]; foreach_reverse (i; Iota!(1, N)) with (_slice) { immutable v = n / _lengths[i]; n %= _lengths[i]; _shift += (n - _indexes[i]) * _strides[i]; n = _indexes[i - 1] + v; } debug (ndslice) assert(n < _slice._lengths[0]); with (_slice) _shift += (n - _indexes[0]) * _strides[0]; return _shift; } auto ref opIndex(size_t index) { static if (N == PureN) { return _slice._ptr[getShift(index)]; } else with (_slice) { alias M = DeepElemType.PureN; return DeepElemType(_lengths[$ - M .. $], _strides[$ - M .. $], _ptr + getShift(index)); } } static if (PureN == 1 && isMutable!DeepElemType && !hasAccessByRef) auto opIndexAssign(E)(E elem, size_t index) { static if (N == PureN) { return _slice._ptr[getShift(index)] = elem; } else { static assert(0, "ByElement.opIndexAssign is not implemented for packed slices." ~ "Use additional empty slicing `elemsOfSlice[index][] = value`" ~ tailErrorMessage()); } } static if (isMutable!DeepElemType && N == PureN) { auto opIndexAssign(V)(V val, _Slice slice) { return this[slice][] = val; } auto opIndexAssign(V)(V val) { foreach (ref e; this) e = val; return this; } auto opIndexAssign(V : T[], T)(V val) if (__traits(compiles, front = val[0])) { assert(_length == val.length, "lengths should be equal" ~ tailErrorMessage!()); foreach (ref e; this) { e = val[0]; val = val[1 .. $]; } return this; } auto opIndexAssign(V : Slice!(1, _Range), _Range)(V val) if (__traits(compiles, front = val.front)) { assert(_length == val.length, "lengths should be equal" ~ tailErrorMessage!()); foreach (ref e; this) { e = val.front; val.popFront; } return this; } } auto opIndex(_Slice sl) { auto ret = this; ret.popFrontExactly(sl.i); ret.popBackExactly(_length - sl.j); return ret; } alias opDollar = length; _Slice opSlice(size_t pos : 0)(size_t i, size_t j) in { assert(i <= j, "the left bound must be less than or equal to the right bound" ~ tailErrorMessage!()); assert(j - i <= _length, "the difference between the right and the left bound must be less than or equal to range length" ~ tailErrorMessage!()); } body { pragma(inline, true); return typeof(return)(i, j); } size_t[N] index() @property { pragma(inline, true); return _indexes; } } return ByElement(slice, slice.elementsCount); } } /// Regular slice @safe @nogc pure nothrow unittest { import std.algorithm.comparison: equal; import std.range: iota; assert(iotaSlice(4, 5) .byElement .equal(20.iota)); } /// Packed slice @safe @nogc pure nothrow unittest { import std.experimental.ndslice.slice; import std.experimental.ndslice.iteration; import std.range: drop; assert(iotaSlice(3, 4, 5, 6, 7) .pack!2 .byElement() .drop(1) .front == iotaSlice([6, 7], 6 * 7)); } /// Properties pure nothrow unittest { auto elems = iotaSlice(3, 4).byElement; elems.popFrontExactly(2); assert(elems.front == 2); assert(elems.index == [0, 2]); elems.popBackExactly(2); assert(elems.back == 9); assert(elems.length == 8); } /// Index property pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = new long[20].sliced(5, 4); for (auto elems = slice.byElement; !elems.empty; elems.popFront) { size_t[2] index = elems.index; elems.front = index[0] * 10 + index[1] * 3; } assert(slice == [[ 0, 3, 6, 9], [10, 13, 16, 19], [20, 23, 26, 29], [30, 33, 36, 39], [40, 43, 46, 49]]); } pure nothrow unittest { // test save import std.range: dropOne; import std.range: iota; auto elems = 12.iota.sliced(3, 4).byElement; assert(elems.front == 0); assert(elems.save.dropOne.front == 1); assert(elems.front == 0); } /++ Random access and slicing +/ @nogc nothrow unittest { import std.experimental.ndslice.slice; import std.algorithm.comparison: equal; import std.array: array; import std.range: iota, repeat; static data = 20.iota.array; auto elems = data.sliced(4, 5).byElement; elems = elems[11 .. $ - 2]; assert(elems.length == 7); assert(elems.front == 11); assert(elems.back == 17); foreach (i; 0 .. 7) assert(elems[i] == i + 11); // assign an element elems[2 .. 6] = -1; assert(elems[2 .. 6].equal(repeat(-1, 4))); // assign an array static ar = [-1, -2, -3, -4]; elems[2 .. 6] = ar; assert(elems[2 .. 6].equal(ar)); // assign a slice ar[] *= 2; auto sl = ar.sliced(ar.length); elems[2 .. 6] = sl; assert(elems[2 .. 6].equal(sl)); } /++ Forward access works faster than random access or backward access. Use $(SUBREF iteration, allReversed) in pipeline before `byElement` to achieve fast backward access. +/ @safe @nogc pure nothrow unittest { import std.range: retro; import std.experimental.ndslice.iteration: allReversed; auto slice = iotaSlice(3, 4, 5); /// Slow backward iteration #1 foreach (ref e; slice.byElement.retro) { //... } /// Slow backward iteration #2 foreach_reverse (ref e; slice.byElement) { //... } /// Fast backward iteration foreach (ref e; slice.allReversed.byElement) { //... } } @safe @nogc pure nothrow unittest { import std.range.primitives: isRandomAccessRange, hasSlicing; auto elems = iotaSlice(4, 5).byElement; static assert(isRandomAccessRange!(typeof(elems))); static assert(hasSlicing!(typeof(elems))); } // Checks strides @safe @nogc pure nothrow unittest { import std.experimental.ndslice.iteration; import std.range: isRandomAccessRange; auto elems = iotaSlice(4, 5).everted.byElement; static assert(isRandomAccessRange!(typeof(elems))); elems = elems[11 .. $ - 2]; auto elems2 = elems; foreach (i; 0 .. 7) { assert(elems[i] == elems2.front); elems2.popFront; } } @safe @nogc pure nothrow unittest { import std.experimental.ndslice.slice; import std.experimental.ndslice.iteration; import std.range: iota, isForwardRange, hasLength; import std.algorithm.comparison: equal; auto range = (3 * 4 * 5 * 6 * 7).iota; auto slice0 = range.sliced(3, 4, 5, 6, 7); auto slice1 = slice0.transposed!(2, 1).pack!2; auto elems0 = slice0.byElement; auto elems1 = slice1.byElement; import std.meta; foreach (S; AliasSeq!(typeof(elems0), typeof(elems1))) { static assert(isForwardRange!S); static assert(hasLength!S); } assert(elems0.length == slice0.elementsCount); assert(elems1.length == 5 * 4 * 3); auto elems2 = elems1; foreach (q; slice1) foreach (w; q) foreach (e; w) { assert(!elems2.empty); assert(e == elems2.front); elems2.popFront; } assert(elems2.empty); elems0.popFront(); elems0.popFrontExactly(slice0.elementsCount - 14); assert(elems0.length == 13); assert(elems0.equal(range[slice0.elementsCount - 13 .. slice0.elementsCount])); foreach (elem; elems0) {} } // Issue 15549 unittest { import std.range.primitives; alias A = typeof(iotaSlice(2, 5).sliced(1, 1, 1, 1)); static assert(isRandomAccessRange!A); static assert(hasLength!A); static assert(hasSlicing!A); alias B = typeof(slice!double(2, 5).sliced(1, 1, 1, 1)); static assert(isRandomAccessRange!B); static assert(hasLength!B); static assert(hasSlicing!B); } // Issue 16010 unittest { auto s = iotaSlice(3, 4).byElement; foreach (_; 0 .. s.length) s = s[1 .. $]; } /++ Returns an forward range of all elements of standard simplex of a slice. In case the slice has two dimensions, it is composed of elements of upper left triangular matrix. The order of elements is preserved. `byElementInStandardSimplex` can be generalized with other selectors. Params: N = dimension count slice = slice to be iterated Returns: forward range composed of all elements of standard simplex of the `slice` +/ auto byElementInStandardSimplex(size_t N, Range)(auto ref Slice!(N, Range) slice, size_t maxCobeLength = size_t.max) { with (Slice!(N, Range)) { /++ ByElementInTopSimplex shifts the range's `_ptr` without modifying its strides and lengths. +/ static struct ByElementInTopSimplex { This _slice; size_t _length; size_t maxCobeLength; size_t sum; size_t[N] _indexes; static if (canSave!PureRange) auto save() @property { return typeof(this)(_slice.save, _length, maxCobeLength, sum, _indexes); } bool empty() const @property { pragma(inline, true); return _length == 0; } size_t length() const @property { pragma(inline, true); return _length; } auto ref front() @property { assert(!this.empty); static if (N == PureN) return _slice._ptr[0]; else with (_slice) { alias M = DeepElemType.PureN; return DeepElemType(_lengths[$ - M .. $], _strides[$ - M .. $], _ptr); } } static if (PureN == 1 && isMutable!DeepElemType && !hasAccessByRef) auto front(E)(E elem) @property { pragma(inline, true); assert(!this.empty); return _slice._ptr[0] = elem; } void popFront() { pragma(inline, true); assert(_length != 0); _length--; popFrontImpl; } private void popFrontImpl() { foreach_reverse (i; Iota!(0, N)) with (_slice) { _ptr += _strides[i]; _indexes[i]++; debug (ndslice) assert(_indexes[i] <= _lengths[i]); sum++; if (sum < maxCobeLength) return; debug (ndslice) assert(sum == maxCobeLength); _ptr -= _indexes[i] * _strides[i]; sum -= _indexes[i]; _indexes[i] = 0; } } size_t[N] index() @property { pragma(inline, true); return _indexes; } } foreach (i; Iota!(0, N)) if (maxCobeLength > slice._lengths[i]) maxCobeLength = slice._lengths[i]; immutable size_t elementsCount = ((maxCobeLength + 1) * maxCobeLength ^^ (N - 1)) / 2; return ByElementInTopSimplex(slice, elementsCount, maxCobeLength); } } /// pure nothrow unittest { import std.experimental.ndslice.slice; auto slice = slice!int(4, 5); auto elems = slice .byElementInStandardSimplex; int i; foreach (ref e; elems) e = ++i; assert(slice == [[ 1, 2, 3, 4, 0], [ 5, 6, 7, 0, 0], [ 8, 9, 0, 0, 0], [10, 0, 0, 0, 0]]); } /// pure nothrow unittest { import std.experimental.ndslice.slice; import std.experimental.ndslice.iteration; auto slice = slice!int(4, 5); auto elems = slice .transposed .allReversed .byElementInStandardSimplex; int i; foreach (ref e; elems) e = ++i; assert(slice == [[0, 0, 0, 0, 4], [0, 0, 0, 7, 3], [0, 0, 9, 6, 2], [0, 10, 8, 5, 1]]); } /// Properties @safe @nogc pure nothrow unittest { import std.range.primitives: popFrontN; auto elems = iotaSlice(3, 4).byElementInStandardSimplex; elems.popFront; assert(elems.front == 1); assert(elems.index == cast(size_t[2])[0, 1]); elems.popFrontN(3); assert(elems.front == 5); } /// Save @safe @nogc pure nothrow unittest { auto elems = iotaSlice(3, 4).byElementInStandardSimplex; import std.range: dropOne, popFrontN; elems.popFrontN(4); assert(elems.save.dropOne.front == 8); assert(elems.front == 5); assert(elems.index == cast(size_t[2])[1, 1]); assert(elems.length == 2); } /++ Returns a slice, the elements of which are equal to the initial multidimensional index value. This is multidimensional analog of $(LINK2 std_range.html#iota, std.range.iota). For a flattened (continuous) index, see $(LREF iotaSlice). Params: N = dimension count lengths = list of dimension lengths Returns: `N`-dimensional slice composed of indexes See_also: $(LREF IndexSlice), $(LREF iotaSlice) +/ IndexSlice!(Lengths.length) indexSlice(Lengths...)(Lengths lengths) if (allSatisfy!(isIndex, Lengths)) { return .indexSlice!(Lengths.length)([lengths]); } ///ditto IndexSlice!N indexSlice(size_t N)(auto ref size_t[N] lengths) { import std.experimental.ndslice.slice: sliced; with (typeof(return)) return Range(lengths[1 .. $]).sliced(lengths); } /// @safe pure nothrow @nogc unittest { auto slice = indexSlice(2, 3); static immutable array = [[[0, 0], [0, 1], [0, 2]], [[1, 0], [1, 1], [1, 2]]]; assert(slice == array); static assert(is(IndexSlice!2 : Slice!(2, Range), Range)); static assert(is(DeepElementType!(IndexSlice!2) == size_t[2])); } /// @safe pure nothrow unittest { auto im = indexSlice(7, 9); assert(im[2, 1] == [2, 1]); //slicing works correctly auto cm = im[1 .. $, 4 .. $]; assert(cm[2, 1] == [3, 5]); } @safe pure nothrow unittest { // test save import std.range: dropOne; auto im = indexSlice(7, 9); auto imByElement = im.byElement; assert(imByElement.front == [0, 0]); assert(imByElement.save.dropOne.front == [0, 1]); assert(imByElement.front == [0, 0]); } /++ Slice composed of indexes. See_also: $(LREF indexSlice) +/ template IndexSlice(size_t N) if (N) { struct IndexMap { private size_t[N-1] _lengths; IndexMap save() @property const { pragma(inline, true); return this; } size_t[N] opIndex(size_t index) const { pragma(inline, true); size_t[N] indexes = void; foreach_reverse (i; Iota!(0, N - 1)) { indexes[i + 1] = index % _lengths[i]; index /= _lengths[i]; } indexes[0] = index; return indexes; } } alias IndexSlice = Slice!(N, IndexMap); } unittest { auto r = indexSlice(1); import std.range.primitives: isRandomAccessRange; static assert(isRandomAccessRange!(typeof(r))); } /++ Returns a slice, the elements of which are equal to the initial flattened index value. For a multidimensional index, see $(LREF indexSlice). Params: N = dimension count lengths = list of dimension lengths shift = value of the first element in a slice Returns: `N`-dimensional slice composed of indexes See_also: $(LREF IotaSlice), $(LREF indexSlice) +/ IotaSlice!(Lengths.length) iotaSlice(Lengths...)(Lengths lengths) if (allSatisfy!(isIndex, Lengths)) { return .iotaSlice!(Lengths.length)([lengths]); } ///ditto IotaSlice!N iotaSlice(size_t N)(auto ref size_t[N] lengths, size_t shift = 0) { import std.experimental.ndslice.slice: sliced; with (typeof(return)) return Range.init.sliced(lengths, shift); } /// @safe pure nothrow @nogc unittest { auto slice = iotaSlice(2, 3); static immutable array = [[0, 1, 2], [3, 4, 5]]; assert(slice == array); import std.range.primitives: isRandomAccessRange; static assert(isRandomAccessRange!(IotaSlice!2)); static assert(is(IotaSlice!2 : Slice!(2, Range), Range)); static assert(is(DeepElementType!(IotaSlice!2) == size_t)); } /// @safe pure nothrow unittest { auto im = iotaSlice([10, 5], 100); assert(im[2, 1] == 111); // 100 + 2 * 5 + 1 //slicing works correctly auto cm = im[1 .. $, 3 .. $]; assert(cm[2, 1] == 119); // 119 = 100 + (1 + 2) * 5 + (3 + 1) } /++ Slice composed of flattened indexes. See_also: $(LREF iotaSlice) +/ template IotaSlice(size_t N) if (N) { alias IotaSlice = Slice!(N, IotaMap!()); } // undocumented // zero cost variant of `std.range.iota` struct IotaMap() { enum bool empty = false; enum IotaMap save = IotaMap.init; static size_t opIndex()(size_t index) @safe pure nothrow @nogc @property { pragma(inline, true); return index; } }
D
/Users/shawngong/Centa/.build/debug/Polymorphic.build/String+Polymorphic.swift.o : /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/Polymorphic.swift /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/String+Polymorphic.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/shawngong/Centa/.build/debug/Polymorphic.build/String+Polymorphic~partial.swiftmodule : /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/Polymorphic.swift /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/String+Polymorphic.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/shawngong/Centa/.build/debug/Polymorphic.build/String+Polymorphic~partial.swiftdoc : /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/Polymorphic.swift /Users/shawngong/Centa/Packages/Polymorphic-1.0.1/Sources/String+Polymorphic.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
D
// runnable/traits.d 9091,8972,8971,7027 // runnable/test4.d test6() extern(C) int printf(const char*, ...); template TypeTuple(TL...) { alias TypeTuple = TL; } /********************************************************/ mixin("struct S1 {"~aggrDecl1~"}"); mixin("class C1 {"~aggrDecl1~"}"); enum aggrDecl1 = q{ alias Type = typeof(this); int x = 2; void foo() { static assert( is(typeof(Type.x.offsetof))); static assert( is(typeof(Type.x.mangleof))); static assert( is(typeof(Type.x.sizeof ))); static assert( is(typeof(Type.x.alignof ))); static assert( is(typeof({ auto n = Type.x.offsetof; }))); static assert( is(typeof({ auto n = Type.x.mangleof; }))); static assert( is(typeof({ auto n = Type.x.sizeof; }))); static assert( is(typeof({ auto n = Type.x.alignof; }))); static assert( is(typeof(Type.x))); static assert( is(typeof({ auto n = Type.x; }))); static assert( __traits(compiles, Type.x)); static assert( __traits(compiles, { auto n = Type.x; })); static assert( is(typeof(x.offsetof))); static assert( is(typeof(x.mangleof))); static assert( is(typeof(x.sizeof ))); static assert( is(typeof(x.alignof ))); static assert( is(typeof({ auto n = x.offsetof; }))); static assert( is(typeof({ auto n = x.mangleof; }))); static assert( is(typeof({ auto n = x.sizeof; }))); static assert( is(typeof({ auto n = x.alignof; }))); static assert( is(typeof(x))); static assert( is(typeof({ auto n = x; }))); static assert( __traits(compiles, x)); static assert( __traits(compiles, { auto n = x; })); with (this) { static assert( is(typeof(x.offsetof))); static assert( is(typeof(x.mangleof))); static assert( is(typeof(x.sizeof ))); static assert( is(typeof(x.alignof ))); static assert( is(typeof({ auto n = x.offsetof; }))); static assert( is(typeof({ auto n = x.mangleof; }))); static assert( is(typeof({ auto n = x.sizeof; }))); static assert( is(typeof({ auto n = x.alignof; }))); static assert( is(typeof(x))); static assert( is(typeof({ auto n = x; }))); static assert( __traits(compiles, x)); static assert( __traits(compiles, { auto n = x; })); } } static void bar() { static assert( is(typeof(Type.x.offsetof))); static assert( is(typeof(Type.x.mangleof))); static assert( is(typeof(Type.x.sizeof ))); static assert( is(typeof(Type.x.alignof ))); static assert( is(typeof({ auto n = Type.x.offsetof; }))); static assert( is(typeof({ auto n = Type.x.mangleof; }))); static assert( is(typeof({ auto n = Type.x.sizeof; }))); static assert( is(typeof({ auto n = Type.x.alignof; }))); static assert( is(typeof(Type.x))); static assert(!is(typeof({ auto n = Type.x; }))); static assert( __traits(compiles, Type.x)); static assert(!__traits(compiles, { auto n = Type.x; })); static assert( is(typeof(x.offsetof))); static assert( is(typeof(x.mangleof))); static assert( is(typeof(x.sizeof ))); static assert( is(typeof(x.alignof ))); static assert( is(typeof({ auto n = x.offsetof; }))); static assert( is(typeof({ auto n = x.mangleof; }))); static assert( is(typeof({ auto n = x.sizeof; }))); static assert( is(typeof({ auto n = x.alignof; }))); static assert( is(typeof(x))); static assert(!is(typeof({ auto n = x; }))); static assert( __traits(compiles, x)); static assert(!__traits(compiles, { auto n = x; })); Type t; with (t) { static assert( is(typeof(x.offsetof))); static assert( is(typeof(x.mangleof))); static assert( is(typeof(x.sizeof ))); static assert( is(typeof(x.alignof ))); static assert( is(typeof({ auto n = x.offsetof; }))); static assert( is(typeof({ auto n = x.mangleof; }))); static assert( is(typeof({ auto n = x.sizeof; }))); static assert( is(typeof({ auto n = x.alignof; }))); static assert( is(typeof(x))); static assert( is(typeof({ auto n = x; }))); static assert( __traits(compiles, x)); static assert( __traits(compiles, { auto n = x; })); } } }; void test1() { foreach (Type; TypeTuple!(S1, C1)) { static assert( is(typeof(Type.x.offsetof))); static assert( is(typeof(Type.x.mangleof))); static assert( is(typeof(Type.x.sizeof ))); static assert( is(typeof(Type.x.alignof ))); static assert( is(typeof({ auto n = Type.x.offsetof; }))); static assert( is(typeof({ auto n = Type.x.mangleof; }))); static assert( is(typeof({ auto n = Type.x.sizeof; }))); static assert( is(typeof({ auto n = Type.x.alignof; }))); static assert( is(typeof(Type.x))); static assert(!is(typeof({ auto n = Type.x; }))); static assert( __traits(compiles, Type.x)); static assert(!__traits(compiles, { auto n = Type.x; })); Type t; static assert( is(typeof(t.x.offsetof))); static assert( is(typeof(t.x.mangleof))); static assert( is(typeof(t.x.sizeof ))); static assert( is(typeof(t.x.alignof ))); static assert( is(typeof({ auto n = t.x.offsetof; }))); static assert( is(typeof({ auto n = t.x.mangleof; }))); static assert( is(typeof({ auto n = t.x.sizeof; }))); static assert( is(typeof({ auto n = t.x.alignof; }))); static assert( is(typeof(t.x))); static assert( is(typeof({ auto n = t.x; }))); static assert( __traits(compiles, t.x)); static assert( __traits(compiles, { auto n = t.x; })); with (t) { static assert( is(typeof(x.offsetof))); static assert( is(typeof(x.mangleof))); static assert( is(typeof(x.sizeof ))); static assert( is(typeof(x.alignof ))); static assert( is(typeof({ auto n = x.offsetof; }))); static assert( is(typeof({ auto n = x.mangleof; }))); static assert( is(typeof({ auto n = x.sizeof; }))); static assert( is(typeof({ auto n = x.alignof; }))); static assert( is(typeof(x))); static assert( is(typeof({ auto n = x; }))); static assert( __traits(compiles, x)); static assert( __traits(compiles, { auto n = x; })); } } } /********************************************************/ void test2() { struct S { int val; int[] arr; int[int] aar; void foo() {} void boo()() {} static void test() { static assert(!__traits(compiles, S.foo())); static assert(!__traits(compiles, S.boo())); static assert(!__traits(compiles, foo())); static assert(!__traits(compiles, boo())); } } int v; int[] a; void f(int n) {} static assert( __traits(compiles, S.val)); // 'S.val' is treated just a symbol static assert(!__traits(compiles, { int n = S.val; })); static assert(!__traits(compiles, f(S.val))); static assert(!__traits(compiles, v = S.val) && !__traits(compiles, S.val = v)); static assert(!__traits(compiles, 1 + S.val) && !__traits(compiles, S.val + 1)); static assert(!__traits(compiles, 1 - S.val) && !__traits(compiles, S.val - 1)); static assert(!__traits(compiles, 1 * S.val) && !__traits(compiles, S.val * 1)); static assert(!__traits(compiles, 1 / S.val) && !__traits(compiles, S.val / 1)); static assert(!__traits(compiles, 1 % S.val) && !__traits(compiles, S.val % 1)); static assert(!__traits(compiles, 1 ~ S.arr) && !__traits(compiles, S.arr ~ 1)); static assert(!__traits(compiles, 1 & S.val) && !__traits(compiles, S.val & 1)); static assert(!__traits(compiles, 1 | S.val) && !__traits(compiles, S.val | 1)); static assert(!__traits(compiles, 1 ^ S.val) && !__traits(compiles, S.val ^ 1)); static assert(!__traits(compiles, 1 ~ S.val) && !__traits(compiles, S.val ~ 1)); static assert(!__traits(compiles, 1 ^^ S.val) && !__traits(compiles, S.val ^^ 1)); static assert(!__traits(compiles, 1 << S.val) && !__traits(compiles, S.val << 1)); static assert(!__traits(compiles, 1 >> S.val) && !__traits(compiles, S.val >> 1)); static assert(!__traits(compiles, 1 >>>S.val) && !__traits(compiles, S.val >>>1)); static assert(!__traits(compiles, 1 && S.val) && !__traits(compiles, S.val && 1)); static assert(!__traits(compiles, 1 || S.val) && !__traits(compiles, S.val || 1)); static assert(!__traits(compiles, 1 in S.aar) && !__traits(compiles, S.val || [1:1])); static assert(!__traits(compiles, 1 <= S.val) && !__traits(compiles, S.val <= 1)); static assert(!__traits(compiles, 1 == S.val) && !__traits(compiles, S.val == 1)); static assert(!__traits(compiles, 1 is S.val) && !__traits(compiles, S.val is 1)); static assert(!__traits(compiles, 1? 1:S.val) && !__traits(compiles, 1? S.val:1)); static assert(!__traits(compiles, (1, S.val)) && !__traits(compiles, (S.val, 1))); static assert(!__traits(compiles, &S.val)); static assert(!__traits(compiles, S.arr[0]) && !__traits(compiles, [1,2][S.val])); static assert(!__traits(compiles, S.val++) && !__traits(compiles, S.val--)); static assert(!__traits(compiles, ++S.val) && !__traits(compiles, --S.val)); static assert(!__traits(compiles, v += S.val) && !__traits(compiles, S.val += 1)); static assert(!__traits(compiles, v -= S.val) && !__traits(compiles, S.val -= 1)); static assert(!__traits(compiles, v *= S.val) && !__traits(compiles, S.val *= 1)); static assert(!__traits(compiles, v /= S.val) && !__traits(compiles, S.val /= 1)); static assert(!__traits(compiles, v %= S.val) && !__traits(compiles, S.val %= 1)); static assert(!__traits(compiles, v &= S.val) && !__traits(compiles, S.val &= 1)); static assert(!__traits(compiles, v |= S.val) && !__traits(compiles, S.val |= 1)); static assert(!__traits(compiles, v ^= S.val) && !__traits(compiles, S.val ^= 1)); static assert(!__traits(compiles, a ~= S.val) && !__traits(compiles, S.arr ~= 1)); static assert(!__traits(compiles, v ^^= S.val) && !__traits(compiles, S.val ^^= 1)); static assert(!__traits(compiles, v <<= S.val) && !__traits(compiles, S.val <<= 1)); static assert(!__traits(compiles, v >>= S.val) && !__traits(compiles, S.val >>= 1)); static assert(!__traits(compiles, v >>>=S.val) && !__traits(compiles, S.val >>>=1)); static assert(!__traits(compiles, { auto x = 1 + S.val; }) && !__traits(compiles, { auto x = S.val + 1; })); static assert(!__traits(compiles, { auto x = 1 - S.val; }) && !__traits(compiles, { auto x = S.val - 1; })); static assert(!__traits(compiles, { auto x = S.arr ~ 1; }) && !__traits(compiles, { auto x = 1 ~ S.arr; })); static assert(!__traits(compiles, S.foo())); static assert(!__traits(compiles, S.boo())); S.test(); alias foo = S.foo; alias boo = S.boo; static assert(!__traits(compiles, foo())); static assert(!__traits(compiles, boo())); // static assert(S.val); struct SW { int a; } class CW { int a; } static assert(!__traits(compiles, { with (SW) { int n = a; } })); static assert(!__traits(compiles, { with (CW) { int n = a; } })); } /********************************************************/ struct S3 { struct T3 { int val; void foo() {} } T3 member; alias member this; static void test() { static assert(!__traits(compiles, S3.val = 1 )); static assert(!__traits(compiles, { S3.val = 1; })); static assert(!__traits(compiles, T3.val = 1 )); static assert(!__traits(compiles, { T3.val = 1; })); static assert(!__traits(compiles, __traits(getMember, S3, "val") = 1 )); static assert(!__traits(compiles, { __traits(getMember, S3, "val") = 1; })); static assert(!__traits(compiles, __traits(getMember, T3, "val") = 1 )); static assert(!__traits(compiles, { __traits(getMember, T3, "val") = 1; })); static assert(!__traits(compiles, S3.foo() )); static assert(!__traits(compiles, { S3.foo(); })); static assert(!__traits(compiles, T3.foo() )); static assert(!__traits(compiles, { T3.foo(); })); static assert(!__traits(compiles, __traits(getMember, S3, "foo")() )); static assert(!__traits(compiles, { __traits(getMember, S3, "foo")(); })); static assert(!__traits(compiles, __traits(getMember, T3, "foo")() )); static assert(!__traits(compiles, { __traits(getMember, T3, "foo")(); })); static assert(!__traits(compiles, __traits(getOverloads, S3, "foo")[0]() )); static assert(!__traits(compiles, { __traits(getOverloads, S3, "foo")[0](); })); static assert(!__traits(compiles, __traits(getOverloads, T3, "foo")[0]() )); static assert(!__traits(compiles, { __traits(getOverloads, T3, "foo")[0](); })); } } void test3() { } /********************************************************/ void test4() { static struct R { void opIndex(int) {} void opSlice() {} void opSlice(int, int) {} int opDollar() { return 1; } alias length = opDollar; } R val; static struct S { R val; void foo() { static assert(__traits(compiles, val[1])); // TypeSArray static assert(__traits(compiles, val[])); // TypeDArray static assert(__traits(compiles, val[0..val.length])); // TypeSlice } } } /********************************************************/ template Test5(string name, bool result) { mixin(`static assert(__traits(compiles, `~name~`.add!"months"(1)) == result);`); } static struct Begin5 { void add(string s)(int n) {} } struct IntervalX5(TP) { Begin5 begin; static assert(__traits(compiles, begin.add!"months"(1)) == true); mixin Test5!("begin", true); void foo() { static assert(__traits(compiles, begin.add!"months"(1)) == true); mixin Test5!("begin", true); } static test() { static assert(__traits(compiles, begin.add!"months"(1)) == false); mixin Test5!("begin", false); } } alias IX5 = IntervalX5!int; alias beginX5 = IX5.begin; static assert(__traits(compiles, beginX5.add!"months"(1)) == false); mixin Test5!("beginG5", false); void test5() { static struct IntervalY5(TP) { Begin5 begin; static assert(__traits(compiles, begin.add!"months"(1)) == true); mixin Test5!("begin", true); void foo() { static assert(__traits(compiles, begin.add!"months"(1)) == true); mixin Test5!("begin", true); } static test() { static assert(__traits(compiles, begin.add!"months"(1)) == false); mixin Test5!("begin", false); } } alias IX = IntervalX5!int; alias beginX = IX.begin; static assert(__traits(compiles, beginX.add!"months"(1)) == false); mixin Test5!("beginX", false); alias IY = IntervalY5!int; alias beginY = IY.begin; static assert(__traits(compiles, beginY.add!"months"(1)) == false); mixin Test5!("beginY", false); } /********************************************************/ void test6() { static struct Foo { static struct Bar { static int get() { return 0; } static int val; void set() { assert(0); } int num; } static class Baz { static int get() { return 0; } static int val; void set() { assert(0); } int num; } Bar bar; Baz baz; } // allowed cases that do 'use' Foo.bar without this assert(Foo.bar.get() == 0); // Foo.bar.get() assert(Foo.baz.get() == 0); // Foo.bar.get() static assert(!__traits(compiles, Foo.bar.set())); static assert(!__traits(compiles, Foo.baz.set())); assert(Foo.bar.val == 0); // Foo.bar.val assert(Foo.baz.val == 0); // Foo.baz.val static assert(!__traits(compiles, Foo.bar.num = 1)); static assert(!__traits(compiles, Foo.baz.num = 1)); } /********************************************************/ struct Tuple7(T...) { T field; enum check1 = is(typeof(field[0] = 1)); enum check2 = is(typeof({ field[0] = 1; })); this(U, size_t n)(U[n] values) if (is(typeof({ foreach (i, _; T) field[0] = values[0]; }))) {} } void test7() { alias Tuple7!(int, int) Tup7; static assert(Tup7.check1); static assert(Tup7.check2); int[2] ints = [ 1, 2 ]; Tup7 t = ints; struct S7 { int value; enum check1 = is(typeof(value = 1)); enum check2 = is(typeof({ value = 1; })); void foo()(int v) if (is(typeof({ value = v; // valid }))) {} static void bar()(int v) if (is(typeof({ value = v; // always invalid }))) {} } static assert(S7.check1); static assert(S7.check2); S7 s; s.foo(1); static assert(!__traits(compiles, S7.bar(1))); } /********************************************************/ // 9619 struct Foo9619 { int x; } void test9619() { void bar() { typeof(Foo9619.x) y; } } /********************************************************/ // 9633 class Foo9633 { void baz() {} void bar() { // CallExp::e1->op == TOKvar static assert(!compilesWithoutThis9633!baz); } void vaz()() { static class C { // CallExp::e1->op == TOKtemplate static assert(!__traits(compiles, vaz())); } } } template compilesWithoutThis9633(alias F) { enum bool compilesWithoutThis9633 = __traits(compiles, F()); } void test9633() { auto foo = new Foo9633; foo.bar(); foo.vaz(); } /********************************************************/ int main() { test1(); test2(); test3(); test4(); test5(); test6(); test7(); test9619(); test9633(); printf("Success\n"); return 0; }
D
import std.stdio; import core.time; import std.datetime; //import std.datetime.stopwatch; import std.random; import std.algorithm.sorting; import std.algorithm.mutation; struct P { double a; double b; } bool myComp (ref P x, ref P y) { return x.a > y.a || x.a == y.a && x.b > y.b; } long partition (P[] arr, long low, long high) { P pivot = arr[high]; // pivot auto i = (low - 1); // Index of smaller element for (auto j = low; j <= high- 1; j++) { // If current element is smaller than or // equal to pivot if (!myComp(arr[j], pivot)) { i++; // increment index of smaller element swap(arr[i], arr[j]); } } swap(arr[i + 1], arr[high]); return (i + 1); } void quickSort(P[] arr, long low, long high) { if (low < high) { /* pi is partitioning index, arr[p] is now at right place */ long pi = partition(arr, low, high); // Separately sort elements before // partition and after partition quickSort(arr, low, pi - 1); quickSort(arr, pi + 1, high); } } void main() { for(int z=0; z<10; z++) { P[] arr; auto rnd = Random(1000); writeln("generating..."); stdout.flush(); auto n = 50_000_000; for(int q=0; q<n; q++) { arr ~= P(uniform(0.0f, 1.0f, rnd), uniform(0.0f, 1.0f, rnd)); } // auto sw = StopWatch(AutoStart.no); writeln("sorting..."); stdout.flush(); //sw.start(); // auto q = arr.sort!(myComp); auto stattime = Clock.currTime(); quickSort(arr, 0, arr.length-1); auto endttime = Clock.currTime(); auto duration = endttime - stattime; //sw.stop(); writeln("==> ", duration); } //writeln(sw.peek.total!"msecs"); }
D
import std.stdio; import str_intern; import common; const(char) *if_keyword; const(char) *else_keyword; const(char) *prefix_keyword; const(char) *suffix_keyword; enum TokenKind { EOF = 0, STR, NAME, PLUS, PREFIX, SUFFIX, LPAREN, RPAREN, LBRACE, RBRACE, COMMA, IF, ELSE, }; struct Token { TokenKind kind; const(char) *start; const(char) *end; ulong ln_num; ulong ln_offset; bool is_keyword; union { const(char) *str_val; const(char) *name; }; }; const(char) *input; ulong ln_num; const(char) *ln_start; Token token; @nogc void encountered_newline() { ++ln_num; ln_start = input + 1; } // TODO(stefanos): Couple it with syntax_error. @nogc void print_line_info() { printf("Line: %llu:\n", ln_num); printf("\t"); const(char) *reader; reader = ln_start; while(*reader != '\n' && *reader != '\0') { printf("%c", *reader); ++reader; } printf("\n"); } // initialized to 0 as a global variable. static ushort[128] escape_lookup = [ 'n':'\n', 'r':'\r', 't':'\t', 'v':'\v', 'b':'\b', 'a':'\a', '0':'\0' ]; @nogc char escape_char() { assert(*input == '\\'); ++input; ushort val = escape_lookup[*input]; char c = *input; if(val == 0 && *input != '0') { syntax_error("Invalid escape sequence: '\\", c, "'."); print_line_info(); } return cast(char) val; } // TODO(stefanos): Change the scan of string so it doesn't care about escape sequences. // That way we can print the string exactly as it is on the Java output. void scan_str() { import core.stdc.string; assert(*input == '"'); ++input; string s = ""; char val; while(*input != '\0' && *input != '"') { if(*input == '\n') { syntax_error("Cannot have newline inside string literal."); print_line_info(); encountered_newline(); print_line_info(); } else if(*input == '\\') { val = escape_char(); } else { val = *input; } s ~= val; ++input; } if(*input == '\0') { syntax_error("Unexpected EOF inside string literal."); print_line_info(); } else { assert(*input == '"'); ++input; } s ~= '\0'; token.kind = TokenKind.STR; // NOTE(stefanos): Don't str_intern() as we won't do lookup // on string literals and so we don't want them to pollute the // string interning data structure. token.str_val = strdup(s.ptr); } void next_token() { lex_again: import std.ascii; // skip whitespace while (isWhite(*input)) { if(*input == '\n') { encountered_newline(); } input++; } token.ln_num = ln_num; token.ln_offset = input - ln_start; token.start = input; switch (*input) { static string generate_simple_case(string c, string k) { import std.format; return format!" case '%s': { token.kind = TokenKind.%s; ++input; } break; "(c, k); } mixin(generate_simple_case("+", "PLUS")); mixin(generate_simple_case("(", "LPAREN")); mixin(generate_simple_case(")", "RPAREN")); mixin(generate_simple_case("{", "LBRACE")); mixin(generate_simple_case("}", "RBRACE")); mixin(generate_simple_case(",", "COMMA")); case '"': { scan_str(); } break; // case 'a': case 'A': case 'b': ... static string generate_name_cases() { string res; for(char c1 = 'a', c2 = 'A'; c1 <= 'z'; ++c1, ++c2) { res ~= "case '" ~ c1 ~ "': " ~ "case '" ~ c2 ~ "': "; } res ~= "case '_':"; return res; } mixin(generate_name_cases()); { while (isAlphaNum(*input) || *input == '_') { ++input; } token.kind = TokenKind.NAME; token.name = str_intern_range(token.start, input); if(token.name == if_keyword) { token.kind = TokenKind.IF; } else if(token.name == else_keyword) { token.kind = TokenKind.ELSE; } else if(token.name == prefix_keyword) { token.kind = TokenKind.PREFIX; } else if(token.name == suffix_keyword) { token.kind = TokenKind.SUFFIX; } } break; default: if(*input != 0) { syntax_error("Unexpected token: ", *input); } else { token.kind = TokenKind.EOF; } break; } token.end = input; } void init_input(const(char) *s) { input = s; ln_num = 1; ln_start = s; next_token(); } string get_kind_str(TokenKind kind) { switch(kind) { static string generate_char_case(string k, string c) { import std.format; return format!" case TokenKind.%s: { return \"%s\"; } break; "(k, c); } mixin(generate_char_case("PLUS", "+")); mixin(generate_char_case("LPAREN", "(")); mixin(generate_char_case("RPAREN", ")")); mixin(generate_char_case("LBRACE", "{")); mixin(generate_char_case("RBRACE", "}")); mixin(generate_char_case("COMMA", ",")); static string generate_simple_case(string k) { import std.format; return format!" case TokenKind.%s: { return \"%s\"; } break; "(k, k); } // TODO(stefanos): For STR, NAME, give more info. mixin(generate_simple_case("NAME")); mixin(generate_simple_case("STR")); mixin(generate_simple_case("IF")); mixin(generate_simple_case("EOF")); mixin(generate_simple_case("ELSE")); mixin(generate_simple_case("PREFIX")); mixin(generate_simple_case("SUFFIX")); default: { return "Unrecognizable token"; } break; } return "Unrecognizable token"; } bool match_token(TokenKind kind) { if(is_token(kind)) { next_token(); return true; } else { return false; } } @nogc bool is_token(TokenKind kind) { return token.kind == kind; } @nogc bool is_keyword() { return (token.kind == TokenKind.IF || token.kind == TokenKind.ELSE); } bool expect_token(TokenKind kind) { if(is_token(kind)) { next_token(); return true; } else { fatal_error("Expected '", get_kind_str(kind), "' got '", get_kind_str(token.kind), "'"); return false; } } void initialize_keywords() { if_keyword = str_internz("if"); else_keyword = str_internz("else"); prefix_keyword = str_internz("prefix"); suffix_keyword = str_internz("suffix"); } void initialize_lexer() { initialize_keywords(); }
D
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsMaybe.o : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsMaybe~partial.swiftmodule : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsMaybe~partial.swiftdoc : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsMaybe~partial.swiftsourceinfo : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Deprecated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Cancelable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObserverType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Reactive.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Date+Dispatch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/RecursiveLock.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CompactMap.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Errors.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/AtomicInt.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Event.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/First.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Rx.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/Platform/Platform.Linux.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.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/deepansh/Desktop/ForexWatchlist/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.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.6.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module test.codec.websocket.model.extension; import hunt.http.WebSocketPolicy; import hunt.util.Before; import hunt.util.Rule; import hunt.util.rules.TestName; public abstract class AbstractExtensionTest { @Rule public TestName testname = new TestName(); protected ExtensionTool clientExtensions; protected ExtensionTool serverExtensions; @Before public void init() { clientExtensions = new ExtensionTool(WebSocketPolicy.newClientPolicy()); serverExtensions = new ExtensionTool(WebSocketPolicy.newServerPolicy()); } }
D
instance Mod_1593_SLD_Soeldner_FM (Npc_Default) { //-------- primary data -------- name = NAME_soeldner; guild = GIL_mil; npctype = npctype_fm_soeldner; level = 20; voice = 5; id = 1593; //-------- abilities -------- B_SetAttributesToChapter (self, 4); EquipItem (self, ItMw_GrobesKurzschwert); //-------- visuals -------- // animations B_SetNpcVisual (self, MALE, "Hum_Head_Psionic",2, 0, Itar_SLD_L); Mdl_ApplyOverlayMds (self,"Humans_Militia.mds"); fight_tactic = FAI_HUMAN_STRONG; //-------- Talente -------- Npc_SetTalentSkill (self, NPC_TALENT_1H,2); Npc_SetTalentSkill (self, NPC_TALENT_2H,1); Npc_SetTalentSkill (self, NPC_TALENT_CROSSBOW,1); //-------- inventory -------- //-------------Daily Routine------------- daily_routine = Rtn_FMstart_1593; }; FUNC VOID Rtn_FMstart_1593 () //FM { TA_Stand_Guarding (0,00,13,00, "FM_111"); TA_Stand_Guarding (13,00,00,00, "FM_111"); };
D
instance TPL_1406_Templer(Npc_Default) { name[0] = "Телохранитель Галома"; npcType = npctype_main; guild = GIL_TPL; level = 25; voice = 13; id = 1406; attribute[ATR_STRENGTH] = 100; attribute[ATR_DEXTERITY] = 80; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 292; attribute[ATR_HITPOINTS] = 292; Mdl_SetVisual(self,"HUMANS.MDS"); Mdl_ApplyOverlayMds(self,"Humans_Mage.mds"); Mdl_SetVisualBody(self,"hum_body_Naked0",1,1,"Hum_Head_Bald",63,2,tpl_armor_h); B_Scale(self); Mdl_SetModelFatness(self,0); fight_tactic = FAI_HUMAN_MASTER; Npc_SetTalentSkill(self,NPC_TALENT_2H,2); EquipItem(self,ItMw_2H_Sword_Light_02); CreateInvItem(self,ItFoSoup); CreateInvItem(self,ItMiJoint_1); daily_routine = Rtn_start_1406; }; func void Rtn_start_1406() { TA_GuardPassage(9,0,21,0,"PSI_LABOR_GUARD_1"); TA_GuardPassage(21,0,9,0,"PSI_LABOR_GUARD_1"); };
D
public import b,c,d,e;
D
/** Support for GitLab repositories. Copyright: © 2015-2016 rejectedsoftware e.K. License: Subject to the terms of the GNU GPLv3 license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module dubregistry.repositories.gitlab; import dubregistry.cache; import dubregistry.dbcontroller : DbRepository; import dubregistry.repositories.repository; import std.string : startsWith; import std.typecons; import vibe.core.log; import vibe.core.stream; import vibe.data.json; import vibe.inet.url; import vibe.textfilter.urlencode; class GitLabRepository : Repository { @safe: private { string m_owner; string m_project; URL m_baseURL; string m_authToken; } static void register(string auth_token, string url) { Repository factory(DbRepository info) @safe { return new GitLabRepository(info.owner, info.project, auth_token, url.length ? URL(url) : URL("https://gitlab.com/")); } addRepositoryFactory("gitlab", &factory); } this(string owner, string project, string auth_token, URL base_url) { m_owner = owner; m_project = project; m_authToken = auth_token; m_baseURL = base_url; } RefInfo[] getTags() { import std.datetime : SysTime; Json tags; try tags = readJson(getAPIURLPrefix()~"repository/tags?private_token="~m_authToken); catch( Exception e ) { throw new Exception("Failed to get tags: "~e.msg); } RefInfo[] ret; foreach_reverse (tag; tags) { try { auto tagname = tag["name"].get!string; auto commit = tag["commit"]["id"].get!string; auto date = SysTime.fromISOExtString(tag["commit"]["committed_date"].get!string); ret ~= RefInfo(tagname, commit, date); logDebug("Found tag for %s/%s: %s", m_owner, m_project, tagname); } catch( Exception e ){ throw new Exception("Failed to process tag "~tag["name"].get!string~": "~e.msg); } } return ret; } RefInfo[] getBranches() { import std.datetime : SysTime; Json branches = readJson(getAPIURLPrefix()~"repository/branches?private_token="~m_authToken); RefInfo[] ret; foreach_reverse( branch; branches ){ auto branchname = branch["name"].get!string; auto commit = branch["commit"]["id"].get!string; auto date = SysTime.fromISOExtString(branch["commit"]["committed_date"].get!string); ret ~= RefInfo(branchname, commit, date); logDebug("Found branch for %s/%s: %s", m_owner, m_project, branchname); } return ret; } RepositoryInfo getInfo() { RepositoryInfo ret; auto nfo = readJson(getAPIURLPrefix()~"?private_token="~m_authToken); ret.isFork = false; // not reported by API ret.stats.stars = nfo["star_count"].opt!uint; // might mean watchers for Gitlab ret.stats.forks = nfo["forks_count"].opt!uint; ret.stats.issues = nfo["open_issues_count"].opt!uint; return ret; } RepositoryFile[] listFiles(string commit_sha, InetPath path) { import std.uri : encodeComponent; assert(path.absolute, "Passed relative path to listFiles."); auto penc = () @trusted { return encodeComponent(path.toString()[1..$]); } (); auto url = getAPIURLPrefix()~"repository/tree?path="~penc~"&ref="~commit_sha; auto ls = readJson(url).get!(Json[]); RepositoryFile[] ret; ret.reserve(ls.length); foreach (entry; ls) { string type = entry["type"].get!string; RepositoryFile file; if (type == "tree") { file.type = RepositoryFile.Type.directory; } else if (type == "blob") { file.type = RepositoryFile.Type.file; } else continue; file.commitSha = commit_sha; file.path = InetPath("/" ~ entry["path"].get!string); ret ~= file; } return ret; } void readFile(string commit_sha, InetPath path, scope void delegate(scope InputStream) @safe reader) { assert(path.absolute, "Passed relative path to readFile."); auto url = m_baseURL.toString() ~ (m_owner ~ "/" ~ m_project ~ "/raw/" ~ commit_sha) ~ path.toString() ~ "?private_token="~m_authToken; downloadCached(url, (scope input) { reader(input); }, true); } string getDownloadUrl(string ver) { if (m_authToken.length > 0) return null; // public download URL doesn't work return getRawDownloadURL(ver); } void download(string ver, scope void delegate(scope InputStream) @safe del) { auto url = getRawDownloadURL(ver); url ~= "&private_token="~m_authToken; downloadCached(url, del); } private string getRawDownloadURL(string ver) { import std.uri : encodeComponent; if (ver.startsWith("~")) ver = ver[1 .. $]; else ver = ver; auto venc = () @trusted { return encodeComponent(ver); } (); return m_baseURL.toString()~m_owner~"/"~m_project~"/repository/archive.zip?ref="~venc; } private string getAPIURLPrefix() { return m_baseURL.toString() ~ "api/v4/projects/" ~ (m_owner ~ "/" ~ m_project).urlEncode ~ "/"; } }
D
module hunt.framework.routing; public import hunt.framework.routing.ActionRouteItem; public import hunt.framework.routing.RouteItem; public import hunt.framework.routing.ResourceRouteItem; public import hunt.framework.routing.RouteGroup; public import hunt.framework.routing.RouteConfigManager;
D
instance DIA_Raoul_EXIT(C_Info) { npc = Sld_822_Raoul; nr = 999; condition = DIA_Raoul_EXIT_Condition; information = DIA_Raoul_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Raoul_EXIT_Condition() { if(Kapitel < 3) { return TRUE; }; }; func void DIA_Raoul_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Raoul_NoSentenza(C_Info) { npc = Sld_822_Raoul; nr = 1; condition = DIA_Raoul_NoSentenza_Condition; information = DIA_Raoul_NoSentenza_Info; permanent = FALSE; important = TRUE; }; func int DIA_Raoul_NoSentenza_Condition() { if(!Npc_KnowsInfo(other,DIA_Sentenza_Hello) && (other.guild == GIL_NONE)) { return TRUE; }; }; func void DIA_Raoul_NoSentenza_Info() { AI_Output(self,other,"DIA_Raoul_NoSentenza_01_00"); //Минутку, приятель! AI_Output(self,other,"DIA_Raoul_NoSentenza_01_01"); //Я не видел, чтобы Сентенза обыскивал тебя. if(Hlp_IsValidNpc(Sentenza) && !C_NpcIsDown(Sentenza)) { AI_Output(self,other,"DIA_Raoul_NoSentenza_01_02"); //СЕНТЕНЗА! Иди сюда! AI_Output(self,other,"DIA_Raoul_NoSentenza_01_03"); //(фальшиво вежливо) Подожди секундочку, сейчас он подойдет! AI_Output(self,other,"DIA_Raoul_NoSentenza_01_04"); //И тогда тебя ждет неприятный сюрприз! B_Attack(Sentenza,other,AR_NONE,0); } else { AI_Output(self,other,"DIA_Raoul_NoSentenza_01_05"); //Где же он? А, ладно, не важно, тебе повезло... }; AI_StopProcessInfos(self); }; instance DIA_Raoul_Hello(C_Info) { npc = Sld_822_Raoul; nr = 1; condition = DIA_Raoul_Hello_Condition; information = DIA_Raoul_Hello_Info; permanent = TRUE; important = TRUE; }; func int DIA_Raoul_Hello_Condition() { if((other.guild == GIL_NONE) && Npc_IsInState(self,ZS_Talk)) { return TRUE; }; }; func void DIA_Raoul_Hello_Info() { if(self.aivar[AIV_TalkedToPlayer] == FALSE) { AI_Output(self,other,"DIA_Raoul_Hello_01_00"); //(скучающе) Чего тебе нужно? } else { AI_Output(self,other,"DIA_Raoul_Hello_01_01"); //(раздраженно) Что тебе нужно на этот раз? }; }; var int Raoul_gesagt; instance DIA_Raoul_PERMNone(C_Info) { npc = Sld_822_Raoul; nr = 1; condition = DIA_Raoul_PERMNone_Condition; information = DIA_Raoul_PERMNone_Info; permanent = TRUE; description = "Я хочу осмотреться на этой ферме!"; }; func int DIA_Raoul_PERMNone_Condition() { if(other.guild == GIL_NONE) { return TRUE; }; }; func void DIA_Raoul_PERMNone_Info() { if(Raoul_gesagt == FALSE) { AI_Output(other,self,"DIA_Raoul_PERMNone_15_00"); //Я хочу осмотреться на этой ферме! AI_Output(self,other,"DIA_Raoul_PERMNone_01_01"); //Не заходи в здание слева. Там Сильвио. Он сейчас не в самом лучшем расположении духа. AI_Output(self,other,"DIA_Raoul_PERMNone_01_02"); //Если он увидит слабака, не работающего на этой ферме, он может решить выместить на нем свою злобу. Raoul_gesagt = TRUE; } else { AI_Output(self,other,"DIA_Raoul_PERMNone_01_03"); //Удачи! AI_StopProcessInfos(self); }; }; instance DIA_Raoul_WannaJoin(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_WannaJoin_Condition; information = DIA_Raoul_WannaJoin_Info; permanent = FALSE; description = "Я хочу присоединиться к Ли!"; }; func int DIA_Raoul_WannaJoin_Condition() { if(other.guild == GIL_NONE) { return TRUE; }; }; func void DIA_Raoul_WannaJoin_Info() { AI_Output(other,self,"DIA_Raoul_WannaJoin_15_00"); //Я хочу присоединиться к Ли! AI_Output(self,other,"DIA_Raoul_WannaJoin_01_01"); //Если Ли будет продолжать в том же духе, ему скоро некем будет командовать! AI_Output(other,self,"DIA_Raoul_WannaJoin_15_02"); //Что ты хочешь этим сказать? AI_Output(self,other,"DIA_Raoul_WannaJoin_01_03"); //Он хочет, чтобы мы сидели здесь и били баклуши. Иногда приходится задавать взбучку фермерам - и это все. AI_Output(self,other,"DIA_Raoul_WannaJoin_01_04"); //Сильвио всегда говорил, что нападение - это лучшая оборона, и, черт возьми, он прав. }; instance DIA_Raoul_AboutSylvio(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_AboutSylvio_Condition; information = DIA_Raoul_AboutSylvio_Info; permanent = FALSE; description = "Кто такой Сильвио?"; }; func int DIA_Raoul_AboutSylvio_Condition() { if((Raoul_gesagt == TRUE) || Npc_KnowsInfo(other,DIA_Raoul_WannaJoin)) { return TRUE; }; }; func void DIA_Raoul_AboutSylvio_Info() { AI_Output(other,self,"DIA_Raoul_AboutSylvio_15_00"); //Кто такой Сильвио? AI_Output(self,other,"DIA_Raoul_AboutSylvio_01_01"); //Наш следующий предводитель, если тебе интересно мое мнение. Если ты собираешься просить его, чтобы он позволил тебе присоединиться к нашим рядам, забудь об этом! AI_Output(self,other,"DIA_Raoul_AboutSylvio_01_02"); //Судя по твоему виду, ты не подходишь даже для того, чтобы пасти овец. }; instance DIA_Raoul_Stimme(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_Stimme_Condition; information = DIA_Raoul_Stimme_Info; permanent = FALSE; description = "Я бы хотел стать наемником. Ты не возражаешь?"; }; func int DIA_Raoul_Stimme_Condition() { if(self.aivar[AIV_DefeatedByPlayer] == TRUE) { return TRUE; }; }; func void DIA_Raoul_Stimme_Info() { AI_Output(other,self,"DIA_Raoul_Stimme_15_00"); //Я бы хотел стать наемником. Ты не возражаешь? AI_Output(self,other,"DIA_Raoul_Stimme_01_01"); //Ааа, делай, что хочешь... Log_CreateTopic(TOPIC_SLDRespekt,LOG_MISSION); Log_SetTopicStatus(TOPIC_SLDRespekt,LOG_Running); B_LogEntry(TOPIC_SLDRespekt,"Рауль не возражает против моего вступления в ряды наемников."); }; instance DIA_Raoul_Duell(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_Duell_Condition; information = DIA_Raoul_Duell_Info; permanent = TRUE; description = "Я думаю, тебе стоит дать по морде..."; }; func int DIA_Raoul_Duell_Condition() { if((Raoul_gesagt == TRUE) || Npc_KnowsInfo(other,DIA_Raoul_AboutSylvio) || Npc_KnowsInfo(other,DIA_Jarvis_MissionKO)) { return TRUE; }; }; func void DIA_Raoul_Duell_Info() { AI_Output(other,self,"DIA_Raoul_Duell_15_00"); //Я думаю, тебе стоит дать по морде... AI_Output(self,other,"DIA_Raoul_Duell_01_01"); //Что? AI_Output(other,self,"DIA_Raoul_Duell_15_02"); //Это именно то, что тебе сейчас нужно... AI_Output(self,other,"DIA_Raoul_Duell_01_03"); //По-моему, я был с тобой слишком вежлив! AI_StopProcessInfos(self); B_Attack(self,other,AR_NONE,1); }; instance DIA_Raoul_PERM(C_Info) { npc = Sld_822_Raoul; nr = 900; condition = DIA_Raoul_PERM_Condition; information = DIA_Raoul_PERM_Info; permanent = TRUE; description = "Все в порядке?"; }; func int DIA_Raoul_PERM_Condition() { if(other.guild != GIL_NONE) { return TRUE; }; }; func void DIA_Raoul_PERM_Info() { AI_Output(other,self,"DIA_Raoul_PERM_15_00"); //Все в порядке? if(MIS_Raoul_KillTrollBlack == LOG_Running) { AI_Output(self,other,"DIA_Raoul_PERM_01_01"); //Не болтай попусту. Или и принеси шкуру черного тролля. } else { AI_Output(self,other,"DIA_Raoul_PERM_01_02"); //Ты пытаешься подлизаться ко мне? Забудь об этом! if(self.aivar[AIV_LastFightAgainstPlayer] == FIGHT_LOST) { AI_Output(self,other,"DIA_Raoul_PERM_01_03"); //Я не забыл, что ты сделал со мной. }; }; }; instance DIA_Raoul_TROLL(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_TROLL_Condition; information = DIA_Raoul_TROLL_Info; important = TRUE; }; func int DIA_Raoul_TROLL_Condition() { if(hero.guild != GIL_NONE) { return TRUE; }; }; func void DIA_Raoul_TROLL_Info() { AI_Output(self,other,"DIA_Raoul_TROLL_01_00"); //(цинично) Только посмотрите на это! AI_Output(other,self,"DIA_Raoul_TROLL_15_01"); //Чего тебе нужно? if((hero.guild == GIL_MIL) || (hero.guild == GIL_PAL)) { AI_Output(self,other,"DIA_Raoul_TROLL_01_02"); //Ты присоединился к городским нищим? Похоже на то. }; if((hero.guild == GIL_SLD) || (hero.guild == GIL_DJG)) { AI_Output(self,other,"DIA_Raoul_TROLL_01_03"); //Не думай, что я стану уважать тебя только за то, что ты стал одним из нас. }; if(hero.guild == GIL_KDF) { AI_Output(self,other,"DIA_Raoul_TROLL_01_04"); //Разыгрываешь из себя великого мага, ха? }; AI_Output(self,other,"DIA_Raoul_TROLL_01_05"); //Я скажу тебе одну вещь. Не важно, что ты носишь, я вижу тебя насквозь. AI_Output(self,other,"DIA_Raoul_TROLL_01_06"); //По мне, так ты просто скользкий маленький бездельник и ничего больше. Info_ClearChoices(DIA_Raoul_TROLL); Info_AddChoice(DIA_Raoul_TROLL,"Я должен идти.",DIA_Raoul_TROLL_weg); Info_AddChoice(DIA_Raoul_TROLL,"В чем твоя проблема?",DIA_Raoul_TROLL_rechnung); }; func void DIA_Raoul_TROLL_weg() { AI_Output(other,self,"DIA_Raoul_TROLL_weg_15_00"); //Я должен идти. AI_Output(self,other,"DIA_Raoul_TROLL_weg_01_01"); //Да, проваливай. AI_StopProcessInfos(self); }; func void DIA_Raoul_TROLL_rechnung() { AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_15_00"); //В чем твоя проблема? AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_01"); //Я вижу таких людей, как ты, насквозь. Способны только на слова, а когда доходит до дела - в кусты. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_02"); //Я ненавижу тех, кто одевается как вельможа и повсюду хвастает своими героическими делами. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_03"); //Не далее как вчера я набил морду одному такому. Он утверждал, что может завалить черного тролля одной левой. AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_15_04"); //И что? AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_05"); //(язвительно) Что ты хочешь сказать этим 'и что'? AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_06"); //Ты хоть раз в своей жизни видел черного тролля, болтун? Ты хотя бы представляешь себе, насколько велики эти монстры? AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_01_07"); //Если ты подойдешь к ним слишком близко, они разорвут тебя на куски. Info_ClearChoices(DIA_Raoul_TROLL); Info_AddChoice(DIA_Raoul_TROLL,"Мне это не интересно.",DIA_Raoul_TROLL_rechnung_hastrecht); if(Npc_IsDead(Troll_Black)) { Info_AddChoice(DIA_Raoul_TROLL,"Я уже убил черного тролля.",DIA_Raoul_TROLL_rechnung_ich); } else { Info_AddChoice(DIA_Raoul_TROLL,"Черного тролля? Нет проблем.",DIA_Raoul_TROLL_rechnung_noProb); }; }; func void B_Raoul_Blame() { AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_01_00"); //Ты напрашиваешься, да? Я должен был уже оторвать тебе голову. Но у меня есть идея получше. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_01_01"); //Если ты такой великий боец, докажи это. AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_15_02"); //А что мне с этого будет? AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_01_03"); //Глупый вопрос. Почет, и твоя челюсть останется не сломанной. AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_15_04"); //Не так уж много. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_01_05"); //Ммм. Скажем, я заплачу тебе целую кучу денег, если ты принесешь мне шкуру черного тролля. Как тебе? AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_15_06"); //Уже лучше. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_B_Raoul_Blame_01_07"); //Тогда чего ты ждешь? Log_CreateTopic(TOPIC_KillTrollBlack,LOG_MISSION); Log_SetTopicStatus(TOPIC_KillTrollBlack,LOG_Running); B_LogEntry(TOPIC_KillTrollBlack,"Рауль чтобы я принес ему шкуру черного тролля."); MIS_Raoul_KillTrollBlack = LOG_Running; Info_ClearChoices(DIA_Raoul_TROLL); }; func void DIA_Raoul_TROLL_rechnung_hastrecht() { AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_hastrecht_15_00"); //Мне это не интересно. AI_Output(self,other,"DIA_Raoul_TROLL_rechnung_hastrecht_01_01"); //Ну, как знаешь. Info_ClearChoices(DIA_Raoul_TROLL); }; func void DIA_Raoul_TROLL_rechnung_ich() { AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_ich_15_00"); //Я уже убил черного тролля. B_Raoul_Blame(); }; func void DIA_Raoul_TROLL_rechnung_noProb() { AI_Output(other,self,"DIA_Raoul_TROLL_rechnung_noProb_15_00"); //Черного тролля? Нет проблем. B_Raoul_Blame(); }; instance DIA_Raoul_TrophyFur(C_Info) { npc = Sld_822_Raoul; nr = 3; condition = DIA_Raoul_TrophyFur_Condition; information = DIA_Raoul_TrophyFur_Info; permanent = TRUE; description = "Сначала скажи мне, как снять шкуру с черного тролля."; }; func int DIA_Raoul_TrophyFur_Condition() { if((PLAYER_TALENT_TAKEANIMALTROPHY[TROPHY_Fur] == FALSE) && (MIS_Raoul_KillTrollBlack == LOG_Running)) { return TRUE; }; }; func void DIA_Raoul_TrophyFur_Info() { AI_Output(other,self,"DIA_Raoul_TrophyFur_15_00"); //Сначала скажи мне, как снять шкуру с черного тролля. if(B_TeachPlayerTalentTakeAnimalTrophy(self,other,TROPHY_Fur)) { AI_Output(self,other,"DIA_Raoul_TrophyFur_01_01"); //Тогда прочисть свои уши. Этот совет бесплатный. AI_Output(self,other,"DIA_Raoul_TrophyFur_01_02"); //Ты хватаешь этого зверя и делаешь надрез на каждой из его лап. AI_Output(self,other,"DIA_Raoul_TrophyFur_01_03"); //Затем снимаешь с него шкуру через голову. Разве это так сложно? }; }; instance DIA_Raoul_TROLLFELL(C_Info) { npc = Sld_822_Raoul; nr = 3; condition = DIA_Raoul_TROLLFELL_Condition; information = DIA_Raoul_TROLLFELL_Info; description = "Я принес шкуру черного тролля."; }; func int DIA_Raoul_TROLLFELL_Condition() { if(Npc_HasItems(other,ItAt_TrollBlackFur) && Npc_KnowsInfo(other,DIA_Raoul_TROLL)) { return TRUE; }; }; func void DIA_Raoul_TROLLFELL_Info() { AI_Output(other,self,"DIA_Raoul_TROLLFELL_15_00"); //Я принес шкуру черного тролля. AI_Output(self,other,"DIA_Raoul_TROLLFELL_01_01"); //Невероятно. Покажи. B_GiveInvItems(other,self,ItAt_TrollBlackFur,1); AI_Output(self,other,"DIA_Raoul_TROLLFELL_01_02"); //Невероятно. Что ты хочешь за нее? AI_Output(other,self,"DIA_Raoul_TROLLFELL_15_03"); //Отдай мне все, что у тебя есть. AI_Output(self,other,"DIA_Raoul_TROLLFELL_01_04"); //Хорошо. Я дам тебе 500 золотых монет и три сильных лечебных зелья. Что скажешь? Info_ClearChoices(DIA_Raoul_TROLLFELL); Info_AddChoice(DIA_Raoul_TROLLFELL,"Этого недостаточно.",DIA_Raoul_TROLLFELL_nein); Info_AddChoice(DIA_Raoul_TROLLFELL,"Готово.",DIA_Raoul_TROLLFELL_ja); MIS_Raoul_KillTrollBlack = LOG_SUCCESS; B_GivePlayerXP(XP_Raoul_KillTrollBlack); }; func void DIA_Raoul_TROLLFELL_ja() { AI_Output(other,self,"DIA_Raoul_TROLLFELL_ja_15_00"); //Продано. AI_Output(self,other,"DIA_Raoul_TROLLFELL_ja_01_01"); //Отличная сделка. CreateInvItems(self,ItPo_Health_03,3); B_GiveInvItems(self,other,ItPo_Health_03,3); CreateInvItems(self,ItMi_Gold,500); B_GiveInvItems(self,other,ItMi_Gold,500); Info_ClearChoices(DIA_Raoul_TROLLFELL); }; func void DIA_Raoul_TROLLFELL_nein() { AI_Output(other,self,"DIA_Raoul_TROLLFELL_nein_15_00"); //Этого недостаточно. AI_Output(self,other,"DIA_Raoul_TROLLFELL_nein_01_01"); //Как знаешь. Я все равно заберу эту шкуру. AI_Output(self,other,"DIA_Raoul_TROLLFELL_nein_01_02"); //Я не прощу себе, если упущу такую возможность. MIS_Raoul_DoesntPayTrollFur = LOG_Running; AI_StopProcessInfos(self); }; instance DIA_Raoul_FELLZURUECK(C_Info) { npc = Sld_822_Raoul; nr = 3; condition = DIA_Raoul_FELLZURUECK_Condition; information = DIA_Raoul_FELLZURUECK_Info; permanent = TRUE; description = "Верни мне мою шкуру черного тролля."; }; func int DIA_Raoul_FELLZURUECK_Condition() { if((MIS_Raoul_DoesntPayTrollFur == LOG_Running) && Npc_HasItems(self,ItAt_TrollBlackFur)) { return TRUE; }; }; func void DIA_Raoul_FELLZURUECK_Info() { AI_Output(other,self,"DIA_Raoul_FELLZURUECK_15_00"); //Верни мне мою шкуру черного тролля. AI_Output(self,other,"DIA_Raoul_FELLZURUECK_01_01"); //Нет. AI_StopProcessInfos(self); }; instance DIA_Raoul_GotTrollFurBack(C_Info) { npc = Sld_822_Raoul; nr = 3; condition = DIA_Raoul_GotTrollFurBack_Condition; information = DIA_Raoul_GotTrollFurBack_Info; description = "Никогда больше не пытайся обмануть меня, понятно?"; }; func int DIA_Raoul_GotTrollFurBack_Condition() { if((MIS_Raoul_DoesntPayTrollFur == LOG_Running) && (Npc_HasItems(self,ItAt_TrollBlackFur) == FALSE) && (self.aivar[AIV_LastFightAgainstPlayer] == FIGHT_LOST)) { return TRUE; }; }; func void DIA_Raoul_GotTrollFurBack_Info() { AI_Output(other,self,"DIA_Raoul_GotTrollFurBack_15_00"); //Никогда больше не пытайся обмануть меня, понятно? AI_Output(self,other,"DIA_Raoul_GotTrollFurBack_01_01"); //Хорошо. Ты знаешь здешние законы. Так что успокойся. MIS_Raoul_DoesntPayTrollFur = LOG_SUCCESS; AI_StopProcessInfos(self); }; instance DIA_Raoul_KAP3_EXIT(C_Info) { npc = Sld_822_Raoul; nr = 999; condition = DIA_Raoul_KAP3_EXIT_Condition; information = DIA_Raoul_KAP3_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Raoul_KAP3_EXIT_Condition() { if(Kapitel == 3) { return TRUE; }; }; func void DIA_Raoul_KAP3_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Raoul_KAP4_EXIT(C_Info) { npc = Sld_822_Raoul; nr = 999; condition = DIA_Raoul_KAP4_EXIT_Condition; information = DIA_Raoul_KAP4_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Raoul_KAP4_EXIT_Condition() { if(Kapitel == 4) { return TRUE; }; }; func void DIA_Raoul_KAP4_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Raoul_KAP5_EXIT(C_Info) { npc = Sld_822_Raoul; nr = 999; condition = DIA_Raoul_KAP5_EXIT_Condition; information = DIA_Raoul_KAP5_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Raoul_KAP5_EXIT_Condition() { if(Kapitel == 5) { return TRUE; }; }; func void DIA_Raoul_KAP5_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Raoul_Ship(C_Info) { npc = Sld_822_Raoul; nr = 2; condition = DIA_Raoul_Ship_Condition; information = DIA_Raoul_Ship_Info; description = "Ты не отказался бы от океанского круиза?"; }; func int DIA_Raoul_Ship_Condition() { if((Kapitel >= 5) && (MIS_SCKnowsWayToIrdorath == TRUE)) { return TRUE; }; }; func void DIA_Raoul_Ship_Info() { AI_Output(other,self,"DIA_Raoul_Ship_15_00"); //Ты не отказался бы от океанского круиза? AI_Output(self,other,"DIA_Raoul_Ship_01_01"); //Что ты замышляешь? Ты хочешь захватить корабль паладинов? (смеется) AI_Output(other,self,"DIA_Raoul_Ship_15_02"); //А что если и так? AI_Output(self,other,"DIA_Raoul_Ship_01_03"); //(серьезно) У тебя совсем крыша поехала. Нет, спасибо. Это не для меня. AI_Output(self,other,"DIA_Raoul_Ship_01_04"); //Я не вижу причин покидать Хоринис. Мне все равно, где зарабатывать деньги, здесь или на материке. AI_Output(self,other,"DIA_Raoul_Ship_01_05"); //Найди кого-нибудь еще. if(Npc_IsDead(Torlof) == FALSE) { AI_Output(self,other,"DIA_Raoul_Ship_01_06"); //Спроси Торлофа. Он ходил по морям, насколько я знаю. }; }; instance DIA_Raoul_KAP6_EXIT(C_Info) { npc = Sld_822_Raoul; nr = 999; condition = DIA_Raoul_KAP6_EXIT_Condition; information = DIA_Raoul_KAP6_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Raoul_KAP6_EXIT_Condition() { if(Kapitel == 6) { return TRUE; }; }; func void DIA_Raoul_KAP6_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_Raoul_PICKPOCKET(C_Info) { npc = Sld_822_Raoul; nr = 900; condition = DIA_Raoul_PICKPOCKET_Condition; information = DIA_Raoul_PICKPOCKET_Info; permanent = TRUE; description = Pickpocket_60; }; func int DIA_Raoul_PICKPOCKET_Condition() { return C_Beklauen(45,85); }; func void DIA_Raoul_PICKPOCKET_Info() { Info_ClearChoices(DIA_Raoul_PICKPOCKET); Info_AddChoice(DIA_Raoul_PICKPOCKET,Dialog_Back,DIA_Raoul_PICKPOCKET_BACK); Info_AddChoice(DIA_Raoul_PICKPOCKET,DIALOG_PICKPOCKET,DIA_Raoul_PICKPOCKET_DoIt); }; func void DIA_Raoul_PICKPOCKET_DoIt() { B_Beklauen(); Info_ClearChoices(DIA_Raoul_PICKPOCKET); }; func void DIA_Raoul_PICKPOCKET_BACK() { Info_ClearChoices(DIA_Raoul_PICKPOCKET); };
D
/******************************************************************************* Turtle implementation of DHT `Remove` request Copyright: Copyright (c) 2015-2017 dunnhumby Germany GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. *******************************************************************************/ module fakedht.request.Remove; /******************************************************************************* Imports *******************************************************************************/ import ocean.meta.types.Qualifiers; import Protocol = dhtproto.node.request.Remove; /******************************************************************************* Request implementation *******************************************************************************/ public class Remove : Protocol.Remove { import fakedht.mixins.RequestConstruction; import fakedht.Storage; /*************************************************************************** Adds this.resources and constructor to initialize it and forward arguments to base ***************************************************************************/ mixin RequestConstruction!(); /*************************************************************************** Verifies that this node is allowed to handle records with given hash Params: key = hash to check Returns: 'true' if fits in allowed range ***************************************************************************/ override protected bool isAllowed ( cstring key ) { return true; } /*************************************************************************** Removes the record from the channel Params: channel_name = name of channel to remove from key = key of record to remove ***************************************************************************/ override protected void remove ( cstring channel_name, cstring key ) { auto channel = global_storage.get(channel_name); if (channel !is null) channel.remove(key); } }
D
module dsfml.system.sleep; import dsfml.system.time; void sleep(Time duration) { sfSleep(duration.time); } package extern(C++) { void sfSleep(sfTime duration); } unittest { import sfml.system.clock; Clock c = new Clock(); sleep( dur!("seconds")( 1 ) ); assert(c.getElapsedTime() >= 1000); }
D
# FIXED hwif/srio-320c66x/bspdio_320c66x.obj: ../hwif/srio-320c66x/bspdio_320c66x.c hwif/srio-320c66x/bspdio_320c66x.obj: ../hwif/srio-320c66x/srio.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdio.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/linkage.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/std.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stddef.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/select.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/std.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/C66.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/std.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdint.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_tsc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/soc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_device.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/tistdtypes.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_types.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_error.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_chip.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_chip.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/c6x.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/vect.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srio.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_srio.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srioAux.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srioAuxPhyLayer.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cache.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cgem.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cacheAux.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_psc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_psc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_pscAux.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_bootcfg.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_bootcfg.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_bootcfgAux.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/srio/srio_drv.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppi_drv.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_global_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_rx_channel_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_rx_flow_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_tx_channel_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_tx_scheduler_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cppi.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppiver.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppi_desc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_drv.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmssver.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_qm.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_descriptor_region_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_queue_management.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_queue_status_config.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_pdsp.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_intd.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_mcdma.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cp_timer16.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_qm_queue.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_acc.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_drv.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_qos.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_mgmt.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/include/qmss_pvt.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_osal.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/srio/sriover.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/xdc.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/package.defs.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/package/package.defs.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Main_Module_GateProxy.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Text.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/IHwi.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/package/package.defs.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/semaphore.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/package.defs.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Swi.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Clock_TimerProxy.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Task_SupportProxy.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__prologue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__epilogue.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/resourcemgr.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_pvt.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_listlib.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_heap.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_types.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/pa/pa.h hwif/srio-320c66x/bspdio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdlib.h hwif/srio-320c66x/bspdio_320c66x.obj: D:/workspace/6678/v7-12-03/drv/ti/drv/pa/paver.h ../hwif/srio-320c66x/bspdio_320c66x.c: ../hwif/srio-320c66x/srio.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdio.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/linkage.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/std.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stddef.h: C:/ti/bios_6_46_05_55/packages/ti/targets/select.h: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/std.h: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/C66.h: C:/ti/bios_6_46_05_55/packages/ti/targets/std.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdint.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_tsc.h: D:/workspace/6678/v7-12-03/drv/ti/csl/soc.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_device.h: D:/workspace/6678/v7-12-03/drv/ti/csl/tistdtypes.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_types.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_error.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_chip.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_chip.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/c6x.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/vect.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srio.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_srio.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srioAux.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_srioAuxPhyLayer.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cache.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cgem.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cacheAux.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_psc.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_psc.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_pscAux.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_bootcfg.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_bootcfg.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_bootcfgAux.h: D:/workspace/6678/v7-12-03/drv/ti/drv/srio/srio_drv.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppi_drv.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_global_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_rx_channel_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_rx_flow_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_tx_channel_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cppidma_tx_scheduler_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_cppi.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppiver.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/cppi_desc.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_drv.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmssver.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_qm.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_descriptor_region_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_queue_management.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_queue_status_config.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_pdsp.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_qm_intd.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_mcdma.h: D:/workspace/6678/v7-12-03/drv/ti/csl/cslr_cp_timer16.h: D:/workspace/6678/v7-12-03/drv/ti/csl/csl_qm_queue.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_acc.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_drv.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_qos.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_mgmt.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/include/qmss_pvt.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_osal.h: D:/workspace/6678/v7-12-03/drv/ti/drv/srio/sriover.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/xdc.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/package.defs.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__epilogue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__prologue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/package/package.defs.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__epilogue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Main_Module_GateProxy.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__epilogue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Text.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__epilogue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/IHwi.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/package/package.defs.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__epilogue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/semaphore.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/package.defs.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__epilogue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Swi.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Clock_TimerProxy.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Task_SupportProxy.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__epilogue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__prologue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__epilogue.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h: D:/workspace/6678/v7-12-03/drv/resourcemgr.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_pvt.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_listlib.h: D:/workspace/6678/v7-12-03/drv/ti/drv/cppi/include/cppi_heap.h: D:/workspace/6678/v7-12-03/drv/ti/drv/qmss/qmss_types.h: D:/workspace/6678/v7-12-03/drv/ti/drv/pa/pa.h: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdlib.h: D:/workspace/6678/v7-12-03/drv/ti/drv/pa/paver.h:
D
/Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response.o : /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/MultipartFormData.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Timeline.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Response.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/TaskDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Validation.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/AFError.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Notifications.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Result.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Request.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/objc/ObjectiveC.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/Darwin.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response~partial.swiftmodule : /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/MultipartFormData.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Timeline.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Response.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/TaskDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Validation.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/AFError.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Notifications.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Result.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Request.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/objc/ObjectiveC.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/Darwin.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Response~partial.swiftdoc : /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/MultipartFormData.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Timeline.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Alamofire.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Response.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/TaskDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionDelegate.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ParameterEncoding.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Validation.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ResponseSerialization.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/SessionManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/AFError.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Notifications.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Result.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/Request.swift /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/alimurat_mac/Desktop/Tanitim_calisma/SiberSuclarTanitim/DerivedData/SiberSuclarTanitim-ddywkabefydtlkfvshlbygjxqcua/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/objc/ObjectiveC.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/usr/include/Darwin.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/alimurat_mac/Desktop/Program_archive/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010-2011 by Rainer Schuetze, All Rights Reserved // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt module vdc.parser.aggr; import vdc.util; import vdc.lexer; import vdc.parser.engine; import vdc.parser.mod; import vdc.parser.tmpl; import vdc.parser.decl; import vdc.parser.misc; import vdc.parser.stmt; import ast = vdc.ast.all; import stdext.util; //-- GRAMMAR_BEGIN -- //AggregateDeclaration: // struct Identifier StructBody // union Identifier StructBody // struct Identifier ; // union Identifier ; // StructTemplateDeclaration // UnionTemplateDeclaration // ClassDeclaration // InterfaceDeclaration // //StructTemplateDeclaration: // struct Identifier ( TemplateParameterList ) Constraint_opt StructBody // //UnionTemplateDeclaration: // union Identifier ( TemplateParameterList ) Constraint_opt StructBody // //ClassDeclaration: // class Identifier BaseClassList_opt ClassBody // ClassTemplateDeclaration // //BaseClassList: // : SuperClass // : SuperClass , InterfaceClasses // : InterfaceClass // //SuperClass: // GlobalIdentifierList // Protection GlobalIdentifierList // //InterfaceClasses: // InterfaceClass // InterfaceClass , InterfaceClasses // //InterfaceClass: // GlobalIdentifierList // Protection GlobalIdentifierList // //InterfaceDeclaration: // interface Identifier BaseInterfaceList_opt InterfaceBody // InterfaceTemplateDeclaration // //BaseInterfaceList: // : InterfaceClasses // //StructBody: // { DeclDefs_opt } // //ClassBody: // { DeclDefs_opt } // //InterfaceBody: // { DeclDefs_opt } // //Protection: // private // package // public // export class AggregateDeclaration { static Action enter(Parser p) { switch(p.tok.id) { case TOK_union: p.pushState(&shiftUnion); return Accept; case TOK_struct: p.pushState(&shiftStruct); return Accept; case TOK_class: p.pushState(&shiftClass); return Accept; case TOK_interface: p.pushState(&shiftInterface); return Accept; default: return p.parseError("class, struct or union expected"); } } static Action shiftStruct(Parser p) { switch(p.tok.id) { case TOK_Identifier: p.pushNode(new ast.Struct(p.tok)); p.pushState(&shiftIdentifier); return Accept; case TOK_lcurly: case TOK_lparen: p.pushNode(new ast.Struct(p.tok.span)); return shiftIdentifier(p); default: return p.parseError("struct identifier expected"); } } static Action shiftUnion(Parser p) { switch(p.tok.id) { case TOK_Identifier: p.pushNode(new ast.Union(p.tok)); p.pushState(&shiftIdentifier); return Accept; case TOK_lcurly: case TOK_lparen: p.pushNode(new ast.Union(p.tok.span)); return shiftIdentifier(p); default: return p.parseError("union identifier expected"); } } static Action shiftClass(Parser p) { switch(p.tok.id) { case TOK_Identifier: p.pushNode(new ast.Class(p.tok)); p.pushState(&shiftIdentifier); return Accept; default: return p.parseError("class identifier expected"); } } static Action shiftInterface(Parser p) { switch(p.tok.id) { case TOK_Identifier: p.pushNode(new ast.Intrface(p.tok)); p.pushState(&shiftIdentifier); return Accept; default: return p.parseError("interface identifier expected"); } } static Action shiftIdentifier(Parser p) { switch(p.tok.id) { case TOK_semicolon: p.topNode!(ast.Aggregate).hasBody = false; return Accept; case TOK_lcurly: return shiftLcurly(p); case TOK_lparen: p.pushState(&shiftLparen); return Accept; case TOK_colon: if(!cast(ast.Class) p.topNode() && !cast(ast.Intrface) p.topNode()) return p.parseError("only classes and interfaces support inheritance"); p.pushState(&shiftColon); return Accept; default: return p.parseError("';', '(' or '{' expected after struct or union identifier"); } } // NewArguments ClassArguments $ BaseClassList_opt ClassBody static Action enterAnonymousClass(Parser p) { p.pushNode(new ast.AnonymousClass(p.tok)); switch(p.tok.id) { case TOK_lparen: p.pushState(&shiftLparen); return Accept; case TOK_lcurly: return shiftLcurly(p); default: return shiftColon(p); } } static Action shiftColon(Parser p) { switch(p.tok.id) { case TOK_dot: case TOK_Identifier: p.pushNode(new ast.BaseClass(TOK_public, p.tok.span)); p.pushState(&shiftBaseClass); return GlobalIdentifierList.enter(p); case TOK_private: case TOK_package: case TOK_public: case TOK_export: p.pushToken(p.tok); p.pushState(&shiftProtection); return Accept; default: return p.parseError("identifier or protection attribute expected"); } } static Action shiftProtection(Parser p) { Token tok = p.popToken(); switch(p.tok.id) { case TOK_dot: case TOK_Identifier: p.pushNode(new ast.BaseClass(tok.id, tok.span)); p.pushState(&shiftBaseClass); return GlobalIdentifierList.enter(p); default: return p.parseError("identifier expected after protection attribute"); } } static Action shiftBaseClass(Parser p) { p.popAppendTopNode(); auto bc = p.popNode!(ast.BaseClass)(); p.topNode!(ast.InheritingAggregate).addBaseClass(bc); switch(p.tok.id) { case TOK_comma: p.pushState(&shiftColon); return Accept; case TOK_lcurly: return shiftLcurly(p); default: return p.parseError("'{' expected after base class list"); } } static Action shiftLparen(Parser p) { p.pushState(&shiftTemplateParameterList); return TemplateParameterList.enter(p); } static Action shiftTemplateParameterList(Parser p) { switch(p.tok.id) { case TOK_rparen: p.popAppendTopNode!(ast.Aggregate)(); p.topNode!(ast.Aggregate).hasTemplArgs = true; p.pushState(&shiftRparen); return Accept; default: return p.parseError("')' expected after template parameter list"); } } static Action shiftRparen(Parser p) { switch(p.tok.id) { case TOK_semicolon: p.topNode!(ast.Aggregate).hasBody = false; return Accept; case TOK_colon: if(!cast(ast.Class) p.topNode() && !cast(ast.Intrface) p.topNode()) return p.parseError("only classes and interfaces support inheritance"); p.pushState(&shiftColon); return Accept; case TOK_if: p.pushState(&shiftConstraint); return Constraint.enter(p); case TOK_lcurly: return shiftLcurly(p); default: return p.parseError("'{' expected after template parameter list"); } } static Action shiftConstraint(Parser p) { p.popAppendTopNode!(ast.Aggregate)(); p.topNode!(ast.Aggregate).hasConstraint = true; switch(p.tok.id) { case TOK_semicolon: p.topNode!(ast.Aggregate).hasBody = false; return Accept; case TOK_lcurly: return shiftLcurly(p); case TOK_colon: if(!cast(ast.Class) p.topNode() && !cast(ast.Intrface) p.topNode()) return p.parseError("only classes and interfaces support inheritance"); p.pushState(&shiftColon); return Accept; default: return p.parseError("'{' expected after constraint"); } } static Action shiftLcurly(Parser p) { assert(p.tok.id == TOK_lcurly); p.pushNode(new ast.StructBody(p.tok)); p.pushState(&shiftDeclDefs); p.pushState(&DeclDefs.enter); return Accept; } static Action shiftDeclDefs(Parser p) { switch(p.tok.id) { case TOK_rcurly: p.popAppendTopNode!(ast.Aggregate)(); return Accept; default: return p.parseError("closing curly brace expected to terminate aggregate body"); } } } //-- GRAMMAR_BEGIN -- //Constructor: // this TemplateParameters_opt Parameters MemberFunctionAttributes_opt Constraint_opt FunctionBody // this ( this ) Constraint_opt FunctionBody class Constructor { mixin stateAppendClass!(FunctionBody, Parser.forward) stateFunctionBody; ////////////////////////////////////////////////////////////// mixin stateAppendClass!(Constraint, stateFunctionBody.shift) stateConstraint; static Action stateMemberFunctionAttributes(Parser p) { switch(p.tok.id) { default: return stateFunctionBody.shift(p); mixin(case_TOKs_MemberFunctionAttribute); auto ctor = p.topNode!(ast.Constructor); auto list = static_cast!(ast.ParameterList)(ctor.members[$-1]); if(auto attr = tokenToAttribute(p.tok.id)) p.combineAttributes(list.attr, attr); if(auto annot = tokenToAnnotation(p.tok.id)) p.combineAnnotations(list.annotation, annot); p.pushState(&stateMemberFunctionAttributes); return Accept; case TOK_if: return stateConstraint.shift(p); } } mixin stateAppendClass!(Parameters, stateMemberFunctionAttributes) stateParametersTemplate; mixin stateAppendClass!(TemplateParameters, stateParametersTemplate.shift) stateTemplateParameterList; ////////////////////////////////////////////////////////////// static Action shiftRparen(Parser p) { switch(p.tok.id) { case TOK_lparen: return Reject; // retry with template arguments default: p.popRollback(); return stateMemberFunctionAttributes(p); } } static Action shiftParameters(Parser p) { p.popAppendTopNode!(ast.Constructor)(); switch(p.tok.id) { case TOK_rparen: p.pushState(&shiftRparen); return Accept; default: return p.parseError("')' expected"); } } static Action gotoParameters(Parser p) { switch(p.tok.id) { case TOK_rparen: p.topNode!(ast.Constructor)().addMember(new ast.ParameterList(p.tok)); p.pushState(&shiftRparen); return Accept; default: p.pushState(&shiftParameters); return ParameterList.enter(p); } } mixin stateShiftToken!(TOK_rparen, stateFunctionBody.shift) stateThis; static Action gotoThis(Parser p) { p.popRollback(); return stateThis.shift(p); } mixin stateShiftToken!(TOK_this, gotoThis, -1, gotoParameters) stateParameters; static Action rollbackParameters(Parser p) { p.topNode!(ast.Constructor)().reinit(); assert(p.tok.id == TOK_lparen); return stateTemplateParameterList.shift(p); } static Action stateLparen(Parser p) { switch(p.tok.id) { case TOK_lparen: p.pushRollback(&rollbackParameters); p.pushState(&stateParameters.shift); return Accept; default: return p.parseError("'(' expected in constructor"); } } mixin stateEnterToken!(TOK_this, ast.Constructor, stateLparen); } //-- GRAMMAR_BEGIN -- //Destructor: // ~ this ( ) FunctionBody class Destructor { mixin SequenceNode!(ast.Destructor, TOK_tilde, TOK_this, TOK_lparen, TOK_rparen, FunctionBody); } //-- GRAMMAR_BEGIN -- //StaticConstructor: // static this ( ) FunctionBody // //StaticDestructor: // static ~ this ( ) FunctionBody // //SharedStaticConstructor: // shared static this ( ) FunctionBody // //SharedStaticDestructor: // shared static ~ this ( ) FunctionBody // // //StructAllocator: // ClassAllocator // //StructDeallocator: // ClassDeallocator // //StructConstructor: // this ( ParameterList ) FunctionBody // //StructPostblit: // this ( this ) FunctionBody // //StructDestructor: // ~ this ( ) FunctionBody // // //Invariant: // invariant ( ) BlockStatement class Invariant { mixin SequenceNode!(ast.Unittest, TOK_invariant, TOK_lparen, TOK_rparen, BlockStatement); } //-- GRAMMAR_BEGIN -- //ClassAllocator: // new Parameters FunctionBody class ClassAllocator { mixin SequenceNode!(ast.ClassAllocator, TOK_new, Parameters, FunctionBody); } //-- GRAMMAR_BEGIN -- //ClassDeallocator: // delete Parameters FunctionBody class ClassDeallocator { mixin SequenceNode!(ast.ClassDeallocator, TOK_delete, Parameters, FunctionBody); }
D
/Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/Objects-normal/x86_64/MealPlanBreakfast+CoreDataProperties.o : /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SearchTextField.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FoodNutrientFile.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AppDelegate.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/YouFood+CoreDataModel.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DynamicTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DateCollectionViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RatingController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeNavigationController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AddViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DetailedRecipeViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/LogInViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanMainViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeNavigationViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SettingsViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/CircularProgressView.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/os.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/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.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/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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/os.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FIRInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FirebaseInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRMutableData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRSnapshotMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRCollectionReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSource.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FirebaseStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentChange.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthAPNSTokenType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataEventType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FirebaseCore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FirebaseFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FirebaseDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/Firebase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthUIDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics+AppDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRServerValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRWriteBatch.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldPath.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageDownloadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageUploadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageObservableTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRLoggerLevel.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuthVersion.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRListenerRegistration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRAnalyticsConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTransaction.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAdditionalUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTimestamp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRApp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIROAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGitHubAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGoogleAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRFacebookAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIREmailAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRTwitterAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRActionCodeSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIROptions.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageConstants.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthDataResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthTokenResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRTransactionResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRGeoPoint.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTaskSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuerySnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalyticsSwiftNameSupport.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Downloads/YouFood-master/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/Objects-normal/x86_64/MealPlanBreakfast+CoreDataProperties~partial.swiftmodule : /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SearchTextField.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FoodNutrientFile.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AppDelegate.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/YouFood+CoreDataModel.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DynamicTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DateCollectionViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RatingController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeNavigationController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AddViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DetailedRecipeViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/LogInViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanMainViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeNavigationViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SettingsViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/CircularProgressView.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/os.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/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.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/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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/os.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FIRInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FirebaseInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRMutableData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRSnapshotMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRCollectionReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSource.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FirebaseStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentChange.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthAPNSTokenType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataEventType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FirebaseCore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FirebaseFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FirebaseDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/Firebase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthUIDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics+AppDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRServerValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRWriteBatch.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldPath.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageDownloadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageUploadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageObservableTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRLoggerLevel.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuthVersion.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRListenerRegistration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRAnalyticsConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTransaction.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAdditionalUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTimestamp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRApp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIROAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGitHubAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGoogleAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRFacebookAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIREmailAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRTwitterAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRActionCodeSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIROptions.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageConstants.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthDataResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthTokenResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRTransactionResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRGeoPoint.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTaskSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuerySnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalyticsSwiftNameSupport.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Downloads/YouFood-master/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/Objects-normal/x86_64/MealPlanBreakfast+CoreDataProperties~partial.swiftdoc : /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SearchTextField.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FoodNutrientFile.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AppDelegate.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/YouFood+CoreDataModel.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DynamicTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DateCollectionViewCell.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RatingController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeNavigationController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/AddViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FavoriteTableViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/DetailedRecipeViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/LogInViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanMainViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SelectRecipeNavigationViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SettingsViewController.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataProperties.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/RecipeClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/MealPlanClasses.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDate+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanLunch+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanDinner+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/Users+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/DerivedSources/CoreDataGenerated/YouFood/MealPlanBreakfast+CoreDataClass.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/CircularProgressView.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/os.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/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.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/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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/os.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Photos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/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/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FIRInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseInstanceID/FirebaseInstanceID/FirebaseInstanceID.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRMutableData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDProfileData.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRSnapshotMetadata.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRCollectionReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentReference.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSource.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FirebaseStorage.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentChange.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthAPNSTokenType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataEventType.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FirebaseCore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FirebaseFirestore.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FirebaseDatabase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/Firebase.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthUIDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics+AppDelegate.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRServerValue.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRWriteBatch.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFieldPath.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuth.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageDownloadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageUploadTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageObservableTask.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthCredential.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRLoggerLevel.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GoogleSignIn.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FirebaseAuthVersion.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDAuthentication.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRListenerRegistration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRAnalyticsConfiguration.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTransaction.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDSignInButton.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAdditionalUserInfo.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRTimestamp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIRApp.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIROAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGitHubAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRGoogleAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRPhoneAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRFacebookAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIREmailAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRTwitterAuthProvider.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Headers/GIDGoogleUser.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FirebaseAnalytics.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRParameterNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIREventNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRUserPropertyNames.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRActionCodeSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthSettings.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseCore/FIROptions.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRFirestoreErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthErrors.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageConstants.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthDataResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAuth/FIRAuthTokenResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRTransactionResult.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRGeoPoint.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDataSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseStorage/FIRStorageTaskSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRDocumentSnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuerySnapshot.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseAnalytics/FirebaseAnalytics/FIRAnalyticsSwiftNameSupport.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseFirestore/FIRQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Headers/Public/FirebaseDatabase/FIRDatabaseQuery.h /Users/skwon2345/Desktop/YouFood-master_2/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Downloads/YouFood-master/Pods/Firebase/CoreOnly/Sources/module.modulemap /Users/skwon2345/Desktop/YouFood-master_2/Pods/GoogleSignIn/Frameworks/GoogleSignIn.framework/Modules/module.modulemap
D
// Written in the D programming language. /++ This module defines functions related to exceptions and general error handling. It also defines functions intended to aid in unit testing. Synopsis of some of std.exception's functions: -------------------- string synopsis() { FILE* f = enforce(fopen("some/file")); // f is not null from here on FILE* g = enforceEx!WriteException(fopen("some/other/file", "w")); // g is not null from here on Exception e = collectException(write(g, readln(f))); if (e) { ... an exception occurred... ... We have the exception to play around with... } string msg = collectExceptionMsg(write(g, readln(f))); if (msg) { ... an exception occurred... ... We have the message from the exception but not the exception... } char[] line; enforce(readln(f, line)); return assumeUnique(line); } -------------------- Macros: WIKI = Phobos/StdException Copyright: Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-. License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0) Authors: $(WEB erdani.org, Andrei Alexandrescu) and Jonathan M Davis Source: $(PHOBOSSRC std/_exception.d) +/ module std.exception; import std.array, std.c.string, std.conv, std.range, std.string, std.traits; import core.exception, core.stdc.errno; /++ Asserts that the given expression does $(I not) throw the given type of $(D Throwable). If a $(D Throwable) of the given type is thrown, it is caught and does not escape assertNotThrown. Rather, an $(D AssertError) is thrown. However, any other $(D Throwable)s will escape. Params: T = The $(D Throwable) to test for. expression = The expression to test. msg = Optional message to output on test failure. If msg is empty, and the thrown exception has a non-empty msg field, the exception's msg field will be output on test failure. file = The file where the error occurred. Defaults to $(D __FILE__). line = The line where the error occurred. Defaults to $(D __LINE__). Throws: $(D AssertError) if the given $(D Throwable) is thrown. +/ void assertNotThrown(T : Throwable = Exception, E) (lazy E expression, string msg = null, string file = __FILE__, size_t line = __LINE__) { try { expression(); } catch (T t) { immutable message = msg.empty ? t.msg : msg; immutable tail = message.empty ? "." : ": " ~ message; throw new AssertError(format("assertNotThrown failed: %s was thrown%s", T.stringof, tail), file, line, t); } } /// unittest { assertNotThrown!StringException(enforceEx!StringException(true, "Error!")); //Exception is the default. assertNotThrown(enforceEx!StringException(true, "Error!")); assert(collectExceptionMsg!AssertError(assertNotThrown!StringException( enforceEx!StringException(false, "Error!"))) == `assertNotThrown failed: StringException was thrown: Error!`); } unittest { assert(collectExceptionMsg!AssertError(assertNotThrown!StringException( enforceEx!StringException(false, ""), "Error!")) == `assertNotThrown failed: StringException was thrown: Error!`); assert(collectExceptionMsg!AssertError(assertNotThrown!StringException( enforceEx!StringException(false, ""))) == `assertNotThrown failed: StringException was thrown.`); assert(collectExceptionMsg!AssertError(assertNotThrown!StringException( enforceEx!StringException(false, ""), "")) == `assertNotThrown failed: StringException was thrown.`); } unittest { void throwEx(Throwable t) { throw t; } void nothrowEx() { } try { assertNotThrown!Exception(nothrowEx()); } catch (AssertError) assert(0); try { assertNotThrown!Exception(nothrowEx(), "It's a message"); } catch (AssertError) assert(0); try { assertNotThrown!AssertError(nothrowEx()); } catch (AssertError) assert(0); try { assertNotThrown!AssertError(nothrowEx(), "It's a message"); } catch (AssertError) assert(0); { bool thrown = false; try { assertNotThrown!Exception( throwEx(new Exception("It's an Exception"))); } catch (AssertError) thrown = true; assert(thrown); } { bool thrown = false; try { assertNotThrown!Exception( throwEx(new Exception("It's an Exception")), "It's a message"); } catch (AssertError) thrown = true; assert(thrown); } { bool thrown = false; try { assertNotThrown!AssertError( throwEx(new AssertError("It's an AssertError", __FILE__, __LINE__))); } catch (AssertError) thrown = true; assert(thrown); } { bool thrown = false; try { assertNotThrown!AssertError( throwEx(new AssertError("It's an AssertError", __FILE__, __LINE__)), "It's a message"); } catch (AssertError) thrown = true; assert(thrown); } } /++ Asserts that the given expression throws the given type of $(D Throwable). The $(D Throwable) is caught and does not escape assertThrown. However, any other $(D Throwable)s $(I will) escape, and if no $(D Throwable) of the given type is thrown, then an $(D AssertError) is thrown. Params: T = The $(D Throwable) to test for. expression = The expression to test. msg = Optional message to output on test failure. file = The file where the error occurred. Defaults to $(D __FILE__). line = The line where the error occurred. Defaults to $(D __LINE__). Throws: $(D AssertError) if the given $(D Throwable) is not thrown. +/ void assertThrown(T : Throwable = Exception, E) (lazy E expression, string msg = null, string file = __FILE__, size_t line = __LINE__) { try expression(); catch (T) return; throw new AssertError(format("assertThrown failed: No %s was thrown%s%s", T.stringof, msg.empty ? "." : ": ", msg), file, line); } /// unittest { assertThrown!StringException(enforceEx!StringException(false, "Error!")); //Exception is the default. assertThrown(enforceEx!StringException(false, "Error!")); assert(collectExceptionMsg!AssertError(assertThrown!StringException( enforceEx!StringException(true, "Error!"))) == `assertThrown failed: No StringException was thrown.`); } unittest { void throwEx(Throwable t) { throw t; } void nothrowEx() { } try { assertThrown!Exception(throwEx(new Exception("It's an Exception"))); } catch (AssertError) assert(0); try { assertThrown!Exception(throwEx(new Exception("It's an Exception")), "It's a message"); } catch(AssertError) assert(0); try { assertThrown!AssertError(throwEx(new AssertError("It's an AssertError", __FILE__, __LINE__))); } catch (AssertError) assert(0); try { assertThrown!AssertError(throwEx(new AssertError("It's an AssertError", __FILE__, __LINE__)), "It's a message"); } catch (AssertError) assert(0); { bool thrown = false; try assertThrown!Exception(nothrowEx()); catch(AssertError) thrown = true; assert(thrown); } { bool thrown = false; try assertThrown!Exception(nothrowEx(), "It's a message"); catch(AssertError) thrown = true; assert(thrown); } { bool thrown = false; try assertThrown!AssertError(nothrowEx()); catch(AssertError) thrown = true; assert(thrown); } { bool thrown = false; try assertThrown!AssertError(nothrowEx(), "It's a message"); catch(AssertError) thrown = true; assert(thrown); } } /++ If $(D !!value) is true, $(D value) is returned. Otherwise, $(D new Exception(msg)) is thrown. Note: $(D enforce) is used to throw exceptions and is therefore intended to aid in error handling. It is $(I not) intended for verifying the logic of your program. That is what $(D assert) is for. Also, do not use $(D enforce) inside of contracts (i.e. inside of $(D in) and $(D out) blocks and $(D invariant)s), because they will be compiled out when compiling with $(I -release). Use $(D assert) in contracts. Example: -------------------- auto f = enforce(fopen("data.txt")); auto line = readln(f); enforce(line.length, "Expected a non-empty line."); -------------------- +/ T enforce(T)(T value, lazy const(char)[] msg = null, string file = __FILE__, size_t line = __LINE__) if (is(typeof({ if (!value) {} }))) { if (!value) bailOut(file, line, msg); return value; } /++ $(RED Scheduled for deprecation in January 2013. If passing the file or line number explicitly, please use the version of enforce which takes them as function arguments. Taking them as template arguments causes unnecessary template bloat.) +/ T enforce(T, string file, size_t line = __LINE__) (T value, lazy const(char)[] msg = null) if (is(typeof({ if (!value) {} }))) { if (!value) bailOut(file, line, msg); return value; } /++ If $(D !!value) is true, $(D value) is returned. Otherwise, the given delegate is called. The whole safety and purity are inferred from $(D Dg)'s safety and purity. +/ T enforce(T, Dg, string file = __FILE__, size_t line = __LINE__) (T value, scope Dg dg) if (isSomeFunction!Dg && is(typeof( dg() )) && is(typeof({ if (!value) {} }))) { if (!value) dg(); return value; } private void bailOut(string file, size_t line, in char[] msg) @safe pure { throw new Exception(msg.ptr ? msg.idup : "Enforcement failed", file, line); } unittest { assert (enforce(123) == 123); try { enforce(false, "error"); assert (false); } catch (Exception e) { assert (e.msg == "error"); assert (e.file == __FILE__); assert (e.line == __LINE__-7); } } unittest { // Issue 10510 extern(C) void cFoo() { } enforce(false, &cFoo); } // purity and safety inference test unittest { import std.typetuple; foreach (EncloseSafe; TypeTuple!(false, true)) foreach (EnclosePure; TypeTuple!(false, true)) { foreach (BodySafe; TypeTuple!(false, true)) foreach (BodyPure; TypeTuple!(false, true)) { enum code = "delegate void() " ~ (EncloseSafe ? "@safe " : "") ~ (EnclosePure ? "pure " : "") ~ "{ enforce(true, { " ~ "int n; " ~ (BodySafe ? "" : "auto p = &n + 10; " ) ~ // unsafe code (BodyPure ? "" : "static int g; g = 10; ") ~ // impure code "}); " ~ "}"; enum expect = (BodySafe || !EncloseSafe) && (!EnclosePure || BodyPure); version(none) pragma(msg, "safe = ", EncloseSafe?1:0, "/", BodySafe?1:0, ", ", "pure = ", EnclosePure?1:0, "/", BodyPure?1:0, ", ", "expect = ", expect?"OK":"NG", ", ", "code = ", code); static assert(__traits(compiles, mixin(code)()) == expect); } } } // Test for bugzilla 8637 unittest { struct S { static int g; ~this() {} // impure & unsafe destructor bool opCast(T:bool)() { int* p = cast(int*)0; // unsafe operation int n = g; // impure operation return true; } } S s; enforce(s); enforce!(S, __FILE__, __LINE__)(s, ""); // scheduled for deprecation enforce(s, {}); enforce(s, new Exception("")); errnoEnforce(s); alias E1 = Exception; static class E2 : Exception { this(string fn, size_t ln) { super("", fn, ln); } } static class E3 : Exception { this(string msg) { super(msg, __FILE__, __LINE__); } } enforceEx!E1(s); enforceEx!E2(s); } /++ If $(D !!value) is true, $(D value) is returned. Otherwise, $(D ex) is thrown. Example: -------------------- auto f = enforce(fopen("data.txt")); auto line = readln(f); enforce(line.length, new IOException); // expect a non-empty line -------------------- +/ T enforce(T)(T value, lazy Throwable ex) { if (!value) throw ex(); return value; } unittest { assertNotThrown(enforce(true, new Exception("this should not be thrown"))); assertThrown(enforce(false, new Exception("this should be thrown"))); } /++ If $(D !!value) is true, $(D value) is returned. Otherwise, $(D new ErrnoException(msg)) is thrown. $(D ErrnoException) assumes that the last operation set $(D errno) to an error code. Example: -------------------- auto f = errnoEnforce(fopen("data.txt")); auto line = readln(f); enforce(line.length); // expect a non-empty line -------------------- +/ T errnoEnforce(T, string file = __FILE__, size_t line = __LINE__) (T value, lazy string msg = null) { if (!value) throw new ErrnoException(msg, file, line); return value; } /++ If $(D !!value) is $(D true), $(D value) is returned. Otherwise, $(D new E(msg, file, line)) is thrown. Or if $(D E) doesn't take a message and can be constructed with $(D new E(file, line)), then $(D new E(file, line)) will be thrown. Example: -------------------- auto f = enforceEx!FileMissingException(fopen("data.txt")); auto line = readln(f); enforceEx!DataCorruptionException(line.length); -------------------- +/ template enforceEx(E) if (is(typeof(new E("", __FILE__, __LINE__)))) { T enforceEx(T)(T value, lazy string msg = "", string file = __FILE__, size_t line = __LINE__) { if (!value) throw new E(msg, file, line); return value; } } template enforceEx(E) if (is(typeof(new E(__FILE__, __LINE__))) && !is(typeof(new E("", __FILE__, __LINE__)))) { T enforceEx(T)(T value, string file = __FILE__, size_t line = __LINE__) { if (!value) throw new E(file, line); return value; } } unittest { assertNotThrown(enforceEx!Exception(true)); assertNotThrown(enforceEx!Exception(true, "blah")); assertNotThrown(enforceEx!OutOfMemoryError(true)); { auto e = collectException(enforceEx!Exception(false)); assert(e !is null); assert(e.msg.empty); assert(e.file == __FILE__); assert(e.line == __LINE__ - 4); } { auto e = collectException(enforceEx!Exception(false, "hello", "file", 42)); assert(e !is null); assert(e.msg == "hello"); assert(e.file == "file"); assert(e.line == 42); } } unittest { alias enf = enforceEx!Exception; assertNotThrown(enf(true)); assertThrown(enf(false, "blah")); } /++ Catches and returns the exception thrown from the given expression. If no exception is thrown, then null is returned and $(D result) is set to the result of the expression. Note that while $(D collectException) $(I can) be used to collect any $(D Throwable) and not just $(D Exception)s, it is generally ill-advised to catch anything that is neither an $(D Exception) nor a type derived from $(D Exception). So, do not use $(D collectException) to collect non-$(D Exception)s unless you're sure that that's what you really want to do. Params: T = The type of exception to catch. expression = The expression which may throw an exception. result = The result of the expression if no exception is thrown. +/ T collectException(T = Exception, E)(lazy E expression, ref E result) { try { result = expression(); } catch (T e) { return e; } return null; } /// unittest { int b; int foo() { throw new Exception("blah"); } assert(collectException(foo(), b)); int[] a = new int[3]; import core.exception : RangeError; assert(collectException!RangeError(a[4], b)); } /++ Catches and returns the exception thrown from the given expression. If no exception is thrown, then null is returned. $(D E) can be $(D void). Note that while $(D collectException) $(I can) be used to collect any $(D Throwable) and not just $(D Exception)s, it is generally ill-advised to catch anything that is neither an $(D Exception) nor a type derived from $(D Exception). So, do not use $(D collectException) to collect non-$(D Exception)s unless you're sure that that's what you really want to do. Params: T = The type of exception to catch. expression = The expression which may throw an exception. +/ T collectException(T : Throwable = Exception, E)(lazy E expression) { try { expression(); } catch (T t) { return t; } return null; } unittest { int foo() { throw new Exception("blah"); } assert(collectException(foo())); } /++ Catches the exception thrown from the given expression and returns the msg property of that exception. If no exception is thrown, then null is returned. $(D E) can be $(D void). If an exception is thrown but it has an empty message, then $(D emptyExceptionMsg) is returned. Note that while $(D collectExceptionMsg) $(I can) be used to collect any $(D Throwable) and not just $(D Exception)s, it is generally ill-advised to catch anything that is neither an $(D Exception) nor a type derived from $(D Exception). So, do not use $(D collectExceptionMsg) to collect non-$(D Exception)s unless you're sure that that's what you really want to do. Params: T = The type of exception to catch. expression = The expression which may throw an exception. +/ string collectExceptionMsg(T = Exception, E)(lazy E expression) { try { expression(); return cast(string)null; } catch(T e) return e.msg.empty ? emptyExceptionMsg : e.msg; } /// unittest { void throwFunc() { throw new Exception("My Message."); } assert(collectExceptionMsg(throwFunc()) == "My Message."); void nothrowFunc() {} assert(collectExceptionMsg(nothrowFunc()) is null); void throwEmptyFunc() { throw new Exception(""); } assert(collectExceptionMsg(throwEmptyFunc()) == emptyExceptionMsg); } /++ Value that collectExceptionMsg returns when it catches an exception with an empty exception message. +/ enum emptyExceptionMsg = "<Empty Exception Message>"; /** * Casts a mutable array to an immutable array in an idiomatic * manner. Technically, $(D assumeUnique) just inserts a cast, * but its name documents assumptions on the part of the * caller. $(D assumeUnique(arr)) should only be called when * there are no more active mutable aliases to elements of $(D * arr). To strenghten this assumption, $(D assumeUnique(arr)) * also clears $(D arr) before returning. Essentially $(D * assumeUnique(arr)) indicates commitment from the caller that there * is no more mutable access to any of $(D arr)'s elements * (transitively), and that all future accesses will be done through * the immutable array returned by $(D assumeUnique). * * Typically, $(D assumeUnique) is used to return arrays from * functions that have allocated and built them. * * Example: * * ---- * string letters() * { * char[] result = new char['z' - 'a' + 1]; * foreach (i, ref e; result) * { * e = 'a' + i; * } * return assumeUnique(result); * } * ---- * * The use in the example above is correct because $(D result) * was private to $(D letters) and is unaccessible in writing * after the function returns. The following example shows an * incorrect use of $(D assumeUnique). * * Bad: * * ---- * private char[] buffer; * string letters(char first, char last) * { * if (first >= last) return null; // fine * auto sneaky = buffer; * sneaky.length = last - first + 1; * foreach (i, ref e; sneaky) * { * e = 'a' + i; * } * return assumeUnique(sneaky); // BAD * } * ---- * * The example above wreaks havoc on client code because it is * modifying arrays that callers considered immutable. To obtain an * immutable array from the writable array $(D buffer), replace * the last line with: * ---- * return to!(string)(sneaky); // not that sneaky anymore * ---- * * The call will duplicate the array appropriately. * * Checking for uniqueness during compilation is possible in certain * cases (see the $(D unique) and $(D lent) keywords in * the $(WEB archjava.fluid.cs.cmu.edu/papers/oopsla02.pdf, ArchJava) * language), but complicates the language considerably. The downside * of $(D assumeUnique)'s convention-based usage is that at this * time there is no formal checking of the correctness of the * assumption; on the upside, the idiomatic use of $(D * assumeUnique) is simple and rare enough to be tolerable. * */ immutable(T)[] assumeUnique(T)(T[] array) pure nothrow { return .assumeUnique(array); // call ref version } /// ditto immutable(T)[] assumeUnique(T)(ref T[] array) pure nothrow { auto result = cast(immutable(T)[]) array; array = null; return result; } unittest { int[] arr = new int[1]; auto arr1 = assumeUnique(arr); assert(is(typeof(arr1) == immutable(int)[]) && arr == null); } immutable(T[U]) assumeUnique(T, U)(ref T[U] array) pure nothrow { auto result = cast(immutable(T[U])) array; array = null; return result; } // @@@BUG@@@ version(none) unittest { int[string] arr = ["a":1]; auto arr1 = assumeUnique(arr); assert(is(typeof(arr1) == immutable(int[string])) && arr == null); } /** * Wraps a possibly-throwing expression in a $(D nothrow) wrapper so that it * can be called by a $(D nothrow) function. * * This wrapper function documents commitment on the part of the caller that * the appropriate steps have been taken to avoid whatever conditions may * trigger an exception during the evaluation of $(D expr). If it turns out * that the expression $(I does) throw at runtime, the wrapper will throw an * $(D AssertError). * * (Note that $(D Throwable) objects such as $(D AssertError) that do not * subclass $(D Exception) may be thrown even from $(D nothrow) functions, * since they are considered to be serious runtime problems that cannot be * recovered from.) */ T assumeWontThrow(T)(lazy T expr, string msg = null, string file = __FILE__, size_t line = __LINE__) nothrow { try { return expr; } catch(Exception e) { immutable tail = msg.empty ? "." : ": " ~ msg; throw new AssertError("assumeWontThrow failed: Expression did throw" ~ tail, file, line); } } /// unittest { import std.math : sqrt; // This function may throw. int squareRoot(int x) { if (x < 0) throw new Exception("Tried to take root of negative number"); return cast(int)sqrt(cast(double)x); } // This function never throws. int computeLength(int x, int y) nothrow { // Since x*x + y*y is always positive, we can safely assume squareRoot // won't throw, and use it to implement this nothrow function. If it // does throw (e.g., if x*x + y*y overflows a 32-bit value), then the // program will terminate. return assumeWontThrow(squareRoot(x*x + y*y)); } assert(computeLength(3, 4) == 5); } unittest { void alwaysThrows() { throw new Exception("I threw up"); } void bad() nothrow { assumeWontThrow(alwaysThrows()); } assertThrown!AssertError(bad()); } /** Returns $(D true) if $(D source)'s representation embeds a pointer that points to $(D target)'s representation or somewhere inside it. If $(D source) is or contains a dynamic array, then, then pointsTo will check if there is overlap between the dynamic array and $(D target)'s representation. If $(D source) is or contains a union, then every member of the union is checked for embedded pointers. This may lead to false positives, depending on which should be considered the "active" member of the union. If $(D source) is a class, then pointsTo will handle it as a pointer. If $(D target) is a pointer, a dynamic array or a class, then pointsTo will only check if $(D source) points to $(D target), $(I not) what $(D target) references. Note: Evaluating $(D pointsTo(x, x)) checks whether $(D x) has internal pointers. This should only be done as an assertive test, as the language is free to assume objects don't have internal pointers (TDPL 7.1.3.5). */ bool pointsTo(S, T, Tdummy=void)(auto ref const S source, ref const T target) @trusted pure nothrow if (__traits(isRef, source) || isDynamicArray!S || isPointer!S || is(S == class)) { static if (isPointer!S || is(S == class)) { const m = cast(void*) source, b = cast(void*) &target, e = b + target.sizeof; return b <= m && m < e; } else static if (is(S == struct) || is(S == union)) { foreach (i, Subobj; typeof(source.tupleof)) if (pointsTo(source.tupleof[i], target)) return true; return false; } else static if (isStaticArray!S) { foreach (size_t i; 0 .. S.length) if (pointsTo(source[i], target)) return true; return false; } else static if (isDynamicArray!S) { return overlap(cast(void[])source, cast(void[])(&target)[0 .. 1]).length != 0; } else { return false; } } // for shared objects bool pointsTo(S, T)(auto ref const shared S source, ref const shared T target) @trusted pure nothrow { return pointsTo!(shared S, shared T, void)(source, target); } /// Pointers unittest { int i = 0; int* p = null; assert(!p.pointsTo(i)); p = &i; assert( p.pointsTo(i)); } /// Structs and Unions unittest { struct S { int v; int* p; } int i; auto s = S(0, &i); //structs and unions "own" their members //pointsTo will answer true if one of the members pointsTo. assert(!s.pointsTo(s.v)); //s.v is just v member of s, so not pointed. assert( s.p.pointsTo(i)); //i is pointed by s.p. assert( s .pointsTo(i)); //which means i is pointed by s itself. //Unions will behave exactly the same. Points to will check each "member" //individually, even if they share the same memory } /// Arrays (dynamic and static) unittest { int i; int[] slice = [0, 1, 2, 3, 4]; int[5] arr = [0, 1, 2, 3, 4]; int*[] slicep = [&i]; int*[1] arrp = [&i]; //A slice points to all of its members: assert( slice.pointsTo(slice[3])); assert(!slice[0 .. 2].pointsTo(slice[3])); //Object 3 is outside of the slice [0 .. 2] //Note that a slice will not take into account what its members point to. assert( slicep[0].pointsTo(i)); assert(!slicep .pointsTo(i)); //static arrays are objects that own their members, just like structs: assert(!arr.pointsTo(arr[0])); //arr[0] is just a member of arr, so not pointed. assert( arrp[0].pointsTo(i)); //i is pointed by arrp[0]. assert( arrp .pointsTo(i)); //which means i is pointed by arrp itslef. //Notice the difference between static and dynamic arrays: assert(!arr .pointsTo(arr[0])); assert( arr[].pointsTo(arr[0])); assert( arrp .pointsTo(i)); assert(!arrp[].pointsTo(i)); } /// Classes unittest { class C { this(int* p){this.p = p;} int* p; } int i; C a = new C(&i); C b = a; //Classes are a bit particular, as they are treated like simple pointers //to a class payload. assert( a.p.pointsTo(i)); //a.p points to i. assert(!a .pointsTo(i)); //Yet a itself does not point i. //To check the class payload itself, iterate on its members: () { foreach (index, _; FieldTypeTuple!C) if (pointsTo(a.tupleof[index], i)) return; assert(0); }(); //To check if a class points a specific payload, a direct memmory check can be done: auto aLoc = cast(ubyte[__traits(classInstanceSize, C)]*) a; assert(b.pointsTo(*aLoc)); //b points to where a is pointing } unittest { struct S1 { int a; S1 * b; } S1 a1; S1 * p = &a1; assert(pointsTo(p, a1)); S1 a2; a2.b = &a1; assert(pointsTo(a2, a1)); struct S3 { int[10] a; } S3 a3; auto a4 = a3.a[2 .. 3]; assert(pointsTo(a4, a3)); auto a5 = new double[4]; auto a6 = a5[1 .. 2]; assert(!pointsTo(a5, a6)); auto a7 = new double[3]; auto a8 = new double[][1]; a8[0] = a7; assert(!pointsTo(a8[0], a8[0])); // don't invoke postblit on subobjects { static struct NoCopy { this(this) { assert(0); } } static struct Holder { NoCopy a, b, c; } Holder h; pointsTo(h, h); } shared S3 sh3; shared sh3sub = sh3.a[]; assert(pointsTo(sh3sub, sh3)); int[] darr = [1, 2, 3, 4]; //dynamic arrays don't point to each other, or slices of themselves assert(!pointsTo(darr, darr)); assert(!pointsTo(darr[0 .. 1], darr)); //But they do point their elements foreach(i; 0 .. 4) assert(pointsTo(darr, darr[i])); assert(pointsTo(darr[0..3], darr[2])); assert(!pointsTo(darr[0..3], darr[3])); } unittest { //tests with static arrays //Static arrays themselves are just objects, and don't really *point* to anything. //They aggregate their contents, much the same way a structure aggregates its attributes. //*However* The elements inside the static array may themselves point to stuff. //Standard array int[2] k; assert(!pointsTo(k, k)); //an array doesn't point to itself //Technically, k doesn't point its elements, although it does alias them assert(!pointsTo(k, k[0])); assert(!pointsTo(k, k[1])); //But an extracted slice will point to the same array. assert(pointsTo(k[], k)); assert(pointsTo(k[], k[1])); //An array of pointers int*[2] pp; int a; int b; pp[0] = &a; assert( pointsTo(pp, a)); //The array contains a pointer to a assert(!pointsTo(pp, b)); //The array does NOT contain a pointer to b assert(!pointsTo(pp, pp)); //The array does not point itslef //A struct containing a static array of pointers static struct S { int*[2] p; } S s; s.p[0] = &a; assert( pointsTo(s, a)); //The struct contains an array that points a assert(!pointsTo(s, b)); //But doesn't point b assert(!pointsTo(s, s)); //The struct doesn't actually point itslef. //An array containing structs that have pointers static struct SS { int* p; } SS[2] ss = [SS(&a), SS(null)]; assert( pointsTo(ss, a)); //The array contains a struct that points to a assert(!pointsTo(ss, b)); //The array doesn't contains a struct that points to b assert(!pointsTo(ss, ss)); //The array doesn't point itself. } unittest //Unions { int i; union U //Named union { size_t asInt = 0; int* asPointer; } struct S { union //Anonymous union { size_t asInt = 0; int* asPointer; } } U u; S s; assert(!pointsTo(u, i)); assert(!pointsTo(s, i)); u.asPointer = &i; s.asPointer = &i; assert( pointsTo(u, i)); assert( pointsTo(s, i)); u.asInt = cast(size_t)&i; s.asInt = cast(size_t)&i; assert( pointsTo(u, i)); //logical false positive assert( pointsTo(s, i)); //logical false positive } unittest //Classes { int i; static class A { int* p; } A a = new A, b = a; assert(!pointsTo(a, b)); //a does not point to b a.p = &i; assert(!pointsTo(a, i)); //a does not point to i } unittest //alias this test { static int i; static int j; struct S { int* p; @property int* foo(){return &i;} alias foo this; } assert(is(S : int*)); S s = S(&j); assert(!pointsTo(s, i)); assert( pointsTo(s, j)); assert( pointsTo(cast(int*)s, i)); assert(!pointsTo(cast(int*)s, j)); } /********************* * Thrown if errors that set $(D errno) occur. */ class ErrnoException : Exception { uint errno; // operating system error code this(string msg, string file = null, size_t line = 0) { errno = .errno; version (linux) { char[1024] buf = void; auto s = std.c.string.strerror_r(errno, buf.ptr, buf.length); } else { auto s = std.c.string.strerror(errno); } super(msg~" ("~to!string(s)~")", file, line); } } /++ ML-style functional exception handling. Runs the supplied expression and returns its result. If the expression throws a $(D Throwable), runs the supplied error handler instead and return its result. The error handler's type must be the same as the expression's type. Params: E = The type of $(D Throwable)s to catch. Defaults to $(D Exception) T1 = The type of the expression. T2 = The return type of the error handler. expression = The expression to run and return its result. errorHandler = The handler to run if the expression throwed. Examples: -------------------- //Revert to a default value upon an error: assert("x".to!int().ifThrown(0) == 0); -------------------- You can also chain multiple calls to ifThrown, each capturing errors from the entire preceding expression. Example: -------------------- //Chaining multiple calls to ifThrown to attempt multiple things in a row: string s="true"; assert(s.to!int(). ifThrown(cast(int)s.to!double()). ifThrown(cast(int)s.to!bool()) == 1); //Respond differently to different types of errors assert(enforce("x".to!int() < 1).to!string() .ifThrown!ConvException("not a number") .ifThrown!Exception("number too small") == "not a number"); -------------------- The expression and the errorHandler must have a common type they can both be implicitly casted to, and that type will be the type of the compound expression. Examples: -------------------- //null and new Object have a common type(Object). static assert(is(typeof(null.ifThrown(new Object())) == Object)); static assert(is(typeof((new Object()).ifThrown(null)) == Object)); //1 and new Object do not have a common type. static assert(!__traits(compiles, 1.ifThrown(new Object()))); static assert(!__traits(compiles, (new Object()).ifThrown(1))); -------------------- If you need to use the actual thrown expection, you can use a delegate. Example: -------------------- //Use a lambda to get the thrown object. assert("%s".format().ifThrown!Exception(e => e.classinfo.name) == "std.format.FormatException"); -------------------- +/ //lazy version CommonType!(T1, T2) ifThrown(E : Throwable = Exception, T1, T2)(lazy scope T1 expression, lazy scope T2 errorHandler) { static assert(!is(typeof(return) == void), "The error handler's return value("~T2.stringof~") does not have a common type with the expression("~T1.stringof~")."); try { return expression(); } catch(E) { return errorHandler(); } } ///ditto //delegate version CommonType!(T1, T2) ifThrown(E : Throwable, T1, T2)(lazy scope T1 expression, scope T2 delegate(E) errorHandler) { static assert(!is(typeof(return) == void), "The error handler's return value("~T2.stringof~") does not have a common type with the expression("~T1.stringof~")."); try { return expression(); } catch(E e) { return errorHandler(e); } } ///ditto //delegate version, general overload to catch any Exception CommonType!(T1, T2) ifThrown(T1, T2)(lazy scope T1 expression, scope T2 delegate(Exception) errorHandler) { static assert(!is(typeof(return) == void), "The error handler's return value("~T2.stringof~") does not have a common type with the expression("~T1.stringof~")."); try { return expression(); } catch(Exception e) { return errorHandler(e); } } //Verify Examples unittest { //Revert to a default value upon an error: assert("x".to!int().ifThrown(0) == 0); //Chaining multiple calls to ifThrown to attempt multiple things in a row: string s="true"; assert(s.to!int(). ifThrown(cast(int)s.to!double()). ifThrown(cast(int)s.to!bool()) == 1); //Respond differently to different types of errors assert(enforce("x".to!int() < 1).to!string() .ifThrown!ConvException("not a number") .ifThrown!Exception("number too small") == "not a number"); //null and new Object have a common type(Object). static assert(is(typeof(null.ifThrown(new Object())) == Object)); static assert(is(typeof((new Object()).ifThrown(null)) == Object)); //1 and new Object do not have a common type. static assert(!__traits(compiles, 1.ifThrown(new Object()))); static assert(!__traits(compiles, (new Object()).ifThrown(1))); //Use a lambda to get the thrown object. assert("%s".format().ifThrown(e => e.classinfo.name) == "std.format.FormatException"); } unittest { //Basic behaviour - all versions. assert("1".to!int().ifThrown(0) == 1); assert("x".to!int().ifThrown(0) == 0); assert("1".to!int().ifThrown!ConvException(0) == 1); assert("x".to!int().ifThrown!ConvException(0) == 0); assert("1".to!int().ifThrown(e=>0) == 1); assert("x".to!int().ifThrown(e=>0) == 0); static if (__traits(compiles, 0.ifThrown!Exception(e => 0))) //This will only work with a fix that was not yet pulled { assert("1".to!int().ifThrown!ConvException(e=>0) == 1); assert("x".to!int().ifThrown!ConvException(e=>0) == 0); } //Exceptions other than stated not caught. assert("x".to!int().ifThrown!StringException(0).collectException!ConvException() !is null); static if (__traits(compiles, 0.ifThrown!Exception(e => 0))) //This will only work with a fix that was not yet pulled { assert("x".to!int().ifThrown!StringException(e=>0).collectException!ConvException() !is null); } //Default does not include errors. int throwRangeError() { throw new RangeError; } assert(throwRangeError().ifThrown(0).collectException!RangeError() !is null); assert(throwRangeError().ifThrown(e=>0).collectException!RangeError() !is null); //Incompatible types are not accepted. static assert(!__traits(compiles, 1.ifThrown(new Object()))); static assert(!__traits(compiles, (new Object()).ifThrown(1))); static assert(!__traits(compiles, 1.ifThrown(e=>new Object()))); static assert(!__traits(compiles, (new Object()).ifThrown(e=>1))); } version(unittest) package @property void assertCTFEable(alias dg)() { static assert({ dg(); return true; }()); dg(); }
D
module region_allocator; static if (__VERSION__ >= 2082) { version(LDC) static assert(0, "TODO: Use std.experimental.allocator.building_blocks.region instead of this module"); } import std.experimental.allocator.building_blocks.null_allocator; import std.experimental.allocator.common; import std.typecons : Flag, Yes, No; /** Returns `true` if `ptr` is aligned at `alignment`. */ @nogc nothrow pure bool alignedAt(T)(T* ptr, uint alignment) { return cast(size_t) ptr % alignment == 0; } /** Returns s rounded up to a multiple of base. */ @safe @nogc nothrow pure size_t roundUpToMultipleOf(size_t s, uint base) { assert(base); auto rem = s % base; return rem ? s + base - rem : s; } @safe @nogc nothrow pure bool isGoodStaticAlignment(uint x) { import std.math : isPowerOf2; return x.isPowerOf2; } /** Returns `n` rounded up to a multiple of alignment, which must be a power of 2. */ @safe @nogc nothrow pure size_t roundUpToAlignment(size_t n, uint alignment) { import std.math : isPowerOf2; assert(alignment.isPowerOf2); immutable uint slack = cast(uint) n & (alignment - 1); const result = slack ? n + alignment - slack : n; assert(result >= n); return result; } /** Returns `n` rounded down to a multiple of alignment, which must be a power of 2. */ @safe @nogc nothrow pure size_t roundDownToAlignment(size_t n, uint alignment) { import std.math : isPowerOf2; assert(alignment.isPowerOf2); return n & ~size_t(alignment - 1); } /** Aligns a pointer up to a specified alignment. The resulting pointer is greater than or equal to the given pointer. */ @nogc nothrow pure void* alignUpTo(void* ptr, uint alignment) { import std.math : isPowerOf2; assert(alignment.isPowerOf2); immutable uint slack = cast(size_t) ptr & (alignment - 1U); return slack ? ptr + alignment - slack : ptr; } /** Aligns a pointer down to a specified alignment. The resulting pointer is less than or equal to the given pointer. */ @nogc nothrow pure void* alignDownTo(void* ptr, uint alignment) { import std.math : isPowerOf2; assert(alignment.isPowerOf2); return cast(void*) (cast(size_t) ptr & ~(alignment - 1UL)); } /** A `Region` allocator allocates memory straight from one contiguous chunk. There is no deallocation, and once the region is full, allocation requests return `null`. Therefore, `Region`s are often used (a) in conjunction with more sophisticated allocators; or (b) for batch-style very fast allocations that deallocate everything at once. The region only stores three pointers, corresponding to the current position in the store and the limits. One allocation entails rounding up the allocation size for alignment purposes, bumping the current pointer, and comparing it against the limit. If `ParentAllocator` is different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator), `Region` deallocates the chunk of memory during destruction. The `minAlign` parameter establishes alignment. If $(D minAlign > 1), the sizes of all allocation requests are rounded up to a multiple of `minAlign`. Applications aiming at maximum speed may want to choose $(D minAlign = 1) and control alignment externally. */ struct Region(ParentAllocator = NullAllocator, uint minAlign = platformAlignment, Flag!"growDownwards" growDownwards = No.growDownwards) { static assert(minAlign.isGoodStaticAlignment); static assert(ParentAllocator.alignment >= minAlign); import std.traits : hasMember; import std.typecons : Ternary; // state /** The _parent allocator. Depending on whether `ParentAllocator` holds state or not, this is a member variable or an alias for `ParentAllocator.instance`. */ static if (stateSize!ParentAllocator) { ParentAllocator parent; } else { alias parent = ParentAllocator.instance; } private void* _current, _begin, _end; private void* roundedBegin() const pure nothrow @trusted @nogc { return cast(void*) roundUpToAlignment(cast(size_t) _begin, alignment); } private void* roundedEnd() const pure nothrow @trusted @nogc { return cast(void*) roundDownToAlignment(cast(size_t) _end, alignment); } /** Constructs a region backed by a user-provided store. Assumes the memory was allocated with `ParentAllocator` (if different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator)). Params: store = User-provided store backing up the region. If $(D ParentAllocator) is different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator), memory is assumed to have been allocated with `ParentAllocator`. n = Bytes to allocate using `ParentAllocator`. This constructor is only defined If `ParentAllocator` is different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator). If `parent.allocate(n)` returns `null`, the region will be initialized as empty (correctly initialized but unable to allocate). */ this(ubyte[] store) pure nothrow @nogc { _begin = store.ptr; _end = store.ptr + store.length; static if (growDownwards) _current = roundedEnd(); else _current = roundedBegin(); } /// Ditto static if (!is(ParentAllocator == NullAllocator)) this(size_t n) { this(cast(ubyte[]) (parent.allocate(n.roundUpToAlignment(alignment)))); } /* TODO: The postblit of `BasicRegion` should be disabled because such objects should not be copied around naively. */ /** If `ParentAllocator` is not $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator) and defines `deallocate`, the region defines a destructor that uses `ParentAllocator.deallocate` to free the memory chunk. */ static if (!is(ParentAllocator == NullAllocator) && hasMember!(ParentAllocator, "deallocate")) ~this() { parent.deallocate(_begin[0 .. _end - _begin]); } /** Rounds the given size to a multiple of the `alignment` */ size_t goodAllocSize(size_t n) const pure nothrow @safe @nogc { return n.roundUpToAlignment(alignment); } /** Alignment offered. */ alias alignment = minAlign; /** Allocates `n` bytes of memory. The shortest path involves an alignment adjustment (if $(D alignment > 1)), an increment, and a comparison. Params: n = number of bytes to allocate Returns: A properly-aligned buffer of size `n` or `null` if request could not be satisfied. */ void[] allocate(size_t n) pure nothrow @trusted @nogc { const rounded = goodAllocSize(n); if (n == 0 || rounded < n || available < rounded) return null; static if (growDownwards) { assert(available >= rounded); auto result = (_current - rounded)[0 .. n]; assert(result.ptr >= _begin); _current = result.ptr; assert(owns(result) == Ternary.yes); } else { auto result = _current[0 .. n]; _current += rounded; } return result; } /** Allocates `n` bytes of memory aligned at alignment `a`. Params: n = number of bytes to allocate a = alignment for the allocated block Returns: Either a suitable block of `n` bytes aligned at `a`, or `null`. */ void[] alignedAllocate(size_t n, uint a) pure nothrow @trusted @nogc { import std.math : isPowerOf2; assert(a.isPowerOf2); const rounded = goodAllocSize(n); if (n == 0 || rounded < n || available < rounded) return null; static if (growDownwards) { auto tmpCurrent = _current - rounded; auto result = tmpCurrent.alignDownTo(a); if (result <= tmpCurrent && result >= _begin) { _current = result; return cast(void[]) result[0 .. n]; } } else { // Just bump the pointer to the next good allocation auto newCurrent = _current.alignUpTo(a); if (newCurrent < _current || newCurrent > _end) return null; auto save = _current; _current = newCurrent; auto result = allocate(n); if (result.ptr) { assert(result.length == n); return result; } // Failed, rollback _current = save; } return null; } /// Allocates and returns all memory available to this region. void[] allocateAll() pure nothrow @trusted @nogc { static if (growDownwards) { auto result = _begin[0 .. available]; _current = _begin; } else { auto result = _current[0 .. available]; _current = _end; } return result; } /** Expands an allocated block in place. Expansion will succeed only if the block is the last allocated. Defined only if `growDownwards` is `No.growDownwards`. */ static if (growDownwards == No.growDownwards) bool expand(ref void[] b, size_t delta) pure nothrow @safe @nogc { assert(owns(b) == Ternary.yes || b is null); assert((() @trusted => b.ptr + b.length <= _current)() || b is null); if (b is null || delta == 0) return delta == 0; auto newLength = b.length + delta; if ((() @trusted => _current < b.ptr + b.length + alignment)()) { immutable currentGoodSize = this.goodAllocSize(b.length); immutable newGoodSize = this.goodAllocSize(newLength); immutable goodDelta = newGoodSize - currentGoodSize; // This was the last allocation! Allocate some more and we're done. if (goodDelta == 0 || (() @trusted => allocate(goodDelta).length == goodDelta)()) { b = (() @trusted => b.ptr[0 .. newLength])(); assert((() @trusted => _current < b.ptr + b.length + alignment)()); return true; } } return false; } /** Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does nothing. Params: b = Block previously obtained by a call to `allocate` against this allocator (`null` is allowed). */ bool deallocate(void[] b) pure nothrow @nogc { assert(owns(b) == Ternary.yes || b.ptr is null); auto rounded = goodAllocSize(b.length); static if (growDownwards) { if (b.ptr == _current) { _current += rounded; return true; } } else { if (b.ptr + rounded == _current) { assert(b.ptr !is null || _current is null); _current = b.ptr; return true; } } return false; } /** Deallocates all memory allocated by this region, which can be subsequently reused for new allocations. */ bool deallocateAll() @safe pure nothrow @nogc { static if (growDownwards) { _current = roundedEnd(); } else { _current = roundedBegin(); } return true; } /** Queries whether `b` has been allocated with this region. Params: b = Arbitrary block of memory (`null` is allowed; `owns(null)` returns `false`). Returns: `true` if `b` has been allocated with this region, `false` otherwise. */ Ternary owns(const void[] b) const pure nothrow @trusted @nogc { return Ternary(b && (&b[0] >= _begin) && (&b[0] + b.length <= _end)); } /** Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.) */ Ternary empty() const pure nothrow @safe @nogc { static if (growDownwards) return Ternary(_current == roundedEnd()); else return Ternary(_current == roundedBegin()); } /// Nonstandard property that returns bytes available for allocation. size_t available() const @safe pure nothrow @nogc { static if (growDownwards) { return _current - _begin; } else { return _end - _current; } } } /// @system nothrow unittest { import std.algorithm.comparison : max; import std.experimental.allocator.building_blocks.allocator_list : AllocatorList; import std.experimental.allocator.mallocator : Mallocator; import std.typecons : Ternary; // Create a scalable list of regions. Each gets at least 1MB at a time by // using malloc. auto batchAllocator = AllocatorList!( (size_t n) => Region!Mallocator(max(n, 1024 * 1024)) )(); assert(batchAllocator.empty == Ternary.yes); auto b = batchAllocator.allocate(101); assert(b.length == 101); assert(batchAllocator.empty == Ternary.no); // This will cause a second allocation b = batchAllocator.allocate(2 * 1024 * 1024); assert(b.length == 2 * 1024 * 1024); // Destructor will free the memory } // TODO activate // @system nothrow @nogc unittest // { // import std.experimental.allocator.mallocator : Mallocator; // import std.typecons : Ternary; // static void testAlloc(Allocator)(ref Allocator a) // { // assert((() pure nothrow @safe @nogc => a.empty)() == Ternary.yes); // const b = a.allocate(101); // assert(b.length == 101); // assert((() nothrow @safe @nogc => a.owns(b))() == Ternary.yes); // // Ensure deallocate inherits from parent allocators // auto c = a.allocate(42); // assert(c.length == 42); // assert((() nothrow @nogc => a.deallocate(c))()); // assert((() pure nothrow @safe @nogc => a.empty)() == Ternary.no); // } // // Create a 64 KB region allocated with malloc // auto reg = Region!(Mallocator, Mallocator.alignment, // Yes.growDownwards)(1024 * 64); // testAlloc(reg); // // Create a 64 KB shared region allocated with malloc // auto sharedReg = SharedRegion!(Mallocator, Mallocator.alignment, // Yes.growDownwards)(1024 * 64); // testAlloc(sharedReg); // } @system nothrow @nogc unittest { import std.experimental.allocator.mallocator : AlignedMallocator; import std.typecons : Ternary; ubyte[] buf = cast(ubyte[]) AlignedMallocator.instance.alignedAllocate(64, 64); auto reg = Region!(NullAllocator, 64, Yes.growDownwards)(buf); assert(reg.alignedAllocate(10, 32).length == 10); assert(!reg.available); } // TODO activate // @system nothrow @nogc unittest // { // // test 'this(ubyte[] store)' constructed regions properly clean up // // their inner storage after destruction // import std.experimental.allocator.mallocator : Mallocator; // static shared struct LocalAllocator // { // nothrow @nogc: // enum alignment = Mallocator.alignment; // void[] buf; // bool deallocate(void[] b) // { // assert(buf.ptr == b.ptr && buf.length == b.length); // return true; // } // void[] allocate(size_t n) // { // return null; // } // } // enum bufLen = 10 * Mallocator.alignment; // void[] tmp = Mallocator.instance.allocate(bufLen); // LocalAllocator a; // a.buf = cast(typeof(a.buf)) tmp[1 .. $]; // auto reg = Region!(LocalAllocator, Mallocator.alignment, // Yes.growDownwards)(cast(ubyte[]) a.buf); // auto sharedReg = SharedRegion!(LocalAllocator, Mallocator.alignment, // Yes.growDownwards)(cast(ubyte[]) a.buf); // reg.parent = a; // sharedReg.parent = a; // Mallocator.instance.deallocate(tmp); // } @system nothrow @nogc unittest { import std.experimental.allocator.mallocator : Mallocator; auto reg = Region!(Mallocator)(1024 * 64); auto b = reg.allocate(101); assert(b.length == 101); assert((() pure nothrow @safe @nogc => reg.expand(b, 20))()); assert((() pure nothrow @safe @nogc => reg.expand(b, 73))()); assert((() pure nothrow @safe @nogc => !reg.expand(b, 1024 * 64))()); assert((() nothrow @nogc => reg.deallocateAll())()); } /** `InSituRegion` is a convenient region that carries its storage within itself (in the form of a statically-sized array). The first template argument is the size of the region and the second is the needed alignment. Depending on the alignment requested and platform details, the actual available storage may be smaller than the compile-time parameter. To make sure that at least `n` bytes are available in the region, use $(D InSituRegion!(n + a - 1, a)). Given that the most frequent use of `InSituRegion` is as a stack allocator, it allocates starting at the end on systems where stack grows downwards, such that hot memory is used first. */ struct InSituRegion(size_t size, size_t minAlign = platformAlignment) { import std.algorithm.comparison : max; import std.conv : to; import std.traits : hasMember; import std.typecons : Ternary; static assert(minAlign.isGoodStaticAlignment); static assert(size >= minAlign); version (X86) enum growDownwards = Yes.growDownwards; else version (X86_64) enum growDownwards = Yes.growDownwards; else version (ARM) enum growDownwards = Yes.growDownwards; else version (AArch64) enum growDownwards = Yes.growDownwards; else version (PPC) enum growDownwards = Yes.growDownwards; else version (PPC64) enum growDownwards = Yes.growDownwards; else version (MIPS32) enum growDownwards = Yes.growDownwards; else version (MIPS64) enum growDownwards = Yes.growDownwards; else version (SPARC) enum growDownwards = Yes.growDownwards; else version (SystemZ) enum growDownwards = Yes.growDownwards; else static assert(0, "Dunno how the stack grows on this architecture."); @disable this(this); // state { private Region!(NullAllocator, minAlign, growDownwards) _impl; union { private ubyte[size] _store = void; private double _forAlignmentOnly1 = void; } // } /** An alias for `minAlign`, which must be a valid alignment (nonzero power of 2). The start of the region and all allocation requests will be rounded up to a multiple of the alignment. ---- InSituRegion!(4096) a1; assert(a1.alignment == platformAlignment); InSituRegion!(4096, 64) a2; assert(a2.alignment == 64); ---- */ alias alignment = minAlign; private void lazyInit() { assert(!_impl._current); _impl = typeof(_impl)(_store); assert(_impl._current.alignedAt(alignment)); } /** Allocates `bytes` and returns them, or `null` if the region cannot accommodate the request. For efficiency reasons, if $(D bytes == 0) the function returns an empty non-null slice. */ void[] allocate(size_t n) { // Fast path entry: auto result = _impl.allocate(n); if (result.length == n) return result; // Slow path if (_impl._current) return null; // no more room lazyInit; assert(_impl._current); goto entry; } /** As above, but the memory allocated is aligned at `a` bytes. */ void[] alignedAllocate(size_t n, uint a) { // Fast path entry: auto result = _impl.alignedAllocate(n, a); if (result.length == n) return result; // Slow path if (_impl._current) return null; // no more room lazyInit; assert(_impl._current); goto entry; } /** Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does nothing. This semantics is tricky and therefore `deallocate` is defined only if `Region` is instantiated with `Yes.defineDeallocate` as the third template argument. Params: b = Block previously obtained by a call to `allocate` against this allocator (`null` is allowed). */ bool deallocate(void[] b) { if (!_impl._current) return b is null; return _impl.deallocate(b); } /** Returns `Ternary.yes` if `b` is the result of a previous allocation, `Ternary.no` otherwise. */ Ternary owns(const void[] b) pure nothrow @safe @nogc { if (!_impl._current) return Ternary.no; return _impl.owns(b); } /** Expands an allocated block in place. Expansion will succeed only if the block is the last allocated. */ static if (hasMember!(typeof(_impl), "expand")) bool expand(ref void[] b, size_t delta) { if (!_impl._current) lazyInit; return _impl.expand(b, delta); } /** Deallocates all memory allocated with this allocator. */ bool deallocateAll() { // We don't care to lazily init the region return _impl.deallocateAll; } /** Allocates all memory available with this allocator. */ void[] allocateAll() { if (!_impl._current) lazyInit; return _impl.allocateAll; } /** Nonstandard function that returns the bytes available for allocation. */ size_t available() { if (!_impl._current) lazyInit; return _impl.available; } } /// @system unittest { // 128KB region, allocated to x86's cache line InSituRegion!(128 * 1024, 16) r1; auto a1 = r1.allocate(101); assert(a1.length == 101); // 128KB region, with fallback to the garbage collector. import std.experimental.allocator.building_blocks.fallback_allocator : FallbackAllocator; import std.experimental.allocator.building_blocks.free_list : FreeList; import std.experimental.allocator.building_blocks.bitmapped_block : BitmappedBlock; import std.experimental.allocator.gc_allocator : GCAllocator; FallbackAllocator!(InSituRegion!(128 * 1024), GCAllocator) r2; const a2 = r2.allocate(102); assert(a2.length == 102); // Reap with GC fallback. InSituRegion!(128 * 1024, 8) tmp3; FallbackAllocator!(BitmappedBlock!(64, 8), GCAllocator) r3; r3.primary = BitmappedBlock!(64, 8)(cast(ubyte[]) (tmp3.allocateAll())); const a3 = r3.allocate(103); assert(a3.length == 103); // Reap/GC with a freelist for small objects up to 16 bytes. InSituRegion!(128 * 1024, 64) tmp4; FreeList!(FallbackAllocator!(BitmappedBlock!(64, 64), GCAllocator), 0, 16) r4; r4.parent.primary = BitmappedBlock!(64, 64)(cast(ubyte[]) (tmp4.allocateAll())); const a4 = r4.allocate(104); assert(a4.length == 104); } @system pure nothrow unittest { import std.typecons : Ternary; InSituRegion!(4096, 1) r1; auto a = r1.allocate(2001); assert(a.length == 2001); import std.conv : text; assert(r1.available == 2095, text(r1.available)); // Ensure deallocate inherits from parent assert((() nothrow @nogc => r1.deallocate(a))()); assert((() nothrow @nogc => r1.deallocateAll())()); InSituRegion!(65_536, 1024*4) r2; assert(r2.available <= 65_536); a = r2.allocate(2001); assert(a.length == 2001); const void[] buff = r2.allocate(42); assert((() nothrow @safe @nogc => r2.owns(buff))() == Ternary.yes); assert((() nothrow @nogc => r2.deallocateAll())()); } version(CRuntime_Musl) { // sbrk and brk are disabled in Musl: // https://git.musl-libc.org/cgit/musl/commit/?id=7a995fe706e519a4f55399776ef0df9596101f93 // https://git.musl-libc.org/cgit/musl/commit/?id=863d628d93ea341b6a32661a1654320ce69f6a07 } else: private extern(C) void* sbrk(long) nothrow @nogc; private extern(C) int brk(shared void*) nothrow @nogc; /** Allocator backed by $(D $(LINK2 https://en.wikipedia.org/wiki/Sbrk, sbrk)) for Posix systems. Due to the fact that `sbrk` is not thread-safe $(HTTP lifecs.likai.org/2010/02/sbrk-is-not-thread-safe.html, by design), `SbrkRegion` uses a mutex internally. This implies that uncontrolled calls to `brk` and `sbrk` may affect the workings of $(D SbrkRegion) adversely. */ version(Posix) struct SbrkRegion(uint minAlign = platformAlignment) { import core.sys.posix.pthread : pthread_mutex_init, pthread_mutex_destroy, pthread_mutex_t, pthread_mutex_lock, pthread_mutex_unlock, PTHREAD_MUTEX_INITIALIZER; private static shared pthread_mutex_t sbrkMutex = PTHREAD_MUTEX_INITIALIZER; import std.typecons : Ternary; static assert(minAlign.isGoodStaticAlignment); static assert(size_t.sizeof == (void*).sizeof); private shared void* _brkInitial, _brkCurrent; /** Instance shared by all callers. */ static shared SbrkRegion instance; /** Standard allocator primitives. */ enum uint alignment = minAlign; /** Rounds the given size to a multiple of thew `alignment` */ size_t goodAllocSize(size_t n) shared const pure nothrow @safe @nogc { return n.roundUpToMultipleOf(alignment); } /// Ditto void[] allocate(size_t bytes) shared @trusted nothrow @nogc { // Take alignment rounding into account const rounded = goodAllocSize(bytes); pthread_mutex_lock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); scope(exit) pthread_mutex_unlock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); // Assume sbrk returns the old break. Most online documentation confirms // that, except for http://www.inf.udec.cl/~leo/Malloc_tutorial.pdf, // which claims the returned value is not portable. auto p = sbrk(rounded); if (p == cast(void*) -1) { return null; } if (!_brkInitial) { _brkInitial = cast(shared) p; assert(cast(size_t) _brkInitial % minAlign == 0, "Too large alignment chosen for " ~ typeof(this).stringof); } _brkCurrent = cast(shared) (p + rounded); return p[0 .. bytes]; } /// Ditto void[] alignedAllocate(size_t bytes, uint a) shared @trusted nothrow @nogc { pthread_mutex_lock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); scope(exit) pthread_mutex_unlock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); if (!_brkInitial) { // This is one extra call, but it'll happen only once. _brkInitial = cast(shared) sbrk(0); assert(cast(size_t) _brkInitial % minAlign == 0, "Too large alignment chosen for " ~ typeof(this).stringof); (_brkInitial != cast(void*) -1) || assert(0); _brkCurrent = _brkInitial; } immutable size_t delta = cast(shared void*) roundUpToMultipleOf( cast(size_t) _brkCurrent, a) - _brkCurrent; // Still must make sure the total size is aligned to the allocator's // alignment. immutable rounded = (bytes + delta).roundUpToMultipleOf(alignment); auto p = sbrk(rounded); if (p == cast(void*) -1) { return null; } _brkCurrent = cast(shared) (p + rounded); return p[delta .. delta + bytes]; } /** The `expand` method may only succeed if the argument is the last block allocated. In that case, `expand` attempts to push the break pointer to the right. */ bool expand(ref void[] b, size_t delta) shared nothrow @trusted @nogc { if (b is null || delta == 0) return delta == 0; assert(_brkInitial && _brkCurrent); // otherwise where did b come from? pthread_mutex_lock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); scope(exit) pthread_mutex_unlock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); // Take alignment rounding into account const rounded = goodAllocSize(b.length); const slack = rounded - b.length; if (delta <= slack) { b = b.ptr[0 .. b.length + delta]; return true; } if (_brkCurrent != b.ptr + rounded) return false; // Great, can expand the last block delta -= slack; const roundedDelta = goodAllocSize(delta); auto p = sbrk(roundedDelta); if (p == cast(void*) -1) { return false; } _brkCurrent = cast(shared) (p + roundedDelta); b = b.ptr[0 .. b.length + slack + delta]; return true; } /// Ditto Ternary owns(const void[] b) shared pure nothrow @trusted @nogc { // No need to lock here. assert(!_brkCurrent || !b || &b[0] + b.length <= _brkCurrent); return Ternary(_brkInitial && b && (&b[0] >= _brkInitial)); } /** The `deallocate` method only works (and returns `true`) on systems that support reducing the break address (i.e. accept calls to `sbrk` with negative offsets). OSX does not accept such. In addition the argument must be the last block allocated. */ bool deallocate(void[] b) shared nothrow @nogc { // Take alignment rounding into account const rounded = goodAllocSize(b.length); pthread_mutex_lock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); scope(exit) pthread_mutex_unlock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); if (_brkCurrent != b.ptr + rounded) return false; assert(b.ptr >= _brkInitial); if (sbrk(-rounded) == cast(void*) -1) return false; _brkCurrent = cast(shared) b.ptr; return true; } /** The `deallocateAll` method only works (and returns `true`) on systems that support reducing the break address (i.e. accept calls to `sbrk` with negative offsets). OSX does not accept such. */ nothrow @nogc bool deallocateAll() shared { pthread_mutex_lock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); scope(exit) pthread_mutex_unlock(cast(pthread_mutex_t*) &sbrkMutex) == 0 || assert(0); return !_brkInitial || brk(_brkInitial) == 0; } /// Standard allocator API. Ternary empty() shared pure nothrow @safe @nogc { // Also works when they're both null. return Ternary(_brkCurrent == _brkInitial); } } version(Posix) @system nothrow @nogc unittest { // Let's test the assumption that sbrk(n) returns the old address const p1 = sbrk(0); const p2 = sbrk(4096); assert(p1 == p2); const p3 = sbrk(0); assert(p3 == p2 + 4096); // Try to reset brk, but don't make a fuss if it doesn't work sbrk(-4096); } version(Posix) @system nothrow @nogc unittest { import std.typecons : Ternary; import std.algorithm.comparison : min; alias alloc = SbrkRegion!(min(8, platformAlignment)).instance; assert((() nothrow @safe @nogc => alloc.empty)() == Ternary.yes); auto a = alloc.alignedAllocate(2001, 4096); assert(a.length == 2001); assert((() nothrow @safe @nogc => alloc.empty)() == Ternary.no); auto oldBrkCurr = alloc._brkCurrent; auto b = alloc.allocate(2001); assert(b.length == 2001); assert((() nothrow @safe @nogc => alloc.expand(b, 0))()); assert(b.length == 2001); // Expand with a small size to fit the rounded slack due to alignment assert((() nothrow @safe @nogc => alloc.expand(b, 1))()); assert(b.length == 2002); // Exceed the rounded slack due to alignment assert((() nothrow @safe @nogc => alloc.expand(b, 10))()); assert(b.length == 2012); assert((() nothrow @safe @nogc => alloc.owns(a))() == Ternary.yes); assert((() nothrow @safe @nogc => alloc.owns(b))() == Ternary.yes); // reducing the brk does not work on OSX version(OSX) {} else { assert((() nothrow @nogc => alloc.deallocate(b))()); // Check that expand and deallocate work well assert(oldBrkCurr == alloc._brkCurrent); assert((() nothrow @nogc => alloc.deallocate(a))()); assert((() nothrow @nogc => alloc.deallocateAll())()); } const void[] c = alloc.allocate(2001); assert(c.length == 2001); assert((() nothrow @safe @nogc => alloc.owns(c))() == Ternary.yes); assert((() nothrow @safe @nogc => alloc.owns(null))() == Ternary.no); } /** The threadsafe version of the `Region` allocator. Allocations and deallocations are lock-free based using $(REF cas, core,atomic). */ shared struct SharedRegion(ParentAllocator = NullAllocator, uint minAlign = platformAlignment, Flag!"growDownwards" growDownwards = No.growDownwards) { nothrow @nogc: static assert(minAlign.isGoodStaticAlignment); static assert(ParentAllocator.alignment >= minAlign); import std.traits : hasMember; import std.typecons : Ternary; // state /** The _parent allocator. Depending on whether `ParentAllocator` holds state or not, this is a member variable or an alias for `ParentAllocator.instance`. */ static if (stateSize!ParentAllocator) { ParentAllocator parent; } else { alias parent = ParentAllocator.instance; } private shared void* _current, _begin, _end; private void* roundedBegin() const pure nothrow @trusted @nogc { return cast(void*) roundUpToAlignment(cast(size_t) _begin, alignment); } private void* roundedEnd() const pure nothrow @trusted @nogc { return cast(void*) roundDownToAlignment(cast(size_t) _end, alignment); } /** Constructs a region backed by a user-provided store. Assumes the memory was allocated with `ParentAllocator` (if different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator)). Params: store = User-provided store backing up the region. If `ParentAllocator` is different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator), memory is assumed to have been allocated with `ParentAllocator`. n = Bytes to allocate using `ParentAllocator`. This constructor is only defined If `ParentAllocator` is different from $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator). If `parent.allocate(n)` returns `null`, the region will be initialized as empty (correctly initialized but unable to allocate). */ this(ubyte[] store) pure nothrow @nogc { _begin = cast(typeof(_begin)) store.ptr; _end = cast(typeof(_end)) (store.ptr + store.length); static if (growDownwards) _current = cast(typeof(_current)) roundedEnd(); else _current = cast(typeof(_current)) roundedBegin(); } /// Ditto static if (!is(ParentAllocator == NullAllocator)) this(size_t n) { this(cast(ubyte[]) (parent.allocate(n.roundUpToAlignment(alignment)))); } /** Rounds the given size to a multiple of the `alignment` */ size_t goodAllocSize(size_t n) const pure nothrow @safe @nogc { return n.roundUpToAlignment(alignment); } /** Alignment offered. */ alias alignment = minAlign; /** Allocates `n` bytes of memory. The allocation is served by atomically incrementing a pointer which keeps track of the current used space. Params: n = number of bytes to allocate Returns: A properly-aligned buffer of size `n`, or `null` if request could not be satisfied. */ void[] allocate(size_t n) pure nothrow @trusted @nogc { import core.atomic : cas, atomicLoad; if (n == 0) return null; const rounded = goodAllocSize(n); shared void* localCurrent, localNewCurrent; static if (growDownwards) { do { localCurrent = atomicLoad(_current); localNewCurrent = localCurrent - rounded; if (localNewCurrent > localCurrent || localNewCurrent < _begin) return null; } while (!cas(&_current, localCurrent, localNewCurrent)); return cast(void[]) localNewCurrent[0 .. n]; } else { do { localCurrent = atomicLoad(_current); localNewCurrent = localCurrent + rounded; if (localNewCurrent < localCurrent || localNewCurrent > _end) return null; } while (!cas(&_current, localCurrent, localNewCurrent)); return cast(void[]) localCurrent[0 .. n]; } assert(0, "Unexpected error in SharedRegion.allocate"); } /** Deallocates `b`. This works only if `b` was obtained as the last call to `allocate`; otherwise (i.e. another allocation has occurred since) it does nothing. Params: b = Block previously obtained by a call to `allocate` against this allocator (`null` is allowed). */ bool deallocate(void[] b) pure nothrow @nogc { import core.atomic : cas, atomicLoad; const rounded = goodAllocSize(b.length); shared void* localCurrent, localNewCurrent; // The cas is done only once, because only the last allocation can be reverted localCurrent = atomicLoad(_current); static if (growDownwards) { localNewCurrent = localCurrent + rounded; if (b.ptr == localCurrent) return cas(&_current, localCurrent, localNewCurrent); } else { localNewCurrent = localCurrent - rounded; if (b.ptr == localNewCurrent) return cas(&_current, localCurrent, localNewCurrent); } return false; } /** Allocates `n` bytes of memory aligned at alignment `a`. Params: n = number of bytes to allocate a = alignment for the allocated block Returns: Either a suitable block of `n` bytes aligned at `a`, or `null`. */ void[] alignedAllocate(size_t n, uint a) pure nothrow @trusted @nogc { import core.atomic : cas, atomicLoad; import std.math : isPowerOf2; assert(a.isPowerOf2); if (n == 0) return null; const rounded = goodAllocSize(n); shared void* localCurrent, localNewCurrent; static if (growDownwards) { do { localCurrent = atomicLoad(_current); auto alignedCurrent = cast(void*)(localCurrent - rounded); localNewCurrent = cast(shared(void*)) alignedCurrent.alignDownTo(a); if (alignedCurrent > localCurrent || localNewCurrent > alignedCurrent || localNewCurrent < _begin) return null; } while (!cas(&_current, localCurrent, localNewCurrent)); return cast(void[]) localNewCurrent[0 .. n]; } else { do { localCurrent = atomicLoad(_current); auto alignedCurrent = alignUpTo(cast(void*) localCurrent, a); localNewCurrent = cast(shared(void*)) (alignedCurrent + rounded); if (alignedCurrent < localCurrent || localNewCurrent < alignedCurrent || localNewCurrent > _end) return null; } while (!cas(&_current, localCurrent, localNewCurrent)); return cast(void[]) (localNewCurrent - rounded)[0 .. n]; } assert(0, "Unexpected error in SharedRegion.alignedAllocate"); } /** Queries whether `b` has been allocated with this region. Params: b = Arbitrary block of memory (`null` is allowed; `owns(null)` returns `false`). Returns: `true` if `b` has been allocated with this region, `false` otherwise. */ Ternary owns(const void[] b) const pure nothrow @trusted @nogc { return Ternary(b && (&b[0] >= _begin) && (&b[0] + b.length <= _end)); } /** Returns `Ternary.yes` if no memory has been allocated in this region, `Ternary.no` otherwise. (Never returns `Ternary.unknown`.) */ Ternary empty() const pure nothrow @safe @nogc { import core.atomic : atomicLoad; auto localCurrent = atomicLoad(_current); static if (growDownwards) return Ternary(localCurrent == roundedEnd()); else return Ternary(localCurrent == roundedBegin()); } /** If `ParentAllocator` is not $(REF_ALTTEXT `NullAllocator`, NullAllocator, std,experimental,allocator,building_blocks,null_allocator) and defines `deallocate`, the region defines a destructor that uses `ParentAllocator.deallocate` to free the memory chunk. */ static if (!is(ParentAllocator == NullAllocator) && hasMember!(ParentAllocator, "deallocate")) ~this() { parent.deallocate(cast(void[]) _begin[0 .. _end - _begin]); } } // TODO activate // @system unittest // { // import std.experimental.allocator.mallocator : Mallocator; // static void testAlloc(Allocator)(ref Allocator a, bool growDownwards) // { // import core.thread : ThreadGroup; // import std.algorithm.sorting : sort; // import core.internal.spinlock : SpinLock; // SpinLock lock = SpinLock(SpinLock.Contention.brief); // enum numThreads = 100; // void[][numThreads] buf; // size_t count = 0; // void fun() // { // void[] b = a.allocate(63); // assert(b.length == 63); // lock.lock(); // buf[count] = b; // count++; // lock.unlock(); // } // auto tg = new ThreadGroup; // foreach (i; 0 .. numThreads) // { // tg.create(&fun); // } // tg.joinAll(); // sort!((a, b) => a.ptr < b.ptr)(buf[0 .. numThreads]); // foreach (i; 0 .. numThreads - 1) // { // assert(buf[i].ptr + a.goodAllocSize(buf[i].length) == buf[i + 1].ptr); // } // assert(!a.deallocate(buf[1])); // foreach (i; 0 .. numThreads) // { // if (!growDownwards) // assert(a.deallocate(buf[numThreads - 1 - i])); // else // assert(a.deallocate(buf[i])); // } // } // auto a1 = SharedRegion!(Mallocator, Mallocator.alignment, // Yes.growDownwards)(1024 * 64); // auto a2 = SharedRegion!(Mallocator, Mallocator.alignment, // No.growDownwards)(1024 * 64); // testAlloc(a1, true); // testAlloc(a2, false); // } // TODO activate // @system unittest // { // import std.experimental.allocator.mallocator : Mallocator; // static void testAlloc(Allocator)(ref Allocator a, bool growDownwards) // { // import core.thread : ThreadGroup; // import std.algorithm.sorting : sort; // import core.internal.spinlock : SpinLock; // SpinLock lock = SpinLock(SpinLock.Contention.brief); // enum numThreads = 100; // void[][2 * numThreads] buf; // size_t count = 0; // void fun() // { // void[] b = a.allocate(63); // assert(b.length == 63); // lock.lock(); // buf[count] = b; // count++; // lock.unlock(); // b = a.alignedAllocate(63, 32); // assert(b.length == 63); // assert(cast(size_t) b.ptr % 32 == 0); // lock.lock(); // buf[count] = b; // count++; // lock.unlock(); // } // auto tg = new ThreadGroup; // foreach (i; 0 .. numThreads) // { // tg.create(&fun); // } // tg.joinAll(); // sort!((a, b) => a.ptr < b.ptr)(buf[0 .. 2 * numThreads]); // foreach (i; 0 .. 2 * numThreads - 1) // { // assert(buf[i].ptr + buf[i].length <= buf[i + 1].ptr); // } // assert(!a.deallocate(buf[1])); // } // auto a1 = SharedRegion!(Mallocator, Mallocator.alignment, // Yes.growDownwards)(1024 * 64); // auto a2 = SharedRegion!(Mallocator, Mallocator.alignment, // No.growDownwards)(1024 * 64); // testAlloc(a1, true); // testAlloc(a2, false); // }
D
/* Copyright (c) 2006 Kirk McDonald 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. */ /** Contains utilities for safely wrapping python exceptions in D and vice versa. */ module pyd.exception; import std.conv; import std.string: format; import std.string; import deimos.python.Python; import meta.Nameof : prettytypeof; /** * This function first checks if a Python exception is set, and then (if one * is) pulls it out, stuffs it in a PythonException, and throws that exception. * * If this exception is never caught, it will be handled by exception_catcher * (below) and passed right back into Python as though nothing happened. */ void handle_exception(string file = __FILE__, size_t line = __LINE__) { PyObject* type, value, traceback; if (PyErr_Occurred() !is null) { PyErr_Fetch(&type, &value, &traceback); PyErr_NormalizeException(&type, &value, &traceback); throw new PythonException(type, value, traceback,file,line); } } // Used internally. T error_code(T) () { static if (is(T == PyObject*)) { return null; } else static if (is(T == int)) { return -1; } else static if (is(T == Py_ssize_t)) { return -1; } else static if (is(T == void)) { return; } else static assert(false, "exception_catcher cannot handle return type " ~ prettytypeof!(T)); } /** * It is intended that any functions that interface directly with Python which * have the possibility of a D exception being raised wrap their contents in a * call to this function, e.g.: * *$(D_CODE extern (C) *PyObject* some_func(PyObject* self) { * return _exception_catcher({ * // ... * }); *}) */ T exception_catcher(T) (T delegate() dg) { try { return dg(); } // A Python exception was raised and duly re-thrown as a D exception. // It should now be re-raised as a Python exception. catch (PythonException e) { PyErr_Restore(e.type(), e.value(), e.traceback()); return error_code!(T)(); } // A D exception was raised and should be translated into a meaningful // Python exception. catch (Exception e) { PyErr_SetString(PyExc_RuntimeError, ("D Exception:\n" ~ e.toString() ~ "\0").ptr); return error_code!(T)(); } // Some other D object was thrown. Deal with it. catch (Throwable o) { PyErr_SetString(PyExc_RuntimeError, ("thrown D Object: " ~ o.classinfo.name ~ ": " ~ o.toString() ~ "\0").ptr); return error_code!(T)(); } } alias exception_catcher!(PyObject*) exception_catcher_PyObjectPtr; alias exception_catcher!(int) exception_catcher_int; alias exception_catcher!(void) exception_catcher_void; string printSyntaxError(PyObject* type, PyObject* value, PyObject* traceback) { if(value is null) return ""; string text; auto ptext = PyObject_GetAttrString(value, "text"); if(ptext) { version(Python_3_0_Or_Later) { ptext = PyUnicode_AsUTF8String(ptext); } auto p2text = PyBytes_AsString(ptext); if(p2text) text = strip(to!string(p2text)); } C_long offset; auto poffset = PyObject_GetAttrString(value, "offset"); if(poffset) { offset = PyLong_AsLong(poffset); } auto valtype = to!string(value.ob_type.tp_name); string message; auto pmsg = PyObject_GetAttrString(value, "msg"); if(pmsg) { version(Python_3_0_Or_Later) { pmsg = PyUnicode_AsUTF8String(pmsg); } auto cmsg = PyBytes_AsString(pmsg); if(cmsg) message = to!string(cmsg); } string space = ""; foreach(i; 0 .. offset-1) space ~= " "; return format(q"{ %s %s^ %s: %s}", text, space,valtype, message); } string printGenericError(PyObject* type, PyObject* value, PyObject* traceback) { if(value is null) return ""; auto valtype = to!string(value.ob_type.tp_name); string message; version(Python_3_0_Or_Later) { PyObject* uni = PyObject_Str(value); }else{ PyObject* uni = PyObject_Unicode(value); } if(!uni) { PyErr_Clear(); return ""; } PyObject* str = PyUnicode_AsUTF8String(uni); if(!str) { PyErr_Clear(); return ""; } auto cmsg = PyBytes_AsString(str); if(cmsg) message = to!string(cmsg); return format(q"{ %s: %s}", valtype, message); } /** * This simple exception class holds a Python exception. */ class PythonException : Exception { protected: PyObject* m_type, m_value, m_trace; public: this(PyObject* type, PyObject* value, PyObject* traceback, string file = __FILE__, size_t line = __LINE__) { if(PyObject_IsInstance(value, cast(PyObject*)PyExc_SyntaxError)) { super(printSyntaxError(type, value, traceback), file, line); }else{ super(printGenericError(type, value, traceback), file, line); } m_type = type; m_value = value; m_trace = traceback; } ~this() { if (m_type) Py_DECREF(m_type); if (m_value) Py_DECREF(m_value); if (m_trace) Py_DECREF(m_trace); } PyObject* type() { if (m_type) Py_INCREF(m_type); return m_type; } PyObject* value() { if (m_value) Py_INCREF(m_value); return m_value; } PyObject* traceback() { if (m_trace) Py_INCREF(m_trace); return m_trace; } @property py_message() { string message; PyObject* pmsg; if(m_value) { if(PyObject_IsInstance(m_value, cast(PyObject*)PyExc_SyntaxError)) { pmsg = PyObject_GetAttrString(m_value, "msg"); }else{ pmsg = PyObject_GetAttrString(m_value, "message"); } if(pmsg) { auto cmsg = PyBytes_AsString(pmsg); if(cmsg) message = to!string(cmsg); } } return message; } @property py_offset() { C_long offset = -1; if(m_value) { auto poffset = PyObject_GetAttrString(m_value, "offset"); if(poffset) { offset = PyLong_AsLong(poffset); } } return offset; } }
D
module handlers.datfile; import std.stdio, std.file, std.path, std.algorithm, std.traits, std.array, std.conv, std.string, consoled, imageformats, std.math; import app, decoder, formats.pointertable, formats.relocationtable, formats.sna, formats.cnt, formats.gf, global, utils, structures.superobject, formats.datfile; mixin registerHandlers; @handler void readdat(string[] args) { debug { args ~= r"D:\GOG Games\Rayman 2\Rayman 2 Modded\Data\World\Levels\LEVELS0.DAT"; } if(args.length == 0) { writeln("Usage: readdat datfile"); return; } File f = File(args[0]); uint table = 0xF40E0005; uint dataOffset = f.getOffsetInBigFile(table); uint magic = getMagicForTable(table); f.seek(dataOffset); auto data = f.readEncoded!(ubyte[1000])(magic); printMemory(data.ptr, 1000); }
D
// { dg-do compile } // Bug 270 module gdc270; /* { dg-final { scan-assembler "_GLOBAL__D_6gdc270" } } */ /* { dg-final { scan-assembler "_GLOBAL__I_6gdc270" } } */
D
/* REQUIRED_ARGS: -o- TEST_OUTPUT: --- fail_compilation/commaexp.d(27): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(39): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(40): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(41): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(42): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(44): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(45): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(56): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(69): Error: Using the result of a comma expression is not allowed fail_compilation/commaexp.d(81): Error: Using the result of a comma expression is not allowed --- */ class Entry {} class MyContainerClass { bool append (Entry) { return false; } } int main () { bool ok; size_t aggr; MyContainerClass mc; // https://issues.dlang.org/show_bug.cgi?id=15997 enum WINHTTP_ERROR_BASE = 4200; enum ERROR_WINHTTP_CLIENT_AUTH_CERT_NEEDED = (WINHTTP_ERROR_BASE, + 44); // OK for (size_t i; i < 5; ++i, i += 1) {} for (size_t i; i < 5; ++i, i += 1, i++) {} if (!mc) mc = new MyContainerClass, mc.append(new Entry); if (Object o = cast(Object)mc) {} // Lowering ok = true, mc.append(new Entry); assert(ok); // NOPE for (size_t i; i < 5; ++i, i += (i++, 1)) {} for (; aggr++, aggr > 5;) {} if (Object o = (ok = true, null)) {} ok = (true, mc.append(new Entry)); assert(!ok); ok = true, (ok = (true, false)); return 42, 0; } /***************************************************/ // https://issues.dlang.org/show_bug.cgi?id=16022 bool test16022() { enum Type { Colon, Comma } Type type; return type == Type.Colon, type == Type.Comma; } bool test16022_structs() { struct A { int i; string s; } enum Type { Colon = A(0, "zero"), Comma = A(1, "one") } Type type; return type == Type.Colon, type == Type.Comma; } /********************************************/ void bar11(int*, int*) { } void test11() { static int* p; static int i; bar11((i,p), &i); }
D
/Users/fengur/Desktop/Rust/enum_in_rust/target/debug/deps/enum_in_rust-b7a837c4f356b9e8: src/main.rs /Users/fengur/Desktop/Rust/enum_in_rust/target/debug/deps/enum_in_rust-b7a837c4f356b9e8.d: src/main.rs src/main.rs:
D
auto makeBox(int value) { struct Box { int getValue() { return value; } } return Box(); } enum value = makeBox(1).getValue();
D
/* Copyright © 2022, Inochi2D Project Distributed under the 2-Clause BSD License, see LICENSE file. Author: Asahi Lina */ module creator.viewport.common.spline; import creator.viewport.common.mesh; import creator.viewport; import creator.actions; import creator.core.actionstack; import creator.core; import creator; import inochi2d; import inochi2d.core.dbg; import bindbc.opengl; import std.algorithm.mutation; import std.array; import std.math : isFinite, PI, atan2; import std.stdio; private { float nearestLine(vec2 a, vec2 b, vec2 c) { return ((c.x - a.x) * (b.x - a.x) + (c.y - a.y) * (b.y - a.y)) / ((b.x - a.x) ^^ 2 + (b.y - a.y) ^^ 2); } BezierSegment catmullToBezier(SplinePoint *p0, SplinePoint *p1, SplinePoint *p2, SplinePoint *p3, float tension = 1.0) { BezierSegment res; res.p[0] = p1.position; res.p[1] = p1.position + (p2.position - p0.position) / (6 * tension); res.p[2] = p2.position - (p3.position - p1.position) / (6 * tension); res.p[3] = p2.position; return res; } } struct SplinePoint { vec2 position; float weightL; float weightR; } struct BezierSegment { vec2[4] p; void split(float t, out BezierSegment left, out BezierSegment right) { float s = 1 - t; vec2 mc = p[1] * s + p[2] * t; vec2 a1 = p[0] * s + p[1] * t; vec2 a2 = a1 * s + mc * t; vec2 b2 = p[2] * s + p[3] * t; vec2 b1 = b2 * t + mc * s; vec2 m = a2 * s + b1 * t; left = BezierSegment([p[0], a1, a2, m]); right = BezierSegment([m, b1, b2, p[3]]); } vec2 eval(float t) { BezierSegment left, right; split(t, left, right); return left.p[3]; } } class CatmullSpline { private: vec2[] interpolated; vec3[] drawLines; vec3[] drawPoints; vec3[] refOffsets; public: uint resolution = 40; float selectRadius = 16f; SplinePoint[] points; vec2[] refMesh; vec2[] initTangents; CatmullSpline target; float origX, origY, origRotZ; void createTarget(T)(T reference, mat4 trans) { target = new CatmullSpline; target.resolution = resolution; target.selectRadius = selectRadius; target.points = points.dup; target.interpolate(); remapTarget(reference, trans); } void remapTarget(T)(T reference, mat4 trans = mat4.identity) {} void remapTarget(IncMesh reference, mat4 trans = mat4.identity) { if (target !is null) { refMesh.length = 0; foreach(ref MeshVertex* vtx; reference.vertices) { refMesh ~= (trans * vec4(vtx.position, 0, 1)).xy; } mapReference(); } } void remapTarget(Node node, mat4 trans = mat4.identity) { if (target !is null) { refMesh.length = 0; vec2 local = vec2(node.getValue("transform.t.x"), node.getValue("transform.t.y")); refMesh ~= (trans * vec4(local, 0, 1)).xy; mapReference(); float getParameter(Node node, Parameter param, string paramName, vec2u index) { ValueParameterBinding b = cast(ValueParameterBinding)param.getBinding(node, paramName); if (b is null) { return 0; } float result = b.getValue(index); return result; } Parameter armedParam = incArmedParameter(); vec2u index = armedParam? armedParam.findClosestKeypoint() : vec2u(0, 0); origX = getParameter(node, armedParam, "transform.t.x", index); origY = getParameter(node, armedParam, "transform.t.x", index); origRotZ = getParameter(node, armedParam, "transform.r.z", index); } } void mapReference() { if (points.length < 2) { refOffsets.length = 0; initTangents.length = 0; return; } refOffsets.length = 0; initTangents.length = 0; float epsilon = 0.0001; foreach(vtx; refMesh) { float off = findClosestPointOffset(vtx); // FIXME: calculate tangent properly vec2 pt = target.eval(off); vec2 pt2 = target.eval(off + epsilon); vec2 tangent = pt2 - pt; tangent.normalize(); // FIXME: extrapolation... if (off <= 0 || off >= (points.length - 1)) { refOffsets ~= vec3(0, 0, float()); initTangents ~= tangent; continue; } vtx = vtx - pt; vec3 rel = vec3( vtx.x * tangent.x + vtx.y * tangent.y, vtx.y * tangent.x - vtx.x * tangent.y, off, ); refOffsets ~= rel; initTangents ~= tangent; } } mat4 exportTarget(T)(ref T mesh, size_t i, ref vec2 vtx, vec2 tangent, vec2 initTangent) { return mat4.identity(); } mat4 exportTarget(ref IncMesh mesh, size_t i, ref vec2 vtx, vec2 tangent, vec2 initTangent) { mesh.vertices[i].position = vtx; return mat4.identity(); } mat4 exportTarget(ref Node node, size_t i, ref vec2 vtx, vec2 tangent, vec2 initTangent) { auto curAngle = atan2(tangent.y, tangent.x); auto origAngle = atan2(initTangent.y, initTangent.x); auto angle = curAngle - origAngle + origRotZ; float prevAngle; float changeParameter(Node node, Parameter param, string paramName, vec2u index, float newValue) { if (newValue == 0) return newValue; ValueParameterBinding b = cast(ValueParameterBinding)param.getBinding(node, paramName); if (b is null) { b = cast(ValueParameterBinding)param.createBinding(node, paramName); param.addBinding(b); // incActionPush(new ParameterBindingAddAction(param, b)); } // Push action // incActionPush(new ParameterBindingValueChangeAction!(float)(b.getName(), b, index.x, index.y)); float result = b.getValue(index); b.setValue(index, newValue); return result; } Parameter armedParam = incArmedParameter(); vec2u index = armedParam? armedParam.findClosestKeypoint() : vec2u(0, 0); float old_x = 0; float old_y = 0; if (armedParam) { old_x = changeParameter(node, armedParam, "transform.t.x", index, vtx.x); old_y = changeParameter(node, armedParam, "transform.t.y", index, vtx.y); prevAngle = changeParameter(node, armedParam, "transform.r.z", index, angle); } else { old_x = node.getValue("transform.t.x"); old_y = node.getValue("transform.t.y"); prevAngle = node.getValue("transform.r.z"); node.setValue("transform.t.x", vtx.x); node.setValue("transform.t.y", vtx.y); node.setValue("transform.r.z", angle); } return mat4.identity; } void resetTarget(T)(T mesh) { foreach(i, vtx; refMesh) { exportTarget(mesh, i, vtx, vec2(0, 1), vec2(0, 1)); } } mat4 updateTarget(T)(T mesh) { if (points.length < 2) { resetTarget(mesh); return mat4.identity; } float epsilon = 0.0001; mat4 result; foreach(i, rel; refOffsets) { if (!isFinite(rel.z)) continue; // FIXME: calculate tangent properly vec2 pt = target.eval(rel.z); vec2 pt2 = target.eval(rel.z + epsilon); vec2 tangent = pt2 - pt; tangent = tangent / abs(tangent.distance(vec2(0, 0))); vec2 vtx = vec2( pt.x + rel.x * tangent.x - rel.y * tangent.y, pt.y + rel.y * tangent.x + rel.x * tangent.y ); // writefln("%s %s %s", vtx, rel, tangent); result = exportTarget(mesh, i, vtx, tangent, initTangents.length > i ? initTangents[i]: tangent); } return result; } void update() { interpolate(); } void interpolate() { interpolated.length = 0; drawLines.length = 0; if (points.length == 0) return; vec2 last; foreach(pos; 0..(resolution * (points.length - 1) + 1)) { vec2 p = eval(pos / cast(float)(resolution)); interpolated ~= p; if (pos > 0) drawLines ~= [vec3(last.x, last.y, 0), vec3(p.x, p.y, 0)]; last = p; } drawPoints.length = 0; foreach(p; points) { drawPoints ~= vec3(p.position.x, p.position.y, 0); } } vec2 eval(float off) { if (off <= 0) return points[0].position; if (off >= (points.length - 1)) return points[$ - 1].position; uint ioff = cast(uint)off; float t = off - ioff; float s = 1 - t; SplinePoint *p1 = &points[ioff]; SplinePoint *p2 = &points[ioff + 1]; // Two points, linear if (points.length == 2) return p1.position * s + p2.position * t; vec2 evalEdge(vec2 p0, vec2 p1, vec2 p2, float t) { float t2 = t ^^ 2; float t3 = t ^^ 3; float h00 = 2 * t3 - 3 * t2 + 1; float h10 = t3 - 2 * t2 + t; float h01 = -2 * t3 + 3 * t2; float h11 = t3 - t2; vec2 slope = (p2 - p0) / 2; return h11 * slope + h01 * p1 + h00 * p0; } // Edge segment, do the hermite spline thing if (ioff == 0) return evalEdge(p1.position, p2.position, points[ioff + 2].position, t); else if (ioff == points.length - 2) return evalEdge(p2.position, p1.position, points[ioff - 1].position, s); // Middle segment, do Catmull-Rom SplinePoint *p0 = &points[ioff - 1]; SplinePoint *p3 = &points[ioff + 2]; // By first converting it to Bezier float tension = 1; BezierSegment bezier = catmullToBezier(p0, p1, p2, p3); return bezier.eval(t); } float findClosestPointOffset(vec2 point) { vec2 tangent; return findClosestPointOffset(point, tangent); } float findClosestPointOffset(vec2 point, out vec2 tangent) { tangent = vec2(0, 0); if (points.length == 0) return 0; if (points.length == 1) { return 0; } uint bestIdx = 0; float bestDist = float.infinity; // Find closest interpolated point foreach(pos; 0..(resolution * (points.length - 1) + 1)) { float dist = interpolated[pos].distance(point); if (dist < bestDist) { bestDist = dist; bestIdx = cast(uint)pos; } } // writefln("best %s %s", bestIdx, bestDist); float left = max(0, (bestIdx - 1) / cast(float)resolution); float right = min(points.length - 1, (bestIdx + 1) / cast(float)resolution); vec2 leftPoint = eval(left); vec2 rightPoint = eval(right); float leftDist = abs(point.distance(leftPoint)); float rightDist = abs(point.distance(rightPoint)); float epsilon = 0.0001; while ((right - left) > epsilon * 2) { // writefln("left %s right %s", left, right); float mid = (left + right) / 2; vec2 midLPoint = eval(mid - epsilon); vec2 midRPoint = eval(mid + epsilon); if (abs(point.distance(midLPoint)) < abs(point.distance(midRPoint))) { right = mid; rightPoint = eval(right); rightDist = abs(point.distance(rightPoint)); } else { left = mid; leftPoint = eval(left); leftDist = abs(point.distance(leftPoint)); } } tangent = rightPoint - leftPoint; tangent = tangent / abs(tangent.distance(vec2(0, 0))); if (left == 0) return 0; if (right == points.length - 1) return points.length - 1; // writefln("left %s right %s", left, right); // Linearly interpolate within the range float t = nearestLine(leftPoint, rightPoint, point); return left * (1 - t) + right * t; } void splitAt(float off) { vec2 pos = eval(off); points.insertInPlace(1 + cast(uint)off, SplinePoint(pos, 1, 1)); interpolate(); if (target) target.splitAt(off); } void prependPoint(vec2 point) { points.insertInPlace(0, SplinePoint(point, 1, 1)); interpolate(); if (target) target.prependPoint(point); } void appendPoint(vec2 point) { points ~= SplinePoint(point, 1, 1); interpolate(); if (target) target.appendPoint(point); } int findPoint(vec2 point) { uint bestIdx = 0; float bestDist = float.infinity; foreach(idx, pt; points) { float dist = pt.position.distance(point); if (dist < bestDist) { bestDist = dist; bestIdx = cast(uint)idx; } } if (bestDist > selectRadius/incViewportZoom) return -1; return bestIdx; } int addPoint(vec2 point) { if (points.length < 2) { appendPoint(point); return cast(int)points.length - 1; } float off = findClosestPointOffset(point); // writefln("Found off %s", off); if (off <= 0) { prependPoint(point); return 0; } else if (off >= (points.length - 1)) { appendPoint(point); return cast(int)points.length - 1; } vec2 onCurve = eval(off); if (abs(point.distance(onCurve)) < selectRadius/incViewportZoom) { splitAt(off); return 1 + cast(int)off; } return -1; } void removePoint(uint idx) { points = points.remove(idx); if (target) target.removePoint(idx); interpolate(); } void draw(mat4 trans, vec4 color, uint lockedPoint = -1) { if (drawLines.length > 0) { inDbgSetBuffer(drawLines); inDbgDrawLines(color, trans); } if (drawPoints.length > 0) { inDbgSetBuffer(drawPoints); inDbgPointsSize(10); inDbgDrawPoints(vec4(0, 0, 0, 1), trans); inDbgPointsSize(6); inDbgDrawPoints(color, trans); } if (lockedPoint >= 0 && lockedPoint < drawPoints.length) { inDbgSetBuffer([drawPoints[lockedPoint]]); inDbgPointsSize(6); inDbgDrawPoints(vec4(1, 0, 0, 1), trans); } } void resetFloating() { foreach (i, p; points) { points[i].position = (vec4(p.position, 0, 1)).xy; } update(); } }
D
/** * Written in the D programming language. * This module provides functions to uniform calculating hash values for different types * * Copyright: Copyright Igor Stepanov 2013-2013. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Igor Stepanov * Source: $(DRUNTIMESRC core/internal/_hash.d) */ module core.internal.hash; import core.internal.convert; import core.internal.traits : allSatisfy, Unconst, Unqual; // If true ensure that positive zero and negative zero have the same hash. // Historically typeid(float).getHash did this but hashOf(float) did not. private enum floatCoalesceZeroes = true; // If true ensure that all NaNs of the same floating point type have the same hash. // Historically typeid(float).getHash didn't do this but hashOf(float) did. private enum floatCoalesceNaNs = true; // If either of the above are true then no struct or array that contains the // representation of a floating point number may be hashed with `bytesHash`. @nogc nothrow pure @safe unittest { static if (floatCoalesceZeroes) assert(hashOf(+0.0) == hashOf(-0.0)); // Same hash for +0.0 and -0.0. static if (floatCoalesceNaNs) assert(hashOf(double.nan) == hashOf(-double.nan)); // Same hash for different NaN. } private enum hasCallableToHash(T) = __traits(compiles, { size_t hash = ((T* x) => (*x).toHash())(null); }); @nogc nothrow pure @safe unittest { static struct S { size_t toHash() { return 4; } } assert(hasCallableToHash!S); assert(!hasCallableToHash!(shared const S)); } private enum isFinalClassWithAddressBasedHash(T) = __traits(isFinalClass, T) // Use __traits(compiles, ...) in case there are multiple overloads of `toHash`. && __traits(compiles, {static assert(&Object.toHash is &T.toHash);}); @nogc nothrow pure @safe unittest { static class C1 {} final static class C2 : C1 {} final static class C3 : C1 { override size_t toHash() const nothrow { return 1; }} static assert(!isFinalClassWithAddressBasedHash!Object); static assert(!isFinalClassWithAddressBasedHash!C1); static assert(isFinalClassWithAddressBasedHash!C2); static assert(!isFinalClassWithAddressBasedHash!C3); } private template isCppClassWithoutHash(T) { static if (!is(T == class) && !is(T == interface)) enum isCppClassWithoutHash = false; else enum bool isCppClassWithoutHash = __traits(getLinkage, T) == "C++" && !is(Unqual!T : Object) && !hasCallableToHash!T; } /+ Is it valid to calculate a hash code for T based on the bits of its representation? Always false for interfaces, dynamic arrays, and associative arrays. False for all classes except final classes that do not override `toHash`. Note: according to the spec as of https://github.com/dlang/dlang.org/commit/d66eff16491b0664c0fc00ba80a7aa291703f1f2 the contents of unnamed paddings between fields is undefined. Currently this hashing implementation assumes that the padding contents (if any) for all instances of `T` are the same. The correctness of this assumption is yet to be verified. +/ private template canBitwiseHash(T) { static if (is(T EType == enum)) enum canBitwiseHash = .canBitwiseHash!EType; else static if (__traits(isFloating, T)) enum canBitwiseHash = !(floatCoalesceZeroes || floatCoalesceNaNs); else static if (__traits(isScalar, T)) enum canBitwiseHash = true; else static if (is(T == class)) { enum canBitwiseHash = isFinalClassWithAddressBasedHash!T || isCppClassWithoutHash!T; } else static if (is(T == interface)) { enum canBitwiseHash = isCppClassWithoutHash!T; } else static if (is(T == struct)) { static if (hasCallableToHash!T || __traits(isNested, T)) enum canBitwiseHash = false; else enum canBitwiseHash = allSatisfy!(.canBitwiseHash, typeof(T.tupleof)); } else static if (is(T == union)) { // Right now we always bytewise hash unions that lack callable `toHash`. enum canBitwiseHash = !hasCallableToHash!T; } else static if (is(T E : E[])) { static if (__traits(isStaticArray, T)) enum canBitwiseHash = (T.length == 0) || .canBitwiseHash!E; else enum canBitwiseHash = false; } else static if (__traits(isAssociativeArray, T)) { enum canBitwiseHash = false; } else { static assert(is(T == delegate) || is(T : void) || is(T : typeof(null)), "Internal error: unanticipated type "~T.stringof); enum canBitwiseHash = true; } } //enum hash. CTFE depends on base type size_t hashOf(T)(auto ref T val, size_t seed = 0) if (is(T EType == enum) && (!__traits(isScalar, T) || is(T == __vector))) { static if (is(T EType == enum)) //for EType { return hashOf(cast(EType) val, seed); } else { static assert(0); } } //CTFE ready (depends on base type). size_t hashOf(T)(scope const auto ref T val, size_t seed = 0) if (!is(T == enum) && __traits(isStaticArray, T) && canBitwiseHash!T) { // FIXME: // We would like to to do this: // //static if (T.length == 0) // return seed; //else static if (T.length == 1) // return hashOf(val[0], seed); //else // return bytesHashWithExactSizeAndAlignment!T(toUbyte(val), seed); // // ... but that's inefficient when using a runtime TypeInfo (introduces a branch) // and PR #2243 wants typeid(T).getHash(&val) to produce the same result as // hashOf(val). static if (T.length == 0) { return bytesHashAlignedBy!size_t((ubyte[]).init, seed); } static if (is(typeof(toUbyte(val)) == const(ubyte)[])) { return bytesHashAlignedBy!T(toUbyte(val), seed); } else //Other types. CTFE unsupported { assert(!__ctfe, "unable to compute hash of "~T.stringof~" at compile time"); return bytesHashAlignedBy!T((cast(const(ubyte)*) &val)[0 .. T.sizeof], seed); } } //CTFE ready (depends on base type). size_t hashOf(T)(auto ref T val, size_t seed = 0) if (!is(T == enum) && __traits(isStaticArray, T) && !canBitwiseHash!T) { // FIXME: // We would like to to do this: // //static if (T.length == 0) // return seed; //else static if (T.length == 1) // return hashOf(val[0], seed); //else // /+ hash like a dynamic array +/ // // ... but that's inefficient when using a runtime TypeInfo (introduces a branch) // and PR #2243 wants typeid(T).getHash(&val) to produce the same result as // hashOf(val). return hashOf(val[], seed); } //dynamic array hash size_t hashOf(T)(scope const T val, size_t seed = 0) if (!is(T == enum) && !is(T : typeof(null)) && is(T S: S[]) && !__traits(isStaticArray, T) && !is(T == struct) && !is(T == class) && !is(T == union) && (__traits(isScalar, S) || canBitwiseHash!S)) { alias ElementType = typeof(val[0]); static if (!canBitwiseHash!ElementType) { size_t hash = seed; foreach (ref o; val) { hash = hashOf(hashOf(o), hash); // double hashing to match TypeInfo.getHash } return hash; } else static if (is(typeof(toUbyte(val)) == const(ubyte)[])) //ubyteble array (arithmetic types and structs without toHash) CTFE ready for arithmetic types and structs without reference fields { return bytesHashAlignedBy!ElementType(toUbyte(val), seed); } else //Other types. CTFE unsupported { assert(!__ctfe, "unable to compute hash of "~T.stringof~" at compile time"); return bytesHashAlignedBy!ElementType((cast(const(ubyte)*) val.ptr)[0 .. ElementType.sizeof*val.length], seed); } } //dynamic array hash size_t hashOf(T)(T val, size_t seed = 0) if (!is(T == enum) && !is(T : typeof(null)) && is(T S: S[]) && !__traits(isStaticArray, T) && !is(T == struct) && !is(T == class) && !is(T == union) && !(__traits(isScalar, S) || canBitwiseHash!S)) { size_t hash = seed; foreach (ref o; val) { hash = hashOf(hashOf(o), hash); // double hashing because TypeInfo.getHash doesn't allow to pass seed value } return hash; } // Indicates if F is a built-in complex number type. private enum bool isComplex(F) = is(Unqual!F == cfloat) || is(Unqual!F == cdouble) || is(Unqual!F == creal); private F coalesceFloat(F)(const F val) if (__traits(isFloating, val) && !is(F == __vector) && !isComplex!F) { static if (floatCoalesceZeroes) if (val == cast(F) 0) return cast(F) 0; static if (floatCoalesceNaNs) if (val != val) return F.nan; return val; } //scalar type hash @trusted @nogc nothrow pure size_t hashOf(T)(scope const T val) if (__traits(isScalar, T) && !is(T == __vector)) { static if (is(T V : V*)) { if (__ctfe) { if (val is null) return 0; assert(0, "Unable to calculate hash of non-null pointer at compile time"); } size_t result = cast(size_t) val; return result ^ (result >> 4); } else static if (__traits(isIntegral, T)) { static if (T.sizeof <= size_t.sizeof) return val; else return cast(size_t) (val ^ (val >>> (size_t.sizeof * 8))); } else static if (isComplex!T) { return hashOf(coalesceFloat(val.re), hashOf(coalesceFloat(val.im))); } else { static assert(__traits(isFloating, T)); auto data = coalesceFloat(val); static if (T.sizeof == float.sizeof && T.mant_dig == float.mant_dig) return *cast(const uint*) &data; else static if (T.sizeof == double.sizeof && T.mant_dig == double.mant_dig) return hashOf(*cast(const ulong*) &data); else return bytesHashWithExactSizeAndAlignment!T(toUbyte(data)[0 .. floatSize!T], 0); } } //scalar type hash @trusted @nogc nothrow pure size_t hashOf(T)(scope const T val, size_t seed) if (__traits(isScalar, T) && !is(T == __vector)) { static if (is(T V : V*)) { if (__ctfe) { if (val is null) return hashOf(size_t(0), seed); assert(0, "Unable to calculate hash of non-null pointer at compile time"); } return hashOf(cast(size_t) val, seed); } else static if (__traits(isIntegral, val) && T.sizeof <= size_t.sizeof) { static if (size_t.sizeof < ulong.sizeof) { //MurmurHash3 32-bit single round enum uint c1 = 0xcc9e2d51; enum uint c2 = 0x1b873593; enum uint c3 = 0xe6546b64; enum uint r1 = 15; enum uint r2 = 13; } else { //Half of MurmurHash3 64-bit single round //(omits second interleaved update) enum ulong c1 = 0x87c37b91114253d5; enum ulong c2 = 0x4cf5ad432745937f; enum ulong c3 = 0x52dce729; enum uint r1 = 31; enum uint r2 = 27; } size_t h = c1 * val; h = (h << r1) | (h >>> (size_t.sizeof * 8 - r1)); h = (h * c2) ^ seed; h = (h << r2) | (h >>> (size_t.sizeof * 8 - r2)); return h * 5 + c3; } else static if (__traits(isIntegral, val) && T.sizeof > size_t.sizeof) { static foreach (i; 0 .. T.sizeof / size_t.sizeof) seed = hashOf(cast(size_t) (val >>> (size_t.sizeof * 8 * i)), seed); return seed; } else static if (isComplex!T) { return hashOf(val.re, hashOf(val.im, seed)); } else static if (__traits(isFloating, T)) { auto data = coalesceFloat(val); static if (T.sizeof == float.sizeof && T.mant_dig == float.mant_dig) return hashOf(*cast(const uint*) &data, seed); else static if (T.sizeof == double.sizeof && T.mant_dig == double.mant_dig) return hashOf(*cast(const ulong*) &data, seed); else return bytesHashWithExactSizeAndAlignment!T(toUbyte(data)[0 .. floatSize!T], seed); } else { static assert(0); } } size_t hashOf(T)(scope const auto ref T val, size_t seed = 0) @safe @nogc nothrow pure if (is(T == __vector) && !is(T == enum)) { static if (__traits(isFloating, T) && (floatCoalesceZeroes || floatCoalesceNaNs)) { if (__ctfe) { // Workaround for CTFE bug. alias E = Unqual!(typeof(val[0])); E[T.sizeof / E.sizeof] array; foreach (i; 0 .. T.sizeof / E.sizeof) array[i] = val[i]; return hashOf(array, seed); } return hashOf(val.array, seed); } else { return bytesHashAlignedBy!T(toUbyte(val), seed); } } //typeof(null) hash. CTFE supported @trusted @nogc nothrow pure size_t hashOf(T)(scope const T val) if (!is(T == enum) && is(T : typeof(null))) { return 0; } //typeof(null) hash. CTFE supported @trusted @nogc nothrow pure size_t hashOf(T)(scope const T val, size_t seed) if (!is(T == enum) && is(T : typeof(null))) { return hashOf(size_t(0), seed); } private enum _hashOfStruct = q{ enum bool isChained = is(typeof(seed) : size_t); static if (!isChained) enum size_t seed = 0; static if (hasCallableToHash!(typeof(val))) //CTFE depends on toHash() { static if (isChained) return hashOf(cast(size_t) val.toHash(), seed); else return val.toHash(); } else { static if (__traits(hasMember, T, "toHash") && is(typeof(T.toHash) == function)) { // TODO: in the future maybe this should be changed to a static // assert(0), because if there's a `toHash` the programmer probably // expected it to be called and a compilation failure here will // expose a bug in his code. // In the future we also might want to disallow non-const toHash // altogether. pragma(msg, "Warning: struct "~__traits(identifier, T) ~" has method toHash, however it cannot be called with " ~typeof(val).stringof~" this."); } static if (T.tupleof.length == 0) { return seed; } else static if ((is(T == struct) && !canBitwiseHash!T) || T.tupleof.length == 1) { static if (isChained) size_t h = seed; static foreach (i, F; typeof(val.tupleof)) { static if (__traits(isStaticArray, F)) { static if (i == 0 && !isChained) size_t h = 0; static if (F.sizeof > 0 && canBitwiseHash!F) // May use smallBytesHash instead of bytesHash. h = bytesHashWithExactSizeAndAlignment!F(toUbyte(val.tupleof[i]), h); else // We can avoid the "double hashing" the top-level version uses // for consistency with TypeInfo.getHash. foreach (ref e; val.tupleof[i]) h = hashOf(e, h); } else static if (is(F == struct) || is(F == union)) { static if (hasCallableToHash!F) { static if (i == 0 && !isChained) size_t h = val.tupleof[i].toHash(); else h = hashOf(cast(size_t) val.tupleof[i].toHash(), h); } else static if (F.tupleof.length == 1) { // Handle the single member case separately to avoid unnecessarily using bytesHash. static if (i == 0 && !isChained) size_t h = hashOf(val.tupleof[i].tupleof[0]); else h = hashOf(val.tupleof[i].tupleof[0], h); } else static if (canBitwiseHash!F) { // May use smallBytesHash instead of bytesHash. static if (i == 0 && !isChained) size_t h = 0; h = bytesHashWithExactSizeAndAlignment!F(toUbyte(val.tupleof[i]), h); } else { // Nothing special happening. static if (i == 0 && !isChained) size_t h = hashOf(val.tupleof[i]); else h = hashOf(val.tupleof[i], h); } } else { // Nothing special happening. static if (i == 0 && !isChained) size_t h = hashOf(val.tupleof[i]); else h = hashOf(val.tupleof[i], h); } } return h; } else static if (is(typeof(toUbyte(val)) == const(ubyte)[]))//CTFE ready for structs without reference fields { // Not using bytesHashWithExactSizeAndAlignment here because // the result may differ from typeid(T).hashOf(&val). return bytesHashAlignedBy!T(toUbyte(val), seed); } else // CTFE unsupported { assert(!__ctfe, "unable to compute hash of "~T.stringof~" at compile time"); const(ubyte)[] bytes = (() @trusted => (cast(const(ubyte)*)&val)[0 .. T.sizeof])(); // Not using bytesHashWithExactSizeAndAlignment here because // the result may differ from typeid(T).hashOf(&val). return bytesHashAlignedBy!T(bytes, seed); } } }; //struct or union hash size_t hashOf(T)(scope const auto ref T val, size_t seed = 0) if (!is(T == enum) && (is(T == struct) || is(T == union)) && !is(T == const) && !is(T == immutable) && canBitwiseHash!T) { mixin(_hashOfStruct); } //struct or union hash size_t hashOf(T)(auto ref T val) if (!is(T == enum) && (is(T == struct) || is(T == union)) && !canBitwiseHash!T) { mixin(_hashOfStruct); } //struct or union hash size_t hashOf(T)(auto ref T val, size_t seed) if (!is(T == enum) && (is(T == struct) || is(T == union)) && !canBitwiseHash!T) { mixin(_hashOfStruct); } //struct or union hash - https://issues.dlang.org/show_bug.cgi?id=19332 (support might be removed in future) size_t hashOf(T)(scope auto ref T val, size_t seed = 0) if (!is(T == enum) && (is(T == struct) || is(T == union)) && (is(T == const) || is(T == immutable)) && canBitwiseHash!T && !canBitwiseHash!(Unconst!T)) { mixin(_hashOfStruct); } //delegate hash. CTFE only if null. @trusted @nogc nothrow pure size_t hashOf(T)(scope const T val, size_t seed = 0) if (!is(T == enum) && is(T == delegate)) { if (__ctfe) { if (val is null) return hashOf(size_t(0), hashOf(size_t(0), seed)); assert(0, "unable to compute hash of "~T.stringof~" at compile time"); } return hashOf(val.ptr, hashOf(cast(void*) val.funcptr, seed)); } //address-based class hash. CTFE only if null. @nogc nothrow pure @trusted size_t hashOf(T)(scope const T val) if (!is(T == enum) && (is(T == interface) || is(T == class)) && canBitwiseHash!T) { if (__ctfe) if (val is null) return 0; return hashOf(cast(const void*) val); } //address-based class hash. CTFE only if null. @nogc nothrow pure @trusted size_t hashOf(T)(scope const T val, size_t seed) if (!is(T == enum) && (is(T == interface) || is(T == class)) && canBitwiseHash!T) { if (__ctfe) if (val is null) return hashOf(size_t(0), seed); return hashOf(cast(const void*) val, seed); } //class or interface hash. CTFE depends on toHash size_t hashOf(T)(T val) if (!is(T == enum) && (is(T == interface) || is(T == class)) && !canBitwiseHash!T) { static if (__traits(compiles, {size_t h = val.toHash();})) return val ? val.toHash() : 0; else return val ? (cast(Object)val).toHash() : 0; } //class or interface hash. CTFE depends on toHash size_t hashOf(T)(T val, size_t seed) if (!is(T == enum) && (is(T == interface) || is(T == class)) && !canBitwiseHash!T) { static if (__traits(compiles, {size_t h = val.toHash();})) return hashOf(val ? cast(size_t) val.toHash() : size_t(0), seed); else return hashOf(val ? (cast(Object)val).toHash() : 0, seed); } //associative array hash. CTFE depends on base types size_t hashOf(T)(T aa) if (!is(T == enum) && __traits(isAssociativeArray, T)) { static if (is(typeof(aa) : V[K], K, V)) {} // Put K & V in scope. static if (__traits(compiles, (ref K k, ref V v) nothrow => .hashOf(k) + .hashOf(v))) scope (failure) assert(0); // Allow compiler to infer nothrow. if (!aa.length) return 0; size_t h = 0; // The computed hash is independent of the foreach traversal order. foreach (key, ref val; aa) { size_t[2] hpair; hpair[0] = key.hashOf(); hpair[1] = val.hashOf(); h += hpair.hashOf(); } return h; } //associative array hash. CTFE depends on base types size_t hashOf(T)(T aa, size_t seed) if (!is(T == enum) && __traits(isAssociativeArray, T)) { return hashOf(hashOf(aa), seed); } // MurmurHash3 was written by Austin Appleby, and is placed in the public // domain. The author hereby disclaims copyright to this source code. // This overload is for backwards compatibility. @system pure nothrow @nogc size_t bytesHash()(scope const(void)* buf, size_t len, size_t seed) { return bytesHashAlignedBy!ubyte((cast(const(ubyte)*) buf)[0 .. len], seed); } private template bytesHashAlignedBy(AlignType) { alias bytesHashAlignedBy = bytesHash!(AlignType.alignof >= uint.alignof); } private template bytesHashWithExactSizeAndAlignment(SizeAndAlignType) { static if (SizeAndAlignType.alignof < uint.alignof ? SizeAndAlignType.sizeof <= 12 : SizeAndAlignType.sizeof <= 10) alias bytesHashWithExactSizeAndAlignment = smallBytesHash; else alias bytesHashWithExactSizeAndAlignment = bytesHashAlignedBy!SizeAndAlignType; } // Fowler/Noll/Vo hash. http://www.isthe.com/chongo/tech/comp/fnv/ private size_t fnv()(scope const(ubyte)[] bytes, size_t seed) @nogc nothrow pure @safe { static if (size_t.max <= uint.max) enum prime = (1U << 24) + (1U << 8) + 0x93U; else static if (size_t.max <= ulong.max) enum prime = (1UL << 40) + (1UL << 8) + 0xb3UL; else enum prime = (size_t(1) << 88) + (size_t(1) << 8) + size_t(0x3b); foreach (b; bytes) seed = (seed ^ b) * prime; return seed; } private alias smallBytesHash = fnv; //----------------------------------------------------------------------------- // Block read - if your platform needs to do endian-swapping or can only // handle aligned reads, do the conversion here private uint get32bits()(scope const(ubyte)* x) @nogc nothrow pure @system { version (BigEndian) { return ((cast(uint) x[0]) << 24) | ((cast(uint) x[1]) << 16) | ((cast(uint) x[2]) << 8) | (cast(uint) x[3]); } else { return ((cast(uint) x[3]) << 24) | ((cast(uint) x[2]) << 16) | ((cast(uint) x[1]) << 8) | (cast(uint) x[0]); } } /+ Params: dataKnownToBeAligned = whether the data is known at compile time to be uint-aligned. +/ @nogc nothrow pure @trusted private size_t bytesHash(bool dataKnownToBeAligned)(scope const(ubyte)[] bytes, size_t seed) { auto len = bytes.length; auto data = bytes.ptr; auto nblocks = len / 4; uint h1 = cast(uint)seed; enum uint c1 = 0xcc9e2d51; enum uint c2 = 0x1b873593; enum uint c3 = 0xe6546b64; //---------- // body auto end_data = data+nblocks*uint.sizeof; for (; data!=end_data; data += uint.sizeof) { static if (dataKnownToBeAligned) uint k1 = __ctfe ? get32bits(data) : *(cast(const uint*) data); else uint k1 = get32bits(data); k1 *= c1; k1 = (k1 << 15) | (k1 >> (32 - 15)); k1 *= c2; h1 ^= k1; h1 = (h1 << 13) | (h1 >> (32 - 13)); h1 = h1*5+c3; } //---------- // tail uint k1 = 0; switch (len & 3) { case 3: k1 ^= data[2] << 16; goto case; case 2: k1 ^= data[1] << 8; goto case; case 1: k1 ^= data[0]; k1 *= c1; k1 = (k1 << 15) | (k1 >> (32 - 15)); k1 *= c2; h1 ^= k1; goto default; default: } //---------- // finalization h1 ^= len; // Force all bits of the hash block to avalanche. h1 = (h1 ^ (h1 >> 16)) * 0x85ebca6b; h1 = (h1 ^ (h1 >> 13)) * 0xc2b2ae35; h1 ^= h1 >> 16; return h1; } // Check that bytesHash works with CTFE pure nothrow @system @nogc unittest { size_t ctfeHash(string x) { return bytesHash(x.ptr, x.length, 0); } enum test_str = "Sample string"; enum size_t hashVal = ctfeHash(test_str); assert(hashVal == bytesHash(&test_str[0], test_str.length, 0)); // Detect unintended changes to bytesHash on unaligned and aligned inputs. version (BigEndian) { const ubyte[7] a = [99, 4, 3, 2, 1, 5, 88]; const uint[2] b = [0x04_03_02_01, 0x05_ff_ff_ff]; } else { const ubyte[7] a = [99, 1, 2, 3, 4, 5, 88]; const uint[2] b = [0x04_03_02_01, 0xff_ff_ff_05]; } // It is okay to change the below values if you make a change // that you expect to change the result of bytesHash. assert(bytesHash(&a[1], a.length - 2, 0) == 2727459272); assert(bytesHash(&b, 5, 0) == 2727459272); assert(bytesHashAlignedBy!uint((cast(const ubyte*) &b)[0 .. 5], 0) == 2727459272); }
D
/Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/FluentSQL.build/SQL+Contains.swift.o : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.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/FluentSQL.build/SQL+Contains~partial.swiftmodule : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.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/FluentSQL.build/SQL+Contains~partial.swiftdoc : /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLSchema.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SchemaBuilder+Field.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+SchemaSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+JoinSupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+QuerySupporting.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/SQL+Contains.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/Exports.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/QueryBuilder+GroupBy.swift /Users/christian/GitHub/vapor/HelloVapor/.build/checkouts/fluent/Sources/FluentSQL/FluentSQLQuery.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/XPC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/IOKit.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-macos.swiftinterface /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/SQL.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/christian/GitHub/vapor/HelloVapor/.build/x86_64-apple-macosx/debug/Fluent.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
/Users/pramonowang/Desktop/anyhour/DerivedData/anyhour/Build/Intermediates/anyhour.build/Debug-iphoneos/anyhour.build/Objects-normal/armv7/AnyHourTableViewController.o : /Users/pramonowang/Desktop/anyhour/anyhour/MyAnnotation.swift /Users/pramonowang/Desktop/anyhour/ShowMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/SearchMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourCustomCell.swift /Users/pramonowang/Desktop/anyhour/anyhour/Restaurant.swift /Users/pramonowang/Desktop/anyhour/anyhour/ViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourTableViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreLocation.swiftmodule /Users/pramonowang/Desktop/anyhour/DerivedData/anyhour/Build/Intermediates/anyhour.build/Debug-iphoneos/anyhour.build/Objects-normal/armv7/AnyHourTableViewController~partial.swiftmodule : /Users/pramonowang/Desktop/anyhour/anyhour/MyAnnotation.swift /Users/pramonowang/Desktop/anyhour/ShowMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/SearchMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourCustomCell.swift /Users/pramonowang/Desktop/anyhour/anyhour/Restaurant.swift /Users/pramonowang/Desktop/anyhour/anyhour/ViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourTableViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreLocation.swiftmodule /Users/pramonowang/Desktop/anyhour/DerivedData/anyhour/Build/Intermediates/anyhour.build/Debug-iphoneos/anyhour.build/Objects-normal/armv7/AnyHourTableViewController~partial.swiftdoc : /Users/pramonowang/Desktop/anyhour/anyhour/MyAnnotation.swift /Users/pramonowang/Desktop/anyhour/ShowMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/SearchMapViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourCustomCell.swift /Users/pramonowang/Desktop/anyhour/anyhour/Restaurant.swift /Users/pramonowang/Desktop/anyhour/anyhour/ViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AnyHourTableViewController.swift /Users/pramonowang/Desktop/anyhour/anyhour/AppDelegate.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/armv7/CoreLocation.swiftmodule
D
/** * TLS Extensions * * Copyright: * (C) 2011-2012,2015 Jack Lloyd * (C) 2014-2015 Etienne Cimon * * License: * Botan is released under the Simplified BSD License (see LICENSE.md) */ module botan.tls.extensions; import botan.constants; static if (BOTAN_HAS_TLS): package: import memutils.vector; import botan.tls.magic; import botan.utils.types; import memutils.hashmap; import botan.tls.reader; import botan.tls.exceptn; import botan.tls.alert; import botan.utils.types : Unique; import botan.utils.get_byte; import std.conv : to; import std.array : Appender; alias ushort HandshakeExtensionType; enum : HandshakeExtensionType { TLSEXT_SERVER_NAME_INDICATION = 0, TLSEXT_MAX_FRAGMENT_LENGTH = 1, TLSEXT_CLIENT_CERT_URL = 2, TLSEXT_TRUSTED_CA_KEYS = 3, TLSEXT_TRUNCATED_HMAC = 4, TLSEXT_CERTIFICATE_TYPES = 9, TLSEXT_USABLE_ELLIPTIC_CURVES = 10, TLSEXT_EC_POINT_FORMATS = 11, TLSEXT_SRP_IDENTIFIER = 12, TLSEXT_SIGNATURE_ALGORITHMS = 13, TLSEXT_HEARTBEAT_SUPPORT = 15, TLSEXT_ALPN = 16, TLSEXT_SESSION_TICKET = 35, TLSEXT_SAFE_RENEGOTIATION = 65281, } /** * Base class representing a TLS extension of some kind */ interface Extension { public: /** * Returns: code number of the extension */ abstract HandshakeExtensionType type() const; /** * Returns: serialized binary for the extension */ abstract Vector!ubyte serialize() const; /** * Returns: if we should encode this extension or not */ abstract @property bool empty() const; } /** * TLS Server Name Indicator extension (RFC 3546) */ class ServerNameIndicator : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_SERVER_NAME_INDICATION; } override HandshakeExtensionType type() const { return staticType(); } this(in string host_name) { //logDebug("SNI loaded with host name: ", host_name); m_sni_host_name = host_name; } this(ref TLSDataReader reader, ushort extension_size) { /* * This is used by the server to confirm that it knew the name */ if (extension_size == 0) return; ushort name_bytes = reader.get_ushort(); if (name_bytes + 2 != extension_size) throw new DecodingError("Bad encoding of SNI extension"); while (name_bytes) { ubyte name_type = reader.get_byte(); name_bytes--; if (name_type == 0) // DNS { m_sni_host_name = reader.getString(2, 1, 65535); name_bytes -= (2 + m_sni_host_name.length); } else // some other unknown name type { reader.discardNext(name_bytes); name_bytes = 0; } } } string hostName() const { return m_sni_host_name; } override Vector!ubyte serialize() const { Vector!ubyte buf; size_t name_len = m_sni_host_name.length; buf.pushBack(get_byte(0, cast(ushort) (name_len+3))); buf.pushBack(get_byte(1, cast(ushort) (name_len+3))); buf.pushBack(0); // DNS buf.pushBack(get_byte(0, cast(ushort) name_len)); buf.pushBack(get_byte(1, cast(ushort) name_len)); buf ~= (cast(const(ubyte)*)m_sni_host_name.ptr)[0 .. m_sni_host_name.length]; return buf.move(); } override @property bool empty() const { return m_sni_host_name == ""; } private: string m_sni_host_name; } /** * SRP identifier extension (RFC 5054) */ class SRPIdentifier : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_SRP_IDENTIFIER; } override HandshakeExtensionType type() const { return staticType(); } this(in string identifier) { m_srp_identifier = identifier; } this(ref TLSDataReader reader, ushort extension_size) { m_srp_identifier = reader.getString(1, 1, 255); if (m_srp_identifier.length + 1 != extension_size) throw new DecodingError("Bad encoding for SRP identifier extension"); } this(ref TLSDataReader reader, ushort extension_size); string identifier() const { return m_srp_identifier; } override Vector!ubyte serialize() const { Vector!ubyte buf; const(ubyte)* srp_bytes = cast(const(ubyte)*) m_srp_identifier.ptr; appendTlsLengthValue(buf, srp_bytes, m_srp_identifier.length, 1); return buf.move(); } override @property bool empty() const { return m_srp_identifier == ""; } private: string m_srp_identifier; } /** * Renegotiation Indication Extension (RFC 5746) */ class RenegotiationExtension : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_SAFE_RENEGOTIATION; } override HandshakeExtensionType type() const { return staticType(); } this() {} this(Vector!ubyte bits) { m_reneg_data = bits.move(); } this(ref TLSDataReader reader, ushort extension_size) { m_reneg_data = reader.getRange!ubyte(1, 0, 255); if (m_reneg_data.length + 1 != extension_size) throw new DecodingError("Bad encoding for secure renegotiation extn"); } ref const(Vector!ubyte) renegotiationInfo() const { return m_reneg_data; } override Vector!ubyte serialize() const { Vector!ubyte buf; appendTlsLengthValue(buf, m_reneg_data, 1); return buf.move(); } override @property bool empty() const { return false; } // always send this private: Vector!ubyte m_reneg_data; } /** * Maximum Fragment Length Negotiation Extension (RFC 4366 sec 3.2) */ class MaximumFragmentLength : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_MAX_FRAGMENT_LENGTH; } override HandshakeExtensionType type() const { return staticType(); } override @property bool empty() const { return false; } size_t fragmentSize() const { return m_max_fragment; } override Vector!ubyte serialize() const { static ubyte[size_t] fragment_to_code; if (fragment_to_code.length == 0) fragment_to_code = [ 512: 1, 1024: 2, 2048: 3, 4096: 4 ]; auto i = fragment_to_code.get(m_max_fragment, 0); if (i == 0) throw new InvalidArgument("Bad setting " ~ to!string(m_max_fragment) ~ " for maximum fragment size"); return Vector!ubyte([i]); } /** * Params: * max_fragment = specifies what maximum fragment size to * advertise. Currently must be one of 512, 1024, 2048, or * 4096. */ this(size_t max_fragment) { m_max_fragment = max_fragment; } this(ref TLSDataReader reader, ushort extension_size) { __gshared immutable size_t[] code_to_fragment = [ 0, 512, 1024, 2048, 4096 ]; if (extension_size != 1) throw new DecodingError("Bad size for maximum fragment extension"); ubyte val = reader.get_byte(); if (val < code_to_fragment.length) { auto i = code_to_fragment[val]; m_max_fragment = i; } else throw new TLSException(TLSAlert.ILLEGAL_PARAMETER, "Bad value in maximum fragment extension"); } private: size_t m_max_fragment; } /** * ALPN (RFC 7301) */ class ApplicationLayerProtocolNotification : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_ALPN; } override HandshakeExtensionType type() const { return staticType(); } ref const(Vector!string) protocols() const { return m_protocols; } /** * Single protocol, used by server */ this() {} /** * List of protocols, used by client */ this(Vector!string protocols) { m_protocols = protocols.move(); } this(string protocol) { m_protocols.length = 1; m_protocols[0] = protocol; } this(ref TLSDataReader reader, ushort extension_size) { if (extension_size == 0) return; // empty extension const ushort name_bytes = reader.get_ushort(); size_t bytes_remaining = extension_size - 2; if (name_bytes != bytes_remaining) throw new DecodingError("Bad encoding of ALPN extension, bad length field"); while (bytes_remaining) { const string p = reader.getString(1, 0, 255); if (bytes_remaining < p.length + 1) throw new DecodingError("Bad encoding of ALPN, length field too long"); bytes_remaining -= (p.length + 1); //logDebug("Got protocol: ", p); m_protocols.pushBack(p); } } ref string singleProtocol() const { if (m_protocols.length != 1) throw new TLSException(TLSAlert.HANDSHAKE_FAILURE, "Server sent " ~ m_protocols.length.to!string ~ " protocols in ALPN extension response"); return m_protocols[0]; } override Vector!ubyte serialize() const { Vector!ubyte buf = Vector!ubyte(2); foreach (ref p; m_protocols) { if (p.length >= 256) throw new TLSException(TLSAlert.INTERNAL_ERROR, "ALPN name too long"); if (p != "") appendTlsLengthValue(buf, cast(const(ubyte)*) p.ptr, p.length, 1); } ushort len = cast(ushort)( buf.length - 2 ); buf[0] = get_byte!ushort(0, len); buf[1] = get_byte!ushort(1, len); return buf.move(); } override @property bool empty() const { return m_protocols.empty; } private: Vector!string m_protocols; } /** * TLSSession Ticket Extension (RFC 5077) */ class SessionTicket : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_SESSION_TICKET; } override HandshakeExtensionType type() const { return staticType(); } /** * Returns: contents of the session ticket */ ref const(Vector!ubyte) contents() const { return m_ticket; } /** * Create empty extension, used by both client and server */ this() {} /** * Extension with ticket, used by client */ this(Vector!ubyte session_ticket) { m_ticket = session_ticket.move(); } /** * Deserialize a session ticket */ this(ref TLSDataReader reader, ushort extension_size) { m_ticket = reader.getElem!(ubyte, Vector!ubyte)(extension_size); } override Vector!ubyte serialize() const { return m_ticket.dup; } override @property bool empty() const { return false; } private: Vector!ubyte m_ticket; } /** * Supported Elliptic Curves Extension (RFC 4492) */ class SupportedEllipticCurves : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_USABLE_ELLIPTIC_CURVES; } override HandshakeExtensionType type() const { return staticType(); } static string curveIdToName(ushort id) { switch(id) { case 15: return "secp160k1"; case 16: return "secp160r1"; case 17: return "secp160r2"; case 18: return "secp192k1"; case 19: return "secp192r1"; case 20: return "secp224k1"; case 21: return "secp224r1"; case 22: return "secp256k1"; case 23: return "secp256r1"; case 24: return "secp384r1"; case 25: return "secp521r1"; case 26: return "brainpool256r1"; case 27: return "brainpool384r1"; case 28: return "brainpool512r1"; default: return id.to!string; // something we don't know or support } } static ushort nameToCurveId(in string name) { if (name == "secp160k1") return 15; if (name == "secp160r1") return 16; if (name == "secp160r2") return 17; if (name == "secp192k1") return 18; if (name == "secp192r1") return 19; if (name == "secp224k1") return 20; if (name == "secp224r1") return 21; if (name == "secp256k1") return 22; if (name == "secp256r1") return 23; if (name == "secp384r1") return 24; if (name == "secp521r1") return 25; if (name == "brainpool256r1") return 26; if (name == "brainpool384r1") return 27; if (name == "brainpool512r1") return 28; throw new InvalidArgument("name_to_curve_id unknown name " ~ name); } ref const(Vector!string) curves() const { return m_curves; } override Vector!ubyte serialize() const { Vector!ubyte buf; buf.reserve(m_curves.length * 2 + 2); buf.length = 2; for (size_t i = 0; i != m_curves.length; ++i) { const ushort id = nameToCurveId(m_curves[i]); buf.pushBack(get_byte(0, id)); buf.pushBack(get_byte(1, id)); } buf[0] = get_byte(0, cast(ushort) (buf.length-2)); buf[1] = get_byte(1, cast(ushort) (buf.length-2)); return buf.move(); } this(Vector!string curves) { m_curves = curves.move(); } this(ref TLSDataReader reader, ushort extension_size) { ushort len = reader.get_ushort(); m_curves.reserve(cast(size_t)len); //logDebug("Got elliptic curves len: ", len, " ext size: ", extension_size); if (len + 2 != extension_size) throw new DecodingError("Inconsistent length field in elliptic curve list"); if (len % 2 == 1) throw new DecodingError("Elliptic curve list of strange size"); len /= 2; foreach (size_t i; 0 .. len) { const ushort id = reader.get_ushort(); const string name = curveIdToName(id); //logDebug("Got curve name: ", name); if (name != "") m_curves.pushBack(name); } } override @property bool empty() const { return m_curves.empty; } private: Vector!string m_curves; } /** * Signature Algorithms Extension for TLS 1.2 (RFC 5246) */ class SignatureAlgorithms : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_SIGNATURE_ALGORITHMS; } override HandshakeExtensionType type() const { return staticType(); } static string hashAlgoName(ubyte code) { switch(code) { case 1: return "MD5"; // code 1 is MD5 - ignore it case 2: return "SHA-1"; case 3: return "SHA-224"; case 4: return "SHA-256"; case 5: return "SHA-384"; case 6: return "SHA-512"; default: return ""; } } static ubyte hashAlgoCode(in string name) { if (name == "MD5") return 1; if (name == "SHA-1") return 2; if (name == "SHA-224") return 3; if (name == "SHA-256") return 4; if (name == "SHA-384") return 5; if (name == "SHA-512") return 6; throw new InternalError("Unknown hash ID " ~ name ~ " for signature_algorithms"); } static string sigAlgoName(ubyte code) { switch(code) { case 1: return "RSA"; case 2: return "DSA"; case 3: return "ECDSA"; default: return ""; } } static ubyte sigAlgoCode(in string name) { if (name == "RSA") return 1; if (name == "DSA") return 2; if (name == "ECDSA") return 3; throw new InternalError("Unknown sig ID " ~ name ~ " for signature_algorithms"); } ref const(Vector!( Pair!(string, string) )) supportedSignatureAlgorthms() const { return m_supported_algos; } override Vector!ubyte serialize() const { Vector!ubyte buf = Vector!ubyte(2); for (size_t i = 0; i != m_supported_algos.length; ++i) { try { const ubyte hash_code = hashAlgoCode(m_supported_algos[i].first); const ubyte sig_code = sigAlgoCode(m_supported_algos[i].second); buf.pushBack(hash_code); buf.pushBack(sig_code); } catch (Exception) {} } buf[0] = get_byte(0, cast(ushort) (buf.length-2)); buf[1] = get_byte(1, cast(ushort) (buf.length-2)); return buf.move(); } override @property bool empty() const { return false; } this()(auto const ref Vector!string hashes, auto const ref Vector!string sigs) { for (size_t i = 0; i != hashes.length; ++i) for (size_t j = 0; j != sigs.length; ++j) m_supported_algos.pushBack(makePair(hashes[i], sigs[j])); } this(ref TLSDataReader reader, ushort extension_size) { ushort len = reader.get_ushort(); if (len + 2 != extension_size) throw new DecodingError("Bad encoding on signature algorithms extension"); while (len) { const string hash_code = hashAlgoName(reader.get_byte()); const string sig_code = sigAlgoName(reader.get_byte()); len -= 2; // If not something we know, ignore it completely if (hash_code == "" || sig_code == "") continue; //logDebug("Got signature: ", hash_code, " => ",sig_code); m_supported_algos.pushBack(makePair(hash_code, sig_code)); } } this(Vector!( Pair!(string, string) ) algos) { m_supported_algos = algos.move(); } private: Vector!( Pair!(string, string) ) m_supported_algos; } /** * Heartbeat Extension (RFC 6520) */ class HeartbeatSupportIndicator : Extension { public: static HandshakeExtensionType staticType() { return TLSEXT_HEARTBEAT_SUPPORT; } override HandshakeExtensionType type() const { return staticType(); } bool peerAllowedToSend() const { return m_peer_allowed_to_send; } override Vector!ubyte serialize() const { Vector!ubyte heartbeat = Vector!ubyte(1); heartbeat[0] = (m_peer_allowed_to_send ? 1 : 2); return heartbeat.move(); } override @property bool empty() const { return false; } this(bool peer_allowed_to_send) { m_peer_allowed_to_send = peer_allowed_to_send; } this(ref TLSDataReader reader, ushort extension_size) { if (extension_size != 1) throw new DecodingError("Strange size for heartbeat extension"); const ubyte code = reader.get_byte(); if (code != 1 && code != 2) throw new TLSException(TLSAlert.ILLEGAL_PARAMETER, "Unknown heartbeat code " ~ to!string(code)); m_peer_allowed_to_send = (code == 1); } private: bool m_peer_allowed_to_send; } /** * Represents a block of extensions in a hello message */ struct TLSExtensions { public: Vector!HandshakeExtensionType extensionTypes() const { return m_extensions.types.dup; } T get(T)() const { HandshakeExtensionType type = T.staticType(); return cast(T)m_extensions.get(type, T.init); } void add(Extension extn) { assert(extn); auto val = m_extensions.get(extn.type(), null); if (val) { m_extensions.remove(extn.type()); } m_extensions.add(extn.type(), extn); } Vector!ubyte serialize() const { Vector!ubyte buf = Vector!ubyte(2); // 2 bytes for length field foreach (const ref Extension extn; m_extensions.extensions[]) { if (extn.empty) continue; const ushort extn_code = extn.type(); const Vector!ubyte extn_val = extn.serialize(); buf.pushBack(get_byte(0, extn_code)); buf.pushBack(get_byte(1, extn_code)); buf.pushBack(get_byte(0, cast(ushort) extn_val.length)); buf.pushBack(get_byte(1, cast(ushort) extn_val.length)); buf ~= extn_val[]; } const ushort extn_size = cast(ushort) (buf.length - 2); buf[0] = get_byte(0, extn_size); buf[1] = get_byte(1, extn_size); // avoid sending a completely empty extensions block if (buf.length == 2) return Vector!ubyte(); return buf.move(); } void deserialize(ref TLSDataReader reader) { if (reader.hasRemaining()) { const ushort all_extn_size = reader.get_ushort(); if (reader.remainingBytes() != all_extn_size) throw new DecodingError("Bad extension size"); while (reader.hasRemaining()) { const ushort extension_code = reader.get_ushort(); const ushort extension_size = reader.get_ushort(); //logDebug("Got extension: ", extension_code); Extension extn = makeExtension(reader, extension_code, extension_size); if (extn) this.add(extn); else // unknown/unhandled extension reader.discardNext(extension_size); } } } void reserve(size_t n) { m_extensions.extensions.reserve(n); } this(ref TLSDataReader reader) { deserialize(reader); } private: HandshakeExtensions m_extensions; } private struct HandshakeExtensions { private: Vector!HandshakeExtensionType types; Vector!Extension extensions; Extension get(HandshakeExtensionType type, Extension dflt) const { size_t i; foreach (HandshakeExtensionType t; types[]) { if (t == type) return cast() extensions[i]; i++; } return dflt; } void add(HandshakeExtensionType type, Extension ext) { types ~= type; extensions ~= ext; } void remove(HandshakeExtensionType type) { size_t i; foreach (HandshakeExtensionType t; types[]) { if (t == type) { Vector!HandshakeExtensionType tmp_types; tmp_types.reserve(types.length - 1); tmp_types ~= types[0 .. i]; Vector!Extension tmp_extensions; tmp_extensions.reserve(extensions.length - 1); tmp_extensions ~= extensions[0 .. i]; if (i != types.length - 1) { tmp_types ~= types[i+1 .. types.length]; tmp_extensions ~= extensions[i+1 .. extensions.length]; } types[] = tmp_types[]; extensions[] = tmp_extensions[]; return; } i++; } logError("Could not find a TLS extension we wanted to remove..."); } } private: Extension makeExtension(ref TLSDataReader reader, ushort code, ushort size) { switch(code) { case TLSEXT_SERVER_NAME_INDICATION: return new ServerNameIndicator(reader, size); case TLSEXT_MAX_FRAGMENT_LENGTH: return new MaximumFragmentLength(reader, size); case TLSEXT_SRP_IDENTIFIER: return new SRPIdentifier(reader, size); case TLSEXT_USABLE_ELLIPTIC_CURVES: return new SupportedEllipticCurves(reader, size); case TLSEXT_SAFE_RENEGOTIATION: return new RenegotiationExtension(reader, size); case TLSEXT_SIGNATURE_ALGORITHMS: return new SignatureAlgorithms(reader, size); case TLSEXT_ALPN: return new ApplicationLayerProtocolNotification(reader, size); case TLSEXT_HEARTBEAT_SUPPORT: return new HeartbeatSupportIndicator(reader, size); case TLSEXT_SESSION_TICKET: return new SessionTicket(reader, size); default: return null; // not known } }
D
# # Optional user settings for the foldingathome-smp daemon # # If you prefer not to run fah as root then you can identifer a current or # specially created user here. FAH_USER="" # If you wish to associate this user with a specific group you can enter the # group name here. If left blank the default is "users". FAH_GRP="" # Place any additional Folding@Home client flags here # Note that "-smp" will always be added FAH_CLIENT_FLAGS="-verbosity 9 -forceasm"
D
func void B_Video() { };
D
/** Copyright: 2017 © LLC CERERIS License: MIT Authors: LLC CERERIS */ module lorawan.gateway.abstractpacket; import lorawan.gateway.lorawantypes; /// Abstract class for all types of packets class AbstractPacket { public: /** Used to initialize protocol version, packet type and token. Params: protocolVersion = protocol version between Lora gateway and server. packetType = packet type. token = random token. */ this(ProtocolVersion protocolVersion, PacketType packetType, ubyte[2] token) { _protocolVersion = protocolVersion; _packetType = packetType; _token = token; } /** Used to converts packet to an array of bytes Returns: $(D ubyte[]) */ abstract ubyte[] toByteArray(); /** Used to get the protocol version Returns: $(D ProtocolVersion) */ final ProtocolVersion getProtocolVersion(){ return _protocolVersion; } /** Used to set the protocol version Params: protocolVersion = value used to initialize protocol version Returns: $(D AbstractPacket) */ final AbstractPacket setProtocolVersion(ProtocolVersion protocolVersion) { _protocolVersion = protocolVersion; return this; } /** Used to get the token Returns: $(D ubyte[2]) */ final ubyte[2] getToken(){ return _token; } /** Used to set the token Params: token = value used to initialize token Returns: $(D AbstractPacket) */ final AbstractPacket setToken(ubyte[2] token) { _token = token; return this; } /** Used to get the packet type Returns: $(D PacketType) */ final PacketType getPacketType(){ return _packetType; } protected: /// Protocol version between Lora gateway and server ProtocolVersion _protocolVersion; /// Random token to acknowledge ubyte[2] _token; /// Packet type identifier PacketType _packetType; }
D
instance Mil_314_Mortis (Npc_Default) { // ------ NSC ------ name = "Mortis"; guild = GIL_MIL; id = 314; voice = 13; flags = 0; npctype = NPCTYPE_MAIN; // ------ Attribute ------ B_SetAttributesToChapter (self, 3); // ------ Kampf-Taktik ------ fight_tactic = FAI_HUMAN_STRONG; // ------ Equippte Waffen ------ EquipItem (self, ItMw_1h_Mil_Sword); // ------ Inventory ------ B_CreateAmbientInv (self); // ------ visuals ------ B_SetNpcVisual (self, MALE, "Hum_Head_Bald", Face_P_Normal01, BodyTex_P, ITAR_SMITH); Mdl_SetModelFatness (self,0); Mdl_ApplyOverlayMds (self, "Humans_Militia.mds"); // ------ NSC-relevante Talente vergeben ------ B_GiveNpcTalents (self); // ------ Kampf-Talente ------ B_SetFightSkills (self, 55); // ------ TA anmelden ------ daily_routine = Rtn_Start_314; }; FUNC VOID Rtn_Start_314 () { TA_Smith_Fire (07,00,07,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (07,10,07,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (07,20,07,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (07,30,07,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (07,40,07,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (07,50,08,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (08,00,08,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (08,10,08,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (08,20,08,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (08,30,08,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (08,40,08,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (08,50,09,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (09,00,09,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (09,10,09,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (09,20,09,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (09,30,09,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (09,40,09,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (09,50,10,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (10,00,10,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (10,10,10,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (10,20,10,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (10,30,10,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (10,40,10,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (10,50,11,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (11,00,11,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (11,10,11,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (11,20,11,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (11,30,11,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (11,40,11,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (11,50,12,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (12,00,12,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (12,10,12,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (12,20,12,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (12,30,12,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (12,40,12,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (12,50,13,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (13,00,13,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (13,10,13,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (13,20,13,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (13,30,13,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (13,40,13,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (13,50,14,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (14,00,14,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (14,10,14,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (14,20,14,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (14,30,14,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (14,40,14,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (14,50,15,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (15,00,15,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (15,10,15,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (15,20,15,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (15,30,15,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (15,40,15,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (15,50,16,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (16,00,16,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (16,10,16,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (16,20,16,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (16,30,16,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (16,40,16,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (16,50,17,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (17,00,17,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (17,10,17,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (17,20,17,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (17,30,17,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (17,40,17,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (17,50,18,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (18,00,18,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (18,10,18,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (18,20,18,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (18,30,18,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (18,40,18,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (18,50,19,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (19,00,19,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (19,10,19,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (19,20,19,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (19,30,19,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (19,40,19,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (19,50,20,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (20,00,20,10,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (20,10,20,20,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Fire (20,20,20,30,"NW_CITY_KASERN_ARMORY_FIRE"); TA_Smith_Anvil (20,30,20,40,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Smith_Cool (20,40,20,50,"NW_CITY_KASERN_ARMORY_COOL"); TA_Smith_Anvil (20,50,21,00,"NW_CITY_KASERN_ARMORY_ANVIL"); TA_Cook_Stove (21,00,00,00,"NW_CITY_KASERN_BARRACK02_COOK"); TA_Sleep (00,00,07,00,"NW_CITY_BARRACK02_BED_BOLTAN"); };
D
/** Types to represent the DOM tree. The DOM tree is used as an intermediate representation between the parser and the generator. Filters and other kinds of transformations can be executed on the DOM tree. The generator itself will apply filters and other traits using `diet.traits.applyTraits`. */ module diet.dom; import diet.internal.string; @safe: string expectText(const(Attribute) att) { import diet.defs : enforcep; if (att.contents.length == 0) return null; enforcep(att.isText, "'"~att.name~"' expected to be a pure text attribute.", att.loc); return att.contents[0].value; } string expectText(const(Node) n) { import diet.defs : enforcep; if (n.contents.length == 0) return null; enforcep(n.contents.length > 0 && n.contents[0].kind == NodeContent.Kind.text && (n.contents.length == 1 || n.contents[1].kind != NodeContent.Kind.node), "Expected pure text node.", n.loc); return n.contents[0].value; } string expectExpression(const(Attribute) att) { import diet.defs : enforcep; enforcep(att.isExpression, "'"~att.name~"' expected to be an expression attribute.", att.loc); return att.contents[0].value; } Node[] clone(in Node[] nodes) { auto ret = new Node[](nodes.length); foreach (i, ref n; ret) n = nodes[i].clone; return ret; } bool isExpression(const(Attribute) att) { return att.contents.length == 1 && att.contents[0].kind == AttributeContent.Kind.interpolation; } bool isText(const(Attribute) att) { return att.contents.length == 0 || att.contents.length == 1 && att.contents[0].kind == AttributeContent.Kind.text; } /** Converts an array of attribute contents to node contents. */ NodeContent[] toNodeContent(in AttributeContent[] contents, Location loc) { auto ret = new NodeContent[](contents.length); foreach (i, ref c; contents) { final switch (c.kind) { case AttributeContent.Kind.text: ret[i] = NodeContent.text(c.value, loc); break; case AttributeContent.Kind.interpolation: ret[i] = NodeContent.interpolation(c.value, loc); break; case AttributeContent.Kind.rawInterpolation: ret[i] = NodeContent.rawInterpolation(c.value, loc); break; } } return ret; } /** Encapsulates a full Diet template document. */ /*final*/ class Document { // non-final because of https://issues.dlang.org/show_bug.cgi?id=17146 Node[] nodes; this(Node[] nodes) { this.nodes = nodes; } } /** Represents a single node in the DOM tree. */ /*final*/ class Node { // non-final because of https://issues.dlang.org/show_bug.cgi?id=17146 @safe nothrow: /// A set of names that identify special-purpose nodes enum SpecialName { /** Normal comment. The content will appear in the output if the output format supports comments. */ comment = "//", /** Hidden comment. The content will never appear in the output. */ hidden = "//-", /** D statement. A node that has pure text as its first content, optionally followed by any number of child nodes. The text content is either a complete D statement, or an open block statement (without a block statement appended). In the latter case, all nested nodes are considered to be part of the block statement's body by the generator. */ code = "-", /** A dummy node that contains only text and string interpolations. These nodes behave the same as if their node content would be inserted in their place, except that they will cause whitespace (usually a space or a newline) to be prepended in the output, if they are not the first child of their parent. */ text = "|", /** Filter node. These nodes contain only text and string interpolations and have a "filterChain" attribute that contains a space separated list of filter names that are applied in reverse order when the traits (see `diet.traits.applyTraits`) are applied by the generator. */ filter = ":" } /// Start location of the node in the source file. Location loc; /// Name of the node string name; /// A key-value set of attributes. Attribute[] attributes; /// The main contents of the node. NodeContent[] contents; /// Flags that control the parser and generator behavior. NodeAttribs attribs; /// Original text used to look up the translation (only set if translated) string translationKey; /// Constructs a new node. this(Location loc = Location.init, string name = null, Attribute[] attributes = null, NodeContent[] contents = null, NodeAttribs attribs = NodeAttribs.none, string translation_key = null) { this.loc = loc; this.name = name; this.attributes = attributes; this.contents = contents; this.attribs = attribs; this.translationKey = translation_key; } /// Returns the "id" attribute. @property inout(Attribute) id() inout { return getAttribute("id"); } /// Returns "class" attribute - a white space separated list of style class identifiers. @property inout(Attribute) class_() inout { return getAttribute("class"); } Node clone() const { auto ret = new Node(this.loc, this.name, null, null, this.attribs, this.translationKey); ret.attributes.length = this.attributes.length; foreach (i, ref a; ret.attributes) a = this.attributes[i].dup; ret.contents.length = this.contents.length; foreach (i, ref c; ret.contents) c = this.contents[i].clone; return ret; } /** Adds a piece of text to the node's contents. If the node already has some content and the last piece of content is also text, with a matching location, the text will be appended to that `NodeContent`'s value. Otherwise, a new `NodeContent` will be appended. Params: text = The text to append to the node loc = Location in the source file */ void addText(string text, in Location loc) { if (contents.length && contents[$-1].kind == NodeContent.Kind.text && contents[$-1].loc == loc) contents[$-1].value ~= text; else contents ~= NodeContent.text(text, loc); } /** Removes all content if it conists of only white space. */ void stripIfOnlyWhitespace() { if (!this.hasNonWhitespaceContent) contents = null; } /** Determines if this node has any non-whitespace contents. */ bool hasNonWhitespaceContent() const { import std.algorithm.searching : any; return contents.any!(c => c.kind != NodeContent.Kind.text || c.value.ctstrip.length > 0); } /** Strips any leading whitespace from the contents. */ void stripLeadingWhitespace() { while (contents.length >= 1 && contents[0].kind == NodeContent.Kind.text) { contents[0].value = ctstripLeft(contents[0].value); if (contents[0].value.length == 0) contents = contents[1 .. $]; else break; } } /** Strips any trailign whitespace from the contents. */ void stripTrailingWhitespace() { while (contents.length >= 1 && contents[$-1].kind == NodeContent.Kind.text) { contents[$-1].value = ctstripRight(contents[$-1].value); if (contents[$-1].value.length == 0) contents = contents[0 .. $-1]; else break; } } /// Tests if the node consists of only a single, static string. bool isTextNode() const { return contents.length == 1 && contents[0].kind == NodeContent.Kind.text; } /// Tests if the node consists only of text and interpolations, but doesn't contain child nodes. bool isProceduralTextNode() const { import std.algorithm.searching : all; return contents.all!(c => c.kind != NodeContent.Kind.node); } bool hasAttribute(string name) const { foreach (ref a; this.attributes) if (a.name == name) return true; return false; } /** Returns a given named attribute. If the attribute doesn't exist, an empty value will be returned. */ inout(Attribute) getAttribute(string name) inout @trusted { foreach (ref a; this.attributes) if (a.name == name) return a; return cast(inout)Attribute(this.loc, name, null); } void setAttribute(Attribute att) { foreach (ref da; attributes) if (da.name == att.name) { da = att; return; } attributes ~= att; } /// Outputs a simple string representation of the node. override string toString() const { scope (failure) assert(false); import std.string : format; return format("Node(%s, \"%s\", %s, %s, %s, \"%s\")", this.tupleof); } /// Compares all properties of two nodes for equality. override bool opEquals(Object other_) { auto other = cast(Node)other_; if (!other) return false; return this.opEquals(other); } bool opEquals(in Node other) const { return this.tupleof == other.tupleof; } } /** Flags that control parser or generator behavior. */ enum NodeAttribs { none = 0, translated = 1<<0, /// Translate node contents textNode = 1<<1, /// All nested lines are treated as text rawTextNode = 1<<2, /// All nested lines are treated as raw text (no interpolations or inline tags) fitOutside = 1<<3, /// Don't insert white space outside of the node when generating output (currently ignored by the HTML generator) fitInside = 1<<4, /// Don't insert white space around the node contents when generating output (currently ignored by the HTML generator) } /** A single node attribute. Attributes are key-value pairs, where the value can either be empty (considered as a Boolean value of `true`), a string with optional string interpolations, or a D expression (stored as a single `interpolation` `AttributeContent`). */ struct Attribute { @safe nothrow: /// Location in source file Location loc; /// Name of the attribute string name; /// Value of the attribute AttributeContent[] contents; /// Creates a new attribute with a static text value. static Attribute text(string name, string value, Location loc) { return Attribute(loc, name, [AttributeContent.text(value)]); } /// Creates a new attribute with an expression based value. static Attribute expr(string name, string value, Location loc) { return Attribute(loc, name, [AttributeContent.interpolation(value)]); } this(Location loc, string name, AttributeContent[] contents) { this.name = name; this.contents = contents; this.loc = loc; } /// Creates a copy of the attribute. @property Attribute dup() const { return Attribute(loc, name, contents.dup); } /** Appends raw text to the attribute. If the attribute already has contents and the last piece of content is also text, then the text will be appended to the value of that `AttributeContent`. Otherwise, a new `AttributeContent` will be appended to `contents`. */ void addText(string str) { if (contents.length && contents[$-1].kind == AttributeContent.Kind.text) contents[$-1].value ~= str; else contents ~= AttributeContent.text(str); } /** Appends a list of contents. If the list of contents starts with a text `AttributeContent`, then this first part will be appended using the same rules as for `addText`. The remaining parts will be appended normally. */ void addContents(const(AttributeContent)[] contents) { if (contents.length > 0 && contents[0].kind == AttributeContent.Kind.text) { addText(contents[0].value); contents = contents[1 .. $]; } this.contents ~= contents; } } /** A single piece of an attribute value. */ struct AttributeContent { @safe nothrow: /// enum Kind { text, /// Raw text (will be escaped by the generator as necessary) interpolation, /// A D expression that will be converted to text at runtime (escaped as necessary) rawInterpolation /// A D expression that will be converted to text at runtime (not escaped) } /// Kind of this attribute content Kind kind; /// The value - either text or a D expression string value; /// Creates a new text attribute content value. static AttributeContent text(string text) { return AttributeContent(Kind.text, text); } /// Creates a new string interpolation attribute content value. static AttributeContent interpolation(string expression) { return AttributeContent(Kind.interpolation, expression); } /// Creates a new raw string interpolation attribute content value. static AttributeContent rawInterpolation(string expression) { return AttributeContent(Kind.rawInterpolation, expression); } } /** A single piece of node content. */ struct NodeContent { @safe nothrow: /// enum Kind { node, /// A child node text, /// Raw text (not escaped in the output) interpolation, /// A D expression that will be converted to text at runtime (escaped as necessary) rawInterpolation /// A D expression that will be converted to text at runtime (not escaped) } /// Kind of this node content Kind kind; /// Location of the content in the source file Location loc; /// The node - only used for `Kind.node` Node node; /// The string value - either text or a D expression string value; /// Creates a new child node content value. static NodeContent tag(Node node) { return NodeContent(Kind.node, node.loc, node); } /// Creates a new text node content value. static NodeContent text(string text, Location loc) { return NodeContent(Kind.text, loc, Node.init, text); } /// Creates a new string interpolation node content value. static NodeContent interpolation(string text, Location loc) { return NodeContent(Kind.interpolation, loc, Node.init, text); } /// Creates a new raw string interpolation node content value. static NodeContent rawInterpolation(string text, Location loc) { return NodeContent(Kind.rawInterpolation, loc, Node.init, text); } @property NodeContent clone() const { NodeContent ret; ret.kind = this.kind; ret.loc = this.loc; ret.value = this.value; if (this.node) ret.node = this.node.clone; return ret; } /// Compares node content for equality. bool opEquals(const scope ref NodeContent other) const { if (this.kind != other.kind) return false; if (this.loc != other.loc) return false; if (this.value != other.value) return false; if (this.node is other.node) return true; if (this.node is null || other.node is null) return false; return this.node.opEquals(other.node); } } /// Represents the location of an entity within the source file. struct Location { /// Name of the source file string file; /// Zero based line index within the file int line; }
D
// Copyright Brian Schott (Hackerpilot) 2015. // 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 dscanner.analysis.auto_ref_assignment; import dparse.lexer; import dparse.ast; import dscanner.analysis.base; /** * Checks for assignment to auto-ref function parameters. */ final class AutoRefAssignmentCheck : BaseAnalyzer { mixin AnalyzerInfo!"auto_ref_assignment_check"; /// this(string fileName, bool skipTests = false) { super(fileName, null, skipTests); } override void visit(const Module m) { pushScope(); m.accept(this); popScope(); } override void visit(const FunctionDeclaration func) { if (func.parameters is null || func.parameters.parameters.length == 0) return; pushScope(); scope (exit) popScope(); func.accept(this); } override void visit(const Parameter param) { import std.algorithm.searching : canFind; immutable bool isAuto = param.parameterAttributes.canFind!(a => a.idType == cast(ubyte) tok!"auto"); immutable bool isRef = param.parameterAttributes.canFind!(a => a.idType == cast(ubyte) tok!"ref"); if (!isAuto || !isRef) return; addSymbol(param.name.text); } override void visit(const AssignExpression assign) { if (assign.operator == tok!"" || scopes.length == 0) return; interest ~= assign; assign.ternaryExpression.accept(this); interest.length--; } override void visit(const IdentifierOrTemplateInstance ioti) { import std.algorithm.searching : canFind; if (ioti.identifier == tok!"" || !interest.length) return; if (scopes[$ - 1].canFind(ioti.identifier.text)) addErrorMessage(interest[$ - 1], KEY, MESSAGE); } override void visit(const IdentifierChain ic) { import std.algorithm.searching : canFind; if (ic.identifiers.length == 0 || !interest.length) return; if (scopes[$ - 1].canFind(ic.identifiers[0].text)) addErrorMessage(interest[$ - 1], KEY, MESSAGE); } alias visit = BaseAnalyzer.visit; private: enum string MESSAGE = "Assignment to auto-ref function parameter."; enum string KEY = "dscanner.suspicious.auto_ref_assignment"; const(AssignExpression)[] interest; void addSymbol(string symbolName) { scopes[$ - 1] ~= symbolName; } void pushScope() { scopes.length++; } void popScope() { scopes = scopes[0 .. $ - 1]; } string[][] scopes; } unittest { import std.stdio : stderr; import std.format : format; import dscanner.analysis.config : StaticAnalysisConfig, Check, disabledConfig; import dscanner.analysis.helpers : assertAnalyzerWarnings; StaticAnalysisConfig sac = disabledConfig(); sac.auto_ref_assignment_check = Check.enabled; assertAnalyzerWarnings(q{ int doStuff(T)(auto ref int a) { a = 10; /+ ^^^^^^ [warn]: %s +/ } int doStuff(T)(ref int a) { a = 10; } }c.format(AutoRefAssignmentCheck.MESSAGE), sac); stderr.writeln("Unittest for AutoRefAssignmentCheck passed."); }
D
# FIXED HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_flash_wrapper.c HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_board.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_board_cfg.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_mcu.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdint.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_defs.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/../_common/cc26xx/_hal_types.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_nvic.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_ints.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_types.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdbool.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/yvals.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdarg.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/linkage.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/_lock.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_chip_def.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_gpio.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_memmap.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/systick.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/debug.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/interrupt.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/cpu.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_cpu_scs.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/rom.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/uart.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_uart.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/gpio.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/flash.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_flash.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_aon_sysctl.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_fcfg1.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/ioc.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_ioc.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/icall/src/inc/ICall.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdlib.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_assert.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h HAL/Target/CC2650/Drivers/hal_flash_wrapper.obj: C:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h C:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_flash_wrapper.c: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_board.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_board_cfg.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_mcu.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdint.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_defs.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/../_common/cc26xx/_hal_types.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_nvic.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_ints.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_types.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdbool.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/yvals.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdarg.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/linkage.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/_lock.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_chip_def.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_gpio.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_memmap.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/systick.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/debug.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/interrupt.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/cpu.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_cpu_scs.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/rom.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/uart.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_uart.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/gpio.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/flash.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_flash.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_aon_sysctl.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_fcfg1.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/driverlib/ioc.h: c:/ti/tirtos_cc13xx_cc26xx_2_20_01_08/products/cc26xxware_2_24_02_17393/inc/hw_ioc.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/icall/src/inc/ICall.h: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_5.2.6/include/stdlib.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/inc/hal_assert.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h: c:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h: C:/ti/simplelink/ble_sdk_2_02_01_18/src/components/hal/src/target/_common/hal_types.h:
D
/Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Intermediates/CoreDataCallViewFRC.build/Debug-iphonesimulator/CoreDataCallViewFRC.build/Objects-normal/x86_64/DataController.o : /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/WithInternalStorageVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/RealmVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/MainVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/AppDelegate.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/RealmModel.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ItemCell.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/DataController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ViewController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataClass.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataClass.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Intermediates/CoreDataCallViewFRC.build/Debug-iphonesimulator/CoreDataCallViewFRC.build/Objects-normal/x86_64/DataController~partial.swiftmodule : /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/WithInternalStorageVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/RealmVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/MainVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/AppDelegate.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/RealmModel.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ItemCell.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/DataController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ViewController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataClass.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataClass.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Intermediates/CoreDataCallViewFRC.build/Debug-iphonesimulator/CoreDataCallViewFRC.build/Objects-normal/x86_64/DataController~partial.swiftdoc : /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/WithInternalStorageVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/RealmVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/MainVC.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/AppDelegate.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/RealmModel.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ItemCell.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/DataController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/ViewController.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataProperties.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/InternalData+CoreDataClass.swift /Users/octoberhammer/Developer/CoreDataCallViewFRC/CoreDataCallViewFRC/Model/Item+CoreDataClass.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-umbrella.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectSchema.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm_Dynamic.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration+Sync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/NSError+RLMSync.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMThreadSafeReference.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectStore.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMOptionalBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObjectBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMListBase.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObjectBase_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncUtil_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealm_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMSyncConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMCollection_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMResults_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMObject_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMArray_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMProperty_Private.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUtil.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/Realm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealm.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMPlatform.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncSession.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncPermission.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMMigration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMRealmConfiguration.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMCollection.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncManager.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncUser.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/PrivateHeaders/RLMAccessor.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMSyncCredentials.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMResults.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMConstants.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMObject.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Headers/RealmSwift-Swift.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMArray.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Headers/RLMProperty.h /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/Realm/Realm.framework/Modules/module.modulemap /Users/octoberhammer/Developer/CoreDataCallViewFRC/Build/Products/Debug-iphonesimulator/RealmSwift/RealmSwift.framework/Modules/module.modulemap
D
//----------------------------------------------------------------------------- // wxD - PaintEvent.d // (C) 2005 bero <berobero@users.sourceforge.net> // based on // wx.NET - PaintEvent.cs // /// The wxPaintEvent wrapper class. // // Written by Alexander Olk (xenomorph2@onlinehome.de) // (C) 2004 by Alexander Olk // Licensed under the wxWidgets license, see LICENSE.txt for details. // // $Id: PaintEvent.d,v 1.9 2006/11/17 15:21:00 afb Exp $ //----------------------------------------------------------------------------- module wx.PaintEvent; public import wx.common; public import wx.Event; //! \cond EXTERN static extern (C) IntPtr wxPaintEvent_ctor(int Id); //! \endcond //----------------------------------------------------------------------------- alias PaintEvent wxPaintEvent; public class PaintEvent : Event { public this(IntPtr wxobj) { super(wxobj); } public this(int Id=0) { this(wxPaintEvent_ctor(Id)); } }
D
instance VLK_421_Valentino(Npc_Default) { name[0] = "Valentino"; guild = GIL_NONE; id = 421; voice = 3; flags = 0; npcType = npctype_main; aivar[AIV_MM_RestEnd] = TRUE; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_1h_Vlk_Mace); CreateInvItems(self,ItMi_Gold,200); CreateInvItems(self,ItKe_Valentino,1); B_SetNpcVisual(self,MALE,"Hum_Head_Bald.",Face_N_Normal03,BodyTex_N,ITAR_Vlk_H); Mdl_SetModelFatness(self,0); Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds"); B_GiveNpcTalents(self); B_SetFightSkills(self,10); daily_routine = Rtn_Start_421; }; func void Rtn_Start_421() { TA_Stand_ArmsCrossed(10,0,20,0,"NW_CITY_MERCHANT_PATH_16"); TA_Sit_Chair(20,0,4,0,"NW_CITY_MERCHANT_TAVERN01_BACKROOM"); TA_Sleep(4,0,10,0,"NW_CITY_REICH03_BED_01"); }; func void rtn_follow_421() { TA_Follow_Player(8,0,22,0,"NW_PSICAMP_PARVEZ"); TA_Follow_Player(22,0,8,0,"NW_PSICAMP_PARVEZ"); }; func void rtn_joinpsicamp_421() { TA_Smoke_Waterpipe(8,0,19,0,"NW_CITY_RAUCH_05"); TA_Cook_Stove(19,0,21,0,"NW_CITY_REICH03_COOK"); TA_Sleep(21,0,8,0,"NW_CITY_REICH03_BED_01"); }; func void Rtn_VatrasAway_421() { TA_Smalltalk(10,0,20,0,"NW_CITY_MERCHANT_TAVERN01_01"); TA_Sit_Chair(20,0,4,0,"NW_CITY_MERCHANT_TAVERN01_BACKROOM"); TA_Sleep(4,0,10,0,"NW_CITY_REICH03_BED_01"); }; func void rtn_PsiCamp_421() { TA_Smalltalk(10,0,20,0,"NW_PSICAMP_18"); TA_Smoke_Joint(20,0,10,0,"NW_PSICAMP_18"); };
D
// REQUIRED_ARGS: -preview=dip1000 -preview=in void main () { testWithAllAttributes(); testForeach(); } void testWithAllAttributes() @safe pure nothrow @nogc { // Used to test dtors bool isTestOver = false; // rvalues testin1(42); testin2((ulong[64]).init); testin3(ValueT(42)); testin3(RefT(42)); testin4((ValueT[64]).init); testin4([RefT(42), RefT(84), RefT(126), RefT(4)]); testin5(NonCopyable(true)); testin6(WithPostblit(true)); testin7(WithCopyCtor(true)); isTestOver = false; testin8(WithDtor(&isTestOver), &isTestOver); isTestOver = false; // lvalues uint a1; ulong[64] a2; ValueT a3; ValueT[64] a4; RefT a5; RefT[4] a6; NonCopyable a7 = NonCopyable(true); WithPostblit a8; WithCopyCtor a9; WithDtor a10 = WithDtor(&isTestOver); testin1(a1); testin2(a2); testin3(a3); testin3(a5); testin4(a4); testin4(a6); testin5(a7); testin6(a8); testin7(a9); isTestOver = false; testin8(a10, null); // Arguments are all values, no `ref` needed testin9(int.init); testin9(char.init, ubyte.init, short.init, int.init, size_t.init); // Arguments are all refs testin9(a2, a4, a5, a6, a7, a8, a9, a10); testin9(NonCopyable(true), WithPostblit(true), WithCopyCtor(true)); // Mixed values and ref testin9(char.init, ubyte.init, a2, a4, a5, a6, a7, a8, a9, a10, size_t.init); // With dtor isTestOver = false; testin10(&isTestOver, NonCopyable(true), WithPostblit(true), WithCopyCtor(true), WithDtor(&isTestOver)); isTestOver = true; } void testForeach() @safe pure { int testCallNC (in NonCopyable k, in NonCopyable v) { assert(k == v); return k.value - v.value; } NonCopyable[NonCopyable] nc; nc[NonCopyable(0)] = NonCopyable(0); nc[NonCopyable(42)] = NonCopyable(42); nc[NonCopyable(int.min)] = NonCopyable(int.min); nc[NonCopyable(int.max)] = NonCopyable(int.max); foreach (ref k, const ref v; nc) { assert(k.value == v.value); assert(testCallNC(k, v) == 0); } assert(nc == nc); assert(nc.length == 4); RefT[RefT] rt; rt[RefT(42)] = RefT(42); rt[RefT(4)] = RefT(4); rt[RefT(242)] = RefT(242); rt[RefT(24)] = RefT(24); foreach (k, v; rt) assert(k.value == v.value); assert(rt == rt); static struct Msg { ubyte[3] value; const(char)[] msg; } static void testMsg (in Msg k_func, in Msg v_func) { assert(k_func.value == v_func.value); assert(k_func.msg == v_func.msg); assert(k_func == v_func); } Msg[Msg] msg; msg[Msg([1, 2, 3], "123")] = Msg([1, 2, 3], "123"); msg[Msg([42, 4, 2], "4242")] = Msg([42, 4, 2], "4242"); msg[Msg([242, 4, 0], "2424")] = Msg([242, 4, 0], "2424"); foreach (ref k_loop, ref v_loop; msg) testMsg(k_loop, v_loop); } struct ValueT { int value; } struct RefT { ulong[64] value; } struct NonCopyable { @safe pure nothrow @nogc: int value; this(int b) { this.value = b; } @disable this(this); @disable this(ref NonCopyable); } struct WithPostblit { int value; this(this) @safe pure nothrow @nogc { assert(0); } } struct WithCopyCtor { @safe pure nothrow @nogc: int value; this(int b) { this.value = b; } this(ref WithCopyCtor) { assert(0); } } struct WithDtor { bool* value; ~this() scope @safe pure nothrow @nogc { assert(*value); } } @safe pure nothrow @nogc: // By value void testin1(in uint p) { static assert(!__traits(isRef, p)); } // By ref because of size void testin2(in ulong[64] p) { static assert(__traits(isRef, p)); } // By value or ref depending on size void testin3(in ValueT p) { static assert(!__traits(isRef, p)); } void testin3(in RefT p) { static assert(__traits(isRef, p)); } // By ref because of size void testin4(in ValueT[64] p) { static assert(__traits(isRef, p)); } void testin4(in RefT[4] p) { static assert(__traits(isRef, p)); } // By ref because of non-copyability void testin5(in NonCopyable noncopy) { static assert(__traits(isRef, noncopy)); } static assert(testin5.mangleof == "_D9previewin7testin5FNaNbNiNfIKSQBe11NonCopyableZv"); // incl. `ref` // By ref because of postblit void testin6(in WithPostblit withpostblit) { static assert(__traits(isRef, withpostblit)); } // By ref because of copy ctor void testin7(in WithCopyCtor withcopy) { static assert(__traits(isRef, withcopy)); } // By ref because of dtor void testin8(in WithDtor withdtor, scope bool* isTestOver) { static assert(__traits(isRef, withdtor)); if (isTestOver) *isTestOver = true; } // Allow to test various tuples (e.g. `(int, int)` and `(int, WithDtor)`) // `ref` is only applied to the members which need it void testin9(T...)(in T args) {} void testin10(T...)(scope bool* isTestOver, in T args) { if (isTestOver) *isTestOver = true; }
D