code
stringlengths 3
10M
| language
stringclasses 31
values |
---|---|
void main() { runSolver(); }
void problem() {
auto N = scan!int;
auto A = scan!int(N);
auto solve() {
MInt9 ans;
foreach(n; 1..N + 1) {
const mod = n;
auto dp = new MInt9[][](n + 1, mod);
dp[0][0] = 1;
foreach(i, a; A) {
foreach_reverse(added; 0..n) {
foreach(m; 0..mod) {
dp[added + 1][(m + a) % mod] += dp[added][m];
}
}
}
// dp.deb;
ans += dp[$ - 1][0];
}
return ans;
}
outputForAtCoder(&solve);
}
// ----------------------------------------------
import std;
T[][] combinations(T)(T[] s, in long m) { if (!m) return [[]]; if (s.empty) return []; return s[1 .. $].combinations(m - 1).map!(x => s[0] ~ x).array ~ s[1 .. $].combinations(m); }
string scan(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; }
T scan(T)(){ return scan.to!T; }
T[] scan(T)(long n){ return n.iota.map!(i => scan!T()).array; }
void deb(T ...)(T t){ debug writeln(t); }
long[] divisors(long n) { long[] ret; for (long i = 1; i * i <= n; i++) { if (n % i == 0) { ret ~= i; if (i * i != n) ret ~= n / i; } } return ret.sort.array; }
bool chmin(T)(ref T a, T b) { if (b < a) { a = b; return true; } else return false; }
bool chmax(T)(ref T a, T b) { if (b > a) { a = b; return true; } else return false; }
string charSort(alias S = "a < b")(string s) { return (cast(char[])((cast(byte[])s).sort!S.array)).to!string; }
ulong comb(ulong a, ulong b) { if (b == 0) {return 1;}else{return comb(a - 1, b - 1) * a / b;}}
string toAnswerString(R)(R r) { return r.map!"a.to!string".joiner(" ").array.to!string; }
struct ModInt(uint MD) if (MD < int.max) {ulong v;this(string v) {this(v.to!long);}this(int v) {this(long(v));}this(long v) {this.v = (v%MD+MD)%MD;}void opAssign(long t) {v = (t%MD+MD)%MD;}static auto normS(ulong x) {return (x<MD)?x:x-MD;}static auto make(ulong x) {ModInt m; m.v = x; return m;}auto opBinary(string op:"+")(ModInt r) const {return make(normS(v+r.v));}auto opBinary(string op:"-")(ModInt r) const {return make(normS(v+MD-r.v));}auto opBinary(string op:"*")(ModInt r) const {return make((ulong(v)*r.v%MD).to!ulong);}auto opBinary(string op:"^^", T)(T r) const {long x=v;long y=1;while(r){if(r%2==1)y=(y*x)%MD;x=x^^2%MD;r/=2;} return make(y);}auto opBinary(string op:"/")(ModInt r) const {return this*memoize!inv(r);}static ModInt inv(ModInt x) {return x^^(MD-2);}string toString() const {return v.to!string;}auto opOpAssign(string op)(ModInt r) {return mixin ("this=this"~op~"r");}}
alias MInt1 = ModInt!(10^^9 + 7);
alias MInt9 = ModInt!(998_244_353);
void outputForAtCoder(T)(T delegate() fn) {
static if (is(T == float) || is(T == double) || is(T == real)) "%.16f".writefln(fn());
else static if (is(T == void)) fn();
else static if (is(T == string)) fn().writeln;
else static if (isInputRange!T) {
static if (!is(string == ElementType!T) && isInputRange!(ElementType!T)) foreach(r; fn()) r.toAnswerString.writeln;
else foreach(r; fn()) r.writeln;
}
else fn().writeln;
}
void runSolver() {
static import std.datetime.stopwatch;
enum BORDER = "==================================";
debug { BORDER.writeln; while(!stdin.eof) { "<<< Process time: %s >>>".writefln(std.datetime.stopwatch.benchmark!problem(1)); BORDER.writeln; } }
else problem();
}
enum YESNO = [true: "Yes", false: "No"];
// -----------------------------------------------
| D |
module vips.base;
package import vips.image;
package import vips.option;
package import vips.types;
class VipsException : Exception
{
public:
this(string message,
string file = __FILE__,
size_t line = __LINE__,
Throwable next = null)
{
import vips.bindings : vips_error_buffer, vips_error_clear;
import std.string : fromStringz;
super((message ~ ": Vips Error - " ~ vips_error_buffer.fromStringz).idup,
file,
line,
next);
vips_error_clear();
}
}
void initVips(string programName, bool leakChecking = false)
{
import std.string : fromStringz, toStringz;
import vips.bindings : vips_init, vips_leak_set;
if(vips_init(programName.toStringz) == -1)
{
throw new VipsException("Unable to initialize Vips");
}
vips_leak_set(leakChecking);
}
void shutdownVips()
{
import vips.bindings : vips_shutdown;
vips_shutdown();
}
| D |
// Based on DirectX 12 from Windows 10 kit 10.0.17134.0
module directx.d3d12shader;
version (Windows) { version = D3D12ShaderEnable; }
else { static assert( false, "D3D12 is only enabled for Windows." ); }
version( D3D12ShaderEnable ):
@system:
extern( C ):
import combindings;
import directx.d3dcommon;
enum D3D12_SHADER_VERSION_TYPE
{
D3D12_SHVER_PIXEL_SHADER = 0,
D3D12_SHVER_VERTEX_SHADER = 1,
D3D12_SHVER_GEOMETRY_SHADER = 2,
// D3D11 Shaders
D3D12_SHVER_HULL_SHADER = 3,
D3D12_SHVER_DOMAIN_SHADER = 4,
D3D12_SHVER_COMPUTE_SHADER = 5,
D3D12_SHVER_RESERVED0 = 0xFFF0,
}
pragma( inline, true ) auto D3D12_SHVER_GET_TYPE( T )( T _Version )
{
return ( ( _Version ) >> 16 ) & 0xffff;
}
pragma( inline, true ) auto D3D12_SHVER_GET_MAJOR( T )( T _Version )
{
return ( ( _Version) >> 4 ) & 0xf;
}
pragma( inline, true ) auto D3D12_SHVER_GET_MINOR( T )( T _Version )
{
return _Version & 0xf;
}
// Slot ID for library function return
enum D3D_RETURN_PARAMETER_INDEX = -1;
alias D3D12_RESOURCE_RETURN_TYPE = D3D_RESOURCE_RETURN_TYPE;
alias D3D12_CBUFFER_TYPE = D3D_CBUFFER_TYPE;
struct D3D12_SIGNATURE_PARAMETER_DESC
{
LPCSTR SemanticName; // Name of the semantic
UINT SemanticIndex; // Index of the semantic
UINT Register; // Number of member variables
D3D_NAME SystemValueType;// A predefined system value, or D3D_NAME_UNDEFINED if not applicable
D3D_REGISTER_COMPONENT_TYPE ComponentType; // Scalar type (e.g. uint, float, etc.)
BYTE Mask; // Mask to indicate which components of the register
// are used (combination of D3D10_COMPONENT_MASK values)
BYTE ReadWriteMask; // Mask to indicate whether a given component is
// never written (if this is an output signature) or
// always read (if this is an input signature).
// (combination of D3D_MASK_* values)
UINT Stream; // Stream index
D3D_MIN_PRECISION MinPrecision; // Minimum desired interpolation precision
}
struct D3D12_SHADER_BUFFER_DESC
{
LPCSTR Name; // Name of the constant buffer
D3D_CBUFFER_TYPE Type; // Indicates type of buffer content
UINT Variables; // Number of member variables
UINT Size; // Size of CB (in bytes)
UINT uFlags; // Buffer description flags
}
struct D3D12_SHADER_VARIABLE_DESC
{
LPCSTR Name; // Name of the variable
UINT StartOffset; // Offset in constant buffer's backing store
UINT Size; // Size of variable (in bytes)
UINT uFlags; // Variable flags
LPVOID DefaultValue; // Raw pointer to default value
UINT StartTexture; // First texture index (or -1 if no textures used)
UINT TextureSize; // Number of texture slots possibly used.
UINT StartSampler; // First sampler index (or -1 if no textures used)
UINT SamplerSize; // Number of sampler slots possibly used.
}
struct D3D12_SHADER_TYPE_DESC
{
D3D_SHADER_VARIABLE_CLASS Class; // Variable class (e.g. object, matrix, etc.)
D3D_SHADER_VARIABLE_TYPE Type; // Variable type (e.g. float, sampler, etc.)
UINT Rows; // Number of rows (for matrices, 1 for other numeric, 0 if not applicable)
UINT Columns; // Number of columns (for vectors & matrices, 1 for other numeric, 0 if not applicable)
UINT Elements; // Number of elements (0 if not an array)
UINT Members; // Number of members (0 if not a structure)
UINT Offset; // Offset from the start of structure (0 if not a structure member)
LPCSTR Name; // Name of type, can be NULL
}
alias D3D12_TESSELLATOR_DOMAIN = D3D_TESSELLATOR_DOMAIN;
alias D3D12_TESSELLATOR_PARTITIONING = D3D_TESSELLATOR_PARTITIONING;
alias D3D12_TESSELLATOR_OUTPUT_PRIMITIVE = D3D_TESSELLATOR_OUTPUT_PRIMITIVE;
struct D3D12_SHADER_DESC
{
UINT Version; // Shader version
LPCSTR Creator; // Creator string
UINT Flags; // Shader compilation/parse flags
UINT ConstantBuffers; // Number of constant buffers
UINT BoundResources; // Number of bound resources
UINT InputParameters; // Number of parameters in the input signature
UINT OutputParameters; // Number of parameters in the output signature
UINT InstructionCount; // Number of emitted instructions
UINT TempRegisterCount; // Number of temporary registers used
UINT TempArrayCount; // Number of temporary arrays used
UINT DefCount; // Number of constant defines
UINT DclCount; // Number of declarations (input + output)
UINT TextureNormalInstructions; // Number of non-categorized texture instructions
UINT TextureLoadInstructions; // Number of texture load instructions
UINT TextureCompInstructions; // Number of texture comparison instructions
UINT TextureBiasInstructions; // Number of texture bias instructions
UINT TextureGradientInstructions; // Number of texture gradient instructions
UINT FloatInstructionCount; // Number of floating point arithmetic instructions used
UINT IntInstructionCount; // Number of signed integer arithmetic instructions used
UINT UintInstructionCount; // Number of unsigned integer arithmetic instructions used
UINT StaticFlowControlCount; // Number of static flow control instructions used
UINT DynamicFlowControlCount; // Number of dynamic flow control instructions used
UINT MacroInstructionCount; // Number of macro instructions used
UINT ArrayInstructionCount; // Number of array instructions used
UINT CutInstructionCount; // Number of cut instructions used
UINT EmitInstructionCount; // Number of emit instructions used
D3D_PRIMITIVE_TOPOLOGY GSOutputTopology; // Geometry shader output topology
UINT GSMaxOutputVertexCount; // Geometry shader maximum output vertex count
D3D_PRIMITIVE InputPrimitive; // GS/HS input primitive
UINT PatchConstantParameters; // Number of parameters in the patch constant signature
UINT cGSInstanceCount; // Number of Geometry shader instances
UINT cControlPoints; // Number of control points in the HS->DS stage
D3D_TESSELLATOR_OUTPUT_PRIMITIVE HSOutputPrimitive; // Primitive output by the tessellator
D3D_TESSELLATOR_PARTITIONING HSPartitioning; // Partitioning mode of the tessellator
D3D_TESSELLATOR_DOMAIN TessellatorDomain; // Domain of the tessellator (quad, tri, isoline)
// instruction counts
UINT cBarrierInstructions; // Number of barrier instructions in a compute shader
UINT cInterlockedInstructions; // Number of interlocked instructions
UINT cTextureStoreInstructions; // Number of texture writes
}
struct D3D12_SHADER_INPUT_BIND_DESC
{
LPCSTR Name; // Name of the resource
D3D_SHADER_INPUT_TYPE Type; // Type of resource (e.g. texture, cbuffer, etc.)
UINT BindPoint; // Starting bind point
UINT BindCount; // Number of contiguous bind points (for arrays)
UINT uFlags; // Input binding flags
D3D_RESOURCE_RETURN_TYPE ReturnType; // Return type (if texture)
D3D_SRV_DIMENSION Dimension; // Dimension (if texture)
UINT NumSamples; // Number of samples (0 if not MS texture)
UINT Space; // Register space
UINT uID; // Range ID in the bytecode
}
enum D3D_SHADER_REQUIRES_DOUBLES = 0x00000001;
enum D3D_SHADER_REQUIRES_EARLY_DEPTH_STENCIL = 0x00000002;
enum D3D_SHADER_REQUIRES_UAVS_AT_EVERY_STAGE = 0x00000004;
enum D3D_SHADER_REQUIRES_64_UAVS = 0x00000008;
enum D3D_SHADER_REQUIRES_MINIMUM_PRECISION = 0x00000010;
enum D3D_SHADER_REQUIRES_11_1_DOUBLE_EXTENSIONS = 0x00000020;
enum D3D_SHADER_REQUIRES_11_1_SHADER_EXTENSIONS = 0x00000040;
enum D3D_SHADER_REQUIRES_LEVEL_9_COMPARISON_FILTERING = 0x00000080;
enum D3D_SHADER_REQUIRES_TILED_RESOURCES = 0x00000100;
enum D3D_SHADER_REQUIRES_STENCIL_REF = 0x00000200;
enum D3D_SHADER_REQUIRES_INNER_COVERAGE = 0x00000400;
enum D3D_SHADER_REQUIRES_TYPED_UAV_LOAD_ADDITIONAL_FORMATS = 0x00000800;
enum D3D_SHADER_REQUIRES_ROVS = 0x00001000;
enum D3D_SHADER_REQUIRES_VIEWPORT_AND_RT_ARRAY_INDEX_FROM_ANY_SHADER_FEEDING_RASTERIZER = 0x00002000;
struct D3D12_LIBRARY_DESC
{
LPCSTR Creator; // The name of the originator of the library.
UINT Flags; // Compilation flags.
UINT FunctionCount; // Number of functions exported from the library.
}
struct D3D12_FUNCTION_DESC
{
UINT Version; // Shader version
LPCSTR Creator; // Creator string
UINT Flags; // Shader compilation/parse flags
UINT ConstantBuffers; // Number of constant buffers
UINT BoundResources; // Number of bound resources
UINT InstructionCount; // Number of emitted instructions
UINT TempRegisterCount; // Number of temporary registers used
UINT TempArrayCount; // Number of temporary arrays used
UINT DefCount; // Number of constant defines
UINT DclCount; // Number of declarations (input + output)
UINT TextureNormalInstructions; // Number of non-categorized texture instructions
UINT TextureLoadInstructions; // Number of texture load instructions
UINT TextureCompInstructions; // Number of texture comparison instructions
UINT TextureBiasInstructions; // Number of texture bias instructions
UINT TextureGradientInstructions; // Number of texture gradient instructions
UINT FloatInstructionCount; // Number of floating point arithmetic instructions used
UINT IntInstructionCount; // Number of signed integer arithmetic instructions used
UINT UintInstructionCount; // Number of unsigned integer arithmetic instructions used
UINT StaticFlowControlCount; // Number of static flow control instructions used
UINT DynamicFlowControlCount; // Number of dynamic flow control instructions used
UINT MacroInstructionCount; // Number of macro instructions used
UINT ArrayInstructionCount; // Number of array instructions used
UINT MovInstructionCount; // Number of mov instructions used
UINT MovcInstructionCount; // Number of movc instructions used
UINT ConversionInstructionCount; // Number of type conversion instructions used
UINT BitwiseInstructionCount; // Number of bitwise arithmetic instructions used
D3D_FEATURE_LEVEL MinFeatureLevel; // Min target of the function byte code
UINT64 RequiredFeatureFlags; // Required feature flags
LPCSTR Name; // Function name
INT FunctionParameterCount; // Number of logical parameters in the function signature (not including return)
BOOL HasReturn; // TRUE, if function returns a value, false - it is a subroutine
BOOL Has10Level9VertexShader; // TRUE, if there is a 10L9 VS blob
BOOL Has10Level9PixelShader; // TRUE, if there is a 10L9 PS blob
}
struct D3D12_PARAMETER_DESC
{
LPCSTR Name; // Parameter name.
LPCSTR SemanticName; // Parameter semantic name (+index).
D3D_SHADER_VARIABLE_TYPE Type; // Element type.
D3D_SHADER_VARIABLE_CLASS Class; // Scalar/Vector/Matrix.
UINT Rows; // Rows are for matrix parameters.
UINT Columns; // Components or Columns in matrix.
D3D_INTERPOLATION_MODE InterpolationMode; // Interpolation mode.
D3D_PARAMETER_FLAGS Flags; // Parameter modifiers.
UINT FirstInRegister; // The first input register for this parameter.
UINT FirstInComponent; // The first input register component for this parameter.
UINT FirstOutRegister; // The first output register for this parameter.
UINT FirstOutComponent; // The first output register component for this parameter.
}
alias LPD3D12SHADERREFLECTIONTYPE = ID3D12ShaderReflectionType;
alias LPD3D12SHADERREFLECTIONVARIABLE = ID3D12ShaderReflectionVariable;
alias LPD3D12SHADERREFLECTIONCONSTANTBUFFER = ID3D12ShaderReflectionConstantBuffer;
alias LPD3D12SHADERREFLECTION = ID3D12ShaderReflection;
alias LPD3D12LIBRARYREFLECTION = ID3D12LibraryReflection;
alias LPD3D12FUNCTIONREFLECTION = ID3D12FunctionReflection;
alias LPD3D12FUNCTIONPARAMETERREFLECTION = ID3D12FunctionParameterReflection;
extern( C ) extern const IID IID_ID3D12ShaderReflectionType;
@MIDL_INTERFACE!("E913C351-783D-48CA-A1D1-4F306284AD56")
extern( Windows ) interface ID3D12ShaderReflectionType
{
HRESULT GetDesc(
D3D12_SHADER_TYPE_DESC *pDesc);
ID3D12ShaderReflectionType GetMemberTypeByIndex(
UINT Index);
ID3D12ShaderReflectionType GetMemberTypeByName(
LPCSTR Name);
LPCSTR GetMemberTypeName(
UINT Index);
HRESULT IsEqual(
ID3D12ShaderReflectionType pType);
ID3D12ShaderReflectionType GetSubType();
ID3D12ShaderReflectionType GetBaseClass();
UINT GetNumInterfaces();
ID3D12ShaderReflectionType GetInterfaceByIndex(
UINT uIndex);
HRESULT IsOfType(
ID3D12ShaderReflectionType pType);
HRESULT ImplementsInterface(
ID3D12ShaderReflectionType pBase);
}
@MIDL_INTERFACE!("8337A8A6-A216-444A-B2F4-314733A73AEA")
extern( C ) extern const IID IID_ID3D12ShaderReflectionVariable;
extern( Windows ) interface ID3D12ShaderReflectionVariable
{
HRESULT GetDesc(
D3D12_SHADER_VARIABLE_DESC *pDesc);
ID3D12ShaderReflectionType GetType();
ID3D12ShaderReflectionConstantBuffer GetBuffer();
UINT GetInterfaceSlot(
UINT uArrayIndex);
}
extern( C ) extern const IID IID_ID3D12ShaderReflectionConstantBuffer;
@MIDL_INTERFACE!("C59598B4-48B3-4869-B9B1-B1618B14A8B7")
extern( Windows ) interface ID3D12ShaderReflectionConstantBuffer
{
HRESULT GetDesc(
D3D12_SHADER_BUFFER_DESC *pDesc);
ID3D12ShaderReflectionVariable GetVariableByIndex(
UINT Index);
ID3D12ShaderReflectionVariable GetVariableByName(
LPCSTR Name);
}
extern( C ) extern const IID IID_ID3D12ShaderReflection;
@MIDL_INTERFACE!("5A58797D-A72C-478D-8BA2-EFC6B0EFE88E")
interface ID3D12ShaderReflection : IUnknown
{
HRESULT GetDesc(
D3D12_SHADER_DESC *pDesc);
ID3D12ShaderReflectionConstantBuffer GetConstantBufferByIndex(
UINT Index);
ID3D12ShaderReflectionConstantBuffer GetConstantBufferByName(
LPCSTR Name);
HRESULT GetResourceBindingDesc(
UINT ResourceIndex,
D3D12_SHADER_INPUT_BIND_DESC *pDesc);
HRESULT GetInputParameterDesc(
UINT ParameterIndex,
D3D12_SIGNATURE_PARAMETER_DESC *pDesc);
HRESULT GetOutputParameterDesc(
UINT ParameterIndex,
D3D12_SIGNATURE_PARAMETER_DESC *pDesc);
HRESULT GetPatchConstantParameterDesc(
UINT ParameterIndex,
D3D12_SIGNATURE_PARAMETER_DESC *pDesc);
ID3D12ShaderReflectionVariable GetVariableByName(
LPCSTR Name);
HRESULT GetResourceBindingDescByName(
LPCSTR Name,
D3D12_SHADER_INPUT_BIND_DESC *pDesc);
UINT GetMovInstructionCount();
UINT GetMovcInstructionCount();
UINT GetConversionInstructionCount();
UINT GetBitwiseInstructionCount();
D3D_PRIMITIVE GetGSInputPrimitive();
BOOL IsSampleFrequencyShader();
UINT GetNumInterfaceSlots();
HRESULT GetMinFeatureLevel(D3D_FEATURE_LEVEL* pLevel);
UINT GetThreadGroupSize(
UINT* pSizeX,
UINT* pSizeY,
UINT* pSizeZ);
UINT64 GetRequiresFlags();
}
extern( C ) extern const IID IID_ID3D12LibraryReflection;
@MIDL_INTERFACE!("8E349D19-54DB-4A56-9DC9-119D87BDB804")
interface ID3D12LibraryReflection : IUnknown
{
HRESULT GetDesc(
D3D12_LIBRARY_DESC * pDesc);
ID3D12FunctionReflection GetFunctionByIndex(
INT FunctionIndex);
}
extern( C ) extern const IID IID_ID3D12FunctionReflection;
@MIDL_INTERFACE!("1108795C-2772-4BA9-B2A8-D464DC7E2799")
extern( Windows ) interface ID3D12FunctionReflection
{
HRESULT GetDesc(D3D12_FUNCTION_DESC * pDesc);
ID3D12ShaderReflectionConstantBuffer GetConstantBufferByIndex(
UINT BufferIndex);
ID3D12ShaderReflectionConstantBuffer GetConstantBufferByName(
LPCSTR Name);
HRESULT GetResourceBindingDesc(
UINT ResourceIndex,
D3D12_SHADER_INPUT_BIND_DESC * pDesc);
ID3D12ShaderReflectionVariable GetVariableByName(
LPCSTR Name);
HRESULT GetResourceBindingDescByName(
LPCSTR Name,
D3D12_SHADER_INPUT_BIND_DESC * pDesc);
ID3D12FunctionParameterReflection GetFunctionParameter(
INT ParameterIndex);
}
extern( C ) extern const IID IID_ID3D12FunctionParameterReflection;
@MIDL_INTERFACE!("EC25F42D-7006-4F2B-B33E-02CC3375733F")
extern( Windows ) interface ID3D12FunctionParameterReflection
{
HRESULT GetDesc(
D3D12_PARAMETER_DESC * pDesc);
}
mixin( Glue!"directx.d3d12shader" );
| D |
INSTANCE Info_Mod_Argez_XW_Vorsicht (C_INFO)
{
npc = PC_Friend_XW;
nr = 1;
condition = Info_Mod_Argez_XW_Vorsicht_Condition;
information = Info_Mod_Argez_XW_Vorsicht_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Argez_XW_Vorsicht_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Argez_XW_Vorsicht_Info()
{
AI_Output(self, hero, "Info_Mod_Argez_XW_Vorsicht_01_00"); //Pass auf, das ist eine Falle!
AI_StopProcessInfos (self);
Wld_InsertNpc (Schattenlord_998_Urnol, "KNASTGANG_02");
};
INSTANCE Info_Mod_Argez_XW_Gefangen (C_INFO)
{
npc = PC_Friend_XW;
nr = 1;
condition = Info_Mod_Argez_XW_Gefangen_Condition;
information = Info_Mod_Argez_XW_Gefangen_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Argez_XW_Gefangen_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Urnol_XW_Gefangen))
{
return 1;
};
};
FUNC VOID Info_Mod_Argez_XW_Gefangen_Info()
{
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_00"); //Danke, dass du gekommen bist.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_01"); //So viel hat es ja jetzt nicht gebracht.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_02"); //Nun ja.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_03"); //Wieso warst du markiert?
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_04"); //Erinnerst du dich, dass das Tier in dem Moment, in dem ich zauberte, weglief?
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_05"); //Ich habe danach nur geschaut, ob du von der Markierung befreit warst, und das warst du. Deswegen habe ich mir keine weiteren Gedanken gemacht.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_06"); //In Wahrheit aber ist die Markierung nicht auf das Tier übergesprungen, sondern auf mich.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_07"); //Das tut mir Leid.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_08"); //So ist es eben.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_09"); //Wie soll ich dich hier rausschaffen? Ich kann mich jederzeit teleportieren, aber an dich komme ich nicht heran.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_10"); //(lacht freudlos) Das wird nicht möglich sein. Aus Xeres' Reich führt kein Teleport. Diese Welt ist vollkommen abgeschirmt von der unsrigen.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_11"); //Wie sollen wir es dann schaffen zu fliehen?
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_12"); //Wir müssten ausbrechen. Und dann nach vorne zum Tor. Unmöglich.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_13"); //Was ist denn mit dir los? Du bist doch sonst nicht so hoffnungslos.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_14"); //Das ... das kann ich dir nicht sagen. Aber sei versichert, dass meine düstere Stimmung absolut gerechtfertigt ist.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen_15_15"); //Na gut, dann steck eben den Kopf in den Sand. Ich werde mich nach einer Fluchtmöglichkeit umschauen.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen_01_16"); //Viel Erfolg.
AI_StopProcessInfos (self);
B_LogEntry (TOPIC_MOD_ARGEZ, "Ich bin neben Argez in einer Zelle gefangen und will fliehen. Allzu viele Möglichkeiten stehen da nicht zur Auswahl.");
Wld_InsertNpc (Monster_11074_Leprechaun_XW, "KNASTGANG_02");
};
INSTANCE Info_Mod_Argez_XW_Gefangen2 (C_INFO)
{
npc = PC_Friend_XW;
nr = 1;
condition = Info_Mod_Argez_XW_Gefangen2_Condition;
information = Info_Mod_Argez_XW_Gefangen2_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Argez_XW_Gefangen2_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Leprechaun_XW_Hi))
{
return 1;
};
};
FUNC VOID Info_Mod_Argez_XW_Gefangen2_Info()
{
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_00"); //Meinst du nicht, dass wir vorsichtig sein sollten? Wenn es sich um einen Test, ein Spiel dieses Leprechauns handelt?
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen2_15_01"); //Was haben wir zu verlieren? Das ist vielleicht unsere letzte Chance.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_02"); //Na schön.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen2_15_03"); //Bist du geschwächt? Schaffst du den ganzen Weg zurück?
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_04"); //Das wird hoffentlich gar nicht nötig sein.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_05"); //Ich bin mir sicher, dass Xeres eine eigene Teleportplattform besitzt, mit der er zum Tor des Gefängnisses reisen kann.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_06"); //Ein Teleport innerhalb dieser Welt ist immerhin möglich, und ihm wird während der tausend Jahre bestimmt die Idee gekommen sein, dass es nützlich sein könnte, in Sekundenschnelle am Eingang des Gefängnisses zu stehen.
AI_Output(hero, self, "Info_Mod_Argez_XW_Gefangen2_15_07"); //Dann lass uns seine privaten Gemächer stürmen.
AI_Output(self, hero, "Info_Mod_Argez_XW_Gefangen2_01_08"); //Aber keine Umwege. Keine Zeit für Heldentaten.
AI_StopProcessInfos (self);
B_StartOtherRoutine (self, "FLUCHT");
B_LogEntry (TOPIC_MOD_ARGEZ, "Leprechaun hat den Zellenschlüssel fallen gelassen, sodass ich mich und Argez befreien konnte. Argez geht davon aus, dass Xeres eine private Teleportationsplattform in seinen Gemächern hat. Die gilt es nun zu finden und dieser verdammten Unterwelt wieder zu entrinnen.");
};
INSTANCE Info_Mod_Argez_XW_Ende (C_INFO)
{
npc = PC_Friend_XW;
nr = 1;
condition = Info_Mod_Argez_XW_Ende_Condition;
information = Info_Mod_Argez_XW_Ende_Info;
permanent = 0;
important = 0;
description = "Argez, was machst du hier?";
};
FUNC INT Info_Mod_Argez_XW_Ende_Condition()
{
if (Kapitel == 6)
{
return 1;
};
};
FUNC VOID Info_Mod_Argez_XW_Ende_Info()
{
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_00"); //Argez, was machst du hier?
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_01"); //Ich bin hergekommen, damit Xeres ein für alle Mal vom Antlitz der Erde getilgt werden kann.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_02"); //Dann warst du es also wirklich, der Xeres vor Äonen bannte ...
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_03"); //Ja, es stimmt.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_04"); //Daher auch dein Wissen um die alte Kultur ...
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_05"); //Wie dem auch sei, dein Eingreifen wird nicht mehr notwendig sein. Mit Uriziel konnte ich Xeres und seine Machtträger in die ewigen Jagdgründe schicken.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_06"); //Du täuschst dich.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_07"); //Den Schläfer magst du zwar wieder in die Zwischenwelt verbannt haben, ehe er erwachen konnte, und du magst den drei anderen Machtträgern ihre Seelensteine entrissen haben.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_08"); //Solange jedoch noch der letzte seiner Machtträger auf Erden wandelt, wird Xeres nie endgültig in die jenseitige Welt eingehen.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_09"); //Der fünfte Machtträger?
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_10"); //Die Magier waren nicht dazu in der Lage zu ergründen, ob er denn überhaupt existiert, gar, wo er sich befinden könnte. Was weißt du über ihn?
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_11"); //Alles! Ich habe mein Gedächtnis zurückerlangt, und die Ereignisse der Vergangenheit sind meinem Bewusstsein wieder zugänglich.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_12"); //Was für ein Wesen ist er? Wo befindet er sich?
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_13"); //Er steht direkt vor dir. Ich bin es!
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_14"); //Was?! Das ist unmöglich.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_15"); //Du warst es doch, der Xeres mit seinen Machtträgern einst in die Zwischenwelt verbannte ...
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_16"); //Ja! Ich bin ein missglücktes Geschöpf.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_17"); //Ich bin es, der nicht mit Xeres' Willen, sondern nur seiner Macht gespeist wurde.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_18"); //Ich bin es, von dessen Existenz Xeres' Schergen jegliches Zeugnis tilgen wollten.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_19"); //Und ich bin es nun, der mit seinem Dasein die Erde bedroht ...
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_20"); //Was soll das? Was willst du damit sagen?
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_21"); //Das weißt du ... Du wirst ihn erst endgültig vernichten können, wenn ich tot bin.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_22"); //Also beeil dich, bevor er sich erholt hat. Töte mich und bring der Welt den Frieden.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_15_23"); //Nein! Das kann ich nicht tun. Dieser Kampf hat schon zu viele Leben gekostet.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_01_24"); //Du musst! Andernfalls werde ich mich selbst opfern!
Info_ClearChoices (Info_Mod_Argez_XW_Ende);
Info_AddChoice (Info_Mod_Argez_XW_Ende, "Es muss doch eine andere Möglichkeit geben.", Info_Mod_Argez_XW_Ende_B);
Info_AddChoice (Info_Mod_Argez_XW_Ende, "Na schön. Du hast es so gewollt.", Info_Mod_Argez_XW_Ende_A);
};
FUNC VOID Info_Mod_Argez_XW_Ende_B()
{
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_B_15_00"); //Es muss doch eine andere Möglichkeit geben.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_01"); //Nein. Solange ich lebe, ist auch Xeres nicht vollständig tot.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_B_15_02"); //Xeres muss ja nicht unbedingt sterben.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_03"); //Wir könnten ihn wieder festsetzen. Diesmal ohne Hintertürchen. Er würde bis in alle Ewigkeit hier schmoren.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_04"); //Die Gefahr, dass Xeres irgendwie ausbrechen könnte, wäre damit immer vorhanden.
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_B_15_05"); //Er hätte es auch jetzt nach Tausenden von Jahren ohne die Foki nicht geschafft.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_06"); //(unschlüssig) Meinst du wirklich?
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_B_15_07"); //Ja. Du hast dir ein normales Leben verdient.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_08"); //Na gut. Lass es uns versuchen.
AI_Output(self, hero, "Info_Mod_Argez_XW_Ende_B_01_09"); //Sorge dafür, dass Xeres nicht aufsteht. Ich bereite den Teleport vor.
Info_ClearChoices (Info_Mod_Argez_XW_Ende);
AI_StopProcessInfos (self);
AI_Teleport (Xeres_02, "TOT");
Wld_InsertNpc (Xeres_03, "ARENA_01");
};
FUNC VOID Info_Mod_Argez_XW_Ende_A()
{
AI_Output(hero, self, "Info_Mod_Argez_XW_Ende_A_15_00"); //Na schön. Du hast es so gewollt.
AI_Output(self, hero, "DEFAULT"); //
Info_ClearChoices (Info_Mod_Argez_XW_Ende);
AI_StopProcessInfos (self);
self.flags = 0;
AI_UnequipArmor (self);
AI_Teleport (Xeres_02, "TOT");
Wld_InsertNpc (Xeres_03, "ARENA_01");
}; | D |
/Users/hernaniruegasvillarreal/Downloads/9.06/Build/Intermediates/Flappy\ Bird.build/Debug-iphonesimulator/Flappy\ Bird.build/Objects-normal/x86_64/GameScene.o : /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameScene.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameViewController.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/AppDelegate.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GameplayKit.swiftmodule
/Users/hernaniruegasvillarreal/Downloads/9.06/Build/Intermediates/Flappy\ Bird.build/Debug-iphonesimulator/Flappy\ Bird.build/Objects-normal/x86_64/GameScene~partial.swiftmodule : /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameScene.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameViewController.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/AppDelegate.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GameplayKit.swiftmodule
/Users/hernaniruegasvillarreal/Downloads/9.06/Build/Intermediates/Flappy\ Bird.build/Debug-iphonesimulator/Flappy\ Bird.build/Objects-normal/x86_64/GameScene~partial.swiftdoc : /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameScene.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/GameViewController.swift /Users/hernaniruegasvillarreal/Downloads/9.06/Flappy\ Bird/AppDelegate.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/simd.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GLKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/GameplayKit.swiftmodule
| D |
/home/ra0x1duk3/security/hack-the-box/tools/perceptio/target/debug/deps/smallvec-4c7aa5b72e35eef5.rmeta: /home/ra0x1duk3/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.6.1/src/lib.rs
/home/ra0x1duk3/security/hack-the-box/tools/perceptio/target/debug/deps/smallvec-4c7aa5b72e35eef5.d: /home/ra0x1duk3/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.6.1/src/lib.rs
/home/ra0x1duk3/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.6.1/src/lib.rs:
| D |
/+
Copyright (c) 2005-2007 J Duncan, Eric Anderton
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
+/
/**
Windows PE-COFF Image class (.exe & .dll files)
Authors: J Duncan, Eric Anderton
License: BSD Derivative (see source for details)
Copyright: 2005, 2006 J Duncan, Eric Anderton
*/
module ddl.coff.COFFImage;
version( Windows ):
import ddl.ExportSymbol;
import ddl.Utils;
import ddl.coff.COFF;
import ddl.coff.COFFWrite;
import ddl.coff.COFFBinary;
import std.string;
import std.stdio;
import std.c.time;
import std.stream;
import std.c.string;
import ddl.coff.CodeView;
enum DEBUGTYPE
{
Unknown,
None,
Codeview
}
class DebugData
{
}
// COFF PE Image Module - DLL or EXE
class COFFImage : COFFBinary
{
public:
// module identity
char[] moduleFile; // name of module file
char[] internal_name; // for DLLs, how it was called at compile time
char[] debug_name; // When there was a MISC debug info section
bool valid = false;
// file info elements
uint peoffset; // offset of PE header in file
bool peplus; // PE32 (false) or PE32+ (true) header
PEHeader* pe; // pointer to PE32/PE32+ Header
PEWindowsHeader* winpe; // Windows specific PE32/PE32+ header
PEDataDirectories* datadir; // Data Directory Tables
CodeViewData codeView; // codeview debug data
// SymbolManager symbolManager;
// export/import data
COFFExport*[] exports; // the exported functions of this module if any
PEcoff_import[] imports; // the imported modules and their functions if any
// loaded image base
uint imageBase;
// debug data
DEBUGTYPE debugType;
byte[] debugData;
this()
{
type = COFF_TYPE.IMAGE;
}
/*
this( DataCursor cur, char[] filename )
{
type = COFF_TYPE.IMAGE;
moduleFile = filename;
valid = loadFromFile( filename );
}
*/
// load from file
bool loadFromFile( char[] filename )
{
moduleFile = filename;
valid = false;
// print debug output
if( verbose ) writefln( "File: %s\nFile type: PECOFF MODULE\n", filename );
// open & parse the file
File file = new File(filename);
if( !file.isOpen )
{
writefln( "unable to open file: ", filename );
return false;
}
// catch read exceptions
try
{
valid = parse( file );
}
catch( Exception e )
{
writefln( "read exception: " ~ e.toString );
}
// close the file
file.close();
return valid;
}
// bool parse( COFFReader reader )
// {
// if( !parseDOSHeader( reader ) )
// return false;
// return true;
// }
/*
parse pe module header
*/
bool parse( File file )
{
// parse dos header
if( !parseDOSHeader( file ) )
return false;
// parse COFF header
if( ( coff = parseCOFFHeader( file ) ) == null )
return false;
if( verbose ) writeCOFF( coff );
// parse PE header
if( !parsePE32Header( file ) )
return false;
// parse sections
if( !parseSectionHeaders( file ) )
return false;
// parse debug data
if( !parseDebugData( file ) )
return false;
/*
populate imports & exports from file module
*/
// populate exports
if( !parseExports( file ) )
return false;
// populate imports
// if( !parseImports( file ) )
// return false;
//
/*
load codeview debug data
*/
if( debugType == DEBUGTYPE.Codeview )
{
}
return true;
}
// check debug data
bool parseDebugData( File file )
{
// check image for debug directory
if( datadir.Debug.RVA == 0 )
{
debugType = DEBUGTYPE.None;
writefln( "Image has no debug information\n");
return true;
}
// calculate file offset from data directory RVA
uint debug_dir = RVA2Offset( datadir.Debug.RVA );
uint dircnt = datadir.Debug.Size / COFFImageDebugDirectory.sizeof;
// debug writefln( "Found %d debug director%s at file position 0x%X\n",dircnt,dircnt==1?"y":"ies",debug_dir);
// can only handle 1 debug directory right now
assert( dircnt == 1, "unable to handle multiple debug directories yet" );
debugData = null;
// read debug directories
for( uint currentdir = 0; currentdir < dircnt; currentdir++ )
{
COFFImageDebugDirectory dir;
file.position = debug_dir + (currentdir*COFFImageDebugDirectory.sizeof);
if( file.readBlock( &dir, COFFImageDebugDirectory.sizeof ) != COFFImageDebugDirectory.sizeof )
{
writefln( "ReadDebug(): Failed to read Debug directory with %d left\n",dircnt);
return false;
}
if( verbose ) writefln(
"\n\tDEBUG DIRECTORY #%d\n"
"\t\tType: %s\n"
"\t\tCharacteristics: %08X\n"
"\t\tTimeDateStamp: %s %d\n"
"\t\tVersion: %s.%s\n"
"\t\tSize of Data: %d\n"
"\t\tAddress of Raw Data: %08X\n"
"\t\tPointer to Raw Data: %08X\n",
currentdir+1,
DEBUG_TYPE_NAME(dir.Type),
dir.Characteristics,
strip(std.string.toString( ctime( cast(time_t*)&(dir.TimeDateStamp)))), dir.TimeDateStamp,
dir.MajorVersion, dir.MinorVersion,
dir.SizeOfData,
dir.AddressOfRawData,
dir.PointerToRawData );
// verify size is nonzero
assert(dir.SizeOfData && dir.PointerToRawData, "invalid debug data" );
if( dir.SizeOfData == 0 || dir.PointerToRawData == 0 )
{
writefln("invalid debug data");
return false;
}
// move file to debug data
file.position = dir.PointerToRawData;
// read directory data
debugType = DEBUGTYPE.Unknown;
debugData.length = dir.SizeOfData;
if( file.readBlock( debugData.ptr, debugData.length ) != debugData.length )
{
writefln( "failure reading debug data" );
return false;
}
// reset pointer back to debug data and parse
file.position = dir.PointerToRawData;
// process debug data
switch( dir.Type )
{
case IMAGE_DEBUG_TYPE_COFF:
if( verbose ) writefln( "Debug type: COFF" );
// writefln( "debug info type: \n", DEBUG_TYPE_NAME(dir.Type) );
// readDebug_COFF(dir.PointerToRawData);
break;
case IMAGE_DEBUG_TYPE_CODEVIEW:
if( verbose ) writefln( "Debug type: CodeView" );
// set debug type
debugType = DEBUGTYPE.Codeview;
// parse codeview data
codeView = new CodeViewData;
codeView.verbose = verbose;
if( !codeView.parse( this, file) )
{
writefln( "codeview parsing failed" );
return false;
}
else
{
int i = 0;
// create symbols
// symbolManager = new SymbolManager;
// symbolManager.parse( codeView );
}
break;
case IMAGE_DEBUG_TYPE_FPO:
if( verbose ) writefln( "Debug type: Frame pointer offset" );
// readDebug_FPO(dir.PointerToRawData);
break;
case IMAGE_DEBUG_TYPE_MISC:
if( verbose ) writefln( "Debug type: Misc" );
// readDebug_Misc(dir.PointerToRawData);
break;
default:
writefln( "Don't know how to process %s debug information\n", DEBUG_TYPE_NAME(dir.Type));
break;
}
// next debug directory
}
return true;
}
// populate import & export information
const uint IMAGE_SECOND_HEADER_OFFSET = 0x3C;
// read & verify DOS header
bool parseDOSHeader(File file)
{
ushort signature;
ushort ssv;
uint pe_sig;
// read signature
file.position = 0;
file.read( signature );
// verify signature
if( signature != IMAGE_DOS_SIGNATURE )
{
writefln( "module has invalid DOS signature %04X\n",signature);
return false;
}
// read ssv
file.seekSet( 0x18 );
file.read( ssv );
// verify ssv
if( ssv < 0x40 )
{
writefln( "module does not appear to be a Windows file\n");
return false;
}
// read pefile offset
file.seekSet( IMAGE_SECOND_HEADER_OFFSET );
file.read( peoffset );
if( verbose ) writefln( "\tPE header offset = 0x%08X", peoffset );
// read pe signature
file.seekSet( peoffset );
file.read( pe_sig );
if( verbose ) writefln( "\tPE signature = 0x%X", pe_sig );
// verify NT signature
if( pe_sig != IMAGE_NT_SIGNATURE )
{
writefln( "invalid PE signature 0x%08X\n",pe_sig);
return false;
}
return true;
}
//const uint IMAGE_BASE_OFFSET = 13 * uint.sizeof;
bool parsePE32Header( File file )
{
assert( coff !is null );
PEPlusHeader p;
uint base;
uint size_remaining;
// verify optional header size
if( p.sizeof > coff.SizeOfOptionalHeader )
{
writefln( "PE Module COFF SizeOfOptionalHeader is too small\n");
return false;
}
size_remaining = coff.SizeOfOptionalHeader;
// read PE+ header
if( file.readBlock( &p, p.sizeof ) != p.sizeof )
{
writefln( "failed to read PE32 header\n");
return false;
}
size_remaining -= p.sizeof;
// check magic value
if( p.Magic == PECOFF_MAGIC_PE )
{
// setup PE32 header
peplus = false;
pe = new PEHeader;
memcpy( pe, &p, p.sizeof );
// read the extra header value
file.read( pe.BaseOfData );
size_remaining -= base.sizeof;
// debug print
// if( verbose ) writeCOFF( cast(PEHeader*) pe );
}
else if( p.Magic == PECOFF_MAGIC_PEPLUS )
{
// setup PE32+ header
peplus = true;
pe = cast(PEHeader*) new PEPlusHeader;
memcpy( pe, &p, p.sizeof );
}
else
{
// invalid magic number
writefln( "illegal PE32 header magic: %08X\n",p.Magic);
return false;
}
// write header values
if( verbose )
{
if( peplus )
writeCOFF( cast(PEPlusHeader*) pe );
else
writeCOFF( cast(PEHeader*) pe );
}
// read the windows specific PE32 header
if( !peplus )
{
// verify size
if( size_remaining < PEWindowsHeader.sizeof )
{
writefln( "COFF SizeOfOptionalHeader is too small for Windows specific header");
return false;
}
winpe = new PEWindowsHeader;
if( file.readBlock( winpe, PEWindowsHeader.sizeof ) != PEWindowsHeader.sizeof )
{
writefln( "failed to read PE32 windows header");
return false;
}
size_remaining -= PEWindowsHeader.sizeof;
}
else
{
// PE32+
if( size_remaining < PEPlusWindowsHeader.sizeof )
{
writefln( "COFF SizeOfOptionalHeader is too small for Windows specific header");
return false;
}
winpe = cast(PEWindowsHeader*) new PEPlusWindowsHeader;
if( file.readBlock( winpe, PEPlusWindowsHeader.sizeof ) != PEPlusWindowsHeader.sizeof )
{
writefln( "failed to read PE32 windows header");
return false;
}
size_remaining -= PEPlusWindowsHeader.sizeof;
}
// debug print
if( verbose ) writeCOFF( winpe );
//
// read data directory tables
uint dataSize = winpe.NumberOfRVAAndSizes * PEDataDirectory.sizeof;
if( size_remaining < dataSize )
{
writefln( "COFF SizeOfOptionalHeader is too small for data directories");
return false;
}
// writefln( winpe.NumberOfRVAAndSizes * PEDataDirectory.sizeof );
datadir = new PEDataDirectories;
if( file.readBlock( datadir, dataSize ) != dataSize )
{
writefln( "failed to read PE32 data directories\n");
return false;
}
// debug print
if( verbose ) writeCOFF( datadir );
imageBase = winpe.ImageBase;
return true;
}
bool parseSectionHeaders( File file )
{
uint inVal;
char[] tName;
// COFFSectionHeader* s;
// read section headers
COFFSectionHeader[] sectionTable;
sectionTable.length = coff.NumberOfSections;
if( file.readBlock( sectionTable.ptr, sectionTable.length * COFFSectionHeader.sizeof ) != sectionTable.length * COFFSectionHeader.sizeof )
return false;
// COFFSection sect = parseCOFFSectionHeader( COFFSectionHeader* s, file );
uint i=0;
while( i < coff.NumberOfSections )
{
COFFSection sect = parseCOFFSectionHeader( §ionTable[i], file );
/*
s = new COFFSectionHeader;
if( !.ReadFile( fh, s, COFFSectionHeader.sizeof, &inVal, null ) )
{
writefln( "ReadSectionHeaders(): failed to read section header %d",i);
return false;
}
*/
sect.index = i++;
sections ~= sect;
// i++;
}
if( verbose ) writeSections();
/*
// for( it=section.begin(); it < section.end(); it++)
foreach( COFFSectionHeader it; sectionTable )
{
tName = .toString(cast(char*)it.Name.ptr);
//! memcpy(tName,&(it.Name),sizeof(it.Name));
writefln(
"\tSection info:\n"
"\t\tName: %s\n"
"\t\tVirtual Size: 0x%X\n"
"\t\tVirtual Address: 0x%08X\n"
"\t\tSize of Raw Data: %d\n"
"\t\tPointer to Raw Data: 0x%08X\n"
"\t\tPointer to Relocations: 0x%08X\n"
"\t\tPointer to Line numbers: 0x%08X\n"
"\t\tNumber of Relocations: %d\n"
"\t\tNumber of Line numbers: %d\n"
"\t\tCharacteristics: %08X\n",
tName,
it.VirtualSize,
it.VirtualAddress,
it.SizeOfRawData,
it.PointerToRawData,
it.PointerToRelocations,
it.PointerToLineNumbers,
it.NumberOfRelocations,
it.NumberOfLineNumbers,
it.Characteristics);
}
*/
return true;
}
// pe-coff exports
bool parseExports( File file )
{
// skip empty export directories
if( datadir.Export.RVA == 0 )
{
if( verbose ) writefln( "populateExports: Module has no Export entry" );
return true;
}
uint export_tab;
uint remaining_size;
COFFExportDirectoryTable ex;
COFFExport* et;
ushort otemp;
uint ntemp;
char[] NameTemp;
uint etemp;
char[] ForwardTemp;
// get export table offset from data directory
export_tab = RVA2Offset(datadir.Export.RVA);
remaining_size = datadir.Export.Size;
// read export directory table from file
file.seekSet( export_tab );
if( file.readBlock( &ex, COFFExportDirectoryTable.sizeof ) != COFFExportDirectoryTable.sizeof )
{
writefln( "populateExports: Could not read 0x%08X", export_tab );
return false;
}
remaining_size -= ex.sizeof;
// get internal dll name
fileStrCpy( file, RVA2Offset(ex.NameRVA), internal_name );
if( verbose ) writefln( "\tDLL NAME: '%s'\n", internal_name );
// debug print
if( verbose ) writeCOFF( &ex );
uint ExportAddressTable = RVA2Offset( ex.AddressOfFunctions );
uint NamePointerRVA = RVA2Offset( ex.AddressOfNames );
uint OrdinalTableRVA = RVA2Offset( ex.AddressOfOrdinals );
uint name_ord_cnt = ex.NumberOfNames; // Names and ordinals are __required__ to be the same
while( name_ord_cnt > 0 )
{
// Ordinal and Name pointer tables run in parallel
file.position = OrdinalTableRVA;
file.read( otemp );
OrdinalTableRVA += otemp.sizeof;
if( verbose ) writef( "\t\t\tOrdinal: %d",otemp);
file.position = NamePointerRVA;
file.read( ntemp );
NamePointerRVA += ntemp.sizeof;
if( verbose ) writef( " - Name RVA: %08X",ntemp);
if( ntemp )
{
// Now see what's the name to it
if( !fileStrCpy( file, RVA2Offset(ntemp), NameTemp ) )
{
writefln( "\nPopulateExportByFile(): Failed to read at 0x%08X\n",ntemp);
return false;
}
if( verbose ) writef( " - '%s'", NameTemp);
}
else
{
NameTemp = "";
}
// The ordinal (without any fixup) is an index in the Export Address Table
file.position = ExportAddressTable + (4*otemp);
file.read( etemp );
// If the export address is NOT within the export section it's a real export, otherwise it's forwarded
if( etemp )
{
if( (etemp > datadir.Export.RVA) && (etemp < (datadir.Export.RVA + datadir.Export.Size)) )
{
if( verbose ) writefln( " - Address is a FORWARDER RVA: %08X", etemp );
if( !fileStrCpy( file, RVA2Offset(etemp), ForwardTemp ) )
{
writefln( "PopulateExportByFile(): Failed to read at 0x%08X\n",etemp);
return false;
}
if( verbose ) writefln( " - ", ForwardTemp );
// create export object
et = new COFFExport;
et.Name = NameTemp;
et.Ordinal = otemp + ex.OrdinalBias;
et.Address = 0x0;
et.Forwarded = true;
et.ForwardName = ForwardTemp;
exports ~= et;
}
else
{
if( verbose ) writefln( " - Address: %08X", etemp);
// create export object
et = new COFFExport;
et.Name = NameTemp;
et.Ordinal = otemp + ex.OrdinalBias;
et.Address = etemp;
et.Forwarded = false;
et.ForwardName = "";
exports ~= et;
}
}
else
{
if( verbose ) writefln( "Export has address of 0x00 - unused\n");
}
name_ord_cnt--;
}
return true;
}
public:
// section management
PIMAGE_SECTION_HEADER findSection(uint flags)
{
foreach( COFFSection sect; sections )
{
if( sect.header.Characteristics & flags )
return cast(PIMAGE_SECTION_HEADER)§.header;
}
return null;
}
bool fileStrCpy( File file, uint off, inout char[] s )
{
bool zerofound = false;
ulong fpsave = file.position();
// according to MSDN (http://msdn.microsoft.com/library/en-us/fileio/base/setfilepointer.asp)
// there is a return value of INVALID_SET_FILE_POINTER but this is not defined in any
// of the include files; great! Hence the zerofound variable.
file.position( off );
char[] rstr;
char c;
while( !file.eof() )
{
file.read( c );
if( c == '\0' )
{
zerofound = true;
break;
}
rstr ~= c;
}
if( zerofound )
s = rstr;
else
s = "";
file.position(fpsave );
return zerofound;
}
// convert file section offset to loaded virtual address
uint offset2Address( COFFSection sect, uint offset )
{
// off = sect.header.VirtualAddress - sect.header.PointerToRawData;
return offset;
}
// convert loaded virtual address to file offset
uint RVA2Offset( uint rva )
{
uint off;
COFFSection sect;
//for( it = section.begin(); it < section.end(); it++)
foreach( COFFSection it; sections )
{
assert( it !is null );
if( ( rva >= it.header.VirtualAddress ) && ( rva <= (it.header.VirtualAddress + it.header.VirtualSize) ) )
{
if( sect is null )
sect = it;
break;
}
}
if( sect is null )
{
writefln( "RVA2Offset(): RVA %08X is in no section",rva);
return 0;
}
// writefln( "RVA %08X is in section %s (%08X)", rva, .toString(cast(char*)sect.Name), sect.VirtualAddress );
off = sect.header.VirtualAddress - sect.header.PointerToRawData;
// writefln( "RVA in file is %08X\n", rva - off );
return rva - off;
}
}
private extern (C)
{
// Functions from the C library.
// int strcmp(char *, char *);
char* strcat(char *, char *);
int memcmp(void *, void *, uint);
char *strstr(char *, char *);
char *strchr(char *, char);
char *strrchr(char *, char);
char *memchr(char *, char, uint);
void *memmove(void *, void *, uint);
char* strerror(int);
}
// parse coff section header
COFFSection parseCOFFSectionHeader( COFFSectionHeader* s, File file )
{
// create new section data
COFFSection sect = new COFFSection;
sect.header = *s;
// get section name
if( s.Name[0] == '\\' )
{
// name is in string table
assert( false ); // finish string table
// char[] sNum = s.Name[1..8];
// sNum.length = 1;
// char[] sNum;
// sNum.length = 1;
// memcpy( sNum.ptr, s.Name[1..8].ptr, 1 );
}
else
{
// pad extra space in case name is exactly 8 characters
sect.name = strip( copyStringz( s.Name ) );
// char[] s2 = s.Name;
// s2.length = s2.length + 1;
// s2[s2.length-1] = 0;
// sect.Name = std.string.toString( cast(char*) s2.ptr );
}
// handle grouped selections
int n = find( sect.name, "$" );
if( n != -1 )
sect.group = sect.name[0..n];
else
sect.group = sect.name;
// read section data
if( ( sect.data.length = s.SizeOfRawData ) != 0 )
{
// memset( sect.data.ptr + s.SizeOfRawData, 0, s.VirtualSize - s.SizeOfRawData );
file.seekSet( s.PointerToRawData );
if( file.readBlock( sect.data.ptr, s.SizeOfRawData ) != s.SizeOfRawData )
return null;
}
// pad virtual sections
if( s.SizeOfRawData < s.VirtualSize )
sect.data.length = s.VirtualSize;
// grab relocations
if( s.PointerToRelocations && s.NumberOfRelocations )
{
sect.relocs.length = s.NumberOfRelocations;
int sz = s.NumberOfRelocations * COFFRelocationRecord.sizeof;
file.seekSet( s.PointerToRelocations );
if( file.readBlock( sect.relocs.ptr, sz ) != sz )
return null;
}
// grab line numbers
if( s.PointerToLineNumbers && s.NumberOfLineNumbers )
{
sect.lines.length = s.NumberOfLineNumbers;
int sz = s.NumberOfLineNumbers * COFFLineRecord.sizeof;
file.seekSet( s.PointerToLineNumbers );
if( file.readBlock( sect.lines.ptr, sz ) != sz )
return null;
}
return sect;
}
char[] DEBUG_TYPE_NAME( int a )
{
switch( a )
{
default:
case 0: return "Unknown debug type";
case 1: return "COFF";
case 2: return "CodeView";
case 3: return "FPO";
case 4: return "Misc";
case 5: return "Exception";
case 6: return "FixUp";
case 7: return "OMAP to Src";
case 8: return "OMAP from Src";
case 9: return "Borland";
case 10: return "Reserved";
}
return "Unknown debug type";
}
// COFF import function
struct COFFImportFunction
{
uint Address;
char[] Name;
}
// A class to handle the import mess
class PEcoff_import
{
public:
char[] name;
COFFImportFunction*[] functions; // import functions
this()
{
// name = "";
}
~this()
{
// uint i,size;
// size = functions.length;
// for (i=0; i<size; i++) {
// delete( functions.back() );
// functions.pop_back();
// }
}
uint functionByName(char[] name)
{
char[] n = name;
foreach( COFFImportFunction* it; functions )
{
if( it.Name == n )
return it.Address;
}
// vector <COFFImportFunction *>::iterator it;
// for ( it = functions.begin() ; it < functions.end(); it++) {
// if ( (*it).Name == n )
// return (*it).Address;
// }
return 0;
}
char[] functionByAddress(uint addr)
{
foreach( COFFImportFunction* it; functions )
{
if( it.Address == addr )
return it.Name;
}
// vector <COFFImportFunction *>::iterator it;
// for ( it = functions.begin() ; it < functions.end(); it++) {
// if ( (*it).Address == addr )
// return (char *)((*it).Name);
// }
return null;
}
}
| D |
module colorcircle;
import std.math;
import std.stdio;
import dlangui;
import dlib.image : hsv;
@safe
/// Params:
///
/// y = y coordinate of point
/// x = x coordinate of point
///
/// Returns: angle in degrees [0; 360) clock-wise from Y axis
///
double atan2InDegrees(double y, double x) pure nothrow @nogc
{
return (360 * atan2(y, x) / 6.28 + 90 + 360) % 360;
}
class ColorCircle : CanvasWidget
{
private ushort _hue, _saturation, _value;
invariant {
import std.algorithm.sorting;
assert (ordered(0, _hue, 360));
assert (ordered(0, _value, 255));
assert (ordered(0, _saturation, 255));
}
private ColorDrawBuf _buf;
private int _cachedWidth, _cachedHeight;
enum ActiveElement { None = 0, Ring = 0x1, Square = 0x2, Both = Ring | Square };
ActiveElement _activeElement;
Rect squareGeometry() {
immutable len = min(width, height);
immutable w2 = width / 2.0;
immutable h2 = height / 2.0;
immutable rSqr = 0.38 * len;
immutable halfSide = rSqr * sqrt(2.0) / 2;
return Rect(cast(int)floor(w2-halfSide), cast(int)floor(h2-halfSide),
cast(int)ceil(w2+halfSide) + 1, cast(int)ceil(h2+halfSide) + 1);
}
struct RingGeometry {
float centerX;
float centerY;
float rIn;
float rOut;
float border;
}
RingGeometry ringGeometry() {
immutable len = min(width, height);
return RingGeometry(width / 2.0, height / 2.0, 0.4 * len, 0.44 * len, 3.0);
}
this(string id)
{
super(id);
_activeElement = ActiveElement.Both;
}
~this()
{
if (_buf) {
destroy(_buf);
}
}
override void doDraw(DrawBuf buf, Rect rc)
{
if (_buf is null) {
_buf = new ColorDrawBuf(width, height);
_buf.fill(0x00C8C8C8);
redrawRing();
redrawSquare();
_buf.invalidate();
} else if (_buf.width != width || _buf.height != height) {
_buf.resize(width, height);
_buf.fill(0x00C8C8C8);
redrawRing();
redrawSquare();
_buf.invalidate();
} else if (_activeElement & ActiveElement.Ring) {
redrawSquare();
_buf.invalidate();
}
buf.drawImage(0, 0, _buf);
drawCursors(buf);
}
void redrawRing()
{
writeln("updateCache start");
immutable uint w = width;
immutable uint h = height;
immutable len = min(w, h);
//_buf.fill(0xFFC8C8C8);
//_buf.fill(0x00C8C8C8);
immutable uint black1 = 0x00000000;
immutable uint red1 = 0x00FF0000;
_buf.drawFrame(Rect(10, 10, 20, 20), black1, Rect(1, 1, 1, 1), red1);
immutable float
w2 = w / 2.0,
h2 = h / 2.0,
rOut = 0.44 * len,
rIn = 0.4 * len;
// TODO proper circle drawing
immutable uint black = 0x00000000;
immutable int border = 3;
foreach(y; floor(h2-rOut-border).. ceil(h2+rOut+border) + 1)
{
//writeln(y);
foreach(x; floor(w2-rOut-border)..ceil(w2+rOut+border) + 1) {
auto ringHSV = hsv(atan2InDegrees(y - h2, x - w2), 1, 1, 1);
immutable uint ringColor = ((to!ubyte(ringHSV[0] * 255)) << 16)
+ ((to!ubyte(ringHSV[1] * 255)) << 8)
+ to!ubyte(ringHSV[2] * 255);
immutable r = hypot(y - h2, x - w2);
if (rIn - border <= r && r < rIn) { // inner border
_buf.drawPixel(to!int(round(x)), to!int(round(y)), black);
} else if (rIn <= r && r < rOut) { // color bing band
_buf.drawPixel(to!int(round(x)), to!int(round(y)), ringColor);
} else if (rOut <= r && r < rOut + border) { // outer border
_buf.drawPixel(to!int(round(x)), to!int(round(y)), black);
}
}
}
}
void redrawSquare()
{
immutable float
w2 = width / 2.0,
h2 = height / 2.0,
len = min(width, height),
rSqr = 0.38 * len,
halfSide = rSqr * sqrt(2.0) / 2,
x0 = floor(w2-halfSide),
x1 = ceil(w2+halfSide),
y0 = floor(h2-halfSide),
y1 = ceil(h2+halfSide);
foreach(y; y0..y1)
{
auto v = (y - y0) / (y1 - y0);
foreach(x; x0..x1)
{
auto s = (x - x0) / (x1 - x0);
assert(abs(v) <= 1 && abs(s) <= 1);
auto squareColor4f = hsv(_hue, s, v, 1);
uint squareColor = ((to!ubyte(squareColor4f[0] * 255)) << 16)
+ ((to!ubyte(squareColor4f[1] * 255)) << 8)
+ to!ubyte(squareColor4f[2] * 255);
_buf.drawPixel(to!int(round(x)), to!int(round(y)), squareColor);
}
}
}
void drawCursors (DrawBuf buf)
{
immutable uint black1 = 0x00000000;
immutable uint red1 = 0x00FF0000;
auto square = squareGeometry();
with(square) {
immutable int yc = cast(int)(top + cast(float) _value / 255 * (bottom - top));
immutable int xc = cast(int)(left + cast(float) _saturation / 255 * (right - left));
buf.drawFrame(Rect(xc - 3, yc - 3, xc + 3, yc + 3), black1, Rect(1, 1, 1, 1), red1);
}
immutable ring = ringGeometry;
with (ring) {
immutable int cursorX = cast(int)(centerX - (rIn + rOut) / 2.0 * cos(-(PI * _hue / 180 + PI / 2)));
immutable int cursorY = cast(int)(centerY + (rIn + rOut) / 2.0 * sin(-(PI * _hue / 180 + PI / 2)));
buf.drawFrame(Rect(cursorX - 3, cursorY - 3, cursorX + 3, cursorY + 3), black1, Rect(1, 1, 1, 1), red1);
}
}
override bool onMouseEvent(MouseEvent event)
{
if (!event.lbutton.isDown) {
_activeElement = ActiveElement.None;
return true;
}
writeln(event.x, " ", event.y);
// TODO immutable
auto square = squareGeometry();
if ((square.isPointInside(event.x, event.y) && _activeElement != ActiveElement.Ring)
|| _activeElement == ActiveElement.Square) {
import std.algorithm.comparison;
_value = cast(ushort)clamp(255.0 * (event.y - square.top) / (square.height - 1), 0, 255);
_saturation = cast(ushort)clamp(255.0 * (event.x - square.left) / (square.width - 1), 0, 255);
_activeElement = ActiveElement.Square;
writeln("_v ", _value, "_s ", _saturation);
invalidate();
return true;
}
immutable ring = ringGeometry;
immutable dx = event.x - ring.centerX, dy = event.y - ring.centerY;
immutable r = hypot(dx, dy);
writeln(ring.rIn, " ", r, " ", ring.rOut);
if (ring.rIn <= r && r <= ring.rOut || _activeElement == ActiveElement.Ring) {
_hue = cast(ushort)atan2InDegrees(dy, dx);
_activeElement = ActiveElement.Ring;
writeln("new hue ", _hue);
invalidate();
return true;
}
return true;
}
}
| D |
module dpk.pkgdesc;
import std.conv, std.file, std.path, std.stdio, std.string;
import dpk.config, dpk.ctx, dpk.install, dpk.util;
PkgDesc loadPkgDesc(Ctx ctx, string pkgbasename) {
auto descpath = installPath(ctx, dpk.install.confdir, pkgbasename);
if (!std.file.exists(descpath) || !std.file.isFile(descpath)) {
throw new Exception(fmtString("Missing file %s.", descpath));
}
return PkgDesc(parseConfig(descpath));
}
PkgDesc loadLocalPkgDesc() {
return PkgDesc(parseConfig(buildPath(".", "dpk.cfg")));
}
struct PkgDesc {
Config config;
alias config this;
@property string toString() const {
return fmtString("PkgDesc %s:\n%s", this.pkgSect().get("name", ""),
to!string(this.config));
}
@property string name() const {
return toLower(this.pkgSect().get("name"));
}
private:
Section pkgSect() const {
return (cast(Config)config).get("pkg", new Exception("PkgDesc is missing [pkg] section."));
}
}
| D |
module build.tools;
abstract class Tool
{
}
| D |
/**
* Authors: The D DBI project
*
* Version: 0.2.5
*
* Copyright: BSD license
*/
module dbi.pg.PgError;
private import dbi.ErrorCode;
/**
* Convert a PostgreSQL _error code to an КодОшибки.
*
* Params:
* ошибка = The PostgreSQL _error code.
*
* Returns:
* The КодОшибки representing ошибка.
*
* Note:
* Written against the PostgreSQL 8.1.4 documentation.
*/
package КодОшибки спецВОбщ (char* ошибка);
| D |
/**
* D header file for POSIX.
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Sean Kelly,
Alex Rønne Petersen
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
/* Copyright Sean Kelly 2005 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module core.sys.posix.time;
private import core.sys.posix.config;
public import core.stdc.time;
public import core.sys.posix.sys.types;
public import core.sys.posix.signal; // for sigevent
version (OSX)
version = Darwin;
else version (iOS)
version = Darwin;
else version (TVOS)
version = Darwin;
else version (WatchOS)
version = Darwin;
version (Posix):
extern (C):
nothrow:
@nogc:
//
// Required (defined in core.stdc.time)
//
/*
char* asctime(in tm*);
clock_t clock();
char* ctime(in time_t*);
double difftime(time_t, time_t);
tm* gmtime(in time_t*);
tm* localtime(in time_t*);
time_t mktime(tm*);
size_t strftime(char*, size_t, in char*, in tm*);
time_t time(time_t*);
*/
version( CRuntime_Glibc )
{
time_t timegm(tm*); // non-standard
}
else version( Darwin )
{
time_t timegm(tm*); // non-standard
}
else version( FreeBSD )
{
time_t timegm(tm*); // non-standard
}
else version(NetBSD)
{
time_t timegm(tm*); // non-standard
}
else version (Solaris)
{
time_t timegm(tm*); // non-standard
}
else version (CRuntime_Bionic)
{
// Not supported.
}
else
{
static assert(false, "Unsupported platform");
}
//
// C Extension (CX)
// (defined in core.stdc.time)
//
/*
char* tzname[];
void tzset();
*/
//
// Process CPU-Time Clocks (CPT)
//
/*
int clock_getcpuclockid(pid_t, clockid_t*);
*/
//
// Clock Selection (CS)
//
/*
int clock_nanosleep(clockid_t, int, in timespec*, timespec*);
*/
//
// Monotonic Clock (MON)
//
/*
CLOCK_MONOTONIC
*/
version( linux )
{
enum CLOCK_MONOTONIC = 1;
// To be removed in December 2015.
static import core.sys.linux.time;
deprecated("Please import it from core.sys.linux.time instead.")
alias CLOCK_MONOTONIC_RAW = core.sys.linux.time.CLOCK_MONOTONIC_RAW; // non-standard
deprecated("Please import it from core.sys.linux.time instead.")
alias CLOCK_MONOTONIC_COARSE = core.sys.linux.time.CLOCK_MONOTONIC_COARSE; // non-standard
}
else version (FreeBSD)
{ // time.h
enum CLOCK_MONOTONIC = 4;
// To be removed in December 2015.
static import core.sys.freebsd.time;
deprecated("Please import it from core.sys.freebsd.time instead.")
alias CLOCK_MONOTONIC_PRECISE = core.sys.freebsd.time.CLOCK_MONOTONIC_PRECISE;
deprecated("Please import it from core.sys.freebsd.time instead.")
alias CLOCK_MONOTONIC_FAST = core.sys.freebsd.time.CLOCK_MONOTONIC_FAST;
}
else version (NetBSD)
{
// time.h
enum CLOCK_MONOTONIC = 3;
}
else version (Darwin)
{
// No CLOCK_MONOTONIC defined
}
else version (Solaris)
{
enum CLOCK_MONOTONIC = 4;
}
else
{
static assert(0);
}
//
// Timer (TMR)
//
/*
CLOCK_PROCESS_CPUTIME_ID (TMR|CPT)
CLOCK_THREAD_CPUTIME_ID (TMR|TCT)
NOTE: timespec must be defined in core.sys.posix.signal to break
a circular import.
struct timespec
{
time_t tv_sec;
int tv_nsec;
}
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
CLOCK_REALTIME
TIMER_ABSTIME
clockid_t
timer_t
int clock_getres(clockid_t, timespec*);
int clock_gettime(clockid_t, timespec*);
int clock_settime(clockid_t, in timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(clockid_t, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_getoverrun(timer_t);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
*/
version( CRuntime_Glibc )
{
enum CLOCK_PROCESS_CPUTIME_ID = 2;
enum CLOCK_THREAD_CPUTIME_ID = 3;
// NOTE: See above for why this is commented out.
//
//struct timespec
//{
// time_t tv_sec;
// c_long tv_nsec;
//}
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
enum CLOCK_REALTIME = 0;
// To be removed in December 2015.
static import core.sys.linux.time;
deprecated("Please import it from core.sys.linux.time instead.")
alias CLOCK_REALTIME_COARSE = core.sys.linux.time.CLOCK_REALTIME_COARSE; // non-standard
enum TIMER_ABSTIME = 0x01;
alias int clockid_t;
alias void* timer_t;
int clock_getres(clockid_t, timespec*);
int clock_gettime(clockid_t, timespec*);
int clock_settime(clockid_t, in timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(clockid_t, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_getoverrun(timer_t);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
}
else version( Darwin )
{
int nanosleep(in timespec*, timespec*);
}
else version( FreeBSD )
{
//enum CLOCK_PROCESS_CPUTIME_ID = ??;
enum CLOCK_THREAD_CPUTIME_ID = 15;
// NOTE: See above for why this is commented out.
//
//struct timespec
//{
// time_t tv_sec;
// c_long tv_nsec;
//}
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
enum CLOCK_REALTIME = 0;
enum TIMER_ABSTIME = 0x01;
alias int clockid_t; // <sys/_types.h>
alias int timer_t;
int clock_getres(clockid_t, timespec*);
int clock_gettime(clockid_t, timespec*);
int clock_settime(clockid_t, in timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(clockid_t, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_getoverrun(timer_t);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
}
else version(NetBSD)
{
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
enum CLOCK_REALTIME = 0;
enum TIMER_ABSTIME = 0x01;
alias int clockid_t; // <sys/_types.h>
alias int timer_t;
int clock_getres(clockid_t, timespec*);
int clock_gettime(clockid_t, timespec*);
int clock_settime(clockid_t, in timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(clockid_t, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_getoverrun(timer_t);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
}
else version (Solaris)
{
enum CLOCK_PROCESS_CPUTIME_ID = 5; // <sys/time_impl.h>
enum CLOCK_THREAD_CPUTIME_ID = 2; // <sys/time_impl.h>
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
enum CLOCK_REALTIME = 3; // <sys/time_impl.h>
enum TIMER_ABSOLUTE = 0x1;
alias int clockid_t;
alias int timer_t;
int clock_getres(clockid_t, timespec*);
int clock_gettime(clockid_t, timespec*);
int clock_settime(clockid_t, in timespec*);
int clock_nanosleep(clockid_t, int, in timespec*, timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(clockid_t, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_getoverrun(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
}
else version( CRuntime_Bionic )
{
enum CLOCK_PROCESS_CPUTIME_ID = 2;
enum CLOCK_THREAD_CPUTIME_ID = 3;
struct itimerspec
{
timespec it_interval;
timespec it_value;
}
enum CLOCK_REALTIME = 0;
enum CLOCK_REALTIME_HR = 4;
enum TIMER_ABSTIME = 0x01;
alias int clockid_t;
alias int timer_t;
int clock_getres(int, timespec*);
int clock_gettime(int, timespec*);
int nanosleep(in timespec*, timespec*);
int timer_create(int, sigevent*, timer_t*);
int timer_delete(timer_t);
int timer_gettime(timer_t, itimerspec*);
int timer_getoverrun(timer_t);
int timer_settime(timer_t, int, in itimerspec*, itimerspec*);
}
else
{
static assert(false, "Unsupported platform");
}
//
// Thread-Safe Functions (TSF)
//
/*
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
*/
version( CRuntime_Glibc )
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else version( Darwin )
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else version( FreeBSD )
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else version(NetBSD)
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else version (Solaris)
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else version (CRuntime_Bionic)
{
char* asctime_r(in tm*, char*);
char* ctime_r(in time_t*, char*);
tm* gmtime_r(in time_t*, tm*);
tm* localtime_r(in time_t*, tm*);
}
else
{
static assert(false, "Unsupported platform");
}
//
// XOpen (XSI)
//
/*
getdate_err
int daylight;
int timezone;
tm* getdate(in char*);
char* strptime(in char*, in char*, tm*);
*/
version( CRuntime_Glibc )
{
extern __gshared int daylight;
extern __gshared c_long timezone;
tm* getdate(in char*);
char* strptime(in char*, in char*, tm*);
}
else version( Darwin )
{
extern __gshared c_long timezone;
extern __gshared int daylight;
tm* getdate(in char*);
char* strptime(in char*, in char*, tm*);
}
else version( FreeBSD )
{
//tm* getdate(in char*);
char* strptime(in char*, in char*, tm*);
}
else version(NetBSD)
{
tm* getdate(in char*);
char* strptime(in char*, in char*, tm*);
}
else version (Solaris)
{
extern __gshared c_long timezone, altzone;
extern __gshared int daylight;
tm* getdate(in char*);
char* __strptime_dontzero(in char*, in char*, tm*);
alias __strptime_dontzero strptime;
}
else version( CRuntime_Bionic )
{
extern __gshared int daylight;
extern __gshared c_long timezone;
char* strptime(in char*, in char*, tm*);
}
else
{
static assert(false, "Unsupported platform");
}
| D |
module UnrealScript.TribesGame.TrCallIn_SupportItemPlatform;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.Actor;
import UnrealScript.TribesGame.TrGameObjective;
extern(C++) interface TrCallIn_SupportItemPlatform : Actor
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class TribesGame.TrCallIn_SupportItemPlatform")); }
private static __gshared TrCallIn_SupportItemPlatform mDefaultProperties;
@property final static TrCallIn_SupportItemPlatform DefaultProperties() { mixin(MGDPC("TrCallIn_SupportItemPlatform", "TrCallIn_SupportItemPlatform TribesGame.Default__TrCallIn_SupportItemPlatform")); }
static struct Functions
{
private static __gshared
{
ScriptFunction mGetBoundingCylinder;
ScriptFunction mInit;
ScriptFunction mScriptGetTeamNum;
ScriptFunction mHideMesh;
ScriptFunction mTick;
}
public @property static final
{
ScriptFunction GetBoundingCylinder() { mixin(MGF("mGetBoundingCylinder", "Function TribesGame.TrCallIn_SupportItemPlatform.GetBoundingCylinder")); }
ScriptFunction Init() { mixin(MGF("mInit", "Function TribesGame.TrCallIn_SupportItemPlatform.Init")); }
ScriptFunction ScriptGetTeamNum() { mixin(MGF("mScriptGetTeamNum", "Function TribesGame.TrCallIn_SupportItemPlatform.ScriptGetTeamNum")); }
ScriptFunction HideMesh() { mixin(MGF("mHideMesh", "Function TribesGame.TrCallIn_SupportItemPlatform.HideMesh")); }
ScriptFunction Tick() { mixin(MGF("mTick", "Function TribesGame.TrCallIn_SupportItemPlatform.Tick")); }
}
}
@property final auto ref
{
TrGameObjective r_DeployedItem() { mixin(MGPC("TrGameObjective", 476)); }
ubyte DefenderTeamIndex() { mixin(MGPC("ubyte", 496)); }
ScriptName ItemAttachPointName() { mixin(MGPC("ScriptName", 488)); }
// ERROR: Unsupported object class 'ComponentProperty' for the property named 'CylinderComponent'!
// ERROR: Unsupported object class 'ComponentProperty' for the property named 'm_Mesh'!
}
final:
void GetBoundingCylinder(ref float CollisionRadius, ref float CollisionHeight)
{
ubyte params[8];
params[] = 0;
*cast(float*)params.ptr = CollisionRadius;
*cast(float*)¶ms[4] = CollisionHeight;
(cast(ScriptObject)this).ProcessEvent(Functions.GetBoundingCylinder, params.ptr, cast(void*)0);
CollisionRadius = *cast(float*)params.ptr;
CollisionHeight = *cast(float*)¶ms[4];
}
void Init(Actor DeployableOwner, ScriptClass GameObjectiveClass)
{
ubyte params[8];
params[] = 0;
*cast(Actor*)params.ptr = DeployableOwner;
*cast(ScriptClass*)¶ms[4] = GameObjectiveClass;
(cast(ScriptObject)this).ProcessEvent(Functions.Init, params.ptr, cast(void*)0);
}
ubyte ScriptGetTeamNum()
{
ubyte params[1];
params[] = 0;
(cast(ScriptObject)this).ProcessEvent(Functions.ScriptGetTeamNum, params.ptr, cast(void*)0);
return params[0];
}
void HideMesh()
{
(cast(ScriptObject)this).ProcessEvent(Functions.HideMesh, cast(void*)0, cast(void*)0);
}
void Tick(float DeltaTime)
{
ubyte params[4];
params[] = 0;
*cast(float*)params.ptr = DeltaTime;
(cast(ScriptObject)this).ProcessEvent(Functions.Tick, params.ptr, cast(void*)0);
}
}
| D |
// Written in the D programming language.
/**
This module defines generic containers.
Construction:
To implement the different containers both struct and class based
approaches have been used. $(XREF_PACK _container,util,make) allows for
uniform construction with either approach.
---
import std.container;
// Construct a red-black tree and an array both containing the values 1, 2, 3.
// RedBlackTree should typically be allocated using `new`
RedBlackTree!int rbTree = new RedBlackTree!int(1, 2, 3);
// But `new` should not be used with Array
Array!int array = Array!int(1, 2, 3);
// `make` hides the differences
RedBlackTree!int rbTree2 = make!(RedBlackTree!int)(1, 2, 3);
Array!int array2 = make!(Array!int)(1, 2, 3);
---
Note that $(D make) can infer the element type from the given arguments.
---
import std.container;
auto rbTree = make!RedBlackTree(1, 2, 3); // RedBlackTree!int
auto array = make!Array("1", "2", "3"); // Array!string
---
Reference_semantics:
All containers have reference semantics, which means that after
assignment both variables refer to the same underlying data.
To make a copy of a _container, use the $(D c._dup) _container primitive.
---
import std.container, std.range;
Array!int originalArray = make!(Array!int)(1, 2, 3);
Array!int secondArray = originalArray;
assert(equal(originalArray[], secondArray[]));
// changing one instance changes the other one as well!
originalArray[0] = 12;
assert(secondArray[0] == 12);
// secondArray now refers to an independent copy of originalArray
secondArray = originalArray.dup;
secondArray[0] = 1;
// assert that originalArray has not been affected
assert(originalArray[0] == 12);
---
$(B Attention:) If the _container is implemented as a class, using an
uninitialized instance can cause a null pointer dereference.
---
import std.container;
RedBlackTree!int rbTree;
rbTree.insert(5); // null pointer dereference
---
Using an uninitialized struct-based _container will work, because the struct
intializes itself upon use; however, up to this point the _container will not
have an identity and assignment does not create two references to the same
data.
---
import std.container;
// create an uninitialized array
Array!int array1;
// array2 does _not_ refer to array1
Array!int array2 = array1;
array2.insertBack(42);
// thus array1 will not be affected
assert(array1.empty);
// after initialization reference semantics work as expected
array1 = array2;
// now affects array2 as well
array1.removeBack();
assert(array2.empty);
---
It is therefore recommended to always construct containers using
$(XREF_PACK _container,util,make).
This is in fact necessary to put containers into another _container.
For example, to construct an $(D Array) of ten empty $(D Array)s, use
the following that calls $(D make) ten times.
---
import std.container, std.range;
auto arrOfArrs = make!Array(generate!(() => make!(Array!int)).take(10));
---
Submodules:
This module consists of the following submodules:
$(UL
$(LI
The $(LINK2 std_container_array.html, std._container.array) module provides
an array type with deterministic control of memory, not reliant on
the GC unlike built-in arrays.
)
$(LI
The $(LINK2 std_container_binaryheap.html, std._container.binaryheap) module
provides a binary heap implementation that can be applied to any
user-provided random-access range.
)
$(LI
The $(LINK2 std_container_dlist.html, std._container.dlist) module provides
a doubly-linked list implementation.
)
$(LI
The $(LINK2 std_container_rbtree.html, std._container.rbtree) module
implements red-black trees.
)
$(LI
The $(LINK2 std_container_slist.html, std._container.slist) module
implements singly-linked lists.
)
$(LI
The $(LINK2 std_container_util.html, std._container.util) module contains
some generic tools commonly used by _container implementations.
)
)
The_primary_range_of_a_container:
While some _containers offer direct access to their elements e.g. via
$(D opIndex), $(D c.front) or $(D c.back), access
and modification of a _container's contents is generally done through
its primary $(LINK2 std_range.html, range) type,
which is aliased as $(D C.Range). For example, the primary range type of
$(D Array!int) is $(D Array!int.Range).
If the documentation of a member function of a _container takes
a parameter of type $(D Range), then it refers to the primary range type of
this _container. Oftentimes $(D Take!Range) will be used, in which case
the range refers to a span of the elements in the _container. Arguments to
these parameters $(B must) be obtained from the same _container instance
as the one being worked with. It is important to note that many generic range
algorithms return the same range type as their input range.
---
import std.algorithm : equal, find;
import std.container;
import std.range : take;
auto array = make!Array(1, 2, 3);
// `find` returns an Array!int.Range advanced to the element "2"
array.linearRemove(array[].find(2));
assert(array[].equal([1]));
array = make!Array(1, 2, 3);
// the range given to `linearRemove` is a Take!(Array!int.Range)
// spanning just the element "2"
array.linearRemove(array[].find(2).take(1));
assert(array[].equal([1, 3]));
---
When any $(LINK2 std_range.html, range) can be passed as an argument to
a member function, the documention usually refers to the parameter's templated
type as $(D Stuff).
---
import std.algorithm : equal;
import std.container;
import std.range : iota;
auto array = make!Array(1, 2);
// the range type returned by `iota` is completely unrelated to Array,
// which is fine for Array.insertBack:
array.insertBack(iota(3, 10));
assert(array[].equal([1, 2, 3, 4, 5, 6, 7, 8, 9]));
---
Container_primitives:
Containers do not form a class hierarchy, instead they implement a
common set of primitives (see table below). These primitives each guarantee
a specific worst case complexity and thus allow generic code to be written
independently of the _container implementation.
For example the primitives $(D c.remove(r)) and $(D c.linearRemove(r)) both
remove the sequence of elements in range $(D r) from the _container $(D c).
The primitive $(D c.remove(r)) guarantees
$(BIGOH n$(SUBSCRIPT r) log n$(SUBSCRIPT c)) complexity in the worst case and
$(D c.linearRemove(r)) relaxes this guarantee to $(BIGOH n$(SUBSCRIPT c)).
Since a sequence of elements can be removed from a $(LINK2 std_container_dlist.html, doubly linked list)
in constant time, $(D DList) provides the primitive $(D c.remove(r))
as well as $(D c.linearRemove(r)). On the other hand
$(LINK2 std_container_array.html, Array) only offers $(D c.linearRemove(r)).
The following table describes the common set of primitives that containers
implement. A _container need not implement all primitives, but if a
primitive is implemented, it must support the syntax described in the $(B
syntax) column with the semantics described in the $(B description) column, and
it must not have a worst-case complexity worse than denoted in big-O notation in
the $(BIGOH ·) column. Below, $(D C) means a _container type, $(D c) is
a value of _container type, $(D n$(SUBSCRIPT x)) represents the effective length of
value $(D x), which could be a single element (in which case $(D n$(SUBSCRIPT x)) is
$(D 1)), a _container, or a range.
$(BOOKTABLE Container primitives,
$(TR $(TH Syntax) $(TH $(BIGOH ·)) $(TH Description))
$(TR $(TDNW $(D C(x))) $(TDNW $(D n$(SUBSCRIPT x))) $(TD Creates a
_container of type $(D C) from either another _container or a range. The created _container must not be a null reference even if x is empty.))
$(TR $(TDNW $(D c.dup)) $(TDNW $(D n$(SUBSCRIPT c))) $(TD Returns a
duplicate of the _container.))
$(TR $(TDNW $(D c ~ x)) $(TDNW $(D n$(SUBSCRIPT c) + n$(SUBSCRIPT x))) $(TD
Returns the concatenation of $(D c) and $(D r). $(D x) may be a single
element or an input range.))
$(TR $(TDNW $(D x ~ c)) $(TDNW $(D n$(SUBSCRIPT c) + n$(SUBSCRIPT x))) $(TD
Returns the concatenation of $(D x) and $(D c). $(D x) may be a
single element or an input range type.))
$(LEADINGROWN 3, Iteration)
$(TR $(TD $(D c.Range)) $(TD) $(TD The primary range
type associated with the _container.))
$(TR $(TD $(D c[])) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Returns a range
iterating over the entire _container, in a _container-defined order.))
$(TR $(TDNW $(D c[a .. b])) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Fetches a
portion of the _container from key $(D a) to key $(D b).))
$(LEADINGROWN 3, Capacity)
$(TR $(TD $(D c.empty)) $(TD $(D 1)) $(TD Returns $(D true) if the
_container has no elements, $(D false) otherwise.))
$(TR $(TD $(D c.length)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Returns the
number of elements in the _container.))
$(TR $(TDNW $(D c.length = n)) $(TDNW $(D n$(SUBSCRIPT c) + n)) $(TD Forces
the number of elements in the _container to $(D n). If the _container
ends up growing, the added elements are initialized in a
_container-dependent manner (usually with $(D T.init)).))
$(TR $(TD $(D c.capacity)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Returns the
maximum number of elements that can be stored in the _container
without triggering a reallocation.))
$(TR $(TD $(D c.reserve(x))) $(TD $(D n$(SUBSCRIPT c))) $(TD Forces $(D
capacity) to at least $(D x) without reducing it.))
$(LEADINGROWN 3, Access)
$(TR $(TDNW $(D c.front)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Returns the
first element of the _container, in a _container-defined order.))
$(TR $(TDNW $(D c.moveFront)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Destructively reads and returns the first element of the
_container. The slot is not removed from the _container; it is left
initialized with $(D T.init). This routine need not be defined if $(D
front) returns a $(D ref).))
$(TR $(TDNW $(D c.front = v)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Assigns
$(D v) to the first element of the _container.))
$(TR $(TDNW $(D c.back)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Returns the
last element of the _container, in a _container-defined order.))
$(TR $(TDNW $(D c.moveBack)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Destructively reads and returns the last element of the
_container. The slot is not removed from the _container; it is left
initialized with $(D T.init). This routine need not be defined if $(D
front) returns a $(D ref).))
$(TR $(TDNW $(D c.back = v)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Assigns
$(D v) to the last element of the _container.))
$(TR $(TDNW $(D c[x])) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Provides
indexed access into the _container. The index type is
_container-defined. A _container may define several index types (and
consequently overloaded indexing).))
$(TR $(TDNW $(D c.moveAt(x))) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Destructively reads and returns the value at position $(D x). The slot
is not removed from the _container; it is left initialized with $(D
T.init).))
$(TR $(TDNW $(D c[x] = v)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD Sets
element at specified index into the _container.))
$(TR $(TDNW $(D c[x] $(I op)= v)) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Performs read-modify-write operation at specified index into the
_container.))
$(LEADINGROWN 3, Operations)
$(TR $(TDNW $(D e in c)) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Returns nonzero if e is found in $(D c).))
$(TR $(TDNW $(D c.lowerBound(v))) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Returns a range of all elements strictly less than $(D v).))
$(TR $(TDNW $(D c.upperBound(v))) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Returns a range of all elements strictly greater than $(D v).))
$(TR $(TDNW $(D c.equalRange(v))) $(TDNW $(D log n$(SUBSCRIPT c))) $(TD
Returns a range of all elements in $(D c) that are equal to $(D v).))
$(LEADINGROWN 3, Modifiers)
$(TR $(TDNW $(D c ~= x)) $(TDNW $(D n$(SUBSCRIPT c) + n$(SUBSCRIPT x)))
$(TD Appends $(D x) to $(D c). $(D x) may be a single element or an
input range type.))
$(TR $(TDNW $(D c.clear())) $(TDNW $(D n$(SUBSCRIPT c))) $(TD Removes all
elements in $(D c).))
$(TR $(TDNW $(D c.insert(x))) $(TDNW $(D n$(SUBSCRIPT x) * log n$(SUBSCRIPT c)))
$(TD Inserts $(D x) in $(D c) at a position (or positions) chosen by $(D c).))
$(TR $(TDNW $(D c.stableInsert(x)))
$(TDNW $(D n$(SUBSCRIPT x) * log n$(SUBSCRIPT c))) $(TD Same as $(D c.insert(x)),
but is guaranteed to not invalidate any ranges.))
$(TR $(TDNW $(D c.linearInsert(v))) $(TDNW $(D n$(SUBSCRIPT c))) $(TD Same
as $(D c.insert(v)) but relaxes complexity to linear.))
$(TR $(TDNW $(D c.stableLinearInsert(v))) $(TDNW $(D n$(SUBSCRIPT c)))
$(TD Same as $(D c.stableInsert(v)) but relaxes complexity to linear.))
$(TR $(TDNW $(D c.removeAny())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Removes some element from $(D c) and returns it.))
$(TR $(TDNW $(D c.stableRemoveAny())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Same as $(D c.removeAny()), but is guaranteed to not invalidate any
iterators.))
$(TR $(TDNW $(D c.insertFront(v))) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Inserts $(D v) at the front of $(D c).))
$(TR $(TDNW $(D c.stableInsertFront(v))) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Same as $(D c.insertFront(v)), but guarantees no ranges will be
invalidated.))
$(TR $(TDNW $(D c.insertBack(v))) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Inserts $(D v) at the back of $(D c).))
$(TR $(TDNW $(D c.stableInsertBack(v))) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Same as $(D c.insertBack(v)), but guarantees no ranges will be
invalidated.))
$(TR $(TDNW $(D c.removeFront())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Removes the element at the front of $(D c).))
$(TR $(TDNW $(D c.stableRemoveFront())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Same as $(D c.removeFront()), but guarantees no ranges will be
invalidated.))
$(TR $(TDNW $(D c.removeBack())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Removes the value at the back of $(D c).))
$(TR $(TDNW $(D c.stableRemoveBack())) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Same as $(D c.removeBack()), but guarantees no ranges will be
invalidated.))
$(TR $(TDNW $(D c.remove(r))) $(TDNW $(D n$(SUBSCRIPT r) * log n$(SUBSCRIPT c)))
$(TD Removes range $(D r) from $(D c).))
$(TR $(TDNW $(D c.stableRemove(r)))
$(TDNW $(D n$(SUBSCRIPT r) * log n$(SUBSCRIPT c)))
$(TD Same as $(D c.remove(r)), but guarantees iterators are not
invalidated.))
$(TR $(TDNW $(D c.linearRemove(r))) $(TDNW $(D n$(SUBSCRIPT c)))
$(TD Removes range $(D r) from $(D c).))
$(TR $(TDNW $(D c.stableLinearRemove(r))) $(TDNW $(D n$(SUBSCRIPT c)))
$(TD Same as $(D c.linearRemove(r)), but guarantees iterators are not
invalidated.))
$(TR $(TDNW $(D c.removeKey(k))) $(TDNW $(D log n$(SUBSCRIPT c)))
$(TD Removes an element from $(D c) by using its key $(D k).
The key's type is defined by the _container.))
$(TR $(TDNW $(D )) $(TDNW $(D )) $(TD ))
)
Source: $(PHOBOSSRC std/_container/package.d)
Macros:
WIKI = Phobos/StdContainer
TEXTWITHCOMMAS = $0
Copyright: Red-black tree code copyright (C) 2008- by Steven Schveighoffer. Other code
copyright 2010- Andrei Alexandrescu. All rights reserved by the respective holders.
License: Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at $(WEB
boost.org/LICENSE_1_0.txt)).
Authors: Steven Schveighoffer, $(WEB erdani.com, Andrei Alexandrescu)
*/
module std.container;
public import std.container.array;
public import std.container.binaryheap;
public import std.container.dlist;
public import std.container.rbtree;
public import std.container.slist;
import std.meta;
/* The following documentation and type $(D TotalContainer) are
intended for developers only.
$(D TotalContainer) is an unimplemented container that illustrates a
host of primitives that a container may define. It is to some extent
the bottom of the conceptual container hierarchy. A given container
most often will choose to only implement a subset of these primitives,
and define its own additional ones. Adhering to the standard primitive
names below allows generic code to work independently of containers.
Things to remember: any container must be a reference type, whether
implemented as a $(D class) or $(D struct). No primitive below
requires the container to escape addresses of elements, which means
that compliant containers can be defined to use reference counting or
other deterministic memory management techniques.
A container may choose to define additional specific operations. The
only requirement is that those operations bear different names than
the ones below, lest user code gets confused.
Complexity of operations should be interpreted as "at least as good
as". If an operation is required to have $(BIGOH n) complexity, it
could have anything lower than that, e.g. $(BIGOH log(n)). Unless
specified otherwise, $(D n) inside a $(BIGOH) expression stands for
the number of elements in the container.
*/
struct TotalContainer(T)
{
/**
If the container has a notion of key-value mapping, $(D KeyType)
defines the type of the key of the container.
*/
alias KeyType = T;
/**
If the container has a notion of multikey-value mapping, $(D
KeyTypes[k]), where $(D k) is a zero-based unsigned number, defines
the type of the $(D k)th key of the container.
A container may define both $(D KeyType) and $(D KeyTypes), e.g. in
the case it has the notion of primary/preferred key.
*/
alias KeyTypes = AliasSeq!T;
/**
If the container has a notion of key-value mapping, $(D ValueType)
defines the type of the value of the container. Typically, a map-style
container mapping values of type $(D K) to values of type $(D V)
defines $(D KeyType) to be $(D K) and $(D ValueType) to be $(D V).
*/
alias ValueType = T;
/**
Defines the container's primary range, which embodies one of the
ranges defined in $(XREFMODULE range).
Generally a container may define several types of ranges.
*/
struct Range
{
/++
Range primitives.
+/
@property bool empty()
{
assert(0);
}
/// Ditto
@property ref T front() //ref return optional
{
assert(0);
}
/// Ditto
@property void front(T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T moveFront()
{
assert(0);
}
/// Ditto
void popFront()
{
assert(0);
}
/// Ditto
@property ref T back() //ref return optional
{
assert(0);
}
/// Ditto
@property void back(T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T moveBack()
{
assert(0);
}
/// Ditto
void popBack()
{
assert(0);
}
/// Ditto
T opIndex(size_t i) //ref return optional
{
assert(0);
}
/// Ditto
void opIndexAssign(size_t i, T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T opIndexUnary(string op)(size_t i) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
void opIndexOpAssign(string op)(size_t i, T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T moveAt(size_t i)
{
assert(0);
}
/// Ditto
@property size_t length()
{
assert(0);
}
}
/**
Property returning $(D true) if and only if the container has no
elements.
Complexity: $(BIGOH 1)
*/
@property bool empty()
{
assert(0);
}
/**
Returns a duplicate of the container. The elements themselves are not
transitively duplicated.
Complexity: $(BIGOH n).
*/
@property TotalContainer dup()
{
assert(0);
}
/**
Returns the number of elements in the container.
Complexity: $(BIGOH log(n)).
*/
@property size_t length()
{
assert(0);
}
/**
Returns the maximum number of elements the container can store without
(a) allocating memory, (b) invalidating iterators upon insertion.
Complexity: $(BIGOH log(n)).
*/
@property size_t capacity()
{
assert(0);
}
/**
Ensures sufficient capacity to accommodate $(D n) elements.
Postcondition: $(D capacity >= n)
Complexity: $(BIGOH log(e - capacity)) if $(D e > capacity), otherwise
$(BIGOH 1).
*/
void reserve(size_t e)
{
assert(0);
}
/**
Returns a range that iterates over all elements of the container, in a
container-defined order. The container should choose the most
convenient and fast method of iteration for $(D opSlice()).
Complexity: $(BIGOH log(n))
*/
Range opSlice()
{
assert(0);
}
/**
Returns a range that iterates the container between two
specified positions.
Complexity: $(BIGOH log(n))
*/
Range opSlice(size_t a, size_t b)
{
assert(0);
}
/**
Forward to $(D opSlice().front) and $(D opSlice().back), respectively.
Complexity: $(BIGOH log(n))
*/
@property ref T front() //ref return optional
{
assert(0);
}
/// Ditto
@property void front(T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T moveFront()
{
assert(0);
}
/// Ditto
@property ref T back() //ref return optional
{
assert(0);
}
/// Ditto
@property void back(T value) //Only when front does not return by ref
{
assert(0);
}
/// Ditto
T moveBack()
{
assert(0);
}
/**
Indexing operators yield or modify the value at a specified index.
*/
ref T opIndex(KeyType) //ref return optional
{
assert(0);
}
/// ditto
void opIndexAssign(KeyType i, T value) //Only when front does not return by ref
{
assert(0);
}
/// ditto
T opIndexUnary(string op)(KeyType i) //Only when front does not return by ref
{
assert(0);
}
/// ditto
void opIndexOpAssign(string op)(KeyType i, T value) //Only when front does not return by ref
{
assert(0);
}
/// ditto
T moveAt(KeyType i)
{
assert(0);
}
/**
$(D k in container) returns true if the given key is in the container.
*/
bool opBinaryRight(string op)(KeyType k) if (op == "in")
{
assert(0);
}
/**
Returns a range of all elements containing $(D k) (could be empty or a
singleton range).
*/
Range equalRange(KeyType k)
{
assert(0);
}
/**
Returns a range of all elements with keys less than $(D k) (could be
empty or a singleton range). Only defined by containers that store
data sorted at all times.
*/
Range lowerBound(KeyType k)
{
assert(0);
}
/**
Returns a range of all elements with keys larger than $(D k) (could be
empty or a singleton range). Only defined by containers that store
data sorted at all times.
*/
Range upperBound(KeyType k)
{
assert(0);
}
/**
Returns a new container that's the concatenation of $(D this) and its
argument. $(D opBinaryRight) is only defined if $(D Stuff) does not
define $(D opBinary).
Complexity: $(BIGOH n + m), where m is the number of elements in $(D
stuff)
*/
TotalContainer opBinary(string op)(Stuff rhs) if (op == "~")
{
assert(0);
}
/// ditto
TotalContainer opBinaryRight(string op)(Stuff lhs) if (op == "~")
{
assert(0);
}
/**
Forwards to $(D insertAfter(this[], stuff)).
*/
void opOpAssign(string op)(Stuff stuff) if (op == "~")
{
assert(0);
}
/**
Removes all contents from the container. The container decides how $(D
capacity) is affected.
Postcondition: $(D empty)
Complexity: $(BIGOH n)
*/
void clear()
{
assert(0);
}
/**
Sets the number of elements in the container to $(D newSize). If $(D
newSize) is greater than $(D length), the added elements are added to
unspecified positions in the container and initialized with $(D
.init).
Complexity: $(BIGOH abs(n - newLength))
Postcondition: $(D _length == newLength)
*/
@property void length(size_t newLength)
{
assert(0);
}
/**
Inserts $(D stuff) in an unspecified position in the
container. Implementations should choose whichever insertion means is
the most advantageous for the container, but document the exact
behavior. $(D stuff) can be a value convertible to the element type of
the container, or a range of values convertible to it.
The $(D stable) version guarantees that ranges iterating over the
container are never invalidated. Client code that counts on
non-invalidating insertion should use $(D stableInsert). Such code would
not compile against containers that don't support it.
Returns: The number of elements added.
Complexity: $(BIGOH m * log(n)), where $(D m) is the number of
elements in $(D stuff)
*/
size_t insert(Stuff)(Stuff stuff)
{
assert(0);
}
///ditto
size_t stableInsert(Stuff)(Stuff stuff)
{
assert(0);
}
/**
Same as $(D insert(stuff)) and $(D stableInsert(stuff)) respectively,
but relax the complexity constraint to linear.
*/
size_t linearInsert(Stuff)(Stuff stuff)
{
assert(0);
}
///ditto
size_t stableLinearInsert(Stuff)(Stuff stuff)
{
assert(0);
}
/**
Picks one value in an unspecified position in the container, removes
it from the container, and returns it. Implementations should pick the
value that's the most advantageous for the container. The stable version
behaves the same, but guarantees that ranges iterating over the container
are never invalidated.
Precondition: $(D !empty)
Returns: The element removed.
Complexity: $(BIGOH log(n)).
*/
T removeAny()
{
assert(0);
}
/// ditto
T stableRemoveAny()
{
assert(0);
}
/**
Inserts $(D value) to the front or back of the container. $(D stuff)
can be a value convertible to the container's element type or a range
of values convertible to it. The stable version behaves the same, but
guarantees that ranges iterating over the container are never
invalidated.
Returns: The number of elements inserted
Complexity: $(BIGOH log(n)).
*/
size_t insertFront(Stuff)(Stuff stuff)
{
assert(0);
}
/// ditto
size_t stableInsertFront(Stuff)(Stuff stuff)
{
assert(0);
}
/// ditto
size_t insertBack(Stuff)(Stuff stuff)
{
assert(0);
}
/// ditto
size_t stableInsertBack(T value)
{
assert(0);
}
/**
Removes the value at the front or back of the container. The stable
version behaves the same, but guarantees that ranges iterating over
the container are never invalidated. The optional parameter $(D
howMany) instructs removal of that many elements. If $(D howMany > n),
all elements are removed and no exception is thrown.
Precondition: $(D !empty)
Complexity: $(BIGOH log(n)).
*/
void removeFront()
{
assert(0);
}
/// ditto
void stableRemoveFront()
{
assert(0);
}
/// ditto
void removeBack()
{
assert(0);
}
/// ditto
void stableRemoveBack()
{
assert(0);
}
/**
Removes $(D howMany) values at the front or back of the
container. Unlike the unparameterized versions above, these functions
do not throw if they could not remove $(D howMany) elements. Instead,
if $(D howMany > n), all elements are removed. The returned value is
the effective number of elements removed. The stable version behaves
the same, but guarantees that ranges iterating over the container are
never invalidated.
Returns: The number of elements removed
Complexity: $(BIGOH howMany * log(n)).
*/
size_t removeFront(size_t howMany)
{
assert(0);
}
/// ditto
size_t stableRemoveFront(size_t howMany)
{
assert(0);
}
/// ditto
size_t removeBack(size_t howMany)
{
assert(0);
}
/// ditto
size_t stableRemoveBack(size_t howMany)
{
assert(0);
}
/**
Removes all values corresponding to key $(D k).
Complexity: $(BIGOH m * log(n)), where $(D m) is the number of
elements with the same key.
Returns: The number of elements removed.
*/
size_t removeKey(KeyType k)
{
assert(0);
}
/**
Inserts $(D stuff) before, after, or instead range $(D r), which must
be a valid range previously extracted from this container. $(D stuff)
can be a value convertible to the container's element type or a range
of objects convertible to it. The stable version behaves the same, but
guarantees that ranges iterating over the container are never
invalidated.
Returns: The number of values inserted.
Complexity: $(BIGOH n + m), where $(D m) is the length of $(D stuff)
*/
size_t insertBefore(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/// ditto
size_t stableInsertBefore(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/// ditto
size_t insertAfter(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/// ditto
size_t stableInsertAfter(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/// ditto
size_t replace(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/// ditto
size_t stableReplace(Stuff)(Range r, Stuff stuff)
{
assert(0);
}
/**
Removes all elements belonging to $(D r), which must be a range
obtained originally from this container. The stable version behaves the
same, but guarantees that ranges iterating over the container are
never invalidated.
Returns: A range spanning the remaining elements in the container that
initially were right after $(D r).
Complexity: $(BIGOH m * log(n)), where $(D m) is the number of
elements in $(D r)
*/
Range remove(Range r)
{
assert(0);
}
/// ditto
Range stableRemove(Range r)
{
assert(0);
}
/**
Same as $(D remove) above, but has complexity relaxed to linear.
Returns: A range spanning the remaining elements in the container that
initially were right after $(D r).
Complexity: $(BIGOH n)
*/
Range linearRemove(Range r)
{
assert(0);
}
/// ditto
Range stableLinearRemove(Range r)
{
assert(0);
}
}
unittest {
TotalContainer!int test;
}
| D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt
module visuald.dproject;
import visuald.windows;
import core.stdc.string : memcpy;
import core.stdc.wchar_ : wcslen;
import core.thread;
import std.windows.charset;
import std.string;
import std.utf;
import std.file;
import std.path;
import std.conv;
import std.array;
static import std.process;
import stdext.path;
import xml = visuald.xmlwrap;
import sdk.win32.rpcdce;
import sdk.win32.oleauto;
import sdk.win32.objbase;
import sdk.vsi.vsshell;
import sdk.vsi.vsshell80;
import sdk.vsi.vsshell90;
import sdk.vsi.ivssccproject2;
import sdk.vsi.fpstfmt;
import dte = sdk.vsi.dte80a;
import visuald.comutil;
import visuald.logutil;
import visuald.automation;
import visuald.dpackage;
import visuald.propertypage;
import visuald.hierarchy;
import visuald.hierutil;
import visuald.fileutil;
import visuald.chiernode;
import visuald.chiercontainer;
import visuald.build;
import visuald.config;
import visuald.oledatasource;
import visuald.pkgutil;
import visuald.dimagelist;
///////////////////////////////////////////////////////////////
class ProjectFactory : DComObject, IVsProjectFactory
{
this(Package pkg)
{
//mPackage = pkg;
}
override HRESULT QueryInterface(const IID* riid, void** pvObject)
{
//mixin(LogCallMix);
if(queryInterface!(IVsProjectFactory) (this, riid, pvObject))
return S_OK;
return super.QueryInterface(riid, pvObject);
}
override int CanCreateProject(const wchar* pszFilename, const uint grfCreateFlags, int* pfCanCreate)
{
mixin(LogCallMix);
*pfCanCreate = 1;
return S_OK;
}
override int Close()
{
mixin(LogCallMix);
return S_OK;
}
override int CreateProject(const wchar* pszFilename, const wchar* pszLocation, const wchar* pszName, const VSCREATEPROJFLAGS grfCreateFlags,
const IID* iidProject, void** ppvProject, BOOL* pfCanceled)
{
mixin(LogCallMix);
version(none)
{
CoInitialize(null);
VCProjectEngine spEngine;
int hr = CoCreateInstance(&VCProjectEngineObject.iid, null, CLSCTX_INPROC_SERVER, &VCProjectEngine.iid, cast(void*)&spEngine);
if( hr != S_OK || !spEngine )
{
CoUninitialize();
return returnError(E_FAIL);
}
// Open an existing project.
IDispatch *spDispProj = spEngine.CreateProject(pszFilename);
if(!spDispProj)
{
CoUninitialize();
return returnError(E_FAIL);
}
} // version
if(grfCreateFlags & CPF_OPENFILE)
{
string filename = to_string(pszFilename);
string name = baseName(filename);
Project prj = newCom!Project(this, name, filename);
*pfCanceled = 0;
return prj.QueryInterface(iidProject, ppvProject);
}
else if(grfCreateFlags & CPF_CLONEFILE)
{
string src = to_string(pszFilename);
string name = to_string(pszName);
string dest = to_string(pszLocation) ~ name ~ "." ~ toUTF8(g_defaultProjectFileExtension);
if(!cloneProject(src, dest))
return returnError(E_FAIL);
//std.file.copy(to_wstring(pszFilename), to_wstring(pszLocation));
Project prj = newCom!Project(this, name, dest);
*pfCanceled = 0;
return prj.QueryInterface(iidProject, ppvProject);
}
return returnError(E_NOTIMPL);
}
override int SetSite(IServiceProvider psp)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
///////////////////////////////////////////////////////////////
bool cloneProjectFiles(string srcdir, string destdir, xml.Element node)
{
xml.Element[] folderItems = xml.elementsById(node, "Folder");
foreach(folder; folderItems)
if (!cloneProjectFiles(srcdir, destdir, folder))
return false;
xml.Element[] fileItems = xml.elementsById(node, "File");
foreach(file; fileItems)
{
string fileName = xml.getAttribute(file, "path");
string destfolder = dirName(destdir ~ fileName);
mkdirRecurse(destfolder);
std.file.copy(srcdir ~ fileName, destdir ~ fileName);
}
return true;
}
bool cloneProject(string src, string dest)
{
try
{
string srcdir = dirName(src) ~ "\\";
string destdir = dirName(dest) ~ "\\";
auto doc = Project.readXML(src);
if(!doc)
return false;
if(!cloneProjectFiles(srcdir, destdir, xml.getRoot(doc)))
return false;
if(!Project.saveXML(doc, dest))
return false;
return true;
}
catch(Exception e)
{
writeToBuildOutputPane(e.msg);
logCall(e.toString());
}
return false;
}
private:
//Package mPackage;
}
///////////////////////////////////////////////////////////////////////
class Project : CVsHierarchy,
IVsProject,
IVsParentProject,
IVsGetCfgProvider,
IVsProject3,
IVsHierarchyDeleteHandler,
IVsAggregatableProject,
IVsProjectFlavorCfgProvider,
IPersistFileFormat,
IVsProjectBuildSystem,
IVsBuildPropertyStorage,
IVsComponentUser,
IVsDependencyProvider,
ISpecifyPropertyPages,
IPerPropertyBrowsing,
dte.IVsGlobalsCallback,
IVsHierarchyDropDataSource2,
IVsHierarchyDropDataTarget,
IVsNonLocalProject,
//IRpcOptions,
IVsSccProject2,
//IBuildDependencyUpdate,
//IProjectEventsListener,
//IProjectEventsProvider,
//IReferenceContainerProvider,
IVsProjectSpecialFiles
{
static const GUID iid = { 0x5840c881, 0x9d9e, 0x4a85, [ 0xb7, 0x6b, 0x50, 0xa9, 0x68, 0xdb, 0x22, 0xf9 ] };
this(ProjectFactory factory, string name, string filename)
{
mFactory = factory;
mCaption = mName = name;
mFilename = filename;
mConfigProvider = addref(newCom!ConfigProvider(this));
parseXML();
}
this(ProjectFactory factory, string name, string filename, string platform, string config)
{
mFactory = factory;
mCaption = mName = name;
mFilename = filename;
mConfigProvider = addref(newCom!ConfigProvider(this));
if (platform && config)
mConfigProvider.addConfig(platform, config);
CProjectNode rootnode = newCom!CProjectNode(filename, this);
rootnode.SetName(name);
SetRootNode(rootnode);
}
override void Dispose()
{
mConfigProvider = release(mConfigProvider);
//mExtProject = release(mExtProject);
super.Dispose();
}
override HRESULT QueryInterface(const IID* riid, void** pvObject)
{
//mixin(LogCallMix);
if(queryInterface!(Project) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProject) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProject2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProject3) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsHierarchyDeleteHandler) (this, riid, pvObject))
return S_OK;
// if(queryInterface!(IVsParentProject) (this, riid, pvObject))
// return S_OK;
if(queryInterface!(IVsGetCfgProvider) (this, riid, pvObject))
return S_OK;
if(queryInterface!(ISpecifyPropertyPages) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsAggregatableProject) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProjectFlavorCfgProvider) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IPersist) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IPersistFileFormat) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsProjectBuildSystem) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsBuildPropertyStorage) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsComponentUser) (this, riid, pvObject))
return S_OK;
//if(queryInterface!(IVsDependencyProvider) (this, riid, pvObject))
// return S_OK;
if(queryInterface!(dte.IVsGlobalsCallback) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsHierarchyDropDataSource) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsHierarchyDropDataSource2) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsHierarchyDropDataTarget) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsNonLocalProject) (this, riid, pvObject))
return S_OK;
if(queryInterface!(IVsSccProject2) (this, riid, pvObject))
return S_OK;
//if(queryInterface!(IRpcOptions) (this, riid, pvObject))
// return S_OK;
//if(queryInterface!(IPerPropertyBrowsing) (this, riid, pvObject))
// return S_OK;
return super.QueryInterface(riid, pvObject);
}
// IDispatch
__gshared ComTypeInfoHolder mTypeHolder;
static void shared_static_this_typeHolder()
{
static class _ComTypeInfoHolder : ComTypeInfoHolder
{
override int GetIDsOfNames(
/* [size_is][in] */ const LPOLESTR *rgszNames,
/* [in] */ const UINT cNames,
/* [size_is][out] */ MEMBERID *pMemId)
{
//mixin(LogCallMix);
if (cNames == 1 && to_string(*rgszNames) == "Name")
{
*pMemId = 1;
return S_OK;
}
if (cNames == 1 && to_string(*rgszNames) == "__id")
{
*pMemId = 2;
return S_OK;
}
return returnError(E_NOTIMPL);
}
}
mTypeHolder = newCom!_ComTypeInfoHolder;
addref(mTypeHolder);
}
static void shared_static_dtor_typeHolder()
{
mTypeHolder = release(mTypeHolder);
}
override ComTypeInfoHolder getTypeHolder () { return mTypeHolder; }
override int Invoke(
/* [in] */ const DISPID dispIdMember,
/* [in] */ const IID* riid,
/* [in] */ const LCID lcid,
/* [in] */ const WORD wFlags,
/* [out][in] */ DISPPARAMS *pDispParams,
/* [out] */ VARIANT *pVarResult,
/* [out] */ EXCEPINFO *pExcepInfo,
/* [out] */ UINT *puArgErr)
{
mixin(LogCallMix);
if(dispIdMember == 1 || dispIdMember == 2)
{
if(pDispParams.cArgs == 0)
return GetProperty(VSITEMID_ROOT, VSHPROPID_Name, pVarResult);
}
return returnError(E_NOTIMPL);
}
// IVsProject
override int IsDocumentInProject(const LPCOLESTR pszMkDocument, BOOL* pfFound, VSDOCUMENTPRIORITY* pdwPriority, VSITEMID* pitemid)
{
mixin(LogCallMix);
string docName = to_string(pszMkDocument);
if(!isAbsolute(docName))
{
string root = dirName(GetRootNode().GetFullPath());
docName = root ~ "\\" ~ docName;
}
docName = toLower(docName);
CHierNode node = searchNode(GetRootNode(), delegate (CHierNode n) { return n.GetCanonicalName() == docName; });
if(node)
{
if(pfFound) *pfFound = true;
if(pitemid) *pitemid = node is GetRootNode() ? VSITEMID_ROOT : node.GetVsItemID();
if (pdwPriority) *pdwPriority = cast(CFileNode) node ? DP_Standard : DP_Intrinsic;
}
else
{
if(pfFound) *pfFound = false;
if(pitemid) *pitemid = VSITEMID_NIL;
if (pdwPriority) *pdwPriority = DP_Unsupported;
}
return S_OK;
}
override int OpenItem(const VSITEMID itemid, const GUID* rguidLogicalView, IUnknown punkDocDataExisting, IVsWindowFrame *ppWindowFrame)
{
mixin(LogCallMix);
if(CFileNode pNode = cast(CFileNode) VSITEMID2Node(itemid))
return OpenDoc(pNode, false /*fNewFile*/,
false /*fUseOpenWith*/,
false /*fShow*/,
rguidLogicalView,
&GUID_NULL, null,
punkDocDataExisting,
ppWindowFrame);
return returnError(E_UNEXPECTED);
}
override int GetItemContext(const VSITEMID itemid, IServiceProvider* ppSP)
{
logCall("GetItemContext(itemid=%s, ppSP=%s)", _toLog(itemid), _toLog(ppSP));
// NOTE: this method allows a project to provide project context services
// to an item (document) editor. If the project does not need to provide special
// services to its items then it should return null. Under no circumstances
// should you return the IServiceProvider pointer that was passed to our
// package from the Environment via IVsPackage::SetSite. The global services
// will automatically be made available to editors.
*ppSP = null;
return S_OK;
}
override int GenerateUniqueItemName(const VSITEMID itemidLoc, const wchar* pszExt, const wchar* pszSuggestedRoot, BSTR *pbstrItemName)
{
mixin(LogCallMix);
// as we are using virtual folders, just suggest a file in the project directory
string dir = dirName(GetProjectNode().GetFullPath());
string root = pszSuggestedRoot ? to_string(pszSuggestedRoot) : "File";
string ext = pszExt ? to_string(pszExt) : ".d";
for(int i = 1; i < int.max; i++)
{
string file = dir ~ "\\" ~ root ~ format("%d", i) ~ ext;
if(!std.file.exists(file))
{
*pbstrItemName = allocBSTR(file);
return S_OK;
}
}
return returnError(E_FAIL);
}
override int GetMkDocument(const VSITEMID itemid, BSTR *pbstrMkDocument)
{
mixin(LogCallMix2);
//logCall("%s.GetMkDocument(this=%s, itemid=%s, pbstrMkDocument=%s)", this, cast(void*)this, _toLog(itemid), _toLog(pbstrMkDocument));
if(CHierNode pNode = VSITEMID2Node(itemid))
{
*pbstrMkDocument = allocBSTR(pNode.GetFullPath());
logCall("%s.GetMkDocument returns pbstrMkDocument=%s", this, to_string(*pbstrMkDocument));
return S_OK;
}
return returnError(E_INVALIDARG);
}
override int AddItem(const VSITEMID itemidLoc, const VSADDITEMOPERATION dwAddItemOperation,
const LPCOLESTR pszItemName,
const ULONG cFilesToOpen, const LPCOLESTR * rgpszFilesToOpen,
const HWND hwndDlgOwner, VSADDRESULT* pResult)
{
mixin(LogCallMix);
return AddItemWithSpecific(
/* [in] VSITEMID itemidLoc */ itemidLoc,
/* [in] VSADDITEMOPERATION dwAddItemOperation */ dwAddItemOperation,
/* [in] LPCOLESTR pszItemName */ pszItemName,
/* [in] ULONG cFilesToOpen */ cFilesToOpen,
/* [in] LPCOLESTR rgpszFilesToOpen[] */ rgpszFilesToOpen,
/* [in] HWND hwndDlg */ hwndDlgOwner,
/* [in] VSSPECIFICEDITORFLAGS grfEditorFlags */ VSSPECIFICEDITOR_DoOpen | VSSPECIFICEDITOR_UseView,
/* [in] REFGUID rguidEditorType */ &GUID_NULL,
/* [in] LPCOLESTR pszPhysicalView */ null,
/* [in] REFGUID rguidLogicalView */ &GUID_NULL, //LOGVIEWID_Primary,
/* [out] VSADDRESULT * pResult */ pResult);
}
// IVsProject2
override int RemoveItem(
/* [in] */ const DWORD dwReserved,
/* [in] */ const VSITEMID itemid,
/* [retval][out] */ BOOL *pfResult)
{
mixin(LogCallMix);
if(itemid == VSITEMID_ROOT || itemid == VSITEMID_NIL)
return E_UNEXPECTED;
int hr = DeleteItem(DELITEMOP_RemoveFromProject, itemid);
*pfResult = SUCCEEDED(hr);
return hr;
}
override int ReopenItem(
/* [in] */ const VSITEMID itemid,
/* [in] */ const GUID* rguidEditorType,
/* [in] */ const wchar* pszPhysicalView,
/* [in] */ const GUID* rguidLogicalView,
/* [in] */ IUnknown punkDocDataExisting,
/* [retval][out] */ IVsWindowFrame *ppWindowFrame)
{
mixin(LogCallMix);
if(CFileNode pNode = cast(CFileNode) VSITEMID2Node(itemid))
return OpenDoc(pNode, false /*fNewFile*/,
false /*fUseOpenWith*/,
false /*fShow*/,
rguidLogicalView,
rguidEditorType, pszPhysicalView,
punkDocDataExisting,
ppWindowFrame);
return returnError(E_UNEXPECTED);
}
// IVsProject3
override int AddItemWithSpecific(
/* [in] */ const VSITEMID itemidLoc,
/* [in] */ const VSADDITEMOPERATION dwAddItemOperation,
/* [in] */ const wchar* pszItemName,
/* [in] */ const uint cFilesToOpen,
/* [size_is][in] */ const LPCOLESTR* rgpszFilesToOpen,
/* [in] */ const HWND hwndDlgOwner,
/* [in] */ const VSSPECIFICEDITORFLAGS grfEditorFlags,
/* [in] */ const GUID* rguidEditorType,
/* [in] */ const LPCOLESTR pszPhysicalView,
/* [in] */ const GUID* rguidLogicalView,
/* [retval][out] */ VSADDRESULT* pResult)
{
// AddItemWithSpecific is used to add item(s) to the project and
// additionally ask the project to open the item using the specified
// editor information. An extension of IVsProject::AddItem().
mixin(LogCallMix);
if(CHierContainer pNode = cast(CHierContainer) VSITEMID2Node(itemidLoc))
{
return AddItemSpecific(pNode,
/* [in] VSADDITEMOPERATION dwAddItemOperation */ dwAddItemOperation,
/* [in] LPCOLESTR pszItemName */ pszItemName,
/* [in] DWORD cFilesToOpen */ cFilesToOpen,
/* [in] LPCOLESTR rgpszFilesToOpen[] */ rgpszFilesToOpen,
/* [in] HWND hwndDlg */ hwndDlgOwner,
/* [in] VSSPECIFICEDITORFLAGS grfEditorFlags */ grfEditorFlags,
/* [in] REFGUID rguidEditorType */ rguidEditorType,
/* [in] LPCOLESTR pszPhysicalView */ pszPhysicalView,
/* [in] REFGUID rguidLogicalView*/ rguidLogicalView,
/* [in] bool moveIfInProject */ false,
/* [out] VSADDRESULT *pResult */ pResult);
}
return returnError(E_UNEXPECTED);
}
override int OpenItemWithSpecific(
/* [in] */ const VSITEMID itemid,
/* [in] */ const VSSPECIFICEDITORFLAGS grfEditorFlags,
/* [in] */ const GUID* rguidEditorType,
/* [in] */ const wchar* pszPhysicalView,
/* [in] */ const GUID* rguidLogicalView,
/* [in] */ IUnknown punkDocDataExisting,
/* [out] */ IVsWindowFrame *ppWindowFrame)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int TransferItem(
/* [in] */ const wchar* pszMkDocumentOld,
/* [in] */ const wchar* pszMkDocumentNew,
/* [in] */ IVsWindowFrame punkWindowFrame)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int QueryDeleteItem(
/* [in] */ const VSDELETEITEMOPERATION dwDelItemOp,
/* [in] */ const VSITEMID itemid,
/* [retval][out] */ BOOL *pfCanDelete)
{
// mixin(LogCallMix);
bool canDelete = true;
if(dwDelItemOp == DELITEMOP_DeleteFromStorage)
{
CHierNode[] nodes = VSITEMID2Nodes(itemid);
foreach(n; nodes)
if(cast(CHierContainer) n)
canDelete = false;
}
*pfCanDelete = canDelete; //(dwDelItemOp == DELITEMOP_RemoveFromProject);
return S_OK;
}
override int DeleteItem(
/* [in] */ const VSDELETEITEMOPERATION dwDelItemOp,
/* [in] */ const VSITEMID itemid)
{
mixin(LogCallMix);
// the root item will be removed without asking the project itself
if(itemid == VSITEMID_ROOT || itemid == VSITEMID_NIL) // || dwDelItemOp != DELITEMOP_RemoveFromProject)
return E_INVALIDARG;
CHierNode[] nodes = VSITEMID2Nodes(itemid);
if(nodes.length == 0)
return S_OK;
version(none)
{
int delFiles = Package.GetGlobalOptions().deleteFiles;
if(delFiles == 0)
{
string sfiles = (nodes.length == 1 ? "file" : to!string(nodes.length) ~ " files");
int answer = UtilMessageBox("Do you want to delete the " ~ sfiles ~ " on disk?\n\n" ~
"You can permanently answer this dialog in the global Visual D settings.", MB_YESNOCANCEL | MB_ICONEXCLAMATION,
"Remove file from project");
if(answer == IDCANCEL)
return S_FALSE;
if(answer == IDYES)
delFiles = 1;
else
delFiles = -1;
}
}
foreach(node; nodes)
{
if(!node)
return E_INVALIDARG;
if(CFileNode fnode = cast(CFileNode) node)
{
string fname = fnode.GetFullPath();
if(HRESULT hr = fnode.CloseDoc(SLNSAVEOPT_PromptSave))
return hr;
if(dwDelItemOp == DELITEMOP_DeleteFromStorage)
moveFileToRecycleBin(fname);
//std.file.remove(fname);
}
if(node.GetParent()) // might be already removed because folder has been removed?
node.GetParent().Delete(node, this);
}
return S_OK;
}
// IVsHierarchy
override int Close()
{
mixin(LogCallMix);
if(int rc = super.Close())
return rc;
return S_OK;
}
override int GetGuidProperty(const VSITEMID itemid, const VSHPROPID propid, GUID* pguid)
{
mixin(LogCallMix);
if(itemid == VSITEMID_ROOT)
{
switch(propid)
{
case VSHPROPID_ProjectIDGuid:
*pguid = mProjectGUID;
return S_OK;
case VSHPROPID_TypeGuid:
*pguid = g_projectFactoryCLSID;
return S_OK;
default:
break;
}
}
return super.GetGuidProperty(itemid, propid, pguid);
}
/*override*/ int SetGuidProperty(const VSITEMID itemid, const VSHPROPID propid, const GUID* rguid)
{
mixin(LogCallMix2);
if(propid != VSHPROPID_ProjectIDGuid)
return returnError(E_NOTIMPL);
if(itemid != VSITEMID_ROOT)
return returnError(E_INVALIDARG);
mProjectGUID = *rguid;
return S_OK;
}
override int GetProperty(const VSITEMID itemid, const VSHPROPID propid, VARIANT* var)
{
//mixin(LogCallMix);
if(itemid == VSITEMID_ROOT)
{
// handle project specific stuff before generic node properties
switch(propid)
{
case VSHPROPID_ExtObject:
var.vt = VT_DISPATCH;
if(!mExtProject)
mExtProject = /*addref*/(newCom!ExtProject(this));
var.pdispVal = addref(mExtProject);
return S_OK;
/+
case -2156: // VSHPROPID_CanBuildQuickCheck
var.vt = VT_INT;
var.intVal = -2;
return S_OK;
+/
default:
break;
}
}
if(super.GetProperty(itemid, propid, var) == S_OK)
return S_OK;
if(itemid != VSITEMID_ROOT)
{
logCall("Getting unknown property %d for item %x!", propid, itemid);
return returnError(DISP_E_MEMBERNOTFOUND);
}
switch(propid)
{
case VSHPROPID_TypeName:
var.vt = VT_BSTR;
var.bstrVal = allocBSTR("typename");
break;
case VSHPROPID_SaveName:
var.vt = VT_BSTR;
var.bstrVal = allocBSTR(mFilename);
break;
version(none)
{
case VSHPROPID_ProductBrandName:
var.vt = VT_BSTR;
var.bstrVal = allocBSTR("VisualD");
break;
}
case VSHPROPID_BrowseObject:
var.vt = VT_DISPATCH;
return QueryInterface(&IDispatch.iid, cast(void **)&var.pdispVal);
case VSHPROPID_ConfigurationProvider:
var.vt = VT_UNKNOWN;
return GetCfgProvider(cast(IVsCfgProvider*)&var.punkVal);
//return QueryInterface(&IVsGetCfgProvider.iid, cast(void **)&var.punkVal);
case VSHPROPID_ProjectDir:
// IsNonSearchable, HasEnumerationSideEffects
// 1001
//case VSHPROPID2.EnableDataSourceWindow:
//case VSHPROPID2.DebuggeeProcessId:
case cast(VSHPROPID) 1001:
default:
logCall("Getting unknown property %d for item %x!", propid, itemid);
return DISP_E_MEMBERNOTFOUND;
// return returnError(E_NOTIMPL); // DISP_E_MEMBERNOTFOUND;
}
return S_OK;
}
override int SetProperty(const VSITEMID itemid, const VSHPROPID propid, const VARIANT var)
{
mixin(LogCallMix);
switch(propid)
{
case VSHPROPID_Caption:
if(var.vt != VT_BSTR)
return returnError(E_INVALIDARG);
mCaption = to_string(var.bstrVal);
break;
default:
HRESULT hr = super.SetProperty(itemid, propid, var);
if(hr == S_OK)
break;
logCall("Setting unknown property %d on %x!", propid, itemid);
return hr;
}
return S_OK;
}
override int AdviseHierarchyEvents(IVsHierarchyEvents pEventSink, uint *pdwCookie)
{
// use this as an callback of the project load being complete
if(mLastHierarchyEventSinkCookie == 0)
Package.scheduleUpdateLibrary();
return super.AdviseHierarchyEvents(pEventSink, pdwCookie);
}
// IVsGetCfgProvider
override int GetCfgProvider(IVsCfgProvider* pCfgProvider)
{
//mixin(LogCallMix);
*pCfgProvider = addref(mConfigProvider);
return S_OK;
}
// ISpecifyPropertyPages
override int GetPages( /* [out] */ CAUUID *pPages)
{
// needs common properties to not open settings dialog modal
mixin(LogCallMix);
return PropertyPageFactory.GetCommonPages(pPages);
}
// IVsAggregatableProject
override int SetInnerProject(
/* [in] */ IUnknown punkInner)
{
logCall("%S.SetInnerProject(punkInner=%s)", this, _toLog(punkInner));
return returnError(E_NOTIMPL);
}
override int InitializeForOuter(
/* [in] */ const wchar* pszFilename,
/* [in] */ const wchar* pszLocation,
/* [in] */ const wchar* pszName,
/* [in] */ const VSCREATEPROJFLAGS grfCreateFlags,
/* [in] */ const IID* iidProject,
/* [iid_is][out] */ void **ppvProject,
/* [out] */ BOOL *pfCanceled)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int OnAggregationComplete()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int GetAggregateProjectTypeGuids(
/* [out] */ BSTR *pbstrProjTypeGuids)
{
logCall("GetAggregateProjectTypeGuids(pbstrProjTypeGuids=%s)", _toLog(pbstrProjTypeGuids));
wstring s = GUID2wstring(g_projectFactoryCLSID);
*pbstrProjTypeGuids = allocwBSTR(s);
return S_OK;
}
override int SetAggregateProjectTypeGuids(
/* [in] */ const wchar* lpstrProjTypeGuids)
{
logCall("SetAggregateProjectTypeGuids(lpstrProjTypeGuids=%s)", _toLog(lpstrProjTypeGuids));
return returnError(E_NOTIMPL);
}
// IVsProjectFlavorCfgProvider
override int CreateProjectFlavorCfg(
/* [in] */ IVsCfg pBaseProjectCfg,
/* [out] */ IVsProjectFlavorCfg *ppFlavorCfg)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IPersist
override int GetClassID(CLSID* pClassID)
{
mixin(LogCallMix2);
*cast(GUID*)pClassID = g_projectFactoryCLSID;
return S_OK;
}
// IPersistFileFormat
override int IsDirty(
/* [out] */ BOOL *pfIsDirty)
{
logCall("IsDirty(pfIsDirty=%s)", _toLog(pfIsDirty));
if(CProjectNode pProjectNode = GetProjectNode())
*pfIsDirty = pProjectNode.IsProjectFileDirty();
else
return E_FAIL;
return S_OK;
}
override int InitNew(
/* [in] */ const DWORD nFormatIndex)
{
logCall("InitNew(nFormatIndex=%s)", _toLog(nFormatIndex));
// mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int Load(
/* [in] */ const wchar* pszFilename,
/* [in] */ const DWORD grfMode,
/* [in] */ const BOOL fReadOnly)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int Save(
/* [in] */ const wchar* pszFilename,
/* [in] */ const BOOL fRemember,
/* [in] */ const DWORD nFormatIndex)
{
mixin(LogCallMix);
string filename = to_string(pszFilename);
bool msbuild = filename.toLower().endsWith(".dproj");
auto doc = msbuild ? createMSBuildDoc() : createDoc();
if(!saveXML(doc, filename))
return returnError(E_FAIL);
return S_OK;
}
override int SaveCompleted(
/* [in] */ const wchar* pszFilename)
{
logCall("SaveCompleted(pszFilename=%s)", _toLog(pszFilename));
if(mFilename == to_string(pszFilename)) // autosave?
if(CProjectNode pProjectNode = GetProjectNode())
pProjectNode.SetProjectFileDirty(false);
return S_OK; //returnError(E_NOTIMPL);
}
override int GetCurFile(
/* [out] */ LPOLESTR *ppszFilename,
/* [out] */ DWORD *pnFormatIndex)
{
mixin(LogCallMix);
*ppszFilename = string2OLESTR(mFilename);
*pnFormatIndex = 0;
return S_OK;
}
override int GetFormatList(
/* [out] */ LPOLESTR *ppszFormatList)
{
logCall("GetFormatList(pbstrProjTypeGuids=%s)", _toLog(ppszFormatList));
return returnError(E_NOTIMPL);
}
// IVsProjectBuildSystem
override int SetHostObject(
/* [in] */ const wchar* pszTargetName,
/* [in] */ const wchar* pszTaskName,
/* [in] */ IUnknown punkHostObject)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int StartBatchEdit()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int EndBatchEdit()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int CancelBatchEdit()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int BuildTarget(
/* [in] */ const wchar* pszTargetName,
/* [retval][out] */ VARIANT_BOOL *pbSuccess)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int GetBuildSystemKind(
/* [retval][out] */ BuildSystemKindFlags *pBuildSystemKind)
{
// mixin(LogCallMix);
enum _BuildSystemKindFlags2
{
BSK_MSBUILD_VS9 = 1,
BSK_MSBUILD_VS10 = 2,
}
bool msbuild = mFilename.toLower().endsWith(".dproj");
*pBuildSystemKind = msbuild ? _BuildSystemKindFlags2.BSK_MSBUILD_VS10 : _BuildSystemKindFlags2.BSK_MSBUILD_VS9;
return S_OK;
}
// IVsBuildPropertyStorage
override int GetPropertyValue(
/* [in] */ const wchar* pszPropName,
/* [in] */ const wchar* pszConfigName,
/* [in] */ const PersistStorageType storage,
/* [retval][out] */ BSTR *pbstrPropValue)
{
mixin(LogCallMix);
string prop = to_string(pszPropName);
string value;
/+
if(prop == "RegisterOutputPackage")
value = "true";
+/
if(value.length == 0)
return DISP_E_MEMBERNOTFOUND;
*pbstrPropValue = allocBSTR(value);
return S_OK;
}
override int SetPropertyValue(
/* [in] */ const wchar* pszPropName,
/* [in] */ const wchar* pszConfigName,
/* [in] */ const PersistStorageType storage,
/* [in] */ const wchar* pszPropValue)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int RemoveProperty(
/* [in] */ const wchar* pszPropName,
/* [in] */ const wchar* pszConfigName,
/* [in] */ const PersistStorageType storage)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int GetItemAttribute(
/* [in] */ const VSITEMID item,
/* [in] */ const wchar* pszAttributeName,
/* [out] */ BSTR *pbstrAttributeValue)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int SetItemAttribute(
/* [in] */ const VSITEMID item,
/* [in] */ const wchar* pszAttributeName,
/* [in] */ const wchar* pszAttributeValue)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IVsComponentUser
override int AddComponent(
/* [in] */ const VSADDCOMPOPERATION dwAddCompOperation,
/* [in] */ const ULONG cComponents,
/* [size_is][in] */ const PVSCOMPONENTSELECTORDATA *rgpcsdComponents,
/* [in] */ const HWND hwndPickerDlg,
/* [retval][out] */ VSADDCOMPRESULT *pResult)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IVsDependencyProvider
override int EnumDependencies(
/* [out] */ IVsEnumDependencies *ppIVsEnumDependencies)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int OpenDependency(
/* [in] */ const wchar* szDependencyCanonicalName,
/* [out] */ IVsDependency *ppIVsDependency)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IVsProjectSpecialFiles
override int GetFile(
/* [in] */ const PSFFILEID fileID,
/* [in] */ const PSFFLAGS grfFlags,
/* [out] */ VSITEMID *pitemid,
/* [out] */ BSTR *pbstrFilename)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IVsParentProject
override int OpenChildren()
{
mixin(LogCallMix);
// config not yet known here
return returnError(E_NOTIMPL);
}
override int CloseChildren()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// CVsHierarchy
override HRESULT QueryStatusSelection(const GUID *pguidCmdGroup,
const ULONG cCmds, OLECMD *prgCmds, OLECMDTEXT *pCmdText,
ref CHierNode[] rgSelection,
bool bIsHierCmd)// TRUE if cmd originated via CVSUiHierarchy::ExecCommand
{
assert(pguidCmdGroup);
assert(prgCmds);
assert(cCmds == 1);
HRESULT hr = S_OK;
bool fHandled = false;
bool fSupported = false;
bool fEnabled = false;
bool fInvisible = false;
bool fLatched = false;
OLECMD *Cmd = prgCmds;
if (*pguidCmdGroup == CMDSETID_StandardCommandSet97)
{
// NOTE: We only want to support Cut/Copy/Paste/Delete/Rename commands
// if focus is in the project window. This means that we should only
// support these commands if they are dispatched via IVsUIHierarchy
// interface and not if they are dispatch through IOleCommandTarget
// during the command routing to the active project/hierarchy.
if(!bIsHierCmd)
{
switch(Cmd.cmdID)
{
case cmdidCut:
case cmdidCopy:
case cmdidPaste:
case cmdidRename:
return OLECMDERR_E_NOTSUPPORTED;
default:
break;
}
}
switch(Cmd.cmdID)
{
// Forward the following commands to the project node whenever our project is
// the active project.
case cmdidAddNewItem:
case cmdidAddExistingItem:
case cmdidBuildSel:
case cmdidRebuildSel:
case cmdidCleanSel:
case cmdidCancelBuild:
case cmdidProjectSettings:
case cmdidBuildSln:
case cmdidUnloadProject:
case cmdidSetStartupProject:
return GetProjectNode().QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText);
default:
break;
}
}
else if(*pguidCmdGroup == CMDSETID_StandardCommandSet2K)
{
switch(Cmd.cmdID)
{
case cmdidBuildOnlyProject:
case cmdidRebuildOnlyProject:
case cmdidCleanOnlyProject:
return GetProjectNode().QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText);
case ECMD_SHOWALLFILES:
debug
{
Cmd.cmdf = OLECMDF_SUPPORTED | OLECMDF_ENABLED;
return hr;
}
default:
break;
}
}
else if(*pguidCmdGroup == g_commandSetCLSID)
{
switch(Cmd.cmdID)
{
case CmdNewPackage:
case CmdNewFilter:
case CmdDubUpgrade:
case CmdDubRefresh:
return GetProjectNode().QueryStatus(pguidCmdGroup, cCmds, prgCmds, pCmdText);
default:
break;
}
}
// Node commands
if (!fHandled)
{
fHandled = true;
OLECMD cmdTemp;
cmdTemp.cmdID = Cmd.cmdID;
fSupported = false;
fEnabled = true;
fInvisible = false;
fLatched = true;
foreach (pNode; rgSelection)
{
cmdTemp.cmdf = 0;
hr = pNode.QueryStatus(pguidCmdGroup, 1, &cmdTemp, pCmdText);
if (SUCCEEDED(hr))
{
//
// cmd is supported iff any node supports cmd
// cmd is enabled iff all nodes enable cmd
// cmd is invisible iff any node sets invisibility
// cmd is latched only if all are latched.
fSupported = fSupported || (cmdTemp.cmdf & OLECMDF_SUPPORTED);
fEnabled = fEnabled && (cmdTemp.cmdf & OLECMDF_ENABLED);
fInvisible = fInvisible || (cmdTemp.cmdf & OLECMDF_INVISIBLE);
fLatched = fLatched && (cmdTemp.cmdf & OLECMDF_LATCHED);
//NOTE: Currently no commands use NINCHED
assert(!(cmdTemp.cmdf & OLECMDF_NINCHED));
}
// optimization
if (!fSupported || fInvisible)
break;
}
}
if (SUCCEEDED(hr) && fSupported)
{
Cmd.cmdf = OLECMDF_SUPPORTED;
if (fEnabled)
Cmd.cmdf |= OLECMDF_ENABLED;
if (fInvisible)
Cmd.cmdf |= OLECMDF_INVISIBLE;
if (fLatched)
Cmd.cmdf |= OLECMDF_LATCHED;
}
return hr;
}
// IVsGlobalsCallback
override int WriteVariablesToData(
/* [in] */ const wchar* pVariableName,
/* [in] */ const VARIANT *varData)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int ReadData(/* [in] */ dte.Globals pGlobals)
{
logCall("%s.ReadData(pGlobals=%s)", this, _toLog(pGlobals));
return returnError(E_NOTIMPL);
}
override int ClearVariables()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int VariableChanged()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int CanModifySource()
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int GetParent(IDispatch *ppOut)
{
logCall("%s.GetParent()", this);
return returnError(E_NOTIMPL);
}
// IPerPropertyBrowsing
override int GetDisplayString(
/* [in] */ const DISPID dispID,
/* [out] */ BSTR *pBstr)
{
logCall("%s.GetDisplayString(dispID=%s, pBstr=%s)", this, _toLog(dispID), _toLog(pBstr));
return returnError(E_NOTIMPL);
}
override int MapPropertyToPage(
/* [in] */ const DISPID dispID,
/* [out] */ CLSID *pClsid)
{
mixin(LogCallMix);
*cast(GUID*)pClsid = g_GeneralPropertyPage;
return S_OK;
//return returnError(E_NOTIMPL);
}
override int GetPredefinedStrings(
/* [in] */ const DISPID dispID,
/* [out] */ CALPOLESTR *pCaStringsOut,
/* [out] */ CADWORD *pCaCookiesOut)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
override int GetPredefinedValue(
/* [in] */ const DISPID dispID,
/* [in] */ const DWORD dwCookie,
/* [out] */ VARIANT *pVarOut)
{
mixin(LogCallMix);
return returnError(E_NOTIMPL);
}
// IVsNonLocalProject
override HRESULT EnsureLocalCopy(const VSITEMID itemid)
{
logCall("%s.EnsureLocalCopy(this=%s, itemid=%x)", this, cast(void*)this, itemid);
return S_OK;
}
/+
// IRpcOptions
override HRESULT Set(/+[in]+/ IUnknown pPrx, in DWORD dwProperty, const ULONG_PTR dwValue)
{
mixin(LogCallMix);
return E_NOTIMPL;
}
override HRESULT Query(/+[in]+/ IUnknown pPrx, const DWORD dwProperty, /+[out]+/ ULONG_PTR * pdwValue)
{
mixin(LogCallMix);
if(dwProperty == COMBND_RPCTIMEOUT)
*pdwValue = RPC_C_BINDING_MAX_TIMEOUT;
else if(dwProperty == COMBND_SERVER_LOCALITY)
*pdwValue = SERVER_LOCALITY_PROCESS_LOCAL;
else
return E_NOTIMPL;
return S_OK;
}
+/
// IVsSccProject2
override HRESULT SccGlyphChanged(const int cAffectedNodes,
/+[size_is(cAffectedNodes)]+/const VSITEMID *rgitemidAffectedNodes,
/+[size_is(cAffectedNodes)]+/const VsStateIcon *rgsiNewGlyphs,
/+[size_is(cAffectedNodes)]+/const DWORD *rgdwNewSccStatus)
{
mixin(LogCallMix);
if(cAffectedNodes == 0)
{
searchNode(GetRootNode(), delegate (CHierNode n)
{
foreach (advise; mHierarchyEventSinks)
advise.OnPropertyChanged(GetVsItemID(n), VSHPROPID_StateIconIndex, 0);
return false;
});
}
else
{
for(int i = 0; i < cAffectedNodes; i++)
foreach (advise; mHierarchyEventSinks)
advise.OnPropertyChanged(rgitemidAffectedNodes[i], VSHPROPID_StateIconIndex, 0);
}
return S_OK;
}
override HRESULT SetSccLocation(const LPCOLESTR pszSccProjectName, // opaque to project
const LPCOLESTR pszSccAuxPath, // opaque to project
const LPCOLESTR pszSccLocalPath, // opaque to project
const LPCOLESTR pszSccProvider) // opaque to project
{
mixin(LogCallMix);
return E_NOTIMPL;
}
override HRESULT GetSccFiles(const VSITEMID itemid, // Node in project hierarchy
/+[out]+/ CALPOLESTR *pCaStringsOut, // Files associated with node
/+[out]+/ CADWORD *pCaFlagsOut) // Flags per file
{
mixin(LogCallMix);
CHierNode node = VSITEMID2Node(itemid);
if(node)
{
pCaStringsOut.pElems = cast(wchar**) CoTaskMemAlloc(pCaStringsOut.pElems[0].sizeof);
pCaStringsOut.cElems = 1;
pCaStringsOut.pElems[0] = string2OLESTR(node.GetFullPath());
pCaFlagsOut.pElems = cast(uint*) CoTaskMemAlloc(pCaFlagsOut.pElems[0].sizeof);
pCaFlagsOut.cElems = 1;
pCaFlagsOut.pElems[0] = SFF_NoFlags;
logCall(" %s.GetSccFiles returns %s", this, _toLog(pCaStringsOut.pElems[0]));
return S_OK;
}
return S_FALSE;
}
override HRESULT GetSccSpecialFiles(const VSITEMID itemid, // node in project hierarchy
const LPCOLESTR pszSccFile, // one of the files associated with the node
/+[out]+/ CALPOLESTR *pCaStringsOut, // special files associated with above file
/+[out]+/ CADWORD *pCaFlagsOut) // flags per special file
{
mixin(LogCallMix);
return E_NOTIMPL;
}
///////////////////////////////////////////////////////////////////////
// IVsHierarchyDropDataSource
override int GetDropInfo(
/* [out] */ DWORD *pdwOKEffects,
/* [out] */ IDataObject *ppDataObject,
/* [out] */ IDropSource *ppDropSource)
{
mixin(LogCallMix);
*pdwOKEffects = DROPEFFECT_NONE;
*ppDataObject = null;
*ppDropSource = null;
HRESULT hr = PackageSelectionDataObject(ppDataObject, FALSE);
if(FAILED(hr))
return returnError(hr);
*pdwOKEffects = DROPEFFECT_MOVE | DROPEFFECT_COPY;
mDDT = DropDataType.DDT_VSREF;
mfDragSource = TRUE;
return S_OK;
}
override int OnDropNotify(
/* [in] */ const BOOL fDropped,
/* [in] */ const DWORD dwEffects)
{
mixin(LogCallMix);
mfDragSource = FALSE;
mDDT = DropDataType.DDT_NONE;
return CleanupSelectionDataObject(fDropped, FALSE, dwEffects == DROPEFFECT_MOVE);
}
// IVsHierarchyDropDataSource2
override int OnBeforeDropNotify(
/* [in] */ IDataObject pDataObject,
/* [in] */ const DWORD dwEffect,
/* [retval][out] */ BOOL *pfCancelDrop)
{
mixin(LogCallMix);
if (pfCancelDrop)
*pfCancelDrop = FALSE;
HRESULT hr = S_OK;
// check for dirty documents
BOOL fDirty = FALSE;
for (ULONG i = 0; i < mItemSelDragged.length; i++)
{
CFileNode pFileNode = cast(CFileNode) VSITEMID2Node(mItemSelDragged[i].itemid);
if (!pFileNode)
continue;
bool fDirtyDoc = FALSE;
bool fOpenByUs = FALSE;
hr = pFileNode.GetDocInfo(
/* [out, opt] BOOL* pfOpen */ null, // true if the doc is opened
/* [out, opt] BOOL* pfDirty */ &fDirtyDoc, // true if the doc is dirty
/* [out, opt] BOOL* pfOpenByUs */ &fOpenByUs, // true if opened by our project
/* [out, opt] VSDOCCOOKIE* pVsDocCookie*/ null);// VSDOCCOOKIE if open
if (FAILED(hr))
continue;
if (fDirtyDoc && fOpenByUs)
{
fDirty = TRUE;
break;
}
}
// if there are no dirty docs we are ok to proceed
if (!fDirty)
return S_OK;
// prompt to save if there are dirty docs
string caption = "Visual Studio D'n'D";
string prompt = "Save modified documents?";
int msgRet = UtilMessageBox(prompt, MB_YESNOCANCEL | MB_ICONEXCLAMATION, caption);
switch (msgRet)
{
case IDYES:
break;
case IDNO:
return S_OK;
case IDCANCEL:
if (pfCancelDrop)
*pfCancelDrop = TRUE;
return S_OK;
default:
assert(_false);
return S_OK;
}
for (ULONG i = 0; i < mItemSelDragged.length; i++)
{
if(CFileNode pFileNode = cast(CFileNode) VSITEMID2Node(mItemSelDragged[i].itemid))
hr = pFileNode.SaveDoc(SLNSAVEOPT_SaveIfDirty);
}
return returnError(hr);
}
// IVsHierarchyDropDataTarget
override int DragEnter(
/* [in] */ IDataObject pDataObject,
/* [in] */ const DWORD grfKeyState,
/* [in] */ const VSITEMID itemid,
/* [out][in] */ DWORD *pdwEffect)
{
mixin(LogCallMix);
*pdwEffect = DROPEFFECT_NONE;
if (mfDragSource)
return S_OK;
if(HRESULT hr = QueryDropDataType(pDataObject))
return hr;
return QueryDropEffect(mDDT, grfKeyState, pdwEffect);
}
override int DragOver(
/* [in] */ const DWORD grfKeyState,
/* [in] */ const VSITEMID itemid,
/* [out][in] */ DWORD *pdwEffect)
{
mixin(LogCallMix);
return QueryDropEffect(mDDT, grfKeyState, pdwEffect);
}
override int DragLeave()
{
mixin(LogCallMix);
if (!mfDragSource)
mDDT = DropDataType.DDT_NONE;
return S_OK;
}
override int Drop(
/* [in] */ IDataObject pDataObject,
/* [in] */ const DWORD grfKeyState,
/* [in] */ const VSITEMID itemid,
/* [out][in] */ DWORD *pdwEffect)
{
mixin(LogCallMix);
if (!pDataObject)
return E_INVALIDARG;
if (!pdwEffect)
return E_POINTER;
*pdwEffect = DROPEFFECT_NONE;
HRESULT hr = S_OK;
// if (mfDragSource)
// return S_OK;
CHierNode dropNode = VSITEMID2Node(itemid);
if(!dropNode)
dropNode = GetProjectNode();
CHierContainer dropContainer = cast(CHierContainer) dropNode;
if(!dropContainer)
dropContainer = dropNode.GetParent();
DropDataType ddt;
hr = ProcessSelectionDataObject(dropContainer,
/* [in] IDataObject* pDataObject*/ pDataObject,
/* [in] DWORD grfKeyState*/ grfKeyState,
/* [out] DropDataType* */ &ddt);
// We need to report our own errors.
if(FAILED(hr) && hr != E_UNEXPECTED && hr != OLE_E_PROMPTSAVECANCELLED)
{
UtilReportErrorInfo(hr);
}
// If it is a drop from windows and we get any kind of error we return S_FALSE and dropeffect none. This
// prevents bogus messages from the shell from being displayed
if(FAILED(hr) && ddt == DropDataType.DDT_SHELL)
{
hr = S_FALSE;
}
if (hr == S_OK)
QueryDropEffect(ddt, grfKeyState, pdwEffect);
return hr;
}
enum DropDataType //Drop types
{
DDT_NONE,
DDT_SHELL,
DDT_VSSTG,
DDT_VSREF
};
enum ushort CF_HDROP = 15; // winuser.h
int QueryDropDataType(IDataObject pDataObject)
{
mDDT = DropDataType.DDT_NONE;
// known formats include File Drops (as from WindowsExplorer),
// VSProject Reference Items and VSProject Storage Items.
FORMATETC fmtetc, fmtetcRef, fmtetcStg;
fmtetc.cfFormat = CF_HDROP;
fmtetc.ptd = null;
fmtetc.dwAspect = DVASPECT_CONTENT;
fmtetc.lindex = -1;
fmtetc.tymed = TYMED_HGLOBAL;
fmtetcRef.cfFormat = cast(CLIPFORMAT) RegisterClipboardFormatW("CF_VSREFPROJECTITEMS"w.ptr);
fmtetcRef.ptd = null;
fmtetcRef.dwAspect = DVASPECT_CONTENT;
fmtetcRef.lindex = -1;
fmtetcRef.tymed = TYMED_HGLOBAL;
fmtetcStg.cfFormat = cast(CLIPFORMAT) RegisterClipboardFormatW("CF_VSSTGPROJECTITEMS"w.ptr);
fmtetcStg.ptd = null;
fmtetcStg.dwAspect = DVASPECT_CONTENT;
fmtetcStg.lindex = -1;
fmtetcStg.tymed = TYMED_HGLOBAL;
if (pDataObject.QueryGetData(&fmtetc) == S_OK)
{
mDDT = DropDataType.DDT_SHELL;
return S_OK;
}
if (pDataObject.QueryGetData(&fmtetcRef) == S_OK)
{
// Data is from a Ref-based project.
mDDT = DropDataType.DDT_VSREF;
return S_OK;
}
if (pDataObject.QueryGetData(&fmtetcStg) == S_OK)
{
// Data is from a Storage-based project.
mDDT = DropDataType.DDT_VSSTG;
return S_OK;
}
return S_FALSE;
}
int QueryDropEffect(
/* [in] */ DropDataType ddt,
/* [in] */ DWORD grfKeyState,
/* [out] */ DWORD * pdwEffects)
{
*pdwEffects = DROPEFFECT_NONE;
HRESULT hr = S_OK;
// We are reference-based project so we should perform as follow:
// for shell and physical items:
// NO MODIFIER - LINK
// SHIFT DRAG - NO DROP
// CTRL DRAG - NO DROP
// CTRL-SHIFT DRAG - LINK
// for reference/link items
// NO MODIFIER - MOVE
// SHIFT DRAG - MOVE
// CTRL DRAG - COPY
// CTRL-SHIFT DRAG - LINK
if(ddt != DropDataType.DDT_SHELL && ddt != DropDataType.DDT_VSREF && ddt != DropDataType.DDT_VSSTG)
return S_FALSE;
switch (ddt)
{
case DropDataType.DDT_SHELL:
case DropDataType.DDT_VSSTG:
// CTRL-SHIFT
if((grfKeyState & MK_CONTROL) && (grfKeyState & MK_SHIFT))
{
*pdwEffects = DROPEFFECT_LINK;
return S_OK;
}
// CTRL
if(grfKeyState & MK_CONTROL)
return S_FALSE;
// SHIFT
if(grfKeyState & MK_SHIFT)
return S_FALSE;
// no modifier
*pdwEffects = DROPEFFECT_LINK;
return S_OK;
case DropDataType.DDT_VSREF:
// CTRL-SHIFT
if((grfKeyState & MK_CONTROL) && (grfKeyState & MK_SHIFT))
{
*pdwEffects = DROPEFFECT_LINK;
return S_OK;
}
// CTRL
if(grfKeyState & MK_CONTROL)
{
*pdwEffects = DROPEFFECT_COPY;
return S_OK;
}
// SHIFT
if(grfKeyState & MK_SHIFT)
{
*pdwEffects = DROPEFFECT_MOVE;
return S_OK;
}
// no modifier
*pdwEffects = DROPEFFECT_MOVE;
return S_OK;
default:
return S_FALSE;
}
}
bool isChildItem(CHierContainer dropTarget, IVsHierarchy srpIVsHierarchy, VSITEMID itemidLoc)
{
if(srpIVsHierarchy !is this)
return false;
CHierNode dropSource = VSITEMID2Node(itemidLoc);
for(CHierNode c = dropTarget; c; c = c.GetParent())
if(dropSource == c)
return true;
return false;
}
HRESULT copyVirtualFolder(CHierContainer dropContainer, IVsHierarchy srpIVsHierarchy, VSITEMID itemidLoc)
{
if(isChildItem(dropContainer, srpIVsHierarchy, itemidLoc))
{
UtilMessageBox("Cannot drop folder into itself or one of its sub folders", MB_OK, "Drop folder");
return S_FALSE;
}
IVsProject srpIVsProject = qi_cast!IVsProject(srpIVsHierarchy);
if(!srpIVsProject)
return E_UNEXPECTED;
scope(exit) release(srpIVsProject);
BSTR cbstrMoniker;
if(HRESULT hr = srpIVsProject.GetMkDocument(itemidLoc, &cbstrMoniker))
return hr;
string name = detachBSTR(cbstrMoniker);
CFolderNode pFolder = newCom!CFolderNode;
string strThisFolder = baseName(name);
pFolder.SetName(strThisFolder);
VARIANT var;
if(srpIVsHierarchy.GetProperty(itemidLoc, VSHPROPID_FirstChild, &var) == S_OK &&
(var.vt == VT_INT_PTR || var.vt == VT_I4 || var.vt == VT_INT))
{
VSITEMID chid = var.lVal;
while(chid != VSITEMID_NIL)
{
if(HRESULT hr = processVSItem(pFolder, srpIVsHierarchy, chid))
return hr;
if(srpIVsHierarchy.GetProperty(chid, VSHPROPID_NextSibling, &var) != S_OK ||
(var.vt != VT_INT_PTR && var.vt != VT_I4 && var.vt != VT_INT))
break;
chid = var.lVal;
}
}
dropContainer.Add(pFolder);
return S_OK;
}
HRESULT processVSItem(CHierContainer dropContainer, IVsHierarchy srpIVsHierarchy, VSITEMID itemidLoc)
{
// If this is a virtual item, we skip it
GUID typeGuid;
bool isFolder = false;
HRESULT hr = srpIVsHierarchy.GetGuidProperty(itemidLoc, VSHPROPID_TypeGuid, &typeGuid);
if(SUCCEEDED(hr) && typeGuid == GUID_ItemType_VirtualFolder)
return copyVirtualFolder(dropContainer, srpIVsHierarchy, itemidLoc);
if(SUCCEEDED(hr) && typeGuid != GUID_ItemType_PhysicalFile)
return S_FALSE;
if(hr == E_ABORT || hr == OLE_E_PROMPTSAVECANCELLED)
return OLE_E_PROMPTSAVECANCELLED;
IVsProject srpIVsProject;
scope(exit) release(srpIVsProject);
hr = srpIVsHierarchy.QueryInterface(&IVsProject.iid, cast(void **)&srpIVsProject);
if(FAILED(hr) || !srpIVsProject)
return hr;
BSTR cbstrMoniker;
hr = srpIVsProject.GetMkDocument(itemidLoc, &cbstrMoniker);
if (FAILED(hr))
return hr;
string filename = detachBSTR(cbstrMoniker);
wchar* wfilename = _toUTF16z(filename);
VSADDRESULT vsaddresult = ADDRESULT_Failure;
hr = GetProjectNode().GetCVsHierarchy().AddItemSpecific(dropContainer,
/* [in] VSADDITEMOPERATION dwAddItemOperation */ VSADDITEMOP_OPENFILE,
/* [in] LPCOLESTR pszItemName */ null,
/* [in] DWORD cFilesToOpen */ 1,
/* [in] LPCOLESTR rgpszFilesToOpen[] */ &wfilename,
/* [in] HWND hwndDlg */ null,
/* [in] VSSPECIFICEDITORFLAGS grfEditorFlags */ cast(VSSPECIFICEDITORFLAGS) 0,
/* [in] REFGUID rguidEditorType */ &GUID_NULL,
/* [in] LPCOLESTR pszPhysicalView */ null,
/* [in] REFGUID rguidLogicalView*/ &GUID_NULL,
/* [in] bool moveIfInProject */ mfDragSource,
/* [out] VSADDRESULT *pResult */ &vsaddresult);
if (hr == E_ABORT || hr == OLE_E_PROMPTSAVECANCELLED || vsaddresult == ADDRESULT_Cancel)
return OLE_E_PROMPTSAVECANCELLED;
return hr;
}
HRESULT ProcessSelectionDataObject(
/* [in] */ CHierContainer dropContainer,
/* [in] */ IDataObject pDataObject,
/* [in] */ DWORD grfKeyState,
/* [out] */ DropDataType* pddt)
{
HRESULT hr = S_OK;
if (pddt)
*pddt = DropDataType.DDT_NONE;
CProjectNode pProjectNode = GetProjectNode();
FORMATETC fmtetc;
STGMEDIUM stgmedium;
HANDLE hDropInfo = null;
int numFiles = 0;
wchar[MAX_PATH+1] szMoniker;
DropDataType ddt = DropDataType.DDT_NONE;
BOOL fItemProcessed = FALSE;
// try HDROP
fmtetc.cfFormat = CF_HDROP;
fmtetc.ptd = null;
fmtetc.dwAspect = DVASPECT_CONTENT;
fmtetc.lindex = -1;
fmtetc.tymed = TYMED_HGLOBAL;
if(pDataObject.QueryGetData(&fmtetc) != S_OK ||
FAILED(pDataObject.GetData(&fmtetc, &stgmedium)) ||
stgmedium.tymed != TYMED_HGLOBAL || !stgmedium.hGlobal)
goto AttemptVSRefFormat;
hDropInfo = stgmedium.hGlobal;
// try shell format here
ddt = DropDataType.DDT_SHELL;
numFiles = .DragQueryFileW(hDropInfo, 0xFFFFFFFF, null, 0);
for (int iFile = 0; iFile < numFiles; iFile++)
{
UINT uiRet = .DragQueryFileW(hDropInfo, iFile, szMoniker.ptr, _MAX_PATH);
if (!uiRet || uiRet >= _MAX_PATH)
{
hr = E_OUTOFMEMORY; // HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
continue;
}
szMoniker[_MAX_PATH] = 0;
string filename = to_string(szMoniker.ptr);
// Is full path returned
if (exists(filename))
{
VSADDRESULT vsaddresult = ADDRESULT_Failure;
wchar* wfilename = _toUTF16z(filename);
HRESULT hrTemp = pProjectNode.GetCVsHierarchy().AddItemSpecific(dropContainer,
/* [in] VSADDITEMOPERATION dwAddItemOperation */ VSADDITEMOP_OPENFILE,
/* [in] LPCOLESTR pszItemName */ null,
/* [in] DWORD cFilesToOpen */ 1,
/* [in] LPCOLESTR rgpszFilesToOpen[] */ &wfilename,
/* [in] HWND hwndDlg */ null,
/* [in] VSSPECIFICEDITORFLAGS grfEditorFlags */ cast(VSSPECIFICEDITORFLAGS) 0,
/* [in] REFGUID rguidEditorType */ &GUID_NULL,
/* [in] LPCOLESTR pszPhysicalView */ null,
/* [in] REFGUID rguidLogicalView*/ &GUID_NULL,
/* [in] bool moveIfInProject */ mfDragSource,
/* [out] VSADDRESULT *pResult */ &vsaddresult);
if ( (hrTemp == E_ABORT) || (hrTemp == OLE_E_PROMPTSAVECANCELLED) || (vsaddresult == ADDRESULT_Cancel) )
{
hr = OLE_E_PROMPTSAVECANCELLED;
goto Error;
}
if (FAILED(hrTemp))
{
hr = hrTemp;
continue;
}
fItemProcessed = TRUE;
}
}
goto Error;
AttemptVSRefFormat:
fmtetc.cfFormat = cast(CLIPFORMAT) RegisterClipboardFormatW("CF_VSREFPROJECTITEMS"w.ptr);
fmtetc.ptd = null;
fmtetc.dwAspect = DVASPECT_CONTENT;
fmtetc.lindex = -1;
fmtetc.tymed = TYMED_HGLOBAL;
if(pDataObject.QueryGetData(&fmtetc) != S_OK ||
pDataObject.GetData(&fmtetc, &stgmedium) != S_OK ||
stgmedium.tymed != TYMED_HGLOBAL || !stgmedium.hGlobal)
goto AttemptVSStgFormat;
hDropInfo = stgmedium.hGlobal;
ddt = DropDataType.DDT_VSREF;
goto AddFiles;
AttemptVSStgFormat:
fmtetc.cfFormat = cast(CLIPFORMAT) RegisterClipboardFormatW("CF_VSSTGPROJECTITEMS"w.ptr);
fmtetc.ptd = null;
fmtetc.dwAspect = DVASPECT_CONTENT;
fmtetc.lindex = -1;
fmtetc.tymed = TYMED_HGLOBAL;
if(pDataObject.QueryGetData(&fmtetc) != S_OK ||
pDataObject.GetData(&fmtetc, &stgmedium) != S_OK ||
stgmedium.tymed != TYMED_HGLOBAL || !stgmedium.hGlobal)
goto Error;
hDropInfo = stgmedium.hGlobal;
ddt = DropDataType.DDT_VSSTG;
AddFiles:
if(IVsSolution srpIVsSolution = queryService!(IVsSolution))
{
scope(exit) release(srpIVsSolution);
// Note that we do NOT use ::DragQueryFile as this function will
// NOT work with unicode strings on win9x - even
// with the unicode wrappers - and the projitem ref format is in unicode
string[] rgSrcFiles;
numFiles = UtilGetFilesFromPROJITEMDrop(hDropInfo, rgSrcFiles);
for(int iFile = 0; iFile < numFiles; iFile++)
{
HRESULT hrTemp;
VSITEMID itemidLoc;
IVsHierarchy srpIVsHierarchy;
scope(exit) release(srpIVsHierarchy);
hrTemp = srpIVsSolution.GetItemOfProjref(_toUTF16z(rgSrcFiles[iFile]), &srpIVsHierarchy, &itemidLoc, null, null);
if(hrTemp == E_ABORT || hrTemp == OLE_E_PROMPTSAVECANCELLED)
{
hr = OLE_E_PROMPTSAVECANCELLED;
goto Error;
}
if (FAILED(hrTemp))
{
hr = hrTemp;
continue;
}
if (srpIVsHierarchy is null)
{
hr = E_UNEXPECTED;
continue;
}
hr = processVSItem(dropContainer, srpIVsHierarchy, itemidLoc);
if(FAILED(hr))
goto Error;
if(hr == S_OK)
fItemProcessed = TRUE;
}
}
Error:
if (hDropInfo)
.GlobalFree(hDropInfo);
if(FAILED(hr))
return hr;
if (!fItemProcessed || ddt == DropDataType.DDT_NONE)
return S_FALSE;
if (pddt)
*pddt = ddt;
return S_OK;
}
HRESULT PackageSelectionDataObject(
/* [out] */ IDataObject * ppDataObject,
/* [in] */ BOOL fCutHighlightItems)
{
HRESULT hr = S_OK;
// delete any existing selection data object and restore state
hr = CleanupSelectionDataObject(FALSE, FALSE, FALSE);
if(FAILED(hr)) return hr;
// CComPtr<IVsUIHierarchyWindow> srpIVsUIHierarchyWindow;
// hr = _VxModule.GetIVsUIHierarchyWindow(GUID_SolutionExplorer, &srpIVsUIHierarchyWindow);
// IfFailRet(hr);
// ExpectedExprRet(srpIVsUIHierarchyWindow != null);
IVsSolution srpIVsSolution = queryService!(IVsSolution);
if(!srpIVsSolution) return E_NOINTERFACE;
scope(exit) release(srpIVsSolution);
IVsMonitorSelection srpIVsMonitorSelection = queryService!(IVsMonitorSelection);
if(!srpIVsMonitorSelection) return E_NOINTERFACE;
scope(exit) release(srpIVsMonitorSelection);
VSITEMID vsitemid;
IVsHierarchy srpIVsHierarchy_selection;
IVsMultiItemSelect srpIVsMultiItemSelect;
hr = srpIVsMonitorSelection.GetCurrentSelection(
/* [out] IVsHierarchy** */ &srpIVsHierarchy_selection,
/* [out] VSITEMID* */ &vsitemid,
/* [out] IVsMultiItemSelect** */ &srpIVsMultiItemSelect,
/* [out] ISelectionContainer** */ null);
if(FAILED(hr)) return hr;
scope(exit) release(srpIVsHierarchy_selection);
scope(exit) release(srpIVsMultiItemSelect);
LONG lLenGlobal = 0; // length of the file names including null chars
IVsHierarchy srpIVsHierarchy_this = this; // GetIVsHierarchy();
if(srpIVsHierarchy_selection !is srpIVsHierarchy_this ||
vsitemid == VSITEMID_ROOT || vsitemid == VSITEMID_NIL)
return E_ABORT;
if(vsitemid == VSITEMID_SELECTION && srpIVsMultiItemSelect)
{
BOOL fSingleHierarchy = FALSE;
ULONG itemsDragged;
hr = srpIVsMultiItemSelect.GetSelectionInfo(&itemsDragged, &fSingleHierarchy);
if(FAILED(hr)) return hr;
if (!fSingleHierarchy) return E_ABORT;
if (itemsDragged > uint.max / VSITEMSELECTION.sizeof)
return E_OUTOFMEMORY;
mItemSelDragged.length = itemsDragged;
hr = srpIVsMultiItemSelect.GetSelectedItems(GSI_fOmitHierPtrs, itemsDragged, mItemSelDragged.ptr);
if(FAILED(hr)) return hr;
}
else if (vsitemid != VSITEMID_ROOT)
{
mItemSelDragged.length = 1;
mItemSelDragged[0].pHier = null;
mItemSelDragged[0].itemid = vsitemid;
}
for (ULONG i = 0; i < mItemSelDragged.length; i++)
{
if (mItemSelDragged[i].itemid == VSITEMID_ROOT)
return E_ABORT;
BSTR cbstrProjref;
hr = srpIVsSolution.GetProjrefOfItem(srpIVsHierarchy_this, mItemSelDragged[i].itemid, &cbstrProjref);
if(FAILED(hr)) return hr;
wstring pref = wdetachBSTR(cbstrProjref);
if(pref.length==0)
return E_FAIL;
lLenGlobal += pref.length + 1; // plus one to count the trailing null character
}
if(lLenGlobal == 0)
return E_ABORT;
lLenGlobal += 1; // anothr trailing null character to terminate list
const cbAlloc = DROPFILES.sizeof + lLenGlobal * WCHAR.sizeof;// bytes to allocate
HGLOBAL hGlobal = GlobalAlloc(GHND | GMEM_SHARE, cbAlloc);
if(!hGlobal) return E_ABORT;
DROPFILES* pDropFiles = cast(DROPFILES*) GlobalLock(hGlobal);
// set the offset where the starting point of the file start
pDropFiles.pFiles = DROPFILES.sizeof;
// structure contain wide characters
pDropFiles.fWide = TRUE;
LPWSTR pFiles = cast(LPWSTR)(pDropFiles + 1);
size_t nCurPos = 0;
for (ULONG i = 0; i < mItemSelDragged.length; i++)
{
BSTR cbstrProjref;
hr = srpIVsSolution.GetProjrefOfItem(srpIVsHierarchy_this, mItemSelDragged[i].itemid, &cbstrProjref);
if (FAILED(hr))
continue;
auto cchProjRef = wcslen(cbstrProjref) + 1;
memcpy(pFiles + nCurPos, cbstrProjref, cchProjRef * WCHAR.sizeof);
nCurPos += cchProjRef;
freeBSTR(cbstrProjref);
}
hr = S_OK;
// final null terminator as per CF_VSSTGPROJECTITEMS format spec
pFiles[nCurPos] = 0;
int res = GlobalUnlock(hGlobal);
OleDataSource pDataObject = newCom!OleDataSource; // has ref count of 0
FORMATETC fmtetc;
fmtetc.ptd = null;
fmtetc.dwAspect = DVASPECT_CONTENT;
fmtetc.lindex = -1;
fmtetc.tymed = TYMED_HGLOBAL;
fmtetc.cfFormat = cast(ushort) CF_VSREFPROJECTITEMS();
STGMEDIUM stgmedium;
stgmedium.tymed = TYMED_HGLOBAL;
stgmedium.hGlobal = hGlobal;
stgmedium.pUnkForRelease = null;
pDataObject.CacheData(fmtetc.cfFormat, &stgmedium, &fmtetc);
*ppDataObject = addref(pDataObject);
Error:
/+
if (SUCCEEDED(hr))
{
if (fCutHighlightItems)
{
for (ULONG i = 0; i < mItemSelDragged.length; i++)
srpIVsUIHierarchyWindow.ExpandItem(GetIVsUIHierarchy(), mItemSelDragged[i].itemid, i == 0 ? EXPF_CutHighlightItem : EXPF_AddCutHighlightItem);
}
}
+/
if (FAILED(hr))
{
mItemSelDragged.length = 0;
}
return hr;
}
HRESULT CleanupSelectionDataObject(
/* [in] */ BOOL fDropped,
/* [in] */ BOOL fCut,
/* [in] */ BOOL fMoved)
{
// we save if something fails but we are trying to do as much as possible
HRESULT hrRet = S_OK; // hr to return
HRESULT hr = S_OK;
/+
CComPtr<IVsUIHierarchyWindow> srpIVsUIHierarchyWindow;
hr = _VxModule.GetIVsUIHierarchyWindow(
/* REFGUID rguidPersistenceSlot */GUID_SolutionExplorer,
/*IVsUIHierarchyWindow **ppIVsUIHierarchyWindow*/ &srpIVsUIHierarchyWindow);
if (FAILED(hr))
hrRet = hr;
if (!srpIVsUIHierarchyWindow)
hrRet = E_UNEXPECTED;
+/
for (ULONG i = 0; i < mItemSelDragged.length; i++)
{
if((fMoved && fDropped) || fCut)
{
CFileNode pFileNode = cast(CFileNode) VSITEMID2Node(mItemSelDragged[i].itemid);
if (!pFileNode)
{
CHierContainer pFolderNode = cast(CHierContainer) VSITEMID2Node(mItemSelDragged[i].itemid);
if(pFolderNode)
if(auto parent = pFolderNode.GetParent())
hr = parent.Delete(pFolderNode, this);
continue;
}
bool fOpen = FALSE;
bool fDirty = FALSE;
bool fOpenByUs = FALSE;
hr = pFileNode.GetDocInfo(
/* [out, opt] BOOL* pfOpen */ &fOpen, // true if the doc is opened
/* [out, opt] BOOL* pfDirty */ &fDirty, // true if the doc is dirty
/* [out, opt] BOOL* pfOpenByUs */ &fOpenByUs, // true if opened by our project
/* [out, opt] VSDOCCOOKIE* pVsDocCookie*/ null);// VSDOCCOOKIE if open
if (FAILED(hr))
continue;
// do not close it if the doc is dirty or we do not own it
if (fDirty || (fOpen && !fOpenByUs))
continue;
// close it if opened
if (fOpen)
{
hr = pFileNode.CloseDoc(SLNSAVEOPT_NoSave);
if (FAILED(hr))
hrRet = hr;
}
BOOL res;
hr = RemoveItem(0, mItemSelDragged[i].itemid, &res);
if (FAILED(hr))
hrRet = hr;
}
else
{
/+
if (srpIVsUIHierarchyWindow)
hr = srpIVsUIHierarchyWindow->ExpandItem(QI_cast<IVsUIHierarchy>(this), m_pItemSelDragged[i].itemid, EXPF_UnCutHighlightItem);
if (FAILED(hr))
hrRet = hr;
+/
}
}
mItemSelDragged.length = 0;
return hrRet;
}
///////////////////////////////////////////////////////////////////////
void ClearLineChanges()
{
auto langsvc = Package.GetLanguageService();
searchNode(GetRootNode(), delegate (CHierNode n) {
string file = n.GetCanonicalName();
if(auto src = langsvc.GetSource(file))
src.ClearLineChanges();
return false;
});
}
//////////////////////////////////////////////////////////////
dte.ConfigurationManager getConfigurationManager()
{
dte.ConfigurationManager mgr;
if(IVsExtensibility3 ext = queryService!(dte.IVsExtensibility, IVsExtensibility3))
{
IUnknown obj;
if(ext.GetConfigMgr(this, VSITEMID_ROOT, &obj) == S_OK)
{
if (obj.QueryInterface(&dte.ConfigurationManager.iid, cast(void**) &mgr) == S_OK)
assert(mgr);
obj.Release();
}
ext.Release();
}
return mgr;
}
static xml.Document readXML(string fileName)
{
try
{
string text = cast(string) read(fileName);
size_t decidx = 0;
if(decode(text, decidx) == 0xfeff)
text = text[decidx..$];
if(!startsWith(text, "<?xml"))
text = `<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>` ~ text;
xml.Document doc = xml.readDocument(text);
return doc;
}
catch(xml.RecodeException rc)
{
string msg = rc.toString();
writeToBuildOutputPane(msg);
logCall(msg);
}
catch(xml.XmlException rc)
{
string msg = rc.toString();
writeToBuildOutputPane(msg);
logCall(msg);
}
return null;
}
bool parseMSBuildXML(string fileName, xml.Document doc)
{
xml.Element root = xml.getRoot(mDoc);
xml.Element[] propGrpItems = xml.elementsById(root, "PropertyGroup");
foreach(grp; propGrpItems)
{
string cond = xml.getAttribute(grp, "Condition");
if (cond.empty())
{
// global
if(xml.Element el = xml.getElement(grp, "ProjectGuid"))
mProjectGUID = uuid(el.text());
else
return false;
}
else
{
cond = xml.decode(cond);
auto pos = indexOf(cond, "==");
if (pos > 0)
{
string lhs = strip(cond[0 .. pos]);
string rhs = strip(cond[pos + 2 .. $]);
if (lhs == "'$(Configuration)|$(Platform)'" &&
rhs.length > 2 && rhs[0] == '\'' && rhs[$-1] =='\'')
{
rhs = rhs[1 .. $-1];
pos = indexOf(rhs, "|");
if (pos > 0)
{
string cfgname = strip(rhs[0..pos]);
string platform = strip(rhs[pos+1 .. $]);
if(platform.length == 0 || platform == "AnyCPU")
platform = kPlatforms[0];
Config config = mConfigProvider.addConfig(cfgname, platform);
config.GetProjectOptions().parseXML(grp);
}
}
}
}
}
string projectName = getNameWithoutExt(fileName);
CProjectNode rootnode = newCom!CProjectNode(fileName, this);
xml.Element[] itemGrpItems = xml.elementsById(root, "ItemGroup");
foreach(item; itemGrpItems)
{
xml.Element[] compileItems = xml.elementsById(item, "Compile");
foreach(compile; compileItems)
{
string srcFileName = xml.getAttribute(compile, "Include");
CFileNode node = newCom!CFileNode(srcFileName);
rootnode.Add(node);
}
}
rootnode.SetName(projectName);
SetRootNode(rootnode);
return true;
}
bool parseXML()
{
string fileName;
try
{
fileName = toUTF8(mFilename);
mDoc = readXML(fileName);
if(!mDoc)
goto fail;
xml.Element root = xml.getRoot(mDoc);
if(xml.Element el = xml.getElement(root, "ProjectGuid"))
mProjectGUID = uuid(el.text());
else if (parseMSBuildXML(fileName, mDoc))
return true;
string projectName = getNameWithoutExt(fileName);
CProjectNode rootnode = newCom!CProjectNode(fileName, this);
xml.Element[] propItems = xml.elementsById(root, "Folder");
foreach(item; propItems)
{
projectName = xml.getAttribute(item, "name");
parseContainer(rootnode, item);
}
rootnode.SetName(projectName);
xml.Element[] cfgItems = xml.elementsById(root, "Config");
foreach(cfg; cfgItems)
{
string name = xml.getAttribute(cfg, "name");
string platform = xml.getAttribute(cfg, "platform");
if(platform.length == 0)
platform = kPlatforms[0];
Config config = mConfigProvider.addConfig(name, platform);
config.GetProjectOptions().parseXML(cfg);
}
SetRootNode(rootnode);
return true;
}
catch(Exception e)
{
writeToBuildOutputPane(e.toString());
logCall(e.toString());
}
fail:
string projectName = getNameWithoutExt(fileName);
CProjectNode rootnode = newCom!CProjectNode("", this);
rootnode.SetName("Failed to load " ~ projectName);
SetRootNode(rootnode);
return false;
}
void parseContainer(CHierContainer cont, xml.Element item)
{
xml.Element[] folderItems = xml.elementsById(item, "Folder");
foreach(folder; folderItems)
{
string name = xml.getAttribute(folder, "name");
CHierContainer node = newCom!CFolderNode(name);
cont.Add(node);
parseContainer(node, folder);
}
xml.Element[] fileItems = xml.elementsById(item, "File");
foreach(file; fileItems)
{
string fileName = xml.getAttribute(file, "path");
CFileNode node = newCom!CFileNode(fileName);
static parseFileOptions(CFileNode node, string cfg, xml.Element file)
{
node.SetTool(cfg, xml.getAttribute(file, "tool"));
node.SetDependencies(cfg, xml.getAttribute(file, "dependencies"));
node.SetOutFile(cfg, xml.getAttribute(file, "outfile"));
node.SetCustomCmd(cfg, xml.getAttribute(file, "customcmd"));
node.SetAdditionalOptions(cfg, xml.getAttribute(file, "addopt"));
node.SetLinkOutput(cfg, xml.getAttribute(file, "linkoutput") == "true");
node.SetUptodateWithSameTime(cfg, xml.getAttribute(file, "uptodateWithSameTime") == "true");
}
parseFileOptions(node, null, file);
node.SetPerConfigOptions(xml.getAttribute(file, "perConfig") == "true");
xml.Element[] cfgItems = xml.elementsById(file, "Config");
foreach(cfgItem; cfgItems)
{
string cfg = xml.getAttribute(cfgItem, "name");
parseFileOptions(node, cfg, cfgItem);
}
cont.Add(node);
}
}
static bool saveXML(xml.Document doc, string filename)
{
try
{
string[] result = xml.writeDocument(doc);
string output;
foreach(ostr; result)
output ~= ostr ~ "\n";
std.file.write(filename, output);
return true;
}
catch(Exception e)
{
string msg = e.toString();
writeToBuildOutputPane(msg);
logCall(msg);
}
return false;
}
xml.Document createDoc()
{
xml.Document doc = xml.newDocument("DProject");
xml.Element root = xml.getRoot(doc);
root ~= new xml.Element("ProjectGuid", GUID2string(mProjectGUID));
mConfigProvider.addConfigsToXml(doc);
createDocHierarchy(root, GetProjectNode());
return doc;
}
static void addFileAttributes(CFileNode file, xml.Element xmlfile)
{
if(file.GetPerConfigOptions())
xml.setAttribute(xmlfile, "perConfig", "true");
static void setAttrIfNotEmpty(xml.Element xmlFile, string attr, string val)
{
if(val.length)
xml.setAttribute(xmlFile, attr, val);
}
static void writeFileConfig(xml.Element xmlFile, CFileNode file, string cfg)
{
setAttrIfNotEmpty(xmlFile, "tool", file.GetTool(cfg));
setAttrIfNotEmpty(xmlFile, "dependencies", file.GetDependencies(cfg));
setAttrIfNotEmpty(xmlFile, "outfile", file.GetOutFile(cfg));
setAttrIfNotEmpty(xmlFile, "customcmd", file.GetCustomCmd(cfg));
setAttrIfNotEmpty(xmlFile, "addopt", file.GetAdditionalOptions(cfg));
if(file.GetLinkOutput(cfg))
xml.setAttribute(xmlFile, "linkoutput", "true");
if(file.GetUptodateWithSameTime(cfg))
xml.setAttribute(xmlFile, "uptodateWithSameTime", "true");
}
writeFileConfig(xmlfile, file, null);
auto cfgs = file.GetConfigOptions().keys;
foreach(cfg; cfgs)
{
auto xmlcfg = new xml.Element("Config");
xml.setAttribute(xmlcfg, "name", cfg);
writeFileConfig(xmlcfg, file, cfg);
xmlfile ~= xmlcfg;
}
}
static void createDocHierarchy(xml.Element elem, CHierContainer container)
{
auto xmlcontainer = new xml.Element("Folder");
xml.setAttribute(xmlcontainer, "name", container.GetName());
for(CHierNode node = container.GetHeadEx(false); node; node = node.GetNext(false))
{
if(CHierContainer cont = cast(CHierContainer) node)
createDocHierarchy(xmlcontainer, cont);
else if(CFileNode file = cast(CFileNode) node)
{
auto xmlfile = new xml.Element("File");
xml.setAttribute(xmlfile, "path", file.GetFilename());
addFileAttributes(file, xmlfile);
xmlcontainer ~= xmlfile;
}
}
elem ~= xmlcontainer;
}
xml.Document createMSBuildDoc()
{
xml.Document doc = xml.newDocument("Project");
xml.Element root = xml.getRoot(doc);
xml.setAttribute(root, "DefaultTargets", "Build");
xml.setAttribute(root, "ToolsVersion", "4.0");
xml.setAttribute(root, "xmlns", "http://schemas.microsoft.com/developer/msbuild/2003");
xml.Element target = new xml.Element("Target");
xml.setAttribute(target, "Name", "GetTargetPath");
xml.setAttribute(target, "Returns", "$(exefile)");
root ~= target;
xml.Element globals = new xml.Element("PropertyGroup");
xml.setAttribute(globals, "Label", "Globals");
globals ~= new xml.Element("ProjectGuid", GUID2string(mProjectGUID));
root ~= globals;
mConfigProvider.addMSBuildConfigsToXml(doc);
auto files = new xml.Element("ItemGroup");
createMSBuildFileGroup(files, GetProjectNode());
root ~= files;
auto folders = new xml.Element("ItemGroup");
createMSBuildFolderGroup(folders, GetProjectNode());
root ~= folders;
return doc;
}
static void createMSBuildFileGroup(xml.Element grp, CHierContainer container)
{
for(CHierNode node = container.GetHeadEx(false); node; node = node.GetNext(false))
{
if(CHierContainer cont = cast(CHierContainer) node)
createMSBuildFileGroup(grp, cont);
else if(CFileNode file = cast(CFileNode) node)
{
auto xmlfile = new xml.Element("Compile");
xml.setAttribute(xmlfile, "Include", file.GetFilename());
addFileAttributes(file, xmlfile);
grp ~= xmlfile;
}
}
}
static void createMSBuildFolderGroup(xml.Element grp, CHierContainer container)
{
for(CHierNode node = container.GetHeadEx(false); node; node = node.GetNext(false))
{
if(CHierContainer cont = cast(CHierContainer) node)
{
auto xmlfile = new xml.Element("Folder");
xml.setAttribute(xmlfile, "Include", cont.GetName());
createMSBuildFolderGroup(grp, cont);
grp ~= xmlfile;
}
}
}
CFileNode findDubConfigFile()
{
auto node = searchNode(GetRootNode(),
delegate (CHierNode n)
{
if(auto file = cast(CFileNode) n)
{
string fname = file.GetFilename();
string bname = fname.baseName.toLower;
if (bname == "dub.json" || bname == "dub.sdl")
return true;
}
return false;
});
return cast(CFileNode) node;
}
ConfigProvider GetConfigProvider() { return mConfigProvider; }
string GetFilename() { return mFilename; }
string GetName() { return mName; }
string GetCaption() { return mCaption; }
void SetCaption(string caption) { mCaption = caption; }
private:
ProjectFactory mFactory;
string mName;
string mFilename;
string mEditLabel;
string mCaption;
GUID mProjectGUID;
ConfigProvider mConfigProvider;
ExtProject mExtProject;
bool mfDragSource;
DropDataType mDDT;
VSITEMSELECTION[] mItemSelDragged;
xml.Document mDoc;
}
void checkDustMiteDirs(string dustmitepath)
{
if (std.file.exists(dustmitepath) && !std.file.dirEntries(dustmitepath, SpanMode.shallow).empty())
{
string msg = "Folder " ~ dustmitepath ~ " already exists and is not empty. Remove to continue?";
int msgRet = UtilMessageBox(msg, MB_OKCANCEL | MB_ICONEXCLAMATION, "DustMite");
if (msgRet != IDOK)
throw new Exception("DustMite operation cancelled");
try
{
rmdirRecurse(dustmitepath);
}
catch(Exception e)
{
// ok to swallow exception if directory is left empty
if (!std.file.dirEntries(dustmitepath, SpanMode.shallow).empty())
throw e;
}
}
string reducedpath = dustmitepath ~ ".reduced";
if (std.file.exists(reducedpath))
{
string msg = "Folder " ~ reducedpath ~ " already exists. Remove to continue?";
int msgRet = UtilMessageBox(msg, MB_OKCANCEL | MB_ICONEXCLAMATION, "DustMite");
if (msgRet != IDOK)
throw new Exception("DustMite operation cancelled");
rmdirRecurse(reducedpath);
}
}
string getSelectedTextInBuildPane()
{
if(auto opane = getBuildOutputPane())
{
scope(exit) release(opane);
if(auto owin = qi_cast!IVsTextView(opane))
{
scope(exit) release(owin);
BSTR selText;
if (owin.GetSelectedText (&selText) == S_OK)
return detachBSTR(selText);
}
}
return null;
}
string getCurrentErrorText()
{
if (auto tasklist = queryService!(SVsErrorList, IVsTaskList2)())
{
scope(exit) release(tasklist);
IVsTaskItem item;
if (tasklist.GetCaretPos(&item) == S_OK && item)
{
scope(exit) release(item);
BSTR text;
if (item.get_Text (&text) == S_OK)
return detachBSTR(text);
}
}
return null;
}
HRESULT DustMiteProject()
{
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
IVsHierarchy phier;
if(solutionBuildManager.get_StartupProject(&phier) != S_OK)
return E_FAIL;
scope(exit) release(phier);
Project proj = qi_cast!Project(phier);
scope(exit) release(proj);
Config cfg;
IVsProjectCfg activeCfg;
scope(exit) release(activeCfg);
if(solutionBuildManager && proj)
if(solutionBuildManager.FindActiveProjectCfg(null, null, proj, &activeCfg) == S_OK)
cfg = qi_cast!Config(activeCfg);
if(!cfg)
return E_FAIL;
scope(exit) release(cfg);
string errmsg = getSelectedTextInBuildPane();
if (errmsg.length == 0)
errmsg = getCurrentErrorText();
if (errmsg.length == 0)
errmsg = "Internal error";
string projname = proj.GetCaption();
if (projname.length == 0)
projname = proj.GetName();
if (projname.length == 0)
projname = baseName(proj.GetFilename());
string msg = format("Do you want to reduce project %s for error message \"%s\"?\n" ~
"Visual D will try to create a clean copy of your project, but\n" ~
"you might also consider making a backup of the project!", projname, errmsg);
string caption = "DustMite";
int msgRet = UtilMessageBox(msg, MB_YESNO | MB_ICONEXCLAMATION, caption);
if (msgRet != IDYES)
return S_FALSE;
string workdir = normalizeDir(cfg.GetProjectDir());
auto pane = getVisualDOutputPane();
scope(exit) release(pane);
clearOutputPane();
if(!pane)
return S_FALSE;
pane.Activate();
string npath, nworkdir, cmdline, cmdfile, dustfile, cmd;
try
{
string commonpath = commonProjectFolder(proj);
string dustmitepath = buildPath(dirName(commonpath), baseName(commonpath) ~ ".dustmite"); // need to strip trailing '\'
checkDustMiteDirs(dustmitepath);
npath = copyProjectFolder(proj, dustmitepath);
if (npath.length == 0)
{
pane.OutputString("cannot determine common root folder for all sources\n"w.ptr);
return S_FALSE;
}
pane.OutputString(_toUTF16z("created clean copy of the project in " ~ dustmitepath ~ "\n"));
auto reldir = makeRelative(workdir, commonpath);
npath = makeDirnameCanonical(npath, null);
nworkdir = makeDirnameCanonical(reldir, npath);
string nintdir = makeFilenameAbsolute(cfg.GetIntermediateDir(), nworkdir);
string noutdir = makeFilenameAbsolute(cfg.GetOutDir(), nworkdir);
mkdirRecurse(nworkdir);
mkdirRecurse(nintdir);
mkdirRecurse(noutdir);
std.file.write(normalizeDir(nworkdir) ~ "empty.txt", ""); // dustmite needs non-empty directories
std.file.write(normalizeDir(nintdir) ~ "empty.txt", "");
std.file.write(normalizeDir(noutdir) ~ "empty.txt", "");
if (nworkdir != npath)
cmdline ~= "cd " ~ quoteFilename(makeRelative(nworkdir, npath)) ~ "\n";
cmdline ~= cfg.getCommandLine(true, true, false);
cmdfile = npath ~ "build.dustmite.bat";
std.file.write(cmdfile, cmdline);
cmdfile = makeRelative(cmdfile, npath);
string dustcmd = quoteFilename(cmdfile) ~ " 2>&1 | find \"" ~ errmsg ~ "\"";
dustcmd = dustcmd.replace("\"", "\\\"");
string intdir = makeFilenameAbsolute(cfg.GetIntermediateDir(), workdir);
mkdirRecurse(intdir);
dustfile = intdir ~ "\\dustmite.cmd";
string opts = Package.GetGlobalOptions().dustmiteOpts;
cmd = Package.GetGlobalOptions().findDmdBinDir() ~ "dustmite " ~ opts ~ " " ~ quoteFilename(npath[0..$-1]) ~ " \"" ~ dustcmd ~ "\"";
std.file.write(dustfile, cmd ~ "\npause\n");
std.process.spawnShell(quoteFilename(dustfile), null, std.process.Config.none, nworkdir);
pane.OutputString(_toUTF16z("Spawned dustmite, check new console window for output...\n"));
}
catch(Exception e)
{
pane.OutputString(_toUTF16z(e.msg ~ "\n"));
return S_FALSE;
}
return S_OK;
}
class DustMiteThread : CBuilderThread
{
this(Config cfg, string buildDir)
{
super(cfg);
mBuildDir = buildDir;
}
override string GetBuildDir()
{
return mBuildDir;
}
override bool needsOutputParser() { return false; }
string mBuildDir;
}
unittest
{
CHierNode.shared_static_this();
Package pkg = newCom!Package.addref();
scope(exit) pkg.release();
string tmpdir = normalizeDir(tempDir());
string projdir = tmpdir ~ "test/dustmite/project/";
string projfile = projdir ~ "project.vdproj";
string platform = "Win32", config = "Debug";
auto cfg = newCom!VCConfig(projfile, "test", platform, config);
Project prj = newCom!Project(Package.GetProjectFactory(), "test", projfile, platform, config);
mkdirRecurse(projdir);
string dfile1 = projdir ~ "dfile1.d";
std.file.write(dfile1, "// dfile1\n");
auto pFile1 = newCom!CFileNode("dfile1.d");
prj.GetRootNode().AddTail(pFile1);
mkdirRecurse(tmpdir ~ "test/dustmite/other");
string dfile2 = tmpdir ~ "test/dustmite/other/dfile2.d";
std.file.write(dfile2, "// dfile2\n");
auto pFile2 = newCom!CFileNode("../other/dfile2.d");
prj.GetRootNode().AddTail(pFile2);
string commonpath = commonProjectFolder(prj);
string dustmitepath = buildPath(dirName(commonpath), baseName(commonpath) ~ ".dustmite");
assert(dustmitepath == tmpdir ~ r"test\dustmite.dustmite");
if (std.file.exists(dustmitepath))
rmdirRecurse(dustmitepath);
string npath = copyProjectFolder(prj, dustmitepath);
assert(npath == normalizeDir(dustmitepath));
assert(std.file.exists(dustmitepath ~ r"\project\dfile1.d"));
assert(std.file.exists(dustmitepath ~ r"\other\dfile2.d"));
}
| D |
/**
* Binding for libunwind/libgc's `unwind.h`
*
* Those bindings expose the `_Unwind_*` symbols used by druntime
* to do exception handling.
*
* See_Also:
* Itanium C++ ABI: Exception Handling ($Revision: 1.22 $)
* Source: $(DRUNTIMESRC core/internal/backtrace/_unwind.d)
*/
module core.internal.backtrace.unwind;
import core.stdc.stdint;
version (ARM)
{
version (iOS) {} else version = ARM_EABI_UNWINDER;
}
extern (C):
alias uintptr_t _Unwind_Word;
alias intptr_t _Unwind_Sword;
alias uintptr_t _Unwind_Ptr;
alias uintptr_t _Unwind_Internal_Ptr;
alias ulong _Unwind_Exception_Class;
alias uintptr_t _uleb128_t;
alias intptr_t _sleb128_t;
alias int _Unwind_Reason_Code;
enum
{
_URC_NO_REASON = 0,
_URC_FOREIGN_EXCEPTION_CAUGHT = 1,
_URC_FATAL_PHASE2_ERROR = 2,
_URC_FATAL_PHASE1_ERROR = 3,
_URC_NORMAL_STOP = 4,
_URC_END_OF_STACK = 5,
_URC_HANDLER_FOUND = 6,
_URC_INSTALL_CONTEXT = 7,
_URC_CONTINUE_UNWIND = 8
}
version (ARM_EABI_UNWINDER)
enum _URC_FAILURE = 9;
alias int _Unwind_Action;
enum _Unwind_Action _UA_SEARCH_PHASE = 1;
enum _Unwind_Action _UA_CLEANUP_PHASE = 2;
enum _Unwind_Action _UA_HANDLER_FRAME = 4;
enum _Unwind_Action _UA_FORCE_UNWIND = 8;
enum _Unwind_Action _UA_END_OF_STACK = 16;
alias _Unwind_Exception_Cleanup_Fn = void function(
_Unwind_Reason_Code reason,
_Unwind_Exception *exc);
version (ARM_EABI_UNWINDER)
{
align(8) struct _Unwind_Control_Block
{
ulong exception_class;
void function(_Unwind_Reason_Code, _Unwind_Control_Block *) exception_cleanup;
/* Unwinder cache, private fields for the unwinder's use */
struct unwinder_cache_t
{
uint reserved1; /* init reserved1 to 0, then don't touch */
uint reserved2;
uint reserved3;
uint reserved4;
uint reserved5;
}
unwinder_cache_t unwinder_cache;
/* Propagation barrier cache (valid after phase 1): */
struct barrier_cache_t
{
uint sp;
uint[5] bitpattern;
}
barrier_cache_t barrier_cache;
/* Cleanup cache (preserved over cleanup): */
struct cleanup_cache_t
{
uint[4] bitpattern;
}
cleanup_cache_t cleanup_cache;
/* Pr cache (for pr's benefit): */
struct pr_cache_t
{
uint fnstart; /* function start address */
void* ehtp; /* pointer to EHT entry header word */
uint additional;
uint reserved1;
}
pr_cache_t pr_cache;
}
alias _Unwind_Exception = _Unwind_Control_Block;
}
else version (X86_64)
{
align(16) struct _Unwind_Exception
{
_Unwind_Exception_Class exception_class;
_Unwind_Exception_Cleanup_Fn exception_cleanup;
_Unwind_Word private_1;
_Unwind_Word private_2;
}
}
else
{
align(8) struct _Unwind_Exception
{
_Unwind_Exception_Class exception_class;
_Unwind_Exception_Cleanup_Fn exception_cleanup;
_Unwind_Word private_1;
_Unwind_Word private_2;
}
}
struct _Unwind_Context;
_Unwind_Reason_Code _Unwind_RaiseException(_Unwind_Exception *exception_object);
alias _Unwind_Stop_Fn = _Unwind_Reason_Code function(
int _version,
_Unwind_Action actions,
_Unwind_Exception_Class exceptionClass,
_Unwind_Exception* exceptionObject,
_Unwind_Context* context,
void* stop_parameter);
_Unwind_Reason_Code _Unwind_ForcedUnwind(
_Unwind_Exception* exception_object,
_Unwind_Stop_Fn stop,
void* stop_parameter);
alias _Unwind_Trace_Fn = _Unwind_Reason_Code function(_Unwind_Context*, void*);
void _Unwind_DeleteException(_Unwind_Exception* exception_object);
void _Unwind_Resume(_Unwind_Exception* exception_object);
_Unwind_Reason_Code _Unwind_Resume_or_Rethrow(_Unwind_Exception* exception_object);
_Unwind_Reason_Code _Unwind_Backtrace(_Unwind_Trace_Fn, void*);
version (ARM_EABI_UNWINDER)
{
_Unwind_Reason_Code __gnu_unwind_frame(_Unwind_Exception* exception_object, _Unwind_Context* context);
void _Unwind_Complete(_Unwind_Exception* exception_object);
}
_Unwind_Word _Unwind_GetGR(_Unwind_Context* context, int index);
void _Unwind_SetGR(_Unwind_Context* context, int index, _Unwind_Word new_value);
_Unwind_Ptr _Unwind_GetIP(_Unwind_Context* context);
_Unwind_Ptr _Unwind_GetIPInfo(_Unwind_Context* context, int*);
void _Unwind_SetIP(_Unwind_Context* context, _Unwind_Ptr new_value);
_Unwind_Word _Unwind_GetCFA(_Unwind_Context*);
_Unwind_Word _Unwind_GetBSP(_Unwind_Context*);
void* _Unwind_GetLanguageSpecificData(_Unwind_Context*);
_Unwind_Ptr _Unwind_GetRegionStart(_Unwind_Context* context);
void* _Unwind_FindEnclosingFunction(void* pc);
version (X68_64)
{
_Unwind_Ptr _Unwind_GetDataRelBase(_Unwind_Context* context)
{
return _Unwind_GetGR(context, 1);
}
_Unwind_Ptr _Unwind_GetTextRelBase(_Unwind_Context* context)
{
assert(0);
}
}
else
{
_Unwind_Ptr _Unwind_GetDataRelBase(_Unwind_Context* context);
_Unwind_Ptr _Unwind_GetTextRelBase(_Unwind_Context* context);
}
alias _Unwind_Personality_Fn = _Unwind_Reason_Code function(
int _version,
_Unwind_Action actions,
_Unwind_Exception_Class exceptionClass,
_Unwind_Exception* exceptionObject,
_Unwind_Context* context);
struct SjLj_Function_Context;
void _Unwind_SjLj_Register(SjLj_Function_Context *);
void _Unwind_SjLj_Unregister(SjLj_Function_Context *);
_Unwind_Reason_Code _Unwind_SjLj_RaiseException(_Unwind_Exception*);
_Unwind_Reason_Code _Unwind_SjLj_ForcedUnwind(_Unwind_Exception , _Unwind_Stop_Fn, void*);
void _Unwind_SjLj_Resume(_Unwind_Exception*);
_Unwind_Reason_Code _Unwind_SjLj_Resume_or_Rethrow(_Unwind_Exception*);
| D |
/Volumes/new/mobile/Rocket.Chat.ReactNative/ios/build/RocketChatRN/Build/Intermediates.noindex/RocketChatRN.build/Debug-iphonesimulator/RocketChatRN.build/Objects-normal/x86_64/Watermelon.o : /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Watermelon.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.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/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/RocketChatRN-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Pods/Firebase/CoreOnly/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Volumes/new/mobile/Rocket.Chat.ReactNative/ios/build/RocketChatRN/Build/Intermediates.noindex/RocketChatRN.build/Debug-iphonesimulator/RocketChatRN.build/Objects-normal/x86_64/Watermelon~partial.swiftmodule : /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Watermelon.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.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/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/RocketChatRN-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Pods/Firebase/CoreOnly/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Volumes/new/mobile/Rocket.Chat.ReactNative/ios/build/RocketChatRN/Build/Intermediates.noindex/RocketChatRN.build/Debug-iphonesimulator/RocketChatRN.build/Objects-normal/x86_64/Watermelon~partial.swiftdoc : /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Watermelon.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/Swift.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.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/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval32.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext64.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet6/in6.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUUID.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURL.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugInCOM.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/alloca.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSData.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/data.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolMetadata.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/quota.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netdb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/timeb.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdlib.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/glob.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timespec.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomic.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_sync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_o_dsync.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/malloc/_malloc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/proc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ipc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/rpc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exc.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSThread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/sched.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucred.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSSpinLockDeprecated.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctermid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/uuid/uuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/gethostuuid.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kmod.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/unistd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pwd.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_interface.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtectionSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorSpace.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionDifference.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/once.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/source.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/resource.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLNode.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/rbtree.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFPage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGImage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookieStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ThreadLocalStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredentialStorage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPMessage.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/message.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedCollectionChange.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLAuthenticationChallenge.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCache.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHTTPCookie.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_locale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_xlocale.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSHashTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMapTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFOperatorTable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_purgable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_posix_vdisable.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileHandle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSBundle.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/file.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/clonefile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/copyfile.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/utsname.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_time.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObjCRuntime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/runtime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utime.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_os_inline.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimeZone.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_ctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/__wctype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/runetype.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/semaphore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUbiquitousKeyValueStore.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMethodSignature.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecBase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/base.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/readpassphrase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLResponse.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCompoundPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSComparisonPredicate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecCertificate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_state.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/CipherSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSAtomicQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotificationQueue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/queue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValue.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/time_value.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_page_size.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_setsize.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_def.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStddef.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_offsetof.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBag.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/fp_reg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGShading.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueCoding.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionRequestHandling.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAttributedString.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_string.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_symbol_aliasing.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/AssertionReporting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyValueObserving.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/msg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fmtmsg.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/search.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fnmatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/dispatch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_switch.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/KeyPath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/math.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tgmath.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kauth.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-api.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port_obj.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigaltstack.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/block.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetwork.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_task.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecSharedCredential.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/signal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityInternal.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_timeval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateInterval.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/acl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_dl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/dyld_kernel.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/util.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syscall.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/poll.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNull.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_null.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLProtocol.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSAutoreleasePool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdbool.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecAccessControl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/pthread_impl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sysctl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/fcntl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFFTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFSocketStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContentStream.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_param.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ndbm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionItem.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_nl_item.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/System.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/shm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ioccom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttycom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Random.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecRandom.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGAffineTransform.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/vm.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPlugIn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/boolean.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_endian.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mman.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dlfcn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libgen.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/in.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_region.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileVersion.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLSession.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRegularExpression.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUserNotification.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHTTPAuthentication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSInvocation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CoreFoundation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOperation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSJSONSerialization.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXPCConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLConnection.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFunction.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSException.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_common.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPattern.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/kern_return.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/un.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/spawn.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColorConversionInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProcessInfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/ipc_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/page_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/zone_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/hash_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/vm_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/lockgroup_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_info.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_langinfo.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/io.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/aio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_stdio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/sockio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/filio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/cpio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/uio.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/errno.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_zero.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/objc-auto.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBinaryHeap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_map.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/bootstrap.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/netinet/tcp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/setjmp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRunLoop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/workloop.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/grp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/group.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wordexp.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCalendar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_char.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_wchar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/tar.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_var.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/ndr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumber.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimalNumber.h /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/RocketChatRN-Bridging-Header.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSItemProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCoder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/i386/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libkern/_OSByteOrder.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/architecture/byte_order.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUndoManager.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLinguisticTagger.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTimer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSValueTransformer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGDataConsumer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSScanner.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileWrapper.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSXMLParser.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNotificationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFilePresenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSRelativeDateTimeFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSLengthFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateIntervalFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNumberFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMassFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDateComponentsFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurementFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSByteCountFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSListFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnergyFormatter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSKeyedArchiver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGLayer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringTokenizer.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_clr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_behavior.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGColor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSError.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_error.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileCoordinator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSEnumerator.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFBitVector.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSortDescriptor.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/err.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/attr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/xattr.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeStubs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_statistics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetDiagnostics.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPreferences.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPathUtilities.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/times.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/MacTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/std_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/if_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach_debug/mach_debug_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/nl_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/exception_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_voucher_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/memory_object_types.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_inttypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMetadataAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_attributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkDefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/cdefs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/statvfs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xattr_flags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/eflags.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/secure/_strings.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/paths.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread_spis.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/TargetConditionals.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_syscalls.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDataShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/UnicodeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSLocaleShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RuntimeShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSTimeZoneShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFHashingShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexPathShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCalendarShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCoderShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSFileManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSUndoManagerShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSKeyedArchiverShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSErrorShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CFCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSCharacterSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSIndexSetShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/ObjectiveCOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/LibcOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/DispatchOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/CoreFoundationOverlayShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/NSDictionaryShims.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerFunctions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolOptions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/termios.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/pthread/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/qos.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ConditionalMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AssertMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/AvailabilityMacros.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_traps.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ifaddrs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFNetworkErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mig_errors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFURLAccess.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProgress.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/GlobalObjects.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/_structs.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_limits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/syslimits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sysexits.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserDefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ttydefaults.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPersonNameComponents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit_uevents.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/appleapiopts.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_special_ports.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/i386/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/machine/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_status.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint32_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint64_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint16_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uint8_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_filesec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_iovec_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsobj_id_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_gid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_pid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_guid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uuid_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_cond_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_once_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mode_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_time_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ct_rune_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctype_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mbstate_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_size_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blksize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_rsize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ssize_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ptrdiff_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_off_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_clock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlock_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_nlink_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_socklen_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ino_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_errno_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wchar_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_addr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_caddr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_intptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_uintptr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_attr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_condattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_rwlockattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutexattr_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_useconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_suseconds_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_wctrans_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sigset_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_blkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsblkcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fsfilcnt_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_wint_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_mach_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_in_port_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_dev_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_intmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_types/_uintmax_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_mutex_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_pthread/_pthread_key_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_sa_family_t.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/float.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/stat.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_act.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecProtocolObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/HeapObject.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/object.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_select.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_inspect.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrderedSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSCharacterSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSIndexSet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Target.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFSocket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/socket.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/arpa/inet.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/lock_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_seek_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/processor_set.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_isset.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/wait.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/bsm/audit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ulimit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUnit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_init.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_inherit.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSTextCheckingResult.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_s_ifmt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGradient.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSMeasurement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDocument.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/dirent.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/event.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_int.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/SwiftStdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/stdint.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGFont.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/RefCount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/mount.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_reboot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/vm_prot.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/getopt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/assert.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMessagePort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFMachPort.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_u_short.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_port.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/FoundationShimSupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFProxySupport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecureTransport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecImportExport.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSURLRequest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPropertyList.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_va_list.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Headers/CFHost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/mach_host.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/kdebug_signpost.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecTrust.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFStringEncodingExt.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSExtensionContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGBitmapContext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/i386/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/machine/_mcontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_ucontext.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/net/net_kev.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_priv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/fenv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/iconv.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/ftw.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_regex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/complex.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/utmpx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/lctx.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSPointerArray.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecPolicy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/sync_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/thread_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/task_policy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecKey.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_notify.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSOrthography.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/clock_reply.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_types/_fd_copy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGPDFDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDictionary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/xlocale/_monetary.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CGGeometry.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/os/availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/sys/_posix_availability.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/Visibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/FoundationLegacySwiftCompatibility.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFFileSecurity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach/host_security.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/SecIdentity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSUserActivity.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSProxy.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/mach-o/module.map /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/libxml2/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/simd/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/unicode/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/dispatch/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/CommonCrypto/module.modulemap /Volumes/new/mobile/Rocket.Chat.ReactNative/ios/Pods/Firebase/CoreOnly/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CFNetwork.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreFoundation.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/lib/swift/shims/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.1.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
module UnrealScript.Engine.InterpTrackInstHeadTracking;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.SkelControlLookAt;
import UnrealScript.Engine.InterpTrackInst;
import UnrealScript.Engine.Actor;
import UnrealScript.Engine.InterpTrackHeadTracking;
extern(C++) interface InterpTrackInstHeadTracking : InterpTrackInst
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class Engine.InterpTrackInstHeadTracking")); }
private static __gshared InterpTrackInstHeadTracking mDefaultProperties;
@property final static InterpTrackInstHeadTracking DefaultProperties() { mixin(MGDPC("InterpTrackInstHeadTracking", "InterpTrackInstHeadTracking Engine.Default__InterpTrackInstHeadTracking")); }
struct ActorToLookAt
{
private ubyte __buffer__[24];
public extern(D):
private static __gshared ScriptStruct mStaticClass;
@property final static ScriptStruct StaticClass() { mixin(MGSCS("ScriptStruct Engine.InterpTrackInstHeadTracking.ActorToLookAt")); }
@property final
{
auto ref
{
float StartTimeBeingLookedAt() { mixin(MGPS("float", 16)); }
float LastKnownDistance() { mixin(MGPS("float", 12)); }
float EnteredTime() { mixin(MGPS("float", 8)); }
float Rating() { mixin(MGPS("float", 4)); }
Actor ActorVar() { mixin(MGPS("Actor", 0)); }
}
bool CurrentlyBeingLookedAt() { mixin(MGBPS(20, 0x1)); }
bool CurrentlyBeingLookedAt(bool val) { mixin(MSBPS(20, 0x1)); }
}
}
@property final auto ref
{
ScriptArray!(SkelControlLookAt) TrackControls() { mixin(MGPC("ScriptArray!(SkelControlLookAt)", 128)); }
float LastUpdatePosition() { mixin(MGPC("float", 140)); }
// ERROR: Unsupported object class 'ComponentProperty' for the property named 'Mesh'!
// ERROR: Unsupported object class 'MapProperty' for the property named 'CurrentActorMap'!
InterpTrackHeadTracking.EHeadTrackingAction Action() { mixin(MGPC("InterpTrackHeadTracking.EHeadTrackingAction", 60)); }
}
}
| D |
module routers;
public import routers.router;
import http : Request, Response;
shared interface RequestHandler
{
void handleRequest(Request, Response);
}
alias RequestHandlerDelegate = void delegate(Request, Response);
class DelegateRequestHandler : RequestHandler
{
private RequestHandlerDelegate _delegate;
this(RequestHandlerDelegate delegate_) shared
{
_delegate = delegate_;
}
void handleRequest(Request req, Response res) shared
{
_delegate(req, res);
}
}
| D |
instance PIR_1395_Addon_InExtremo_Lutter(Npc_Default)
{
name[0] = "Ëþòòåð";
npcType = npctype_main;
guild = GIL_NONE;
level = 4;
voice = 7;
id = 1395;
flags = NPC_FLAG_IMMORTAL;
attribute[ATR_STRENGTH] = 20;
attribute[ATR_DEXTERITY] = 10;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 88;
attribute[ATR_HITPOINTS] = 88;
CreateInvItem(self,ItMi_IEDrumScheit);
B_CreateAmbientInv(self);
Mdl_SetVisual(self,"HUMANS.MDS");
Mdl_SetVisualBody(self,"Hum_IE_Lutter_INSTRUMENT",DEFAULT,DEFAULT,"HUM_HEAD_Lutter",DEFAULT,DEFAULT,-1);
fight_tactic = FAI_HUMAN_STRONG;
Npc_SetTalentSkill(self,NPC_TALENT_1H,1);
daily_routine = Rtn_Start_1395;
};
func void Rtn_Start_1395()
{
TA_Stand_Eating(5,0,20,0,"WP_STAND");
TA_Stand_Eating(20,0,5,0,"WP_STAND");
};
func void Rtn_Concert_1395()
{
TA_Concert(5,0,20,0,"WP_STAND");
TA_Concert(20,0,5,0,"WP_STAND");
};
| D |
/home/zbf/workspace/git/RTAP/target/debug/deps/libc-5241e4d83436d463.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/macros.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fixed_width_ints.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/windows/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/cloudabi/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fuchsia/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/switch.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/vxworks/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/sgx.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/wasi.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/uclibc/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/newlib/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/bsd/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/compat.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/haiku/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/redox/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/emscripten/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/android/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/musl/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b32/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/s390x.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/no_align.rs
/home/zbf/workspace/git/RTAP/target/debug/deps/liblibc-5241e4d83436d463.rlib: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/macros.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fixed_width_ints.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/windows/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/cloudabi/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fuchsia/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/switch.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/vxworks/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/sgx.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/wasi.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/uclibc/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/newlib/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/bsd/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/compat.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/haiku/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/redox/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/emscripten/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/android/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/musl/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b32/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/s390x.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/no_align.rs
/home/zbf/workspace/git/RTAP/target/debug/deps/libc-5241e4d83436d463.d: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/macros.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fixed_width_ints.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/windows/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/cloudabi/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fuchsia/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/switch.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/vxworks/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/sgx.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/wasi.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/uclibc/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/newlib/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/bsd/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/compat.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/haiku/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/hermit/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/redox/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/emscripten/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/android/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/musl/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b32/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/s390x.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/no_align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/align.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/no_align.rs
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/lib.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/macros.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fixed_width_ints.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/windows/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/cloudabi/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/fuchsia/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/switch.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/vxworks/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/hermit/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/sgx.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/wasi.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/uclibc/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/newlib/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/bsd/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/solarish/compat.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/haiku/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/hermit/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/redox/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/emscripten/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/android/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/musl/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b32/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/s390x.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/gnu/no_align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/linux_like/linux/no_align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/align.rs:
/home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/libc-0.2.65/src/unix/no_align.rs:
| D |
// REQUIRED_ARGS: -transition=checkimports -transition=import
/*
TEST_OUTPUT:
---
fail_compilation/checkimports1c.d(16): Deprecation: local import search method found struct `imports.diag12598a.lines` instead of variable `checkimports1c.C.lines`
fail_compilation/checkimports1c.d(16): Error: `lines` is a `struct` definition and cannot be modified
---
*/
// old lookup + information (the order of switches is reverse)
class C
{
void f()
{
import imports.diag12598a;
lines ~= "";
}
string[] lines;
}
| D |
/Users/waqar/Exercism/rust/snake_game/target/rls/debug/build/num-traits-c708b3fe2ac7fb86/build_script_build-c708b3fe2ac7fb86: /Users/waqar/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs
/Users/waqar/Exercism/rust/snake_game/target/rls/debug/build/num-traits-c708b3fe2ac7fb86/build_script_build-c708b3fe2ac7fb86.d: /Users/waqar/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs
/Users/waqar/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs:
| D |
// hello.d
// Hello world!
int main(char[][] args)
{
printf("hello world\n");
printf("args.length = %d\n", args.length);
for (int i = 0; i < args.length; i++)
printf("args[%d] = '%s'\n", i, (char *)args[i]);
return 0;
}
| D |
<?xml version="1.0" encoding="ASCII"?>
<di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi">
<pageList>
<availablePage>
<emfPageIdentifier href="_pRWYsA_YEeqjDam8EyRRugdcb54558-e89d-4ccf-811f-e7303670e07f-Sequence.notation#_ePe70A_aEeqjDam8EyRRug"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="_pRWYsA_YEeqjDam8EyRRugdcb54558-e89d-4ccf-811f-e7303670e07f-Sequence.notation#_ePe70A_aEeqjDam8EyRRug"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
| D |
module IO.Block;
import GBAUtils.DataStore;
import GBAUtils.GBARom;
import IO.Tile;
public class Block
{
public Tile[2][2] tilesThirdLayer;
public Tile[2][2] tilesForeground;
public Tile[2][2] tilesBackground;
public uint blockID;
public uint backgroundMetaData;
private GBARom rom;
public this(int blockID, GBARom rom)
{
this(blockID,0,rom);//TODO//MapIO.blockRenderer.getBehaviorByte(blockID),rom);
}
public this(uint blockID, uint bgBytes, GBARom rom)
{
this.blockID = blockID;
this.backgroundMetaData = bgBytes;
this.rom = rom;
// blockRenderer.getBehaviorByte(blockID)
for(int i = 0; i < 2; i++)
{
for(int j = 0; j < 2; j++)
{
tilesForeground[i][j] = new Tile(0,0,false,false);
tilesBackground[i][j] = new Tile(0,0,false,false);
}
}
}
public void setTile(int x, int y, Tile t)
{
try
{
if (x < 2)
tilesBackground[x][y] = t.getNewInstance();
else
tilesForeground[x-2][y] = t.getNewInstance();
}
catch(Exception e){}
}
public Tile getTile(int x, int y)
{
try
{
if (x < 2)
return tilesBackground[x][y].getNewInstance();
else
return tilesForeground[x-2][y].getNewInstance();
}
catch(Exception e)
{
return new Tile(0,0,false,false);
}
}
public void setMetaData(int bytes)
{
backgroundMetaData = bytes;
}
public void save()
{
int pBlocks = 0;//TODO//MapIO.blockRenderer.getGlobalTileset().tilesetHeader.pBlocks;
int pBehavior = 0;//TODO//MapIO.blockRenderer.getGlobalTileset().tilesetHeader.pBehavior;
int blockNum = blockID;
if (blockNum >= DataStore.MainTSBlocks)
{
blockNum -= DataStore.MainTSBlocks;
pBlocks = 0;//TODO//MapIO.blockRenderer.getLocalTileset().tilesetHeader.pBlocks;
pBehavior = 0;//TODO//MapIO.blockRenderer.getLocalTileset().tilesetHeader.pBehavior;
}
pBlocks += (blockNum * 16);
rom.Seek(pBlocks);
for (int i = 0; i < 2; i++)
{
for (int y1 = 0; y1 < 2; y1++)
{
for (int x1 = 0; x1 < 2; x1++)
{
if(i == 0)
{
ushort toWrite = tilesBackground[x1][y1].getTileNumber() & 0x3FF;
toWrite |= (tilesBackground[x1][y1].getPaletteNum() & 0xF) << 12;
toWrite |= (tilesBackground[x1][y1].xFlip ? 0x1 : 0x0) << 10;
toWrite |= (tilesBackground[x1][y1].yFlip ? 0x1 : 0x0) << 11;
rom.writeWord(toWrite);
}
else
{
ushort toWrite = tilesForeground[x1][y1].getTileNumber() & 0x3FF;
toWrite |= (tilesForeground[x1][y1].getPaletteNum() & 0xF) << 12;
toWrite |= (tilesForeground[x1][y1].xFlip ? 0x1 : 0x0) << 10;
toWrite |= (tilesForeground[x1][y1].yFlip ? 0x1 : 0x0) << 11;
rom.writeWord(toWrite);
}
}
}
}
rom.Seek(pBehavior + (blockNum * 4));
rom.writePointer(backgroundMetaData);
}
}
| D |
/Users/ryosukesatoh/Projects/rust-play/yew-app/target/debug/deps/libthiserror_impl-8641e978d7ac8493.dylib: /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/lib.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/ast.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/attr.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/expand.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/fmt.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/prop.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/valid.rs
/Users/ryosukesatoh/Projects/rust-play/yew-app/target/debug/deps/thiserror_impl-8641e978d7ac8493.d: /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/lib.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/ast.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/attr.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/expand.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/fmt.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/prop.rs /Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/valid.rs
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/lib.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/ast.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/attr.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/expand.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/fmt.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/prop.rs:
/Users/ryosukesatoh/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.26/src/valid.rs:
| D |
instance VLK_435_Nadja(Npc_Default)
{
name[0] = "Nadja";
guild = GIL_VLK;
id = 435;
voice = 16;
flags = NPC_FLAG_IMMORTAL;
npcType = npctype_main;
aivar[AIV_ToughGuy] = TRUE;
B_SetAttributesToChapter(self,1);
fight_tactic = FAI_HUMAN_COWARD;
EquipItem(self,itmi_nadjawig);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,FEMALE,"Hum_Head_Babe",FaceBabe_N_Hure,BodyTex_N,itar_nadja_addon);
Mdl_SetModelFatness(self,0);
Mdl_ApplyOverlayMds(self,"Humans_Babe.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,30);
daily_routine = Rtn_Start_435;
};
func void Rtn_Start_435()
{
TA_Stand_Drinking(11,50,12,50,"NW_PUFF_DANCE");
TA_Smoke_Joint(12,50,13,50,"NW_CITY_PUFF_ROOM_01");
TA_Stand_Drinking(13,50,17,0,"NW_PUFF_DANCE");
TA_Dance(17,0,20,0,"NW_PUFF_DANCE");
TA_Stand_Drinking(20,0,0,0,"NW_PUFF_DANCE");
TA_Dance(0,0,5,0,"NW_PUFF_DANCE");
TA_Sleep(5,0,11,50,"NW_CITY_NADJA_BED");
};
func void Rtn_Dance_435()
{
TA_Stand_ArmsCrossed(8,0,22,0,"NW_CITY_HABOUR_PUFF_NADJA");
TA_Stand_ArmsCrossed(22,0,8,0,"NW_CITY_HABOUR_PUFF_NADJA");
};
func void Rtn_Smoke_435()
{
TA_Smoke_Joint(5,0,17,0,"NW_PUFF_DANCE");
TA_Dance(17,0,21,0,"NW_PUFF_DANCE");
TA_Smoke_Joint(21,0,21,30,"NW_PUFF_DANCE");
TA_Dance(21,30,5,0,"NW_PUFF_DANCE");
};
func void Rtn_Tot_435()
{
TA_Stand_Guarding(0,0,12,0,"TOT");
TA_Stand_Guarding(12,0,0,0,"TOT");
};
instance itmi_nadjawig(C_Item)
{
name = "";
mainflag = ITEM_KAT_NF;
flags = 0;
value = 0;
wear = WEAR_HEAD;
visual = "ITMI_NADJAWIG_01.3DS";
visual_skin = 0;
material = MAT_LEATHER;
description = name;
};
| D |
// Written in D programming language
/**
* Part of asynchronous pool realization.
*
* Copyright: © 2014 DSoftOut
* License: Subject to the terms of the MIT license, as written in the included LICENSE file.
* Authors: NCrashed <[email protected]>
*/
module pgator.db.async.transaction;
import std.conv;
import std.exception;
import pgator.db.pool;
/**
* Handles all data that is need to perform SQL transaction: queries, parameters,
* info where to put parameters and local enviroment variables.
*/
class Transaction : IConnectionPool.ITransaction
{
this(string[] commands, string[] params, uint[] argnums, string[string] vars, bool[] oneRowConstraints) immutable
{
this.commands = commands.idup;
this.params = params.idup;
this.argnums = argnums.idup;
string[string] temp = vars.dup;
this.vars = assumeUnique(temp);
this.oneRowConstraints = oneRowConstraints.idup;
}
override bool opEquals(Object o) nothrow
{
auto b = cast(Transaction)o;
if(b is null) return false;
return commands == b.commands && params == b.params && argnums == b.argnums && vars == b.vars && oneRowConstraints == b.oneRowConstraints;
}
override hash_t toHash() nothrow @trusted
{
hash_t toHashArr(T)(immutable T[] arr) nothrow
{
hash_t h;
auto hashFunc = &(typeid(T).getHash);
foreach(elem; arr) h += hashFunc(&elem);
return h;
}
hash_t toHashAss(T)(immutable T[T] arr) nothrow
{
hash_t h;
scope(failure) return 0;
auto hashFunc = &(typeid(T).getHash);
foreach(key, val; arr) h += hashFunc(&key) + hashFunc(&val);
return h;
}
return toHashArr(commands) + toHashArr(params) + toHashArr(argnums) + toHashAss(vars) + toHashArr(oneRowConstraints);
}
void toString(scope void delegate(const(char)[]) sink) const
{
if(commands.length == 1)
{
sink("Command: ");
sink(commands[0]);
if(params.length != 0)
{
sink("\n");
sink(text("With params: ", params));
}
sink("\n");
sink(text("One row: ",oneRowConstraints[0]));
if(vars.length != 0) sink("\n");
}
else
{
sink("Commands: \n");
size_t j = 0;
foreach(immutable i, command; commands)
{
sink(text(i, ": ", command));
if(params.length != 0)
{
sink(text("With params: ", params[j .. j+argnums[i]]));
}
sink("\n");
sink(text("One row: ",oneRowConstraints[i]));
if(i != commands.length-1) sink("\n");
j += argnums[i];
}
if(vars.length != 0) sink("\n");
}
if(vars.length != 0)
{
sink("Variables: \n");
size_t i = 0;
foreach(key, value; vars)
{
sink(text(key, " : ", value));
if(i++ != vars.length - 1) sink("\n");
}
}
}
immutable string[] commands;
immutable string[] params;
immutable uint[] argnums;
immutable string[string] vars;
immutable bool[] oneRowConstraints;
} | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/Clear/ConsoleClear.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Console.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleStyle.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Choose.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorState.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Ask.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/Terminal.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Ephemeral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Confirm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/LoadingBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ProgressBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Clear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/ConsoleClear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorRenderer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Center.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleColor.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Wait.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleTextFragment.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Input.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Output.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleText.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/CustomActivity.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/Clear/ConsoleClear~partial.swiftmodule : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Console.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleStyle.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Choose.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorState.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Ask.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/Terminal.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Ephemeral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Confirm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/LoadingBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ProgressBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Clear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/ConsoleClear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorRenderer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Center.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleColor.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Wait.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleTextFragment.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Input.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Output.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleText.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/CustomActivity.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/Clear/ConsoleClear~partial.swiftdoc : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Console.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleStyle.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Choose.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorState.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Ask.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/Terminal.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Ephemeral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Confirm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/LoadingBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ProgressBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Clear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/ConsoleClear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorRenderer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Center.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleColor.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Wait.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleTextFragment.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Input.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Output.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleText.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/CustomActivity.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/Clear/ConsoleClear~partial.swiftsourceinfo : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/ANSI.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Deprecated.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Console.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleStyle.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Choose.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorState.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Ask.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Terminal/Terminal.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Ephemeral.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Confirm.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/LoadingBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ProgressBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityBar.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/Console+Clear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Clear/ConsoleClear.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleLogger.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicatorRenderer.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Center.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleColor.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/ConsoleError.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/ActivityIndicator.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Utilities/Exports.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Wait.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleTextFragment.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Input/Console+Input.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/Console+Output.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Output/ConsoleText.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/console/Sources/Console/Activity/CustomActivity.swift /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.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/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOHTTP1.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/PostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentPostgreSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIO.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/HTTP.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOTLS.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Async.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Command.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Service.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Console.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Core.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentSQLite.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOPriorityQueue.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Logging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Debugging.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/SQLBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/FluentBenchmark.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/COperatingSystem.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Random.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/URLEncodedForm.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Authentication.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Validation.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Crypto.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/App.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Vapor.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Bits.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/WebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/DatabaseKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/TemplateKit.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Fluent.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Multipart.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
module UnrealScript.Engine.SeqAct_ForceFeedback;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.ForceFeedbackWaveform;
import UnrealScript.Engine.SequenceAction;
extern(C++) interface SeqAct_ForceFeedback : SequenceAction
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass StaticClass() { mixin(MGSCC("Class Engine.SeqAct_ForceFeedback")); }
private static __gshared SeqAct_ForceFeedback mDefaultProperties;
@property final static SeqAct_ForceFeedback DefaultProperties() { mixin(MGDPC("SeqAct_ForceFeedback", "SeqAct_ForceFeedback Engine.Default__SeqAct_ForceFeedback")); }
@property final auto ref
{
ForceFeedbackWaveform FFWaveform() { mixin(MGPC("ForceFeedbackWaveform", 232)); }
ScriptClass PredefinedWaveForm() { mixin(MGPC("ScriptClass", 236)); }
}
}
| D |
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/Async.build/Future+Variadic.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Async+NIO.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Variadic.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Deprecated.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Void.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/FutureType.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Collection+Future.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+DoCatch.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Global.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Transform.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Flatten.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Map.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Worker.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/QueueHandler.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/AsyncError.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/Async.build/Future+Variadic~partial.swiftmodule : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Async+NIO.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Variadic.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Deprecated.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Void.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/FutureType.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Collection+Future.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+DoCatch.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Global.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Transform.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Flatten.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Map.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Worker.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/QueueHandler.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/AsyncError.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/Async.build/Future+Variadic~partial.swiftdoc : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Async+NIO.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Variadic.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Deprecated.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Void.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/FutureType.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Collection+Future.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+DoCatch.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Global.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Transform.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Flatten.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Future+Map.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Worker.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/QueueHandler.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/AsyncError.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/core/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/cpp_magic.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/ifaddrs-android.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOSHA1.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CCryptoOpenSSL.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOZlib.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIODarwin.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOHTTPParser.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOAtomics.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/CNIOLinux.build/module.modulemap /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio-zlib-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes
| D |
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/tokio_signal-eef7d03a5e279c8d.rmeta: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/unix.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/windows.rs
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/libtokio_signal-eef7d03a5e279c8d.rlib: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/unix.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/windows.rs
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/tokio_signal-eef7d03a5e279c8d.d: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/unix.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/windows.rs
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs:
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/unix.rs:
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/windows.rs:
| D |
module tests.it.buildgen.automatic_dependency;
import tests.it.buildgen;
import reggae.path: buildPath;
version(DigitalMars):
static foreach (backend; ["ninja", "make", "tup", "binary"])
@("C++ dependencies get automatically computed with objectFile (" ~ backend ~ ")")
@Tags(backend)
unittest {
import reggae.config: options;
enum project = "d_and_cpp";
generateBuild!project(backend);
shouldBuild!project;
["calc", "5"].shouldSucceed.shouldEqual(
["The result of calc(10) is 30"]);
// I don't know what's going on here but the Cucumber test didn't do this either
if(options.backend == Backend.tup) return;
overwrite(options, buildPath("src/maths.hpp"), "const int factor = 10;");
shouldBuild!project;
["calc", "3"].shouldSucceed.shouldEqual(
["The result of calc(6) is 60"]);
}
static foreach (backend; ["ninja", "make", "tup", "binary"])
@("D dependencies get automatically computed with objectFile (" ~ backend ~ ")")
@Tags(backend)
unittest {
import reggae.config: options;
enum project = "d_and_cpp";
generateBuild!project(backend);
shouldBuild!project;
["calc", "5"].shouldSucceed.shouldEqual(
["The result of calc(10) is 30"]);
// I don't know what's going on here but the Cucumber test didn't do this either
if(options.backend == Backend.tup) return;
overwrite(options, buildPath("src/constants.d"), "immutable int leconst = 1;");
shouldBuild!project;
["calc", "3"].shouldSucceed.shouldEqual(
["The result of calc(3) is 9"]);
}
| D |
module deadcode.gui.controls.scrollview;
import deadcode.edit.bufferview;
import deadcode.gui.event : MouseWheelEvent, EventUsed;
import deadcode.gui.widget;
import deadcode.gui.widgetfeatures;
import deadcode.math;
class ScrollView : Widget
{
private
{
Widget _scrollArea;
Vec2f _scrollOffset = Vec2f(0f, 0f);
Vec2f _scrollSpeed = Vec2f(4f, 4f);
}
@property
{
const(Vec2f) contentSize() const
{
return _scrollArea.size;
}
void contentSize(Vec2f sz)
{
_scrollArea.size = sz;
}
void scrollSpeed(Vec2f s) pure nothrow @safe
{
_scrollSpeed = s;
}
Vec2f scrollSpeed() const pure nothrow @safe
{
return _scrollSpeed;
}
Widget contentWidget() pure nothrow @safe
{
return _scrollArea;
}
}
this(Vec2f contentSize) nothrow
{
_scrollArea = new Widget(this, 0, 0, contentSize.x, contentSize.y);
onMouseWheelCallback = &scroll;
}
private deadcode.core.event.EventUsed scroll(MouseWheelEvent e, Widget w)
{
_scrollOffset += e.scroll * _scrollSpeed;
_scrollOffset = _scrollOffset.min(Vec2f(0,0));
forceDirty();
return EventUsed.yes;
}
override void updateLayout(bool fit, Widget positionReference)
{
_scrollArea.pos = rect.offset(_scrollOffset).pos;
_scrollArea.updateLayout(fit, _scrollArea);
}
override void draw()
{
if (!visible || w() == 0)
return;
import derelict.opengl3.gl3;
Rectf r = rect;
r.y = window.size.y - (r.h + r.y);
glScissor( cast(int)r.x, cast(int)r.y, cast(int)r.w, cast(int)r.h);
glEnable(GL_SCISSOR_TEST);
super.draw();
glDisable(GL_SCISSOR_TEST);
}
}
| D |
/**
* TypeInfo support code.
*
* Copyright: Copyright Digital Mars 2004 - 2009.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Walter Bright
*/
/* Copyright Digital Mars 2004 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module rt.typeinfo.ti_Adouble;
private import rt.typeinfo.ti_double;
private import rt.util.hash;
// double[]
class TypeInfo_Ad : TypeInfo
{
override string toString() { return "double[]"; }
override hash_t getHash(in void* p)
{ double[] s = *cast(double[]*)p;
return hashOf(s.ptr, s.length * double.sizeof);
}
override equals_t equals(in void* p1, in void* p2)
{
double[] s1 = *cast(double[]*)p1;
double[] s2 = *cast(double[]*)p2;
size_t len = s1.length;
if (len != s2.length)
return 0;
for (size_t u = 0; u < len; u++)
{
if (!TypeInfo_d._equals(s1[u], s2[u]))
return false;
}
return true;
}
override int compare(in void* p1, in void* p2)
{
double[] s1 = *cast(double[]*)p1;
double[] s2 = *cast(double[]*)p2;
size_t len = s1.length;
if (s2.length < len)
len = s2.length;
for (size_t u = 0; u < len; u++)
{
int c = TypeInfo_d._compare(s1[u], s2[u]);
if (c)
return c;
}
if (s1.length < s2.length)
return -1;
else if (s1.length > s2.length)
return 1;
return 0;
}
override size_t tsize()
{
return (double[]).sizeof;
}
override uint flags()
{
return 1;
}
override TypeInfo next()
{
return typeid(double);
}
override size_t talign()
{
return (double[]).alignof;
}
version (X86_64) override int argTypes(out TypeInfo arg1, out TypeInfo arg2)
{
//arg1 = typeid(size_t);
//arg2 = typeid(void*);
return 0;
}
}
// idouble[]
class TypeInfo_Ap : TypeInfo_Ad
{
override string toString() { return "idouble[]"; }
override TypeInfo next()
{
return typeid(idouble);
}
}
| D |
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageFormat.o : /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Image.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Box.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.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/ozgun/Desktop/IOSCase/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Kingfisher.h /Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.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/CoreMedia.framework/Headers/CoreMedia.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/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.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/AVFoundation.framework/Headers/AVFoundation.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/CoreAudioTypes.framework/Headers/CoreAudioTypes.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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.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/AVKit.framework/Headers/AVKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageFormat~partial.swiftmodule : /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Image.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Box.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.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/ozgun/Desktop/IOSCase/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Kingfisher.h /Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.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/CoreMedia.framework/Headers/CoreMedia.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/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.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/AVFoundation.framework/Headers/AVFoundation.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/CoreAudioTypes.framework/Headers/CoreAudioTypes.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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.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/AVKit.framework/Headers/AVKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageFormat~partial.swiftdoc : /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Image.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Box.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.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/ozgun/Desktop/IOSCase/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Kingfisher.h /Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.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/CoreMedia.framework/Headers/CoreMedia.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/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.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/AVFoundation.framework/Headers/AVFoundation.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/CoreAudioTypes.framework/Headers/CoreAudioTypes.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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.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/AVKit.framework/Headers/AVKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageFormat~partial.swiftsourceinfo : /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Source.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Image.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/Storage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/DiskStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/ImageCache.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Runtime.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Delegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProgressive.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageDrawing.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageTransition.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Placeholder.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherManager.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/Kingfisher.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RequestModifier.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/Filter.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/General/KingfisherError.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageProcessor.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/Indicator.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Image/ImageFormat.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Result.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Utility/Box.swift /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMIDI.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreMedia.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/simd.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Accelerate.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/AVFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreAudio.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/os.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/ozgun/Desktop/IOSCase/Pods/Target\ Support\ Files/Kingfisher/Kingfisher-umbrella.h /Users/ozgun/Desktop/IOSCase/Pods/Kingfisher/Sources/Kingfisher.h /Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/Kingfisher.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/CoreMedia.framework/Headers/CoreMedia.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/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Accelerate.framework/Headers/Accelerate.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/AVFoundation.framework/Headers/AVFoundation.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/CoreAudioTypes.framework/Headers/CoreAudioTypes.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/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/os.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/AVKit.framework/Headers/AVKit.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/MediaToolbox.framework/Headers/MediaToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/AudioToolbox.framework/Headers/AudioToolbox.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.6.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
/substrate-node-template/target/debug/deps/impl_codec-1f6b3a13543b07f0.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/impl-codec-0.4.2/src/lib.rs
/substrate-node-template/target/debug/deps/impl_codec-1f6b3a13543b07f0.d: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/impl-codec-0.4.2/src/lib.rs
/root/.cargo/registry/src/github.com-1ecc6299db9ec823/impl-codec-0.4.2/src/lib.rs:
| D |
// ARG_SETS: -i=,
// ARG_SETS: -i=imports.pkgmod313,
// ARG_SETS: -i=,imports.pkgmod313
// ARG_SETS: -i=imports.pkgmod313,-imports.pkgmod313.mod
// ARG_SETS: -i=imports.pkgmod313.package,-imports.pkgmod313.mod
// REQUIRED_ARGS: -Icompilable
// PERMUTE_ARGS:
// LINK:
/*
Can't really check for the missing function bar here because the error message
varies A LOT between different linkers. Assume that there is no other cause
of linking failure because then other tests would fail as well. Hence search
for the linker failure message issued by DMD:
TRANSFORM_OUTPUT: remove_lines("^(?!Error:).+$")
TEST_OUTPUT:
----
Error: linker exited with status $n$
----
*/
import imports.pkgmod313.mod;
void main()
{
bar();
}
| D |
/*
This file is part of BioD.
Copyright (C) 2012-2013 Artem Tarasov <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
module bio.core.bgzf.block;
import bio.bam.constants;
import bio.core.utils.memoize;
import std.array;
import std.conv;
import std.algorithm;
import std.zlib : crc32, ZlibException;
import etc.c.zlib;
import std.exception;
/**
Structure representing BGZF block.
In general, users shouldn't use it, as it is EXTREMELY low-level.
*/
struct BgzfBlock {
// field types are as in the SAM/BAM specification
// ushort ~ uint16_t, char ~ uint8_t, uint ~ uint32_t
public ulong start_offset; /// start offset in the file, in bytes
/// end offset in the file, in bytes
public ulong end_offset() @property const {
return start_offset + bsize + 1;
}
public ushort bsize; /// total Block SIZE minus one
public ushort cdata_size; /// compressed data size
/// A buffer is used to reduce number of allocations.
///
/// Its size is max(cdata_size, input_size)
/// Initially, it contains compressed data, but is rewritten
/// during decompressBgzfBlock -- indeed, who cares about
/// compressed data after it has been uncompressed?
public ubyte[] _buffer = void;
/// If block has been already decompressed, result is undefined.
public inout(ubyte[]) compressed_data() @property inout pure @safe nothrow {
return _buffer[0 .. cast(size_t)cdata_size];
}
public uint crc32;
public uint input_size; /// size of uncompressed data
bool dirty;
hash_t toHash() const pure @safe nothrow {
assert(!dirty);
return crc32;
}
bool opEquals(const ref BgzfBlock other) pure @safe nothrow {
assert(!dirty);
return opCmp(other) == 0;
}
int opCmp(const ref BgzfBlock other) const pure @safe nothrow {
assert(!dirty);
if (cdata_size < other.cdata_size)
return -1;
if (cdata_size > other.cdata_size)
return 1;
return std.algorithm.cmp(compressed_data, other.compressed_data);
}
}
/**
Struct representing decompressed BgzfBlock
Start offset is needed to be able to tell current virtual offset,
and yet be able to decompress blocks in parallel.
*/
struct DecompressedBgzfBlock {
ulong start_offset;
ulong end_offset;
ubyte[] decompressed_data;
}
///
alias Cache!(BgzfBlock, DecompressedBgzfBlock) BgzfBlockCache;
/// Function for BGZF block decompression.
/// Reuses buffer allocated for storing compressed data,
/// i.e. after execution buffer of the passed $(D block)
/// is overwritten with uncompressed data.
DecompressedBgzfBlock decompressBgzfBlock(BgzfBlock block,
BgzfBlockCache cache=null)
{
if (block.input_size == 0) {
return DecompressedBgzfBlock(block.start_offset,
block.start_offset + block.bsize + 1,
cast(ubyte[])[]); // EOF marker
// TODO: add check for correctness of EOF marker
}
if (cache !is null) {
auto ptr = cache.lookup(block);
if (ptr !is null)
return *ptr;
}
int err = void;
// allocate buffer on the stack
ubyte[BGZF_MAX_BLOCK_SIZE] uncompressed_buf = void;
// check that block follows BAM specification
enforce(block.input_size <= BGZF_MAX_BLOCK_SIZE,
"Uncompressed block size must be within " ~
to!string(BGZF_MAX_BLOCK_SIZE) ~ " bytes");
// for convenience, provide a slice
auto uncompressed = uncompressed_buf[0 .. block.input_size];
// set input data
etc.c.zlib.z_stream zs;
zs.next_in = cast(typeof(zs.next_in))block.compressed_data;
zs.avail_in = to!uint(block.compressed_data.length);
err = etc.c.zlib.inflateInit2(&zs, /* winbits = */-15);
if (err)
{
throw new ZlibException(err);
}
// uncompress it into a buffer on the stack
zs.next_out = cast(typeof(zs.next_out))uncompressed_buf.ptr;
zs.avail_out = block.input_size;
err = etc.c.zlib.inflate(&zs, Z_FINISH);
switch (err)
{
case Z_STREAM_END:
assert(zs.total_out == block.input_size);
err = etc.c.zlib.inflateEnd(&zs);
if (err != Z_OK) {
throw new ZlibException(err);
}
break;
default:
etc.c.zlib.inflateEnd(&zs);
throw new ZlibException(err);
}
assert(block.crc32 == crc32(0, uncompressed[]));
if (cache !is null) {
BgzfBlock compressed_bgzf_block = block;
compressed_bgzf_block._buffer = block._buffer.dup;
DecompressedBgzfBlock decompressed_bgzf_block;
with (decompressed_bgzf_block) {
start_offset = block.start_offset;
end_offset = block.end_offset;
decompressed_data = uncompressed[].dup;
}
cache.put(compressed_bgzf_block, decompressed_bgzf_block);
}
// Now copy back to block._buffer, overwriting existing data.
// It should have enough bytes already allocated.
assert(block._buffer.length >= block.input_size);
version(extraVerbose) {
import std.stdio;
stderr.writeln("[uncompressed] [write] range: ", block._buffer.ptr,
" - ", block._buffer.ptr + block.input_size);
}
block._buffer[0 .. block.input_size] = uncompressed[];
block.dirty = true;
return DecompressedBgzfBlock(block.start_offset, block.end_offset,
block._buffer[0 .. block.input_size]);
}
| D |
/*******************************************************************************
Implementation of DLS 'Put' request
copyright:
Copyright (c) 2011-2017 sociomantic labs GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
*******************************************************************************/
module dlsnode.request.PutRequest;
/*******************************************************************************
Imports
*******************************************************************************/
import Protocol = dlsproto.node.request.Put;
import ocean.transition;
/*******************************************************************************
Request handler
*******************************************************************************/
public scope class PutRequest : Protocol.Put
{
import dlsnode.request.model.ConstructorMixin;
import dlsnode.storage.StorageEngine;
import ocean.core.TypeConvert : downcast;
import swarm.util.RecordBatcher;
/***************************************************************************
Adds this.resources and constructor to initialize it and forward
arguments to base
***************************************************************************/
mixin RequestConstruction!();
/***************************************************************************
Verifies that this node is allowed to store records of given size
Params:
size = size to check
Returns:
'true' if size is allowed
***************************************************************************/
final override protected bool isSizeAllowed ( size_t size )
{
// Don't allow records larger than batch size
return size <= RecordBatch.DefaultMaxBatchSize;
}
/***************************************************************************
Tries storing record in DLS and reports success status
Params:
channel = channel to write record to
key = record key
value = record value
Returns:
'true' if storing was successful
***************************************************************************/
final override protected bool putRecord ( cstring channel, cstring key, cstring value )
{
this.resources.node_info.record_action_counters
.increment("handled", value.length);
auto storage_channel = this.resources.storage_channels.getCreate(channel);
if (storage_channel is null)
return false;
auto dls_channel = downcast!(StorageEngine)(storage_channel);
assert(dls_channel);
dls_channel.put(key, value, *this.resources.record_buffer,
this.resources.waiting_context);
return true;
}
}
| D |
module carbon.simd;
import std.stdio;
import core.simd;
import carbon.math;
import std.math;
version(D_SIMD):
/**
*/
float dotProduct(in Vector!(float[4])[] a, in Vector!(float[4])[] b) pure nothrow @trusted @nogc
in{
assert(a.length == b.length);
}
do{
alias V = Vector!(float[4]);
V sum;
sum = 0;
V* px = cast(V*)(a.ptr),
ph = cast(V*)(b.ptr),
qx = cast(V*)(px + a.length);
while(px != qx)
{
sum += *px * *ph;
++px;
++ph;
}
V ones;
ones.array = [1.0f, 1.0f, 1.0f, 1.0f];
sum = cast(V)__simd(XMM.DPPS, sum, ones, 0b11111111);
return sum.array[0];
}
unittest
{
scope(failure) {writefln("Unittest failure :%s(%s)", __FILE__, __LINE__); stdout.flush();}
scope(success) {writefln("Unittest success :%s(%s)", __FILE__, __LINE__); stdout.flush();}
Vector!(float[4])[4] a;
Vector!(float[4])[4] b;
float[] as = a[0].ptr[0 .. 16],
bs = b[0].ptr[0 .. 16];
float check = 0;
foreach(i; 0 .. 16){
as[i] = i;
bs[i] = i+1;
check += i * (i+1);
}
assert(isClose(check, dotProduct(a, b)));
}
/**
a[0] <- [x.re, x.im, y.re, y.im]
b[0] <- [z.re, z.im, w.re, w.im]
return: sum of (x*z + y*w)
*/
cfloat cpxDotProduct(in Vector!(float[4])[] a, in Vector!(float[4])[] b) pure nothrow @trusted @nogc
in{
assert(a.length == b.length);
}
do{
Vector!(float[4]) r, q;
r = 0;
q = 0;
auto px = a.ptr,
ph = b.ptr,
qx = a.ptr + a.length;
while(px != qx)
{
Vector!(float[4]) x = *px,
h = *ph;
r += x * h;
x = cast(Vector!(float[4]))__simd(XMM.SHUFPS, x, x, 0b10_11_00_01);
q += x * h;
++px;
++ph;
}
Vector!(float[4]) sign, ones;
sign.array = [1.0f, -1.0f, 1.0f, -1.0f];
ones.array = [1.0f, 1.0f, 1.0f, 1.0f];
r = cast(Vector!(float[4]))__simd(XMM.DPPS, r, sign, 0b11111111);
q = cast(Vector!(float[4]))__simd(XMM.DPPS, q, ones, 0b11111111);
return r.array[0] + q.array[0]*1i;
}
unittest
{
scope(failure) {writefln("Unittest failure :%s(%s)", __FILE__, __LINE__); stdout.flush();}
scope(success) {writefln("Unittest success :%s(%s)", __FILE__, __LINE__); stdout.flush();}
Vector!(float[4])[4] a;
Vector!(float[4])[4] b;
cfloat[] as = (cast(cfloat*)a[0].ptr)[0 .. 8],
bs = (cast(cfloat*)b[0].ptr)[0 .. 8];
cfloat check = 0+0i;
foreach(i; 0 .. 8){
as[i] = i + (i+1)*1i;
bs[i] = (i+1) + (i+2)*1i;
check += as[i] * bs[i];
}
cfloat res = cpxDotProduct(a, b);
assert(isClose(check.re, res.re));
assert(isClose(check.im, res.im));
}
/**
*/
cfloat cpxDotProduct(FastComplexArray!(float, 4) a, FastComplexArray!(float, 4) b) pure nothrow @trusted @nogc
{
Vector!(float[4]) pv = 0, qv = 0;
size_t len = a.length;
auto a_r_b = a.re.ptr,
a_r_e = a_r_b + len,
a_i_b = a.im.ptr,
a_i_e = a_i_b + len,
b_r_b = b.re.ptr,
b_r_e = b_r_b + len,
b_i_b = b.im.ptr,
b_i_e = b_i_b + len;
while(a_r_b != a_r_e){
pv += (*a_r_b * *b_r_b) - (*a_i_b * *b_i_b);
qv += (*a_i_b * *b_r_b) + (*a_r_b * *b_i_b);
++a_r_b;
++a_i_b;
++b_r_b;
++b_i_b;
}
Vector!(float[4]) ones;
ones.array = [1.0f, 1.0f, 1.0f, 1.0f];
pv = cast(Vector!(float[4]))__simd(XMM.DPPS, pv, ones, 0b11111111);
qv = cast(Vector!(float[4]))__simd(XMM.DPPS, qv, ones, 0b11111111);
return pv.array[0] + qv.array[0]*1i;
}
struct FastComplexArray(E = float, size_t N = 4)
{
Vector!(E[N])[] re;
Vector!(E[N])[] im;
size_t length() const pure nothrow @safe @nogc @property
{
return re.length;
}
void opOpAssign(string op)(R r)
if(op == "+" || op == "-")
{
iterate!(`*a `~op~`= b;`)(re, r);
}
void opOpAssign(string op)(R r)
if(op == "*" || op == "/")
{
iterate!(`*a `~op~`= c; *b `~op~`= c;`)(re, im, r);
}
void opOpAssign(string op)(I r)
if(op == "+" || op == "-")
{
iterate!(`*a `~op~`= b;`)(im, r);
}
void opOpAssign(string op)(I r)
if(op == "*" || op == "/")
{
swap(re, im);
iterate!(`*a `~op~`= d; *b `~op~`= c;`)(re, im, r, -r);
}
void opOpAssign(string op)(C r)
if(op == "+" || op == "-")
{
iterate!(`*a `~op~`= c; *b `~op~`= d;`)(re, im, r.re, r.im);
}
void opOpAssign(string op)(C r)
if(op == "*")
{
iterate!(`auto _temp = *a * c - *b * d; *b = *a * d + *b * c; *a = _temp;`)(re, im, r.re, r.im);
}
}
/*
import core.bitop;
import std.traits;
import carbon.traits;
enum bool isSIMDArray(T) = is(T : SIMDArray!(E, N), E, size_t N);
struct SIMDArray(E, size_t N)
if(N > 0)
{
private alias V = core.simd.Vector!(E[N]);
enum N_log2 = core.bitop.bsr(N);
alias ElementType = E;
this(inout(V)[] vec, size_t size) inout
{
_arr = vec;
_size = size;
}
this(V[] vec)
{
this(vec, vec.length * N);
}
this(size_t n)
{
immutable oldN = n;
if(n % N != 0)
n = n / N + 1;
else
n /= N;
this(new V[n], oldN);
}
@property
inout(ElementType)[] array() inout pure nothrow @nogc { return (cast(E[])_arr)[0 .. _size]; }
@property
inout(V)[] opSlice() inout pure nothrow @safe @nogc { return _arr; }
@property
inout(typeof(this)) opSlice(size_t i, size_t j) inout pure nothrow @safe @nogc
in{
assert(i == 0);
}
do {
return typeof(return)(this._arr, j);
}
void opOpAssign(string op)(in SIMDArray!(E, N) rhs)
if(is(typeof((V a, V b){ mixin(`a` ~ op ~ "=b"); })))
in {
assert(this.length == rhs.length);
}
do {
mixin(`_arr[] ` ~ op ~ "= rhs._arr[];");
}
@property
size_t length() const pure nothrow @safe @nogc
{
return _size;
}
ref ElementType opIndex(size_t i) pure nothrow @safe @nogc
in {
assert(i < _size);
}
do {
enum size_t mask = (1 << N_log2) -1;
return _arr[i >> N_log2].array[i & mask];
}
void storeEachResult(alias fn, T...)(in SIMDArray!(E, N) lhs, in SIMDArray!(E, N), rhs, T values)
if(is(typeof(fn(lhs._arr[0], rhs._arr[0], values))))
in {
assert(this.length == lhs.length && this.length == rhs.length);
}
do {
V* plhs = () @trusted { return lhs._arr.ptr; }(),
prhs = () @trusted { return rhs._arr.ptr; }();
foreach(i, ref e; _arr){
e = fn(*plhs, *prhs, values);
++plhs; ++prhs;
}
}
void storeEachResult(alias fn)(in SIMDArray!(E, N) arr, T values)
if(is(typeof(fn(arr._arr[0], values))))
in {
assert(this.length == arr.length);
}
do {
V* parr = () @trusted { return arr._arr.ptr; }();
foreach(i, ref e; _arr){
e = fn(*parr, values);
++parr;
}
}
void storeEachResult(alias fn, T...)(T values)
if(is(typeof(fn(values))))
in {
}
do {
foreach(ref e; _arr)
e = fn(values);
}
private:
V[] _arr;
size_t _size;
}
alias SSEArray(E) = SIMDArray!(E, 16 / E.sizeof);
alias SSEImaginary(E) = SIMDImaginary!(E, 16 / E.sizeof);
alias SSEComplex(E) = SIMDComplex!(E, 16 / E.sizeof);
alias AVXArray(E) = SIMDArray!(E, 32 / E.sizeof);
alias AVXImaginary(E) = SIMDImaginary!(E, 32 / E.sizeof);
alias AVXComplex(E) = SIMDComplex!(E, 32 / E.sizeof);
alias FastSIMDArray(E) = Select!(is(AVXArray!E), AVXArray!E, SSEArray!E);
alias FastSIMDImaginary(E) = Select!(is(AVXImaginary!E), AVXImaginary!E, SSEImaginary!E);
alias FastSIMDComplex(E) = Select!(is(AVXComplex!E), AVXComplex!E, SSEComplex!E);
struct SIMDImaginary(E, N)
{
Vector!(E, N) im;
Vector!(E, N) re() const @property { Vector!(E, N) dst = 0; return dst; }
void opAssign(SIMDImaginary!(E, N) img) { im = img.im; }
void opAssign(IMG)(IMG e) if(isBuiltInImaginary!IMG) { im = e/1i; }
SIMDImaginary opBinary(string op: "+")(SIMDImaginary rhs) const { return SIMDImaginary(im + rhs.im); }
SIMDImaginary opBinary(string op: "+", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return SIMDImaginary(im + (e*-1i)); }
SIMDComplex!(E, N) opBinary(string op: "+")(E e) const { Vector!(E, N) re = e; return SIMDComplex!(E, N)(re, im); }
SIMDComplex!(E, N) opBinary(string op: "+")(Vector!(E, N) e) const { Vector!(E, N) re = e; return SIMDComplex!(E, N)(re, im); }
SIMDComplex!(E, N) opBinary(string op: "+", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { Vector!(E, N) re = cpx.re; return SIMDComplex!(E, N)(re, im + cpx.im); }
SIMDComplex!(E, N) opBinary(string op: "+")(Complex!E cpx) const { Vector!(E, N) re = cpx.re; return SIMDComplex!(E, N)(re, im + cpx.im); }
SIMDComplex!(E, N) opBinary(string op: "+")(SIMDComplex!(E, N) cpx) const { return SIMDComplex!(E, N)(cpx.re, im + cpx.im); }
SIMDImaginary opBinary(string op: "-")(SIMDImaginary rhs) const { return SIMDImaginary(im - rhs.im); }
SIMDImaginary opBinary(string op: "-", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return SIMDImaginary(im - e*(-1i)); }
SIMDComplex!(E, N) opBinary(string op: "-")(E e) const { Vector!(E, N) re = e; return SIMDComplex!(E, N)(re, im); }
SIMDComplex!(E, N) opBinary(string op: "-")(Vector!(E, N) e) const { Vector!(E, N) re = e; return SIMDComplex!(E, N)(re, im); }
SIMDComplex!(E, N) opBinary(string op: "-", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { Vector!(E, N) re = cpx.re; return SIMDComplex!(E, N)(re, im - cpx.im); }
SIMDComplex!(E, N) opBinary(string op: "-")(Complex!E cpx) const { Vector!(E, N) re = cpx.re; return SIMDComplex!(E, N)(re, im - cpx.im); }
SIMDComplex!(E, N) opBinary(string op: "-")(SIMDComplex!(E, N) cpx) const { return SIMDComplex!(E, N)(cpx.re, im - cpx.im); }
Vector!(E, N) opBinary(string op: "*")(SIMDImaginary rhs) const { return -(im * rhs.im); }
Vector!(E, N) opBinary(string op: "*", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return im * (e*1i); }
SIMDImaginary opBinary(string op: "*")(E e) const { return SIMDImaginary(im * e); }
SIMDImaginary opBinary(string op: "*")(Vector!(E, N) e) const { return SIMDImaginary(im * e); }
SIMDComplex!(E, N) opBinary(string op: "*", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { return SIMDComplex!(E, N)(-im * cpx.im, im * cpx.re); }
SIMDComplex!(E, N) opBinary(string op: "*")(Complex!E cpx) const { return SIMDComplex!(E, N)(-im*cpx.im, im * cpx.re); }
SIMDComplex!(E, N) opBinary(string op: "*")(SIMDComplex!(E, N) cpx) const { return SIMDComplex!(E, N)(-im * cpx.im, im * cpx.re); }
}
struct SIMDComplex(E, N)
{
Vector!(E, N) re;
Vector!(E, N) im;
void opAssign(SIMDComplex rhs) { re = rhs.re; im = rhs.im; }
void opAssign(E e) { re = e; im = 0; }
void opAssign(Vector!(E, N) r) { re = r; im = 0; }
void opAssign(IMG)(IMG e) if(isBuiltInImaginary!IMG) { re = 0; im = e; }
void opAssign(SIMDImaginary!(E, N) e) { re = 0; im = e; }
void opAssign(Complex!E cpx) { re = cpx.re; im = cpx.im; }
void opAssign(CPX)(CPX cpx) if(isBuiltInComplex!CPX) { re = cpx.re; im = cpx.im; }
SIMDComplex opBinary(string op: "+")(SIMDComplex rhs) const { return SIMDComplex(re + rhs.re, im + rhs.im); }
SIMDComplex opBinary(string op: "+")(E e) const { return SIMDComplex(re + e, im); }
SIMDComplex opBinary(string op: "+")(Vector!(E, N) r) const { return SIMDComplex(re + r, im); }
SIMDComplex opBinary(string op: "+", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return SIMDComplex(re, im + e/1i); }
SIMDComplex opBinary(string op: "+")(SIMDImaginary!(E, N) rhs) const { return SIMDComplex(re, im + rhs.im); }
SIMDComplex opBinary(string op: "+")(Complex!E cpx) const { return SIMDComplex(re + cpx.re, im + cpx.im); }
SIMDComplex opBinary(string op: "+", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { return SIMDComplex(re + cpx.re, im + cpx.im); }
SIMDComplex opBinary(string op: "-")(SIMDComplex rhs) const { return SIMDComplex(re - rhs.re, im - rhs.im); }
SIMDComplex opBinary(string op: "-")(E e) const { return SIMDComplex(re - e, im); }
SIMDComplex opBinary(string op: "-")(Vector!(E, N) r) const { return SIMDComplex(re - r, im); }
SIMDComplex opBinary(string op: "-", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return SIMDComplex(re, im - e/1i); }
SIMDComplex opBinary(string op: "-")(SIMDImaginary!(E, N) rhs) const { return SIMDComplex(re, im - rhs.im); }
SIMDComplex opBinary(string op: "-")(Complex!E cpx) const { return SIMDComplex(re - cpx.re, im - cpx.im); }
SIMDComplex opBinary(string op: "-", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { return SIMDComplex(re - cpx.re, im - cpx.im); }
SIMDComplex opBinary(string op: "*")(SIMDComplex rhs) const { return SIMDComplex(re * rhs.re - im * rhs.im, re * rhs.im + im * rhs.re); }
SIMDComplex opBinary(string op: "*")(E e) const { return SIMDComplex(re * e, im * e); }
SIMDComplex opBinary(string op: "*")(Vector!(E, N) r) const { return SIMDComplex(re * r, im * r); }
SIMDComplex opBinary(string op: "*", IMG)(IMG e) const if(isBuiltInImaginary!IMG) { return SIMDComplex(im * (e*1i), re * (e/1i)); }
SIMDComplex opBinary(string op: "*")(SIMDImaginary!(E, N) rhs) const { return SIMDComplex(-im * rhs.im, re * rhs.im); }
SIMDComplex opBinary(string op: "*")(Complex!E cpx) const { return SIMDComplex(re * cpx.re - im * cpx.im, re * cpx.im + im * cpx.re); }
SIMDComplex opBinary(string op: "*", CPX)(CPX cpx) const if(isBuiltInComplex!CPX) { return SIMDComplex(re * cpx.re - im * cpx.im, re * cpx.im + im * cpx.re); }
}
*/ | D |
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="VAR_2_MobileMedia-8116548317.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="VAR_2_MobileMedia-8116548317.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
| D |
instance DIA_Babo_Kap1_EXIT(C_Info)
{
npc = NOV_612_Babo;
nr = 999;
condition = DIA_Babo_Kap1_EXIT_Condition;
information = DIA_Babo_Kap1_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Babo_Kap1_EXIT_Condition()
{
if(Kapitel == 1)
{
return TRUE;
};
};
func void DIA_Babo_Kap1_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_Babo_Hello(C_Info)
{
npc = NOV_612_Babo;
nr = 2;
condition = DIA_Babo_Hello_Condition;
information = DIA_Babo_Hello_Info;
permanent = FALSE;
important = TRUE;
};
func int DIA_Babo_Hello_Condition()
{
if(Npc_IsInState(self,ZS_Talk) && (other.guild == GIL_NOV))
{
return TRUE;
};
};
func void DIA_Babo_Hello_Info()
{
AI_Output(self,other,"DIA_Babo_Hello_03_00"); //(shyly) Hello, you're also new here, aren't you?
AI_Output(other,self,"DIA_Babo_Hello_15_01"); //Yes. How long have you been here?
AI_Output(self,other,"DIA_Babo_Hello_03_02"); //I've been here for four weeks. Have you already been given a fighting staff?
AI_Output(other,self,"DIA_Babo_Hello_15_03"); //Not so far.
AI_Output(self,other,"DIA_Babo_Hello_03_04"); //Then take this one. We novices all carry a staff as a sign of our ability to defend ourselves. Can you fight?
AI_Output(other,self,"DIA_Babo_Hello_15_05"); //Well, I've wielded a weapon or two ...
AI_Output(self,other,"DIA_Babo_Hello_03_06"); //If you want, I can teach you something. However, I have a request ...
B_GiveInvItems(self,other,ItMw_1h_Nov_Mace,1);
AI_EquipBestMeleeWeapon(self);
};
instance DIA_Babo_Anliegen(C_Info)
{
npc = NOV_612_Babo;
nr = 2;
condition = DIA_Babo_Anliegen_Condition;
information = DIA_Babo_Anliegen_Info;
permanent = FALSE;
description = "What request would that be?";
};
func int DIA_Babo_Anliegen_Condition()
{
if((other.guild == GIL_NOV) && Npc_KnowsInfo(other,DIA_Babo_Hello))
{
return TRUE;
};
};
func void DIA_Babo_Anliegen_Info()
{
AI_Output(other,self,"DIA_Babo_Anliegen_15_00"); //What request would that be?
AI_Output(self,other,"DIA_Babo_Anliegen_03_01"); //Well, one of the paladins, Sergio, is in the monastery at the moment.
AI_Output(self,other,"DIA_Babo_Anliegen_03_02"); //If you can persuade him to go through a few exercises with me, then I'll train you.
AI_Output(other,self,"DIA_Babo_Anliegen_15_03"); //I shall see what can be done.
Log_CreateTopic(Topic_BaboTrain,LOG_MISSION);
Log_SetTopicStatus(Topic_BaboTrain,LOG_Running);
B_LogEntry(Topic_BaboTrain,"If I can persuade the paladin Sergio to practice a bit of fighting with Babo, he'll train me to fight with two-handed weapons.");
};
instance DIA_Babo_Sergio(C_Info)
{
npc = NOV_612_Babo;
nr = 2;
condition = DIA_Babo_Sergio_Condition;
information = DIA_Babo_Sergio_Info;
permanent = FALSE;
description = "I talked to Sergio.";
};
func int DIA_Babo_Sergio_Condition()
{
if(Npc_KnowsInfo(other,DIA_Sergio_Babo) && (other.guild == GIL_NOV))
{
return TRUE;
};
};
func void DIA_Babo_Sergio_Info()
{
AI_Output(other,self,"DIA_Babo_Sergio_15_00"); //I talked to Sergio. He's going to train with you every morning for two hours, starting at five o'clock.
AI_Output(self,other,"DIA_Babo_Sergio_03_01"); //Thanks! What an honor for me!
AI_Output(self,other,"DIA_Babo_Sergio_03_02"); //If you want, I'll also show you the secrets of combat.
Babo_TeachPlayer = TRUE;
Babo_Training = TRUE;
B_GivePlayerXP(XP_AmbientKap1 * 2);
Log_CreateTopic(Topic_KlosterTeacher,LOG_NOTE);
B_LogEntry(Topic_KlosterTeacher,"Babo can train me in two-handed combat.");
};
instance DIA_Babo_Teach(C_Info)
{
npc = NOV_612_Babo;
nr = 100;
condition = DIA_Babo_Teach_Condition;
information = DIA_Babo_Teach_Info;
permanent = TRUE;
description = "I'm ready for training.";
};
var int DIA_Babo_Teach_permanent;
var int Babo_Labercount;
func int DIA_Babo_Teach_Condition()
{
if(((Babo_TeachPlayer == TRUE) && (DIA_Babo_Teach_permanent == FALSE)) || (other.guild == GIL_KDF))
{
return TRUE;
};
};
var int babo_merk2h;
func void DIA_Babo_Teach_Info()
{
babo_merk2h = other.HitChance[NPC_TALENT_2H];
AI_Output(other,self,"DIA_Babo_Teach_15_00"); //I'm ready for training.
Info_ClearChoices(DIA_Babo_Teach);
Info_AddChoice(DIA_Babo_Teach,Dialog_Back,DIA_Babo_Teach_Back);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h1,B_GetLearnCostTalent(other,NPC_TALENT_2H,1)),DIA_Babo_Teach_2H_1);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h5,B_GetLearnCostTalent(other,NPC_TALENT_2H,5)),DIA_Babo_Teach_2H_5);
};
func void DIA_Babo_Teach_Back()
{
if(other.HitChance[NPC_TALENT_2H] >= 45)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_Back_03_00"); //You've learned everything about two-handed combat that I can teach you.
DIA_Babo_Teach_permanent = TRUE;
};
Info_ClearChoices(DIA_Babo_Teach);
};
func void DIA_Babo_Teach_2H_1()
{
B_TeachFightTalentPercent(self,other,NPC_TALENT_2H,1,45);
if(other.HitChance[NPC_TALENT_2H] > babo_merk2h)
{
if(Babo_Labercount == 0)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_03_00"); //Fight for Innos. Innos is our life - and your faith gives you strength.
};
if(Babo_Labercount == 1)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_03_01"); //A servant of Innos never provokes an opponent - he surprises him!
};
if(Babo_Labercount == 2)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_03_02"); //No matter where you go - always take your staff along.
};
if(Babo_Labercount == 3)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_03_03"); //A servant of Innos is always prepared to fight. If you don't have any magic, your staff is your most important defense.
};
Babo_Labercount = Babo_Labercount + 1;
if(Babo_Labercount >= 3)
{
Babo_Labercount = 0;
};
};
Info_ClearChoices(DIA_Babo_Teach);
Info_AddChoice(DIA_Babo_Teach,Dialog_Back,DIA_Babo_Teach_Back);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h1,B_GetLearnCostTalent(other,NPC_TALENT_2H,1)),DIA_Babo_Teach_2H_1);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h5,B_GetLearnCostTalent(other,NPC_TALENT_2H,5)),DIA_Babo_Teach_2H_5);
};
func void DIA_Babo_Teach_2H_5()
{
B_TeachFightTalentPercent(self,other,NPC_TALENT_2H,5,75);
if(other.HitChance[NPC_TALENT_2H] > babo_merk2h)
{
if(Babo_Labercount == 0)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_2H_5_03_00"); //A servant of Innos fights not only with his staff, but also with his heart.
};
if(Babo_Labercount == 1)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_2H_5_03_01"); //You have to know the point up to which you can retreat.
};
if(Babo_Labercount == 2)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_2H_5_03_02"); //Remember, you fight well if you control your opponent and don't give him a chance to be in control himself.
};
if(Babo_Labercount == 3)
{
AI_Output(self,other,"DIA_DIA_Babo_Teach_2H_5_03_03"); //You have only lost when you have given up.
};
Babo_Labercount = Babo_Labercount + 1;
if(Babo_Labercount >= 3)
{
Babo_Labercount = 0;
};
};
Info_ClearChoices(DIA_Babo_Teach);
Info_AddChoice(DIA_Babo_Teach,Dialog_Back,DIA_Babo_Teach_Back);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h1,B_GetLearnCostTalent(other,NPC_TALENT_2H,1)),DIA_Babo_Teach_2H_1);
Info_AddChoice(DIA_Babo_Teach,B_BuildLearnString(PRINT_Learn2h5,B_GetLearnCostTalent(other,NPC_TALENT_2H,5)),DIA_Babo_Teach_2H_5);
};
instance DIA_Babo_Wurst(C_Info)
{
npc = NOV_612_Babo;
nr = 2;
condition = DIA_Babo_Wurst_Condition;
information = DIA_Babo_Wurst_Info;
permanent = FALSE;
description = "Here, have a sausage.";
};
func int DIA_Babo_Wurst_Condition()
{
if((Kapitel == 1) && (MIS_GoraxEssen == LOG_Running) && (Npc_HasItems(self,ItFo_Schafswurst) == 0) && (Npc_HasItems(other,ItFo_Schafswurst) >= 1))
{
return TRUE;
};
};
func void DIA_Babo_Wurst_Info()
{
var string NovizeText;
var string NovizeLeft;
AI_Output(other,self,"DIA_Babo_Wurst_15_00"); //Here, have a sausage.
AI_Output(self,other,"DIA_Babo_Wurst_03_01"); //Oh, mutton sausages, great! They taste the best - come on, give me another sausage!
AI_Output(other,self,"DIA_Babo_Wurst_15_02"); //Then I won't have enough left for the others.
AI_Output(self,other,"DIA_Babo_Wurst_03_03"); //You have one sausage too many anyway. Namely, the one for you. And what's a sausage among friends?
AI_Output(self,other,"DIA_Babo_Wurst_03_04"); //Come on, I'll give you a 'Fire Arrow' spell scroll for it.
B_GiveInvItems(other,self,ItFo_Schafswurst,1);
Wurst_Gegeben = Wurst_Gegeben + 1;
CreateInvItems(self,ItFo_Sausage,1);
B_UseItem(self,ItFo_Sausage);
NovizeLeft = IntToString(13 - Wurst_Gegeben);
NovizeText = ConcatStrings(NovizeLeft,PRINT_NovizenLeft);
AI_PrintScreen(NovizeText,-1,YPOS_GoldGiven,FONT_ScreenSmall,2);
Info_ClearChoices(DIA_Babo_Wurst);
Info_AddChoice(DIA_Babo_Wurst,"All right, here, take another.",DIA_Babo_Wurst_JA);
Info_AddChoice(DIA_Babo_Wurst,"No, I won't do that.",DIA_Babo_Wurst_NEIN);
};
func void DIA_Babo_Wurst_JA()
{
AI_Output(other,self,"DIA_Babo_Wurst_JA_15_00"); //All right, here, take another.
AI_Output(self,other,"DIA_Babo_Wurst_JA_03_01"); //All right. Here's your spell scroll.
B_GiveInvItems(other,self,ItFo_Schafswurst,1);
B_GiveInvItems(self,other,ItSc_Firebolt,1);
Info_ClearChoices(DIA_Babo_Wurst);
};
func void DIA_Babo_Wurst_NEIN()
{
AI_Output(other,self,"DIA_Babo_Wurst_NEIN_15_00"); //No, I won't do that.
AI_Output(self,other,"DIA_Babo_Wurst_NEIN_03_01"); //Man, you're one of those people who are very particular about everything, huh?
Info_ClearChoices(DIA_Babo_Wurst);
};
instance DIA_Babo_YouAndAgon(C_Info)
{
npc = NOV_612_Babo;
nr = 3;
condition = DIA_Babo_YouAndAgon_Condition;
information = DIA_Babo_YouAndAgon_Info;
permanent = FALSE;
description = "What happened between you and Agon?";
};
func int DIA_Babo_YouAndAgon_Condition()
{
if(Npc_KnowsInfo(other,DIA_Opolos_Monastery) && (other.guild == GIL_NOV))
{
return TRUE;
};
};
func void DIA_Babo_YouAndAgon_Info()
{
AI_Output(other,self,"DIA_Babo_YouAndAgon_15_00"); //What happened between you and Agon?
AI_Output(self,other,"DIA_Babo_YouAndAgon_03_01"); //Oh, we had a disagreement about how to take care of fire nettles.
AI_Output(self,other,"DIA_Babo_YouAndAgon_03_02"); //Agon had watered them so much that the plants almost had root rot already.
AI_Output(self,other,"DIA_Babo_YouAndAgon_03_03"); //Once the roots were completely rotten, he blamed me for it.
AI_Output(self,other,"DIA_Babo_YouAndAgon_03_04"); //They've made me sweep the courtyard all day ever since.
};
instance DIA_Babo_WhyDidAgon(C_Info)
{
npc = NOV_612_Babo;
nr = 4;
condition = DIA_Babo_WhyDidAgon_Condition;
information = DIA_Babo_WhyDidAgon_Info;
permanent = FALSE;
description = "Why did Agon do that?";
};
func int DIA_Babo_WhyDidAgon_Condition()
{
if(Npc_KnowsInfo(other,DIA_Babo_YouAndAgon) && (hero.guild == GIL_NOV))
{
return TRUE;
};
};
func void DIA_Babo_WhyDidAgon_Info()
{
AI_Output(other,self,"DIA_Babo_WhyDidAgon_15_00"); //Why did Agon do that?
AI_Output(self,other,"DIA_Babo_WhyDidAgon_03_01"); //You'll have to ask him that. I think he just can't stand it when someone is better than he is.
};
instance DIA_Babo_PlantLore(C_Info)
{
npc = NOV_612_Babo;
nr = 5;
condition = DIA_Babo_PlantLore_Condition;
information = DIA_Babo_PlantLore_Info;
permanent = FALSE;
description = "You seem to know a thing or two about plants?";
};
func int DIA_Babo_PlantLore_Condition()
{
if(Npc_KnowsInfo(other,DIA_Babo_YouAndAgon) && (hero.guild == GIL_NOV))
{
return TRUE;
};
};
func void DIA_Babo_PlantLore_Info()
{
AI_Output(other,self,"DIA_Babo_PlantLore_15_00"); //You seem to know a thing or two about plants?
AI_Output(self,other,"DIA_Babo_PlantLore_03_01"); //We had an herb garden where I learned a few tricks from my grandpa.
AI_Output(self,other,"DIA_Babo_PlantLore_03_02"); //I'd really prefer to work in the garden again.
MIS_HelpBabo = LOG_Running;
Log_CreateTopic(Topic_BaboGaertner,LOG_MISSION);
Log_SetTopicStatus(Topic_BaboGaertner,LOG_Running);
B_LogEntry(Topic_BaboGaertner,"Babo would rather work in the herb garden than sweep the yard.");
};
instance DIA_Babo_Fegen(C_Info)
{
npc = NOV_612_Babo;
nr = 2;
condition = DIA_Babo_Fegen_Condition;
information = DIA_Babo_Fegen_Info;
permanent = FALSE;
description = "I'm supposed to sweep the novices' chambers.";
};
func int DIA_Babo_Fegen_Condition()
{
if(MIS_ParlanFegen == LOG_Running)
{
return TRUE;
};
};
func void DIA_Babo_Fegen_Info()
{
AI_Output(other,self,"DIA_Babo_Fegen_15_00"); //I'm supposed to sweep the novices' chambers.
AI_Output(self,other,"DIA_Babo_Fegen_03_01"); //You've saddled yourself with a lot of work there. You know what - I'll help you. You'll never finish that alone.
AI_Output(self,other,"DIA_Babo_Fegen_03_02"); //But I really need a 'Fist of Wind' spell scroll - you know, I got lucky and was allowed to read a book about it.
AI_Output(self,other,"DIA_Babo_Fegen_03_03"); //And now, naturally, I want to try the spell. So, get me the spell scroll and I'll help you.
B_LogEntry(Topic_ParlanFegen,"Babo will help me sweep the novices' chambers if I bring him a Fist of Wind spell scroll.");
};
instance DIA_Babo_Windfaust(C_Info)
{
npc = NOV_612_Babo;
nr = 3;
condition = DIA_Babo_Windfaust_Condition;
information = DIA_Babo_Windfaust_Info;
permanent = TRUE;
description = "About the spell scroll ... (GIVE FIST OF WIND)";
};
var int DIA_Babo_Windfaust_permanent;
func int DIA_Babo_Windfaust_Condition()
{
if((MIS_ParlanFegen == LOG_Running) && Npc_KnowsInfo(other,DIA_Babo_Fegen) && (DIA_Babo_Windfaust_permanent == FALSE))
{
return TRUE;
};
};
func void DIA_Babo_Windfaust_Info()
{
AI_Output(other,self,"DIA_Babo_Windfaust_15_00"); //About the spell scroll ...
AI_Output(self,other,"DIA_Babo_Windfaust_03_01"); //Do you have a Fist of Wind spell for me?
if(B_GiveInvItems(other,self,ItSc_Windfist,1))
{
AI_Output(other,self,"DIA_Babo_Windfaust_15_02"); //Here's the spell scroll you wanted.
AI_Output(self,other,"DIA_Babo_Windfaust_03_03"); //That's good. Then I'll help you clean the chambers.
NOV_Helfer = NOV_Helfer + 1;
DIA_Babo_Windfaust_permanent = TRUE;
B_GivePlayerXP(XP_Feger);
AI_StopProcessInfos(self);
Npc_ExchangeRoutine(self,"FEGEN");
B_LogEntry(Topic_ParlanFegen,"Babo will help me sweep the novices' chambers now.");
}
else
{
AI_Output(other,self,"DIA_Babo_Windfaust_15_04"); //No, not so far.
AI_Output(self,other,"DIA_Babo_Windfaust_03_05"); //Then I'll wait until you do.
};
AI_StopProcessInfos(self);
};
instance DIA_Babo_Life(C_Info)
{
npc = NOV_612_Babo;
nr = 10;
condition = DIA_Babo_Life_Condition;
information = DIA_Babo_Life_Info;
permanent = TRUE;
description = "How's life here in the monastery?";
};
func int DIA_Babo_Life_Condition()
{
if(other.guild == GIL_NOV)
{
return TRUE;
};
};
func void DIA_Babo_Life_Info()
{
AI_Output(other,self,"DIA_Babo_Life_15_00"); //How's life here in the monastery?
AI_Output(self,other,"DIA_Babo_Life_03_01"); //I don't mean to complain, but I never thought that it would be so strict here. If you don't stick to the rules, they punish you.
AI_Output(self,other,"DIA_Babo_Life_03_02"); //Of course, a lot of novices want to study the teachings of Innos in the library, so they can be prepared if they're chosen.
AI_Output(self,other,"DIA_Babo_Life_03_03"); //But I think the best preparation for the test of magic is fulfilling our own tasks.
if(Npc_KnowsInfo(other,DIA_Igaranz_Choosen) == FALSE)
{
AI_Output(other,self,"DIA_Babo_Life_15_04"); //What's the deal with the Chosen and that test?
AI_Output(self,other,"DIA_Babo_Life_03_05"); //Talk to Brother Igaraz. He knows a lot about that.
};
};
instance DIA_Babo_HowIsIt(C_Info)
{
npc = NOV_612_Babo;
nr = 1;
condition = DIA_Babo_HowIsIt_Condition;
information = DIA_Babo_HowIsIt_Info;
permanent = TRUE;
description = "How's it going?";
};
func int DIA_Babo_HowIsIt_Condition()
{
if((hero.guild == GIL_KDF) && (Kapitel < 3))
{
return TRUE;
};
};
var int Babo_XPgiven;
func void DIA_Babo_HowIsIt_Info()
{
AI_Output(other,self,"DIA_Babo_HowIsIt_15_00"); //How are you?
if(MIS_HelpBabo == LOG_SUCCESS)
{
AI_Output(self,other,"DIA_Babo_HowIsIt_03_01"); //(humbly) I thank the magicians for my task.
AI_Output(self,other,"DIA_Babo_HowIsIt_03_02"); //I enjoy working in the garden and hope that the magicians are satisfied with me, Master.
if(Babo_XPgiven == FALSE)
{
B_GivePlayerXP(XP_AmbientKap2);
Babo_XPgiven = TRUE;
};
}
else
{
AI_Output(self,other,"DIA_Babo_HowIsIt_03_03"); //(startled) F.. f.. fine, Master.
AI_Output(self,other,"DIA_Babo_HowIsIt_03_04"); //I, I work hard and try not to disappoint the magicians.
};
AI_StopProcessInfos(self);
};
instance DIA_Babo_Kap2_EXIT(C_Info)
{
npc = NOV_612_Babo;
nr = 999;
condition = DIA_Babo_Kap2_EXIT_Condition;
information = DIA_Babo_Kap2_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Babo_Kap2_EXIT_Condition()
{
if(Kapitel == 2)
{
return TRUE;
};
};
func void DIA_Babo_Kap2_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_Babo_Kap3_EXIT(C_Info)
{
npc = NOV_612_Babo;
nr = 999;
condition = DIA_Babo_Kap3_EXIT_Condition;
information = DIA_Babo_Kap3_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Babo_Kap3_EXIT_Condition()
{
if(Kapitel == 3)
{
return TRUE;
};
};
func void DIA_Babo_Kap3_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_Babo_Kap3_Hello(C_Info)
{
npc = NOV_612_Babo;
nr = 31;
condition = DIA_Babo_Kap3_Hello_Condition;
information = DIA_Babo_Kap3_Hello_Info;
permanent = FALSE;
description = "What are you doing here?";
};
func int DIA_Babo_Kap3_Hello_Condition()
{
if(Kapitel >= 3)
{
return TRUE;
};
};
func void DIA_Babo_Kap3_Hello_Info()
{
AI_Output(other,self,"DIA_Babo_Kap3_Hello_15_00"); //What are you doing here?
if(hero.guild == GIL_KDF)
{
AI_Output(self,other,"DIA_Babo_Kap3_Hello_03_01"); //(sheepish) I try to accomplish the tasks given to me to the satisfaction of the monastery.
}
else
{
AI_Output(self,other,"DIA_Babo_Kap3_Hello_03_02"); //I must not speak with you. It is not looked on with favor if we talk to strangers.
};
};
instance DIA_Babo_Kap3_KeepTheFaith(C_Info)
{
npc = NOV_612_Babo;
nr = 31;
condition = DIA_Babo_Kap3_KeepTheFaith_Condition;
information = DIA_Babo_Kap3_KeepTheFaith_Info;
permanent = FALSE;
description = "You must never lose faith.";
};
func int DIA_Babo_Kap3_KeepTheFaith_Condition()
{
if((Kapitel >= 3) && Npc_KnowsInfo(other,DIA_Babo_Kap3_Hello) && (hero.guild == GIL_KDF))
{
return TRUE;
};
};
func void DIA_Babo_Kap3_KeepTheFaith_Info()
{
AI_Output(other,self,"DIA_Babo_Kap3_KeepTheFaith_15_00"); //You must never lose faith.
AI_Output(self,other,"DIA_Babo_Kap3_KeepTheFaith_03_01"); //(caught in the act) No, ... I mean, I would never do such a thing. Honest!
AI_Output(other,self,"DIA_Babo_Kap3_KeepTheFaith_15_02"); //We all are often put through severe tests.
AI_Output(self,other,"DIA_Babo_Kap3_KeepTheFaith_03_03"); //Yes, Master. I will always remember that. Thank you.
B_GivePlayerXP(XP_AmbientKap3);
};
instance DIA_Babo_Kap3_Unhappy(C_Info)
{
npc = NOV_612_Babo;
nr = 31;
condition = DIA_Babo_Kap3_Unhappy_Condition;
information = DIA_Babo_Kap3_Unhappy_Info;
permanent = FALSE;
description = "That doesn't sound terribly happy.";
};
func int DIA_Babo_Kap3_Unhappy_Condition()
{
if((Kapitel >= 3) && (hero.guild != GIL_KDF) && Npc_KnowsInfo(other,DIA_Babo_Kap3_Hello))
{
return TRUE;
};
};
func void DIA_Babo_Kap3_Unhappy_Info()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_15_00"); //That doesn't sound terribly happy.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_03_01"); //(caught in the act) Well ... I mean, everything is just fine, really.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_03_02"); //Only ... Oh, I don't want to complain.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"Stop whining then.",DIA_Babo_Kap3_Unhappy_Lament);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"Aw, come on, you can tell me.",DIA_Babo_Kap3_Unhappy_TellMe);
};
func void DIA_Babo_Kap3_Unhappy_Lament()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Lament_15_00"); //Stop whining then.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Lament_03_01"); //(afraid) I ... I ... please don't tell the magicians.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Lament_03_02"); //I don't want to be punished again.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Lament_15_03"); //I'll think about it.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
};
func void DIA_Babo_Kap3_Unhappy_TellMe()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_TellMe_15_00"); //Aw, come on, you can tell me.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_TellMe_03_01"); //And you really won't tell the magicians?
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_TellMe_15_02"); //Do I look like I would?
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_TellMe_03_03"); //All right. I have a problem with one of the novices. He's got a hold over me.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_TellMe_15_04"); //Come on, spit it out, then.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_TellMe_03_05"); //Igaraz, that's the novice, found some of my private papers.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_TellMe_03_06"); //He threatened to give them to the magicians if I don't do what he says.
MIS_BabosDocs = LOG_Running;
Log_CreateTopic(Topic_BabosDocs,LOG_MISSION);
Log_SetTopicStatus(Topic_BabosDocs,LOG_Running);
B_LogEntry(Topic_BabosDocs,"Igaraz is blackmailing the novice Babo about some documents.");
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"I think that's a little too personal for me.",DIA_Babo_Kap3_Unhappy_Privat);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"What are you supposed to do for him?",DIA_Babo_Kap3_Unhappy_ShouldDo);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"What kind of documents are those?",DIA_Babo_Kap3_Unhappy_Documents);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"Maybe I can help you.",DIA_Babo_Kap3_Unhappy_CanHelpYou);
};
func void DIA_Babo_Kap3_Unhappy_Privat()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Privat_15_00"); //I think that's a little too personal for me.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Privat_03_01"); //I understand, you don't want any trouble. Then I'll just have to deal with it myself.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Privat_15_02"); //You'll manage somehow.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
};
func void DIA_Babo_Kap3_Unhappy_ShouldDo()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_ShouldDo_15_00"); //What are you supposed to do for him?
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_ShouldDo_03_01"); //I don't like to talk about it. In any case, it isn't pleasing to Innos.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_ShouldDo_03_02"); //I don't want to think what would happen if it came out.
};
func void DIA_Babo_Kap3_Unhappy_Documents()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Documents_15_00"); //What kind of documents are those?
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Documents_03_01"); //(unsure) That's nobody's business. It's entirely my affair.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Documents_15_02"); //Come on, tell me.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Documents_03_03"); //They are, eh ... entirely normal documents. Nothing special.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Documents_15_04"); //I won't ask any further.
};
func void DIA_Babo_Kap3_Unhappy_CanHelpYou()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_CanHelpYou_15_00"); //Maybe I can help you?
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_CanHelpYou_03_01"); //You would do that?
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_CanHelpYou_15_02"); //That depends, of course.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_CanHelpYou_03_03"); //(hastily) Naturally, I'd pay you for that.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_CanHelpYou_15_04"); //How much?
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_CanHelpYou_03_05"); //Of course, I don't have much money, but I could give you a spell scroll. I have a healing spell.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"I'd rather stay away from that.",DIA_Babo_Kap3_Unhappy_No);
Info_AddChoice(DIA_Babo_Kap3_Unhappy,"I'll see what I can do.",DIA_Babo_Kap3_Unhappy_Yes);
};
func void DIA_Babo_Kap3_Unhappy_No()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_No_15_00"); //I'd rather stay away from that.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_No_03_01"); //Then I don't have a choice, I have to play along.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
};
func void DIA_Babo_Kap3_Unhappy_Yes()
{
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Yes_15_00"); //I'll see what I can do.
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Yes_03_01"); //(happily) Honestly, it just has to work. It has to!
AI_Output(self,other,"DIA_Babo_Kap3_Unhappy_Yes_03_02"); //So, you only need to find out where Igaraz keeps the stuff. Then you swipe it from him and everything will be just fine.
AI_Output(other,self,"DIA_Babo_Kap3_Unhappy_Yes_15_03"); //Relax. You just continue for now. I'll see to the rest.
Info_ClearChoices(DIA_Babo_Kap3_Unhappy);
};
instance DIA_Babo_Kap3_HaveYourDocs(C_Info)
{
npc = NOV_612_Babo;
nr = 31;
condition = DIA_Babo_Kap3_HaveYourDocs_Condition;
information = DIA_Babo_Kap3_HaveYourDocs_Info;
permanent = FALSE;
description = "I've got your documents.";
};
func int DIA_Babo_Kap3_HaveYourDocs_Condition()
{
if(((MIS_BabosDocs == LOG_Running) && (Npc_HasItems(other,ItWr_BabosDocs_MIS) >= 1)) || ((Npc_HasItems(other,ItWr_BabosPinUp_MIS) >= 1) && (Npc_HasItems(other,ItWr_BabosLetter_MIS) >= 1)))
{
return TRUE;
};
};
func void DIA_Babo_Kap3_HaveYourDocs_Info()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_15_00"); //I've got your documents.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_03_01"); //Really? Thanks, you've saved me. I don't know how to thank you.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_15_02"); //Yeah, yeah, just calm down.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_03_03"); //(nervously) Are they really mine? Are you sure? Show me.
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"I'm going to keep them a little while longer.",DIA_Babo_Kap3_HaveYourDocs_KeepThem);
if(BabosDocsOpen == TRUE)
{
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Based on the bare facts, the price has gone up.",DIA_Babo_Kap3_HaveYourDocs_IWantMore);
};
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Here they are.",DIA_Babo_Kap3_HaveYourDocs_HereTheyAre);
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_15_00"); //I'm going to keep them a little while longer.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_03_01"); //(stunned) What!? What is that supposed to mean? What are you planning?
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Just kidding.",DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"That's my own business.",DIA_Babo_Kap3_HaveYourDocs_KeepThem_MyConcern);
if(Igaraz_ISPartner == LOG_SUCCESS)
{
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Igaraz and I are partners.",DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner);
};
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke_15_00"); //Just kidding.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke_03_01"); //(tartly) Ha ha, I can't laugh about it. So where are they?
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke_15_02"); //Here.
if(Npc_HasItems(other,ItWr_BabosDocs_MIS) >= 1)
{
B_GiveInvItems(other,self,ItWr_BabosDocs_MIS,1);
}
else
{
B_GiveInvItems(other,self,ItWr_BabosPinUp_MIS,1);
B_GiveInvItems(other,self,ItWr_BabosLetter_MIS,1);
};
B_UseFakeScroll();
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke_03_03"); //I didn't mean to insult you, but I'm really nervous about the whole thing.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_JustJoke_15_04"); //It's all right. Have fun with your DOCUMENTS, then.
MIS_BabosDocs = LOG_SUCCESS;
B_GivePlayerXP(XP_BabosDocs);
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem_MyConcern()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_MyConcern_15_00"); //That's my own business.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_MyConcern_03_01"); //The documents belong to me. You don't have the right to keep them.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_MyConcern_15_02"); //See you.
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_15_00"); //Igaraz and I are partners now.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_03_01"); //(stunned) What? You can't do that.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_15_02"); //Looks like I can. I shall keep those papers, and everything stays the way it is.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_15_03"); //I shall settle the financial part with Igaraz.
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_15_04"); //Well, then, take good care of the plants.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_03_05"); //You're a swine. A miserable, greedy swine. Innos will punish you.
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,Dialog_Ende,DIA_Babo_Kap3_HaveYourDocs_End);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Mind your language.",DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_KeepCalm);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Haven't you got anything to do?",DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_NothingToDo);
};
func void DIA_Babo_Kap3_HaveYourDocs_End()
{
AI_StopProcessInfos(self);
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_KeepCalm()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_KeepCalm_15_00"); //Mind your language.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_KeepCalm_03_01"); //I'm being far too nice, like always.
AI_StopProcessInfos(self);
};
func void DIA_Babo_Kap3_HaveYourDocs_KeepThem_Partner_NothingToDo()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_NothingToDo_15_00"); //Haven't you got anything to do?
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_NothingToDo_03_01"); //I understand all right, but believe me, there will be consequences.
AI_StopProcessInfos(self);
};
func void DIA_Babo_Kap3_HaveYourDocs_IWantMore()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_15_00"); //Based on the bare facts, the price has gone up.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_03_01"); //You're no better than the others. What do you want?
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_15_02"); //What have you got?
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_03_03"); //I can give you 121 gold coins, that's all I have.
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"That won't be enough.",DIA_Babo_Kap3_HaveYourDocs_IWantMore_NotEnough);
Info_AddChoice(DIA_Babo_Kap3_HaveYourDocs,"Agreed.",DIA_Babo_Kap3_HaveYourDocs_IWantMore_ThatsEnough);
};
func void DIA_Babo_Kap3_HaveYourDocs_IWantMore_NotEnough()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_NotEnough_15_00"); //That won't be enough.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_NotEnough_03_01"); //But I don't have any more money. If I had know that before, I never would have entered the monastery.
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
};
func void DIA_Babo_Kap3_HaveYourDocs_IWantMore_ThatsEnough()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_ThatsEnough_15_00"); //Agreed.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_IWantMore_ThatsEnough_03_01"); //Here is the money and the spell scroll.
CreateInvItems(self,ItSc_MediumHeal,1);
CreateInvItems(self,ItMi_Gold,121);
B_GiveInvItems(self,other,ItSc_MediumHeal,1);
B_GiveInvItems(self,other,ItMi_Gold,121);
MIS_BabosDocs = LOG_SUCCESS;
B_GivePlayerXP(XP_BabosDocs);
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
};
func void DIA_Babo_Kap3_HaveYourDocs_HereTheyAre()
{
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_15_00"); //Here they are.
if(Npc_HasItems(other,ItWr_BabosDocs_MIS) >= 1)
{
B_GiveInvItems(other,self,ItWr_BabosDocs_MIS,1);
}
else
{
B_GiveInvItems(other,self,ItWr_BabosPinUp_MIS,1);
B_GiveInvItems(other,self,ItWr_BabosLetter_MIS,1);
};
B_UseFakeScroll();
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_03_01"); //Yeah, they're complete.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_03_02"); //Did you look at them?
AI_Output(other,self,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_15_03"); //Does that make a difference?
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_03_04"); //No, just as long as I have them back.
AI_Output(self,other,"DIA_Babo_Kap3_HaveYourDocs_HereTheyAre_03_05"); //Now I hope I can rest easy again.
CreateInvItems(self,ItSc_MediumHeal,1);
B_GiveInvItems(self,other,ItSc_MediumHeal,1);
MIS_BabosDocs = LOG_SUCCESS;
B_GivePlayerXP(XP_BabosDocs);
Info_ClearChoices(DIA_Babo_Kap3_HaveYourDocs);
};
instance DIA_Babo_Kap3_Perm(C_Info)
{
npc = NOV_612_Babo;
nr = 39;
condition = DIA_Babo_Kap3_Perm_Condition;
information = DIA_Babo_Kap3_Perm_Info;
permanent = TRUE;
description = "Are you satisfied with your task?";
};
func int DIA_Babo_Kap3_Perm_Condition()
{
if(Npc_KnowsInfo(other,DIA_Babo_Kap3_Hello))
{
return TRUE;
};
};
func void DIA_Babo_Kap3_Perm_Info()
{
AI_Output(other,self,"DIA_Babo_Kap3_Perm_15_00"); //Are you satisfied with your task?
if(hero.guild == GIL_KDF)
{
AI_Output(self,other,"DIA_Babo_Kap3_Perm_03_01"); //(less than convincing) Yes, of course. My faith in the wisdom and power of Innos gives me strength.
AI_Output(self,other,"DIA_Babo_Kap3_Perm_03_02"); //(wriggling out) I don't mean to seem disrespectful, but I have a lot to do today.
AI_Output(other,self,"DIA_Babo_Kap3_Perm_15_03"); //You may carry on.
AI_Output(self,other,"DIA_Babo_Kap3_Perm_03_04"); //(relieved) Thanks.
}
else
{
AI_Output(self,other,"DIA_Babo_Kap3_Perm_03_05"); //It's all right, but I need to get back to work, otherwise I'll never get finished today.
AI_Output(self,other,"DIA_Babo_Kap3_Perm_03_06"); //I don't want to work half the night again, in order to finish my obligation and stay out of trouble.
};
AI_StopProcessInfos(self);
};
instance DIA_Babo_Kap4_EXIT(C_Info)
{
npc = NOV_612_Babo;
nr = 999;
condition = DIA_Babo_Kap4_EXIT_Condition;
information = DIA_Babo_Kap4_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Babo_Kap4_EXIT_Condition()
{
if(Kapitel == 4)
{
return TRUE;
};
};
func void DIA_Babo_Kap4_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_Babo_Kap5_EXIT(C_Info)
{
npc = NOV_612_Babo;
nr = 999;
condition = DIA_Babo_Kap5_EXIT_Condition;
information = DIA_Babo_Kap5_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Babo_Kap5_EXIT_Condition()
{
if(Kapitel == 5)
{
return TRUE;
};
};
func void DIA_Babo_Kap5_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_Babo_PICKPOCKET(C_Info)
{
npc = NOV_612_Babo;
nr = 900;
condition = DIA_Babo_PICKPOCKET_Condition;
information = DIA_Babo_PICKPOCKET_Info;
permanent = TRUE;
description = Pickpocket_20;
};
func int DIA_Babo_PICKPOCKET_Condition()
{
return C_Beklauen(17,25);
};
func void DIA_Babo_PICKPOCKET_Info()
{
Info_ClearChoices(DIA_Babo_PICKPOCKET);
Info_AddChoice(DIA_Babo_PICKPOCKET,Dialog_Back,DIA_Babo_PICKPOCKET_BACK);
Info_AddChoice(DIA_Babo_PICKPOCKET,DIALOG_PICKPOCKET,DIA_Babo_PICKPOCKET_DoIt);
};
func void DIA_Babo_PICKPOCKET_DoIt()
{
B_Beklauen();
Info_ClearChoices(DIA_Babo_PICKPOCKET);
};
func void DIA_Babo_PICKPOCKET_BACK()
{
Info_ClearChoices(DIA_Babo_PICKPOCKET);
};
| D |
module luad.state;
import std.array, std.range;
import std.string : toStringz;
import std.typecons : isTuple;
import luad.c.all;
import luad.stack;
import luad.conversions.classes;
import luad.base, luad.table, luad.lfunction, luad.dynamic, luad.error;
/// Specify error handling scheme for $(MREF LuaState.doString) and $(MREF LuaState.doFile).
enum LuaErrorHandler
{
None, /// No extra error handler.
Traceback /// Append a stack traceback to the error message.
}
/**
* Represents a Lua state instance.
*/
class LuaState
{
private:
lua_State* L; // underlying state
LuaTable _G, _R; // global and registry tables
LuaFunction traceback; // debug.traceback, set in openLibs()
bool owner = false; // whether or not to close the underlying state in the finalizer
public:
/**
* Create a new, empty Lua state. The standard library is not loaded.
*
* If an uncaught error for any operation on this state
* causes a Lua panic for the underlying state,
* an exception of type $(DPREF error, LuaErrorException) is thrown.
*
* See_Also: $(MREF LuaState.openLibs)
*/
this()
{
lua_State* L = luaL_newstate();
owner = true;
extern(C) static int panic(lua_State* L)
{
size_t len;
const(char)* cMessage = lua_tolstring(L, -1, &len);
string message = cMessage[0 .. len].idup;
lua_pop(L, 1);
throw new LuaErrorException(message);
}
lua_atpanic(L, &panic);
this(L);
}
/**
* Create a D wrapper for an existing Lua state.
*
* The new $(D LuaState) object does not assume ownership of the state.
* Params:
* L = state to wrap
* Note:
* The panic function is not changed - a Lua panic will not throw a D exception!
* See_Also:
$(MREF LuaState.setPanicHandler)
*/
this(lua_State* L)
{
this.L = L;
_G = LuaTable(L, LUA_GLOBALSINDEX);
_R = LuaTable(L, LUA_REGISTRYINDEX);
lua_pushlightuserdata(L, cast(void*)this);
lua_setfield(L, LUA_REGISTRYINDEX, "__dstate");
}
~this()
{
if(owner)
{
_R.release();
_G.release();
traceback.release();
lua_close(L);
}
else // Unregister state
{
lua_pushnil(L);
lua_setfield(L, LUA_REGISTRYINDEX, "__dstate");
}
}
/// The underlying $(D lua_State) pointer for interfacing with C.
@property lua_State* state() nothrow pure @safe
{
return L;
}
/**
* Get the $(D LuaState) instance for a Lua state.
* Params:
* L = Lua state
* Returns:
* $(D LuaState) for the given $(D lua_State*), or $(D null) if a $(D LuaState) is not currently attached to the state
*/
static LuaState fromPointer(lua_State* L) @trusted
{
lua_getfield(L, LUA_REGISTRYINDEX, "__dstate");
auto lua = cast(LuaState)lua_touserdata(L, -1);
lua_pop(L, 1);
return lua;
}
/// Open the standard library.
void openLibs() @trusted
{
luaL_openlibs(L);
traceback = _G.get!LuaFunction("debug", "traceback");
}
/// The global table for this instance.
@property LuaTable globals() @trusted
{
return _G;
}
/// The _registry table for this instance.
@property LuaTable registry() @trusted
{
return _R;
}
/**
* Set a new panic handler.
* Params:
* onPanic = new panic handler
* Examples:
* ----------------------
auto L = luaL_newstate(); // found in luad.c.all
auto lua = new LuaState(L);
static void panic(LuaState lua, in char[] error)
{
throw new LuaErrorException(error.idup);
}
lua.setPanicHandler(&panic);
* ----------------------
*/
void setPanicHandler(void function(LuaState, in char[]) onPanic) @trusted
{
extern(C) static int panic(lua_State* L)
{
size_t len;
const(char)* message = lua_tolstring(L, -1, &len);
auto error = message[0 .. len];
lua_getfield(L, LUA_REGISTRYINDEX, "__dpanic");
auto callback = cast(void function(LuaState, in char[]))lua_touserdata(L, -1);
assert(callback);
scope(exit) lua_pop(L, 2);
callback(LuaState.fromPointer(L), error);
return 0;
}
lua_pushlightuserdata(L, onPanic);
lua_setfield(L, LUA_REGISTRYINDEX, "__dpanic");
lua_atpanic(L, &panic);
}
/*
* push debug.traceback error handler to the stack
*/
private void pushErrorHandler()
{
if(traceback.isNil)
throw new Exception("LuaErrorHandler.Traceback requires openLibs()");
traceback.push();
}
/*
* a variant of luaL_do(string|file) with advanced error handling
*/
private void doChunk(alias loader)(in char[] s, LuaErrorHandler handler)
{
if(handler == LuaErrorHandler.Traceback)
pushErrorHandler();
if(loader(L, toStringz(s)) || lua_pcall(L, 0, LUA_MULTRET, handler == LuaErrorHandler.Traceback? -2 : 0))
lua_error(L);
if(handler == LuaErrorHandler.Traceback)
lua_remove(L, 1);
}
/**
* Compile a string of Lua _code.
* Params:
* code = _code to compile
* Returns:
* Loaded _code as a function.
*/
LuaFunction loadString(in char[] code) @trusted
{
if(luaL_loadstring(L, toStringz(code)) != 0)
lua_error(L);
return popValue!LuaFunction(L);
}
/**
* Compile a file of Lua code.
* Params:
* path = _path to file
* Returns:
* Loaded code as a function.
*/
LuaFunction loadFile(in char[] path) @trusted
{
if(luaL_loadfile(L, toStringz(path)) != 0)
lua_error(L);
return popValue!LuaFunction(L);
}
/**
* Execute a string of Lua _code.
* Params:
* code = _code to run
* handler = error handling scheme
* Returns:
* Any _code return values
* See_Also:
* $(MREF LuaErrorHandler)
*/
LuaObject[] doString(in char[] code, LuaErrorHandler handler = LuaErrorHandler.None) @trusted
{
auto top = lua_gettop(L);
doChunk!(luaL_loadstring)(code, handler);
auto nret = lua_gettop(L) - top;
return popStack(L, nret);
}
/**
* Execute a file of Lua code.
* Params:
* path = _path to file
* handler = error handling scheme
* Returns:
* Any script return values
* See_Also:
* $(MREF LuaErrorHandler)
*/
LuaObject[] doFile(in char[] path, LuaErrorHandler handler = LuaErrorHandler.None) @trusted
{
auto top = lua_gettop(L);
doChunk!(luaL_loadfile)(path, handler);
auto nret = lua_gettop(L) - top;
return popStack(L, nret);
}
/**
* Create a new, empty table.
* Returns:
* The new table
*/
LuaTable newTable()() @trusted
{
return newTable(0, 0);
}
/**
* Create a new, empty table with pre-allocated space for members.
* Params:
* narr = number of pre-allocated array slots
* nrec = number of pre-allocated non-array slots
* Returns:
* The new table
*/
LuaTable newTable()(uint narr, uint nrec) @trusted
{
lua_createtable(L, narr, nrec);
return popValue!LuaTable(L);
}
/**
* Create a new table from an $(D InputRange).
* If the element type of the range is $(D Tuple!(T, U)),
* then each element makes up a key-value pair, where
* $(D T) is the key and $(D U) is the value of the pair.
* For any other element type $(D T), a table with sequential numeric
* keys is created (an array).
* Params:
* range = $(D InputRange) of key-value pairs or elements
* Returns:
* The new table
*/
LuaTable newTable(Range)(Range range) @trusted if(isInputRange!Range)
{
alias ElementType!Range Elem;
static if(hasLength!Range)
{
immutable numElements = range.length;
assert(numElements <= int.max, "lua_createtable only supports int.max many elements");
}
else
{
immutable numElements = 0;
}
static if(isTuple!Elem) // Key-value pairs
{
static assert(Elem.length == 2, "key-value tuple must have exactly 2 values.");
lua_createtable(L, 0, cast(int)numElements);
foreach(pair; range)
{
pushValue(L, pair[0]);
pushValue(L, pair[1]);
lua_rawset(L, -3);
}
}
else // Sequential table
{
lua_createtable(L, cast(int)numElements, 0);
size_t i = 1;
foreach(value; range)
{
pushValue(L, i);
pushValue(L, value);
lua_rawset(L, -3);
++i;
}
}
return popValue!LuaTable(L);
}
/**
* Wrap a D value in a Lua reference.
*
* Note that using this method is only necessary in certain situations,
* such as when you want to act on the reference before fully exposing it to Lua.
* Params:
* T = type of reference. Must be $(D LuaObject), $(D LuaTable), $(D LuaFunction) or $(D LuaDynamic).
* Defaults to $(D LuaObject).
* value = D value to _wrap
* Returns:
* A Lua reference to value
*/
T wrap(T = LuaObject, U)(U value) @trusted if(is(T : LuaObject) || is(T == LuaDynamic))
{
pushValue(L, value);
return popValue!T(L);
}
/**
* Register a D class or struct with Lua.
*
* This method exposes a type's constructors and static interface to Lua.
* Params:
* T = class or struct to register
* Returns:
* Reference to the registered type in Lua
*/
LuaObject registerType(T)() @trusted
{
pushStaticTypeInterface!T(L);
return popValue!LuaObject(L);
}
/**
* Same as calling $(D globals._get) with the same arguments.
* See_Also:
* $(DPREF table, LuaTable._get)
*/
T get(T, U...)(U args)
{
return globals.get!T(args);
}
/**
* Same as calling $(D globals.get!LuaObject) with the same arguments.
* See_Also:
* $(DPREF table, LuaTable._opIndex)
*/
LuaObject opIndex(T...)(T args)
{
return globals.get!LuaObject(args);
}
/**
* Same as calling $(D globals._set) with the same arguments.
* See_Also:
* $(DPREF table, LuaTable._set)
*/
void set(T, U)(T key, U value)
{
globals.set(key, value);
}
/**
* Same as calling $(D globals._opIndexAssign) with the same arguments.
* See_Also:
* $(DPREF table, LuaTable._opIndexAssign)
*/
void opIndexAssign(T, U...)(T value, U args)
{
globals()[args] = value;
}
}
version(unittest)
{
import luad.testing;
import std.string : splitLines;
private LuaState lua;
}
unittest
{
lua = new LuaState;
assert(LuaState.fromPointer(lua.L) == lua);
lua.openLibs();
//default panic handler
try
{
lua.doString(`error("Hello, D!")`, LuaErrorHandler.Traceback);
assert(false);
}
catch(LuaErrorException e)
{
auto lines = splitLines(e.msg);
assert(lines.length > 1);
assert(lines[0] == `[string "error("Hello, D!")"]:1: Hello, D!`);
}
lua.set("success", false);
assert(!lua.get!bool("success"));
lua.doString(`success = true`);
assert(lua.get!bool("success"));
auto foo = lua.wrap!LuaTable([1, 2, 3]);
foo[4] = "test"; // Lua tables start at 1
lua["foo"] = foo;
unittest_lua(lua.state, `
for i = 1, 3 do
assert(foo[i] == i)
end
assert(foo[4] == "test")
`);
LuaFunction multipleReturns = lua.loadString(`return 1, "two", 3`);
LuaObject[] results = multipleReturns();
assert(results.length == 3);
assert(results[0].type == LuaType.Number);
assert(results[1].type == LuaType.String);
assert(results[2].type == LuaType.Number);
}
unittest // LuaTable.newTable(range)
{
import std.algorithm;
auto input = [1, 2, 3];
lua["tab"] = lua.newTable(input);
unittest_lua(lua.state, `
assert(#tab == 3)
for i = 1, 3 do
assert(tab[i] == i)
end
`);
lua["tab"] = lua.newTable(filter!(i => i == 2)(input));
unittest_lua(lua.state, `
assert(#tab == 1)
assert(tab[1] == 2)
`);
auto keys = iota(7, 14);
auto values = repeat(42);
lua["tab"] = lua.newTable(zip(keys, values));
unittest_lua(lua.state, `
assert(not tab[1])
assert(not tab[6])
for i = 7, 13 do
assert(tab[i] == 42)
end
assert(not tab[14])
`);
}
unittest
{
static class Test
{
private:
/+ Not working as of 2.062
static int priv;
static void priv_fun() {}
+/
public:
static int pub = 123;
static string foo() { return "bar"; }
this(int i)
{
_bar = i;
}
int bar(){ return _bar; }
int _bar;
}
lua["Test"] = lua.registerType!Test();
unittest_lua(lua.state, `
assert(type(Test) == "table")
-- TODO: private members are currently pushed too...
--assert(Test.priv == nil)
--assert(Test.priv_fun == nil)
assert(Test._foo == nil)
assert(Test._bar == nil)
local test = Test(42)
assert(test:bar() == 42)
assert(Test.pub == 123)
assert(Test.foo() == "bar")
`);
}
unittest
{
// setPanicHandler, keep this test last
static void panic(LuaState lua, in char[] error)
{
throw new Exception("hijacked error!");
}
lua.setPanicHandler(&panic);
try
{
lua.doString(`error("test")`);
}
catch(Exception e)
{
assert(e.msg == "hijacked error!");
}
}
| D |
instance MENU_OPT_AUDIO(C_MENU_DEF)
{
items[0] = "MENUITEM_AUDIO_HEADLINE";
items[1] = "MENUITEM_AUDIO_SFXVOL";
items[2] = "MENUITEM_AUDIO_SFXVOL_SLIDER";
items[3] = "MENUITEM_AUDIO_MUSICVOL";
items[4] = "MENUITEM_AUDIO_MUSICVOL_SLIDER";
items[5] = "MENUITEM_AUDIO_MUSIC";
items[6] = "MENUITEM_AUDIO_MUSIC_CHOICE";
items[7] = "MENUITEM_AUDIO_PROVIDER";
items[8] = "MENUITEM_AUDIO_PROVIDER_CHOICE";
items[9] = "MENUITEM_AUDIO_SPEEKER";
items[10] = "MENUITEM_AUDIO_SPEEKER_CHOICE";
items[11] = "MENUITEM_AUDIO_REVERB";
items[12] = "MENUITEM_AUDIO_REVERB_CHOICE";
items[13] = "MENUITEM_AUDIO_REVERB_SPEECH";
items[14] = "MENUITEM_AUDIO_REVERB_SPEECH_CHOICE";
items[15] = "MENUITEM_AUDIO_SAMPLERATE";
items[16] = "MENUITEM_AUDIO_SAMPLERATE_CHOICE";
items[17] = "MENUITEM_AUDIO_BACK";
flags = flags | MENU_SHOW_INFO | MENU_DONTSCALE_DIM;
};
const int MENU_SOUND_DY = 550;
instance MENUITEM_AUDIO_HEADLINE(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "";
type = MENU_ITEM_TEXT;
posx = 0;
posy = MENU_TITLE_Y;
dimx = 8100;
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER;
};
instance MENUITEM_AUDIO_SFXVOL(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Zvuk";
text[1] = "Hlasitost zvukových efektů a mluvené řeči";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 0);
dimx = 3400;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_SFXVOL_SLIDER(C_MENU_ITEM_DEF)
{
backPic = MENU_SLIDER_BACK_PIC;
type = MENU_ITEM_SLIDER;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 0);
dimx = MENU_SLIDER_DX;
dimy = MENU_SLIDER_DY;
onchgsetoption = "soundVolume";
onchgsetoptionsection = "SOUND";
userfloat[0] = 20;
userstring[0] = MENU_SLIDER_POS_PIC;
flags = flags & ~IT_SELECTABLE;
};
instance MENUITEM_AUDIO_MUSICVOL(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Hudba";
text[1] = "Hlasitost hudby na pozadí";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 1);
dimx = 3400;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_MUSICVOL_SLIDER(C_MENU_ITEM_DEF)
{
backPic = MENU_SLIDER_BACK_PIC;
type = MENU_ITEM_SLIDER;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 1);
dimx = MENU_SLIDER_DX;
dimy = MENU_SLIDER_DY;
onchgsetoption = "musicVolume";
onchgsetoptionsection = "SOUND";
userfloat[0] = 15;
userstring[0] = MENU_SLIDER_POS_PIC;
flags = flags & ~IT_SELECTABLE;
};
instance MENUITEM_AUDIO_MUSIC(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Zapnout hudbu";
text[1] = "Zapnout hudbu na pozadí";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 2);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_MUSIC_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "Ne|Ano";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 2) + MENU_CHOICE_YPLUS;
dimx = MENU_SLIDER_DX;
dimy = MENU_CHOICE_DY;
onchgsetoption = "musicEnabled";
onchgsetoptionsection = "SOUND";
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION | IT_NEEDS_RESTART;
};
instance MENUITEM_AUDIO_PROVIDER(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Ovladač zvuku";
text[1] = "Ovladač používaný pro přehrávání zvuků ve hře";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 3);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_PROVIDER_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "1|2|3|4|5";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 3) + MENU_CHOICE_YPLUS;
dimx = 3000;
dimy = MENU_CHOICE_DY;
onchgsetoption = "soundProviderIndex";
onchgsetoptionsection = "INTERNAL";
oneventaction[6] = update_audiooptions;
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION | IT_NEEDS_RESTART;
};
instance MENUITEM_AUDIO_SPEEKER(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Reproduktory";
text[1] = "Typ zvukového systému používaný pro přehrávání zvuků";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 4);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_SPEEKER_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "2.0|Sluchátka|Surround|4.0|5.1|7.1";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 4) + MENU_CHOICE_YPLUS;
dimx = 3000;
dimy = MENU_CHOICE_DY;
onchgsetoption = "soundSpeakerIndex";
onchgsetoptionsection = "INTERNAL";
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION;
};
instance MENUITEM_AUDIO_REVERB(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Ozvěna";
text[1] = "Zapnout efekty ozvěny ve hře";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 5);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_REVERB_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "Ne|Ano";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 5) + MENU_CHOICE_YPLUS;
dimx = MENU_CHOICE_DX;
dimy = MENU_CHOICE_DY;
onchgsetoption = "soundUseReverb";
onchgsetoptionsection = "SOUND";
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION | IT_NEEDS_RESTART;
};
instance MENUITEM_AUDIO_REVERB_SPEECH(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Ozvěna řeči";
text[1] = "Kvalita ozvěny mluvené řeči ve hře";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 6);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_REVERB_SPEECH_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "Žádná|Střední|Plná";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 6) + MENU_CHOICE_YPLUS;
dimx = MENU_SLIDER_DX;
dimy = MENU_CHOICE_DY;
onchgsetoption = "useSpeechReverbLevel";
onchgsetoptionsection = "GAME";
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION;
};
instance MENUITEM_AUDIO_SAMPLERATE(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Kvalita zvuku";
text[1] = "Kvalita přehrávaného zvuku ve hře";
posx = 1000;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 7);
dimx = 3000;
dimy = 750;
onselaction[0] = SEL_ACTION_UNDEF;
flags = flags | IT_EFFECTS_NEXT;
};
instance MENUITEM_AUDIO_SAMPLERATE_CHOICE(C_MENU_ITEM_DEF)
{
backPic = MENU_CHOICE_BACK_PIC;
type = MENU_ITEM_CHOICEBOX;
text[0] = "22 kHz|44 kHz";
fontname = MENU_FONT_SMALL;
posx = 4300;
posy = MENU_START_SOUND_Y + (MENU_SOUND_DY * 7) + MENU_CHOICE_YPLUS;
dimx = MENU_CHOICE_DX;
dimy = MENU_CHOICE_DY;
onchgsetoption = "soundSampleRateIndex";
onchgsetoptionsection = "INTERNAL";
flags = flags & ~IT_SELECTABLE;
flags = flags | IT_TXT_CENTER | IT_PERF_OPTION | IT_NEEDS_RESTART;
};
instance MENUITEM_AUDIO_BACK(C_MENU_ITEM_DEF)
{
backPic = MENU_ITEM_BACK_PIC;
text[0] = "Zpět";
text[1] = "";
posx = 1000;
posy = MENU_BACK_Y;
dimx = 6192;
dimy = MENU_SOUND_DY;
onselaction[0] = SEL_ACTION_BACK;
flags = flags | IT_TXT_CENTER;
};
func int update_audiooptions()
{
Update_ChoiceBox("MENUITEM_AUDIO_PROVIDER_CHOICE");
return 1;
};
func int apply_audioresolution()
{
Apply_Options_Audio();
return 0;
};
| D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt
module visuald.hierutil;
import visuald.windows;
import std.string;
import std.file;
import std.path;
import std.utf;
import std.array;
import std.conv;
import core.stdc.wchar_ : wcslen;
import stdext.path;
import stdext.array;
import stdext.string;
import sdk.port.vsi;
import sdk.vsi.vsshell;
import sdk.vsi.objext;
import sdk.vsi.uilocale;
import dte = sdk.vsi.dte80a;
import dte2 = sdk.vsi.dte80;
import visuald.comutil;
import visuald.fileutil;
import visuald.logutil;
import visuald.stringutil;
import visuald.dpackage;
import visuald.dproject;
import visuald.completion;
import visuald.chiernode;
import visuald.chiercontainer;
import visuald.hierarchy;
import visuald.config;
import visuald.winctrl;
import visuald.vdextensions;
const uint _MAX_PATH = 260;
///////////////////////////////////////////////////////////////////////
int CompareFilenames(string f1, string f2)
{
return icmp(f1, f2);
/+
if(f1 == f2)
return 0;
if(f1 < f2)
return -1;
return 1;
+/
}
bool ContainsInvalidFileChars(string name)
{
string invalid = "\\/:*?\"<>|";
foreach(dchar ch; name)
if(indexOf(invalid, ch) >= 0)
return true;
return false;
}
bool CheckFileName(string fileName)
{
if (fileName.length == 0 || fileName.length >= _MAX_PATH)
return false;
string base = baseName(fileName);
if(base.length == 0)
return false;
if(ContainsInvalidFileChars(base))
return false;
base = getNameWithoutExt(base);
if(base.length == 0)
return true; // file starts with '.'
static string[] reservedNames =
[
"CON", "PRN", "AUX", "CLOCK$", "NUL",
"COM1","COM2", "COM3","COM4","COM5", "COM6", "COM7","COM8", "COM9",
"LPT1","LPT2", "LPT3","LPT4","LPT5", "LPT6", "LPT7","LPT8", "LPT9"
];
base = toUpper(base);
foreach(rsvd; reservedNames)
if(base == rsvd)
return false;
return true;
}
//---------------------------------------------------------------------------
// Class: CVsModalState
// Manage Modal State
//---------------------------------------------------------------------------
class CVsModalState
{
public:
this(bool bDisableDlgOwnerHwnd = false)
{
m_hwnd = null;
m_bDisabledHwnd = false;
// Need to get dialog owner hwnd prior to enabling modeless false
auto srpUIManager = queryService!(IVsUIShell);
if(srpUIManager)
{
srpUIManager.GetDialogOwnerHwnd(&m_hwnd);
srpUIManager.Release();
}
if(m_hwnd == null)
{
//assert(false);
m_hwnd = GetActiveWindow();
}
EnableModeless(false);
if(bDisableDlgOwnerHwnd && IsWindowEnabled(m_hwnd))
{
EnableWindow(m_hwnd, FALSE);
m_bDisabledHwnd = true;
}
}
~this()
{
if(m_bDisabledHwnd)
EnableWindow(m_hwnd, TRUE);
EnableModeless(TRUE);
}
HWND GetDialogOwnerHwnd()
{
return m_hwnd;
}
protected:
HRESULT EnableModeless(bool fEnable)
{
HRESULT hr = S_OK;
auto srpUIManager = queryService!(IVsUIShell);
if(srpUIManager)
{
hr = srpUIManager.EnableModeless(fEnable);
srpUIManager.Release();
}
return hr;
}
HWND m_hwnd; // owner window
bool m_bDisabledHwnd; // TRUE if we disabled m_hwnd;
}
int UtilMessageBox(string text, uint nType, string caption)
{
auto wtext = toUTF16z(text);
auto wcaption = toUTF16z(caption);
scope CVsModalState modalstate = new CVsModalState;
return MessageBoxW(modalstate.GetDialogOwnerHwnd(), wtext, wcaption, nType);
}
struct DROPFILES
{
DWORD pFiles; // offset of file list
POINT pt; // drop point (coordinates depend on fNC)
BOOL fNC; // see below
BOOL fWide; // TRUE if file contains wide characters, FALSE otherwise
}
//-----------------------------------------------------------------------------
// Returns a cstring array populated with the files from a PROJREF drop. Note that
// we can't use the systems DragQueryFile() functions because they will NOT work
// on win9x with unicode strings. Returns the count of files. The format looks like
// the following: DROPFILES structure with pFiles member containing the offset to
// the list of files:
// ----------------------------------------------------------------------------
// |{DROPFILES structure}|ProjRefItem1|0|ProjRefItem2|0|.......|ProjRefItemN|0|0|
// ----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
int UtilGetFilesFromPROJITEMDrop(HGLOBAL h, ref string[] rgFiles)
{
LPVOID pv = .GlobalLock(h);
if (!pv)
return 0;
DROPFILES* pszDropFiles = cast(DROPFILES*)pv;
// It better be marked unicode
assert(pszDropFiles.fWide);
if (pszDropFiles.fWide)
{
// The first member of the structure contains the offset to the files
wchar* wzBuffer = cast(wchar*)(cast(byte*)pszDropFiles + pszDropFiles.pFiles);
// We go until *wzBuffer is null since we don't allow empty strings.
while(*wzBuffer)
{
int len = wcslen(wzBuffer);
assert(len);
string file = toUTF8(wzBuffer[0..len]);
rgFiles ~= file;
wzBuffer += len + 1;
}
}
.GlobalUnlock(h);
return rgFiles.length;
}
wstring UtilGetStringFromHGLOBAL(HGLOBAL h)
{
LPVOID pv = .GlobalLock(h);
if (!pv)
return "";
wstring ws = to_wstring(cast(wchar*) pv);
.GlobalUnlock(h);
return ws;
}
//----------------------------------------------------------------------------
// Returns TRUE if Shell is in command line (non-interactive) mode
//----------------------------------------------------------------------------
bool UtilShellInCmdLineMode()
{
auto pIVsShell = ComPtr!(IVsShell)(queryService!(IVsShell), false);
if(pIVsShell)
{
VARIANT var;
if(SUCCEEDED(pIVsShell.GetProperty(VSSPROPID_IsInCommandLineMode, &var)))
return var.boolVal != 0;
}
return false;
}
//-----------------------------------------------------------------------------
// Displays the last error set in the shell
//-----------------------------------------------------------------------------
void UtilReportErrorInfo(HRESULT hr)
{
// Filter out bogus hr's where we shouldn't be displaying an error.
if(hr != OLE_E_PROMPTSAVECANCELLED)
{
BOOL fInExt = FALSE;
if(dte.IVsExtensibility ext = queryService!(dte.IVsExtensibility))
{
scope(exit) release(ext);
ext.IsInAutomationFunction(&fInExt);
if(fInExt || UtilShellInCmdLineMode())
return;
auto pIVsUIShell = ComPtr!(IVsUIShell)(queryService!(IVsUIShell), false);
if(pIVsUIShell)
pIVsUIShell.ReportErrorInfo(hr);
}
}
}
int ShowContextMenu(UINT iCntxtMenuID, in GUID* GroupGuid, IOleCommandTarget pIOleCmdTarg)
{
auto srpUIManager = queryService!(IVsUIShell);
if(!srpUIManager)
return E_FAIL;
scope(exit) release(srpUIManager);
POINT pnt;
GetCursorPos(&pnt);
POINTS pnts = POINTS(cast(short)pnt.x, cast(short)pnt.y);
int hr = srpUIManager.ShowContextMenu(0, GroupGuid, iCntxtMenuID, &pnts, pIOleCmdTarg);
return hr;
}
//-----------------------------------------------------------------------------
CHierNode searchNode(CHierNode root, bool delegate(CHierNode) pred, bool fDisplayOnly = true)
{
if(!root)
return null;
if(pred(root))
return root;
for(CHierNode node = root.GetHeadEx(fDisplayOnly); node; node = node.GetNext(fDisplayOnly))
if(CHierNode n = searchNode(node, pred, fDisplayOnly))
return n;
return null;
}
///////////////////////////////////////////////////////////////////////
@property I queryService(SVC,I)()
{
if(!visuald.dpackage.Package.s_instance)
return null;
IServiceProvider sp = visuald.dpackage.Package.s_instance.getServiceProvider();
if(!sp)
return null;
I svc;
if(FAILED(sp.QueryService(&SVC.iid, &I.iid, cast(void **)&svc)))
return null;
return svc;
}
@property I queryService(I)()
{
return queryService!(I,I);
}
///////////////////////////////////////////////////////////////////////////////
// VsLocalCreateInstance
///////////////////////////////////////////////////////////////////////////////
I VsLocalCreateInstance(I)(const GUID* clsid, DWORD dwFlags)
{
if(ILocalRegistry srpLocalReg = queryService!ILocalRegistry())
{
scope(exit) release(srpLocalReg);
IUnknown punkOuter = null;
I inst;
if(FAILED(srpLocalReg.CreateInstance(*clsid, punkOuter, &I.iid, dwFlags,
cast(void**) &inst)))
return null;
return inst;
}
return null;
}
///////////////////////////////////////////////////////////////////////////////
dte2.DTE2 GetDTE()
{
dte._DTE _dte = queryService!(dte._DTE);
if(!_dte)
return null;
scope(exit) release(_dte);
dte2.DTE2 spvsDTE = qi_cast!(dte2.DTE2)(_dte);
return spvsDTE;
}
int GetDTE(dte.DTE *lppaReturn)
{
dte._DTE _dte = queryService!(dte._DTE);
if(!_dte)
return returnError(E_NOINTERFACE);
scope(exit) _dte.Release();
return _dte.get_DTE(lppaReturn);
}
string getStringProperty(dte.Properties props, string propName, string def = null)
{
VARIANT index;
dte.Property prop;
index.vt = VT_BSTR;
index.bstrVal = allocBSTR(propName);
HRESULT hr = props.Item(index, &prop);
detachBSTR(index.bstrVal);
if(FAILED(hr) || !prop)
return def;
scope(exit) release(prop);
VARIANT var;
hr = prop.get_Value(&var);
if(var.vt != VT_BSTR)
return def;
if(FAILED(hr))
return def;
return detachBSTR(var.bstrVal);
}
int getIntProperty(dte.Properties props, string propName, int def = -1)
{
VARIANT index;
dte.Property prop;
index.vt = VT_BSTR;
index.bstrVal = allocBSTR(propName);
HRESULT hr = props.Item(index, &prop);
detachBSTR(index.bstrVal);
if(FAILED(hr) || !prop)
return def;
scope(exit) release(prop);
VARIANT var;
hr = prop.get_Value(&var);
if(FAILED(hr))
return def;
if(var.vt == VT_I2 || var.vt == VT_UI2)
return var.iVal;
if(var.vt == VT_INT || var.vt == VT_I4 || var.vt == VT_UI4 || var.vt == VT_UINT)
return var.intVal;
return def;
}
string getEnvironmentFont(out int fontSize, out int charSet)
{
dte._DTE _dte = queryService!(dte._DTE);
if(!_dte)
return null;
scope(exit) release(_dte);
dte.Properties props;
BSTR bprop = allocBSTR("FontsAndColors");
BSTR bpage = allocBSTR("Dialogs and Tool Windows");
HRESULT hr = _dte.get_Properties(bprop, bpage, &props);
detachBSTR(bprop);
detachBSTR(bpage);
if(FAILED(hr) || !props)
return null;
scope(exit) release(props);
string family = getStringProperty(props, "FontFamily");
fontSize = getIntProperty(props, "FontSize", 10);
charSet = getIntProperty(props, "FontCharacterSet", 1);
/+
IDispatch obj;
hr = prop.Object(&obj);
if(FAILED(hr) || !obj)
return null;
scope(exit) release(obj);
dte.FontsAndColorsItems faci = qi_cast!(dte.FontsAndColorsItems)(obj);
if(!faci)
return null;
scope(exit) release(faci);
dte.ColorableItems ci;
index.bstrVal = allocBSTR("Plain Text");
hr = faci.Item(index, &ci);
detachBSTR(index.bstrVal);
if(FAILED(hr) || !ci)
return null;
BSTR wname;
ci.Name(&wname);
string name = detachBSTR(wname);
dte._FontsAndColors fac = qi_cast!(dte._FontsAndColors)(ci);
fac = release(fac);
fac = qi_cast!(dte._FontsAndColors)(faci);
fac = release(fac);
+/
return family;
}
void updateEnvironmentFont()
{
IUIHostLocale locale = queryService!(IUIHostLocale);
if(locale)
{
scope(exit) release(locale);
if(SUCCEEDED(locale.GetDialogFont(&dialogLogFont)))
return;
}
int size;
int charset;
string font = getEnvironmentFont(size, charset);
if(font.length)
{
HDC hDDC = GetDC(GetDesktopWindow());
int nHeight = -MulDiv(size, GetDeviceCaps(hDDC, LOGPIXELSY), 72);
dialogLogFont.lfHeight = nHeight;
dialogLogFont.lfCharSet = cast(ubyte)charset;
dialogLogFont.lfFaceName[] = to!wstring(font)[];
}
}
////////////////////////////////////////////////////////////////////////
IVsTextView GetActiveView()
{
IVsTextManager textmgr = queryService!(VsTextManager, IVsTextManager);
if(!textmgr)
return null;
scope(exit) release(textmgr);
IVsTextView view;
if(textmgr.GetActiveView(false, null, &view) != S_OK)
return null;
return view;
}
////////////////////////////////////////////////////////////////////////
IVsTextLines GetCurrentTextBuffer(IVsTextView* pview)
{
IVsTextView view = GetActiveView();
if (!view)
return null;
scope(exit) release(view);
if(pview)
*pview = addref(view);
IVsTextLines buffer;
view.GetBuffer(&buffer);
return buffer;
}
////////////////////////////////////////////////////////////////////////
string GetSolutionFilename()
{
IVsSolution srpSolution = queryService!(IVsSolution);
if(srpSolution)
{
scope(exit) srpSolution.Release();
BSTR pbstrSolutionFile;
if(srpSolution.GetSolutionInfo(null, &pbstrSolutionFile, null) == S_OK)
return detachBSTR(pbstrSolutionFile);
}
return "";
}
////////////////////////////////////////////////////////////////////////
HRESULT FindFileInSolution(IVsUIShellOpenDocument pIVsUIShellOpenDocument, string filename, string srcfile,
out BSTR bstrAbsPath)
{
auto wstrPath = _toUTF16z(filename);
HRESULT hr;
hr = pIVsUIShellOpenDocument.SearchProjectsForRelativePath(RPS_UseAllSearchStrategies, wstrPath, &bstrAbsPath);
if(hr != S_OK || !bstrAbsPath || !isAbsolute(to_string(bstrAbsPath)))
{
// search import paths
string[] imps = GetImportPaths(srcfile);
foreach(imp; imps)
{
string file = makeFilenameCanonical(filename, imp);
if(std.file.exists(file))
{
detachBSTR(bstrAbsPath);
bstrAbsPath = allocBSTR(file);
hr = S_OK;
break;
}
}
}
return hr;
}
HRESULT FindFileInSolution(string filename, string srcfile, out string absPath)
{
// Get the IVsUIShellOpenDocument service so we can ask it to open a doc window
IVsUIShellOpenDocument pIVsUIShellOpenDocument = queryService!(IVsUIShellOpenDocument);
if(!pIVsUIShellOpenDocument)
return returnError(E_FAIL);
scope(exit) release(pIVsUIShellOpenDocument);
BSTR bstrAbsPath;
HRESULT hr = FindFileInSolution(pIVsUIShellOpenDocument, filename, srcfile, bstrAbsPath);
if(hr != S_OK)
return returnError(hr);
absPath = detachBSTR(bstrAbsPath);
return S_OK;
}
HRESULT OpenFileInSolution(string filename, int line, int col = 0, string srcfile = "", bool adjustLineToChanges = false)
{
// Get the IVsUIShellOpenDocument service so we can ask it to open a doc window
IVsUIShellOpenDocument pIVsUIShellOpenDocument = queryService!(IVsUIShellOpenDocument);
if(!pIVsUIShellOpenDocument)
return returnError(E_FAIL);
scope(exit) release(pIVsUIShellOpenDocument);
BSTR bstrAbsPath;
HRESULT hr = FindFileInSolution(pIVsUIShellOpenDocument, filename, srcfile, bstrAbsPath);
if(hr != S_OK)
return returnError(hr);
scope(exit) detachBSTR(bstrAbsPath);
IVsWindowFrame srpIVsWindowFrame;
hr = pIVsUIShellOpenDocument.OpenDocumentViaProject(bstrAbsPath, &LOGVIEWID_Primary, null, null, null,
&srpIVsWindowFrame);
if(FAILED(hr))
hr = pIVsUIShellOpenDocument.OpenStandardEditor(
/* [in] VSOSEFLAGS grfOpenStandard */ OSE_ChooseBestStdEditor,
/* [in] LPCOLESTR pszMkDocument */ bstrAbsPath,
/* [in] REFGUID rguidLogicalView */ &LOGVIEWID_Primary,
/* [in] LPCOLESTR pszOwnerCaption */ _toUTF16z("%3"),
/* [in] IVsUIHierarchy *pHier */ null,
/* [in] VSITEMID itemid */ 0,
/* [in] IUnknown *punkDocDataExisting */ DOCDATAEXISTING_UNKNOWN,
/* [in] IServiceProvider *pSP */ null,
/* [out, retval] IVsWindowFrame **ppWindowFrame */ &srpIVsWindowFrame);
if(FAILED(hr) || !srpIVsWindowFrame)
return returnError(hr);
scope(exit) release(srpIVsWindowFrame);
srpIVsWindowFrame.Show();
VARIANT var;
hr = srpIVsWindowFrame.GetProperty(VSFPROPID_DocData, &var);
if(FAILED(hr) || var.vt != VT_UNKNOWN || !var.punkVal)
return returnError(E_FAIL);
scope(exit) release(var.punkVal);
IVsTextLines textBuffer = qi_cast!IVsTextLines(var.punkVal);
if(!textBuffer)
if(auto bufferProvider = qi_cast!IVsTextBufferProvider(var.punkVal))
{
bufferProvider.GetTextBuffer(&textBuffer);
release(bufferProvider);
}
if(!textBuffer)
return returnError(E_FAIL);
scope(exit) release(textBuffer);
if(line < 0)
return S_OK;
if(adjustLineToChanges)
if(auto src = Package.GetLanguageService().GetSource(textBuffer))
line = src.adjustLineNumberSinceLastBuild(line, false);
return NavigateTo(textBuffer, line, col, line, col);
}
HRESULT NavigateTo(IVsTextBuffer textBuffer, int line1, int col1, int line2, int col2)
{
IVsTextManager textmgr = queryService!(VsTextManager, IVsTextManager);
if(!textmgr)
return returnError(E_FAIL);
scope(exit) release(textmgr);
return textmgr.NavigateToLineAndColumn(textBuffer, &LOGVIEWID_Primary, line1, col1, line2, col2);
}
HRESULT OpenFileInSolutionWithScope(string fname, int line, int col, string scop, bool adjustLineToChanges = false)
{
HRESULT hr = OpenFileInSolution(fname, line, col, "", adjustLineToChanges);
if(hr != S_OK && !isAbsolute(fname) && scop.length)
{
// guess import path from filename (e.g. "src\core\mem.d") and
// scope (e.g. "core.mem.gc.Proxy") to try opening
// the file ("core\mem.d")
string inScope = toLower(scop);
string path = normalizeDir(dirName(toLower(fname)));
inScope = replace(inScope, ".", "\\");
int i;
for(i = 1; i < path.length; i++)
if(startsWith(inScope, path[i .. $]))
break;
if(i < path.length)
{
fname = fname[i .. $];
hr = OpenFileInSolution(fname, line, col, "", adjustLineToChanges);
}
}
return hr;
}
////////////////////////////////////////////////////////////////////////
string commonProjectFolder(Project proj)
{
string workdir = normalizeDir(dirName(proj.GetFilename()));
string path = workdir;
searchNode(proj.GetRootNode(), delegate (CHierNode n)
{
if(CFileNode file = cast(CFileNode) n)
path = commonParentDir(path, makeFilenameAbsolute(file.GetFilename(), workdir));
return false;
});
return path;
}
////////////////////////////////////////////////////////////////////////
string copyProjectFolder(Project proj, string ncommonpath)
{
string path = commonProjectFolder(proj);
if (path.length == 0)
return null;
string npath = normalizeDir(ncommonpath);
string workdir = normalizeDir(dirName(proj.GetFilename()));
searchNode(proj.GetRootNode(), delegate (CHierNode n)
{
if(CFileNode file = cast(CFileNode) n)
{
string fname = makeFilenameAbsolute(file.GetFilename(), workdir);
string nname = npath ~ fname[path.length .. $];
mkdirRecurse(dirName(nname));
copy(fname, nname);
}
return false;
});
return npath;
}
////////////////////////////////////////////////////////////////////////
string GetFolderPath(CFolderNode folder)
{
string path;
while(folder && !cast(CProjectNode) folder)
{
path = "\\" ~ folder.GetName() ~ path;
folder = cast(CFolderNode) folder.GetParent();
}
return path;
}
///////////////////////////////////////////////////////////////
// returns addref'd project
IVsHierarchy getProjectForSourceFile(string file)
{
auto srpSolution = queryService!(IVsSolution);
scope(exit) release(srpSolution);
IEnumHierarchies pEnum;
if(srpSolution.GetProjectEnum(EPF_LOADEDINSOLUTION, null, &pEnum) == S_OK)
{
scope(exit) release(pEnum);
auto wfile = _toUTF16z(file);
VSITEMID itemid;
IVsHierarchy pHierarchy;
while(pEnum.Next(1, &pHierarchy, null) == S_OK)
{
if (pHierarchy.ParseCanonicalName(wfile, &itemid) == S_OK)
return pHierarchy;
release(pHierarchy);
}
}
return null;
}
///////////////////////////////////////////////////////////////
// returns addref'd Config
Config getProjectConfig(string file, bool genCmdLine = false)
{
if(file.length == 0)
return null;
auto srpSolution = queryService!(IVsSolution);
scope(exit) release(srpSolution);
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
if(srpSolution && solutionBuildManager)
{
bool isJSON = toLower(extension(file)) == ".json";
auto wfile = _toUTF16z(file);
IEnumHierarchies pEnum;
if(srpSolution.GetProjectEnum(EPF_LOADEDINSOLUTION|EPF_MATCHTYPE, &g_projectFactoryCLSID, &pEnum) == S_OK)
{
scope(exit) release(pEnum);
IVsHierarchy pHierarchy;
while(pEnum.Next(1, &pHierarchy, null) == S_OK)
{
scope(exit) release(pHierarchy);
IVsProjectCfg activeCfg;
scope(exit) release(activeCfg);
if(isJSON)
{
if(solutionBuildManager.FindActiveProjectCfg(null, null, pHierarchy, &activeCfg) == S_OK)
{
if(Config cfg = qi_cast!Config(activeCfg))
{
string[] files;
if(cfg.addJSONFiles(files))
foreach(f; files)
if(CompareFilenames(f, file) == 0)
return cfg;
release(cfg);
}
}
}
else
{
VSITEMID itemid;
if(pHierarchy.ParseCanonicalName(wfile, &itemid) == S_OK)
{
if(solutionBuildManager.FindActiveProjectCfg(null, null, pHierarchy, &activeCfg) == S_OK)
{
if(Config cfg = qi_cast!Config(activeCfg))
return cfg;
}
}
}
}
}
}
return getVisualCppConfig(file, genCmdLine);
}
///////////////////////////////////////////////////////////////
class VCConfig : Config
{
string mCmdLine;
this(string projectfile, string projectname, string platform, string config)
{
Project prj = newCom!Project(Package.GetProjectFactory(), projectname, projectfile, platform, config);
super(prj.GetConfigProvider(), config, platform);
}
this(IVsHierarchy pHierarchy)
{
string projectFile;
string projectName;
VARIANT var;
BSTR name;
if(pHierarchy.GetCanonicalName(VSITEMID_ROOT, &name) == S_OK)
projectFile = detachBSTR(name);
if(pHierarchy.GetProperty(VSITEMID_ROOT, VSHPROPID_EditLabel, &var) == S_OK && var.vt == VT_BSTR)
projectName = detachBSTR(var.bstrVal);
Project prj = newCom!Project(Package.GetProjectFactory(), projectName, projectFile, null, null);
super(prj.GetConfigProvider(), "Debug", "Win32");
}
override string GetOutputFile(CFileNode file, string tool = null)
{
if (file)
return super.GetOutputFile(file, tool);
return null;
}
override string GetCompileCommand(CFileNode file, bool syntaxOnly = false, string tool = null, string addopt = null)
{
if (file)
return super.GetCompileCommand(file, syntaxOnly, tool, addopt);
return addopt && mCmdLine ? mCmdLine ~ " " ~ addopt : mCmdLine ~ addopt;
}
override string GetCppCompiler() { return "cl"; }
}
// cache a configuration for each file
struct VCFile
{
IVsHierarchy pHierarchy;
VSITEMID itemid;
bool opEquals(ref const VCFile other) const
{
return pHierarchy is other.pHierarchy && itemid == other.itemid;
}
hash_t toHash() @trusted nothrow const
{
// hash the pointer, not the interface (crashes anyway)
return cast(hash_t) cast(void*)pHierarchy ^ itemid;
}
}
__gshared VCConfig[VCFile] vcFileConfigs;
Config getVisualCppConfig(string file, bool genCmdLine = false)
{
auto srpSolution = queryService!(IVsSolution);
scope(exit) release(srpSolution);
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
if(srpSolution && solutionBuildManager)
{
auto wfile = _toUTF16z(file);
IEnumHierarchies pEnum;
const GUID vcxprojCLSID = uuid("8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942");
if(srpSolution.GetProjectEnum(EPF_LOADEDINSOLUTION|EPF_MATCHTYPE, &vcxprojCLSID, &pEnum) == S_OK)
{
scope(exit) release(pEnum);
IVsHierarchy pHierarchy;
while(pEnum.Next(1, &pHierarchy, null) == S_OK)
{
scope(exit) release(pHierarchy);
VSITEMID itemid;
if(pHierarchy.ParseCanonicalName(wfile, &itemid) == S_OK)
{
VCConfig cfg;
if (auto pcfg = VCFile(pHierarchy, itemid) in vcFileConfigs)
cfg = *pcfg;
else
{
cfg = newCom!VCConfig(pHierarchy);
cfg.GetProject().GetRootNode().AddTail(newCom!CFileNode(file));
vcFileConfigs[VCFile(pHierarchy, itemid)] = cfg;
}
ProjectOptions opts = cfg.GetProjectOptions();
ProjectOptions cmpopts = clone(opts);
if (vdhelper_GetDCompileOptions(pHierarchy, itemid, opts) == S_OK)
{
if (genCmdLine)
{
string cmd;
if (vdhelper_GetDCommandLine(pHierarchy, itemid, cmd) == S_OK)
cfg.mCmdLine = cmd;
}
if (opts != cmpopts)
cfg.SetDirty();
return addref(cfg);
}
}
}
}
}
return null;
}
Config getCurrentStartupConfig()
{
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
if(solutionBuildManager)
{
IVsHierarchy pHierarchy;
if(solutionBuildManager.get_StartupProject(&pHierarchy) == S_OK)
{
scope(exit) release(pHierarchy);
IVsProjectCfg activeCfg;
if(solutionBuildManager.FindActiveProjectCfg(null, null, pHierarchy, &activeCfg) == S_OK)
{
scope(exit) release(activeCfg);
if(Config cfg = qi_cast!Config(activeCfg))
return cfg;
}
}
}
return null;
}
// returns reference counted config
Config GetActiveConfig(IVsHierarchy pHierarchy)
{
if(!pHierarchy)
return null;
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
IVsProjectCfg activeCfg;
if(solutionBuildManager.FindActiveProjectCfg(null, null, pHierarchy, &activeCfg) == S_OK)
{
scope(exit) release(activeCfg);
if(Config cfg = qi_cast!Config(activeCfg))
return cfg;
}
return null;
}
// return current config and platform of the startup
string GetActiveSolutionConfig(string* platform = null)
{
auto solutionBuildManager = queryService!(IVsSolutionBuildManager)();
scope(exit) release(solutionBuildManager);
IVsHierarchy pHierarchy;
if (solutionBuildManager.get_StartupProject(&pHierarchy) != S_OK)
return null;
scope(exit) release(pHierarchy);
IVsProjectCfg activeCfg;
if(solutionBuildManager.FindActiveProjectCfg(null, null, pHierarchy, &activeCfg) != S_OK)
return null;
scope(exit) release(activeCfg);
BSTR bstrName;
if (activeCfg.get_DisplayName(&bstrName) != S_OK)
return null;
string config = detachBSTR(bstrName);
auto parts = split(config, '|');
if (parts.length == 2)
{
if (platform)
*platform = parts[1];
config = parts[0];
}
return config;
}
////////////////////////////////////////////////////////////////////////
string[] GetImportPaths(Config cfg)
{
string[] imports;
if (!cfg)
return null;
ProjectOptions opt = cfg.GetProjectOptions();
string projectpath = cfg.GetProjectDir();
string imp = opt.imppath;
imp = opt.replaceEnvironment(imp, cfg);
imports = tokenizeArgs(imp);
string addopts = opt.replaceEnvironment(opt.additionalOptions, cfg);
addunique(imports, GlobalOptions.getOptionImportPaths(addopts, projectpath));
foreach(ref i; imports)
i = makeDirnameCanonical(unquoteArgument(i), projectpath);
addunique(imports, projectpath);
return imports;
}
string[] GetImportPaths(string file)
{
string[] imports;
if(Config cfg = getProjectConfig(file))
{
scope(exit) release(cfg);
imports = GetImportPaths(cfg);
imports ~= Package.GetGlobalOptions().getImportPaths(cfg.GetProjectOptions().compiler);
}
else
{
imports ~= Package.GetGlobalOptions().getImportPaths(Compiler.DMD);
}
return imports;
}
////////////////////////////////////////////////////////////////////////
const(wchar)* _toFilter(string filter)
{
wchar* s = _toUTF16z(filter);
for(wchar*p = s; *p; p++)
if(*p == '|')
*p = 0;
return s;
}
string getOpenFileDialog(HWND hwnd, string title, string dir, string filter)
{
string file;
auto pIVsUIShell = ComPtr!(IVsUIShell)(queryService!(IVsUIShell));
if(pIVsUIShell)
{
wchar[260] filename;
VSOPENFILENAMEW ofn;
ofn.lStructSize = ofn.sizeof;
ofn.hwndOwner = hwnd;
ofn.pwzDlgTitle = _toUTF16z(title);
ofn.pwzFileName = filename.ptr;
ofn.nMaxFileName = 260;
ofn.pwzInitialDir = _toUTF16z(dir);
ofn.pwzFilter = _toFilter(filter);
HRESULT hr = pIVsUIShell.GetOpenFileNameViaDlg(&ofn);
if(hr != S_OK)
return "";
file = to!string(filename);
}
return file;
}
string getSaveFileDialog(HWND hwnd, string title, string dir, string filter)
{
string file;
auto pIVsUIShell = ComPtr!(IVsUIShell)(queryService!(IVsUIShell));
if(pIVsUIShell)
{
wchar[260] filename;
VSSAVEFILENAMEW ofn;
ofn.lStructSize = ofn.sizeof;
ofn.hwndOwner = hwnd;
ofn.pwzDlgTitle = _toUTF16z(title);
ofn.pwzFileName = filename.ptr;
ofn.nMaxFileName = 260;
ofn.pwzInitialDir = _toUTF16z(dir);
ofn.pwzFilter = _toFilter(filter);
HRESULT hr = pIVsUIShell.GetSaveFileNameViaDlg(&ofn);
if(hr != S_OK)
return "";
file = to!string(filename);
}
return file;
}
| D |
// Written in the D programming language.
/**
This module implements the formatting functionality for strings and
I/O. It's comparable to C99's $(D vsprintf()) and uses a similar
format encoding scheme.
Macros: WIKI = Phobos/StdFormat
Copyright: Copyright Digital Mars 2000-.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(WEB digitalmars.com, Walter Bright), $(WEB erdani.com,
Andrei Alexandrescu), and Kenji Hara
Source: $(PHOBOSSRC std/_format.d)
*/
module std.format;
//debug=format; // uncomment to turn on debugging printf's
import core.stdc.stdio, core.stdc.stdlib, core.stdc.string, core.vararg;
import std.algorithm, std.array, std.ascii, std.bitmanip, std.conv,
std.exception, std.functional, std.math, std.range,
std.string, std.system, std.traits, std.typecons, std.typetuple,
std.utf;
version(unittest) {
import std.stdio;
}
version (Windows) version (DigitalMars)
{
version = DigitalMarsC;
}
version (DigitalMarsC)
{
// This is DMC's internal floating point formatting function
extern (C)
{
extern shared char* function(int c, int flags, int precision,
in real* pdval,
char* buf, size_t* psl, int width) __pfloatfmt;
}
alias core.stdc.stdio._snprintf snprintf;
}
else
{
// Use C99 snprintf
extern (C) int snprintf(char* s, size_t n, in char* format, ...);
}
/**********************************************************************
* Signals a mismatch between a format and its corresponding argument.
*/
class FormatException : Exception
{
this()
{
super("format error");
}
this(string msg, string fn = __FILE__, size_t ln = __LINE__)
{
super(msg, fn, ln);
}
}
/**
$(RED Scheduled for deprecation. Please use $(D FormatException)) instead.
*/
/*deprecated*/ alias FormatException FormatError;
/**********************************************************************
Interprets variadic argument list $(D args), formats them according
to $(D fmt), and sends the resulting characters to $(D w). The
encoding of the output is the same as $(D Char). type $(D Writer)
must satisfy $(XREF range,isOutputRange!(Writer, Char)).
The variadic arguments are normally consumed in order. POSIX-style
$(WEB opengroup.org/onlinepubs/009695399/functions/printf.html,
positional parameter syntax) is also supported. Each argument is
formatted into a sequence of chars according to the format
specification, and the characters are passed to $(D w). As many
arguments as specified in the format string are consumed and
formatted. If there are fewer arguments than format specifiers, a
$(D FormatException) is thrown. If there are more remaining arguments
than needed by the format specification, they are ignored but only
if at least one argument was formatted.
Params:
w = Output is sent do this writer. Typical output writers include
$(XREF range,Appender!string) and $(XREF stdio,BlockingTextWriter).
fmt = Format string.
args = Variadic argument list.
Throws: Mismatched arguments and formats result in a $(D
FormatException) being thrown.
Format_String: <a name="format-string">$(I Format strings)</a>
consist of characters interspersed with $(I format
specifications). Characters are simply copied to the output (such
as putc) after any necessary conversion to the corresponding UTF-8
sequence.
The format string has the following grammar:
$(PRE
$(I FormatString):
$(I FormatStringItem)*
$(I FormatStringItem):
$(B '%%')
$(B '%') $(I Position) $(I Flags) $(I Width) $(I Precision) $(I FormatChar)
$(B '%$(LPAREN)') $(I FormatString) $(B '%$(RPAREN)')
$(I OtherCharacterExceptPercent)
$(I Position):
$(I empty)
$(I Integer) $(B '$')
$(I Flags):
$(I empty)
$(B '-') $(I Flags)
$(B '+') $(I Flags)
$(B '#') $(I Flags)
$(B '0') $(I Flags)
$(B ' ') $(I Flags)
$(I Width):
$(I empty)
$(I Integer)
$(B '*')
$(I Precision):
$(I empty)
$(B '.')
$(B '.') $(I Integer)
$(B '.*')
$(I Integer):
$(I Digit)
$(I Digit) $(I Integer)
$(I Digit):
$(B '0')|$(B '1')|$(B '2')|$(B '3')|$(B '4')|$(B '5')|$(B '6')|$(B '7')|$(B '8')|$(B '9')
$(I FormatChar):
$(B 's')|$(B 'b')|$(B 'd')|$(B 'o')|$(B 'x')|$(B 'X')|$(B 'e')|$(B 'E')|$(B 'f')|$(B 'F')|$(B 'g')|$(B 'G')|$(B 'a')|$(B 'A')
)
$(BOOKTABLE Flags affect formatting depending on the specifier as
follows., $(TR $(TH Flag) $(TH Types affected) $(TH Semantics))
$(TR $(TD $(B '-')) $(TD numeric) $(TD Left justify the result in
the field. It overrides any $(B 0) flag.))
$(TR $(TD $(B '+')) $(TD numeric) $(TD Prefix positive numbers in
a signed conversion with a $(B +). It overrides any $(I space)
flag.))
$(TR $(TD $(B '#')) $(TD integral ($(B 'o'))) $(TD Add to
precision as necessary so that the first digit of the octal
formatting is a '0', even if both the argument and the $(I
Precision) are zero.))
$(TR $(TD $(B '#')) $(TD integral ($(B 'x'), $(B 'X'))) $(TD If
non-zero, prefix result with $(B 0x) ($(B 0X)).))
$(TR $(TD $(B '#')) $(TD floating) $(TD Always insert the decimal
point and print trailing zeros.))
$(TR $(TD $(B '#')) $(TD numeric ($(B '0'))) $(TD Use leading
zeros to pad rather than spaces (except for the floating point
values $(D nan) and $(D infinity)). Ignore if there's a $(I
Precision).))
$(TR $(TD $(B ' ')) $(TD integral ($(B 'd'))) $(TD Prefix positive
numbers in a signed conversion with a space.)))
<dt>$(I Width)
<dd>
Specifies the minimum field width.
If the width is a $(B *), the next argument, which must be
of type $(B int), is taken as the width.
If the width is negative, it is as if the $(B -) was given
as a $(I Flags) character.
<dt>$(I Precision)
<dd> Gives the precision for numeric conversions.
If the precision is a $(B *), the next argument, which must be
of type $(B int), is taken as the precision. If it is negative,
it is as if there was no $(I Precision).
<dt>$(I FormatChar)
<dd>
<dl>
<dt>$(B 's')
<dd>The corresponding argument is formatted in a manner consistent
with its type:
<dl>
<dt>$(B bool)
<dd>The result is <tt>'true'</tt> or <tt>'false'</tt>.
<dt>integral types
<dd>The $(B %d) format is used.
<dt>floating point types
<dd>The $(B %g) format is used.
<dt>string types
<dd>The result is the string converted to UTF-8.
A $(I Precision) specifies the maximum number of characters
to use in the result.
<dt>classes derived from $(B Object)
<dd>The result is the string returned from the class instance's
$(B .toString()) method.
A $(I Precision) specifies the maximum number of characters
to use in the result.
<dt>non-string static and dynamic arrays
<dd>The result is [s<sub>0</sub>, s<sub>1</sub>, ...]
where s<sub>k</sub> is the kth element
formatted with the default format.
</dl>
<dt>$(B 'b','d','o','x','X')
<dd> The corresponding argument must be an integral type
and is formatted as an integer. If the argument is a signed type
and the $(I FormatChar) is $(B d) it is converted to
a signed string of characters, otherwise it is treated as
unsigned. An argument of type $(B bool) is formatted as '1'
or '0'. The base used is binary for $(B b), octal for $(B o),
decimal
for $(B d), and hexadecimal for $(B x) or $(B X).
$(B x) formats using lower case letters, $(B X) uppercase.
If there are fewer resulting digits than the $(I Precision),
leading zeros are used as necessary.
If the $(I Precision) is 0 and the number is 0, no digits
result.
<dt>$(B 'e','E')
<dd> A floating point number is formatted as one digit before
the decimal point, $(I Precision) digits after, the $(I FormatChar),
±, followed by at least a two digit exponent: $(I d.dddddd)e$(I ±dd).
If there is no $(I Precision), six
digits are generated after the decimal point.
If the $(I Precision) is 0, no decimal point is generated.
<dt>$(B 'f','F')
<dd> A floating point number is formatted in decimal notation.
The $(I Precision) specifies the number of digits generated
after the decimal point. It defaults to six. At least one digit
is generated before the decimal point. If the $(I Precision)
is zero, no decimal point is generated.
<dt>$(B 'g','G')
<dd> A floating point number is formatted in either $(B e) or
$(B f) format for $(B g); $(B E) or $(B F) format for
$(B G).
The $(B f) format is used if the exponent for an $(B e) format
is greater than -5 and less than the $(I Precision).
The $(I Precision) specifies the number of significant
digits, and defaults to six.
Trailing zeros are elided after the decimal point, if the fractional
part is zero then no decimal point is generated.
<dt>$(B 'a','A')
<dd> A floating point number is formatted in hexadecimal
exponential notation 0x$(I h.hhhhhh)p$(I ±d).
There is one hexadecimal digit before the decimal point, and as
many after as specified by the $(I Precision).
If the $(I Precision) is zero, no decimal point is generated.
If there is no $(I Precision), as many hexadecimal digits as
necessary to exactly represent the mantissa are generated.
The exponent is written in as few digits as possible,
but at least one, is in decimal, and represents a power of 2 as in
$(I h.hhhhhh)*2<sup>$(I ±d)</sup>.
The exponent for zero is zero.
The hexadecimal digits, x and p are in upper case if the
$(I FormatChar) is upper case.
</dl>
Floating point NaN's are formatted as $(B nan) if the
$(I FormatChar) is lower case, or $(B NAN) if upper.
Floating point infinities are formatted as $(B inf) or
$(B infinity) if the
$(I FormatChar) is lower case, or $(B INF) or $(B INFINITY) if upper.
</dl>
Example:
-------------------------
import std.c.stdio;
import std.format;
void main()
{
auto writer = appender!string();
formattedWrite(writer, "%s is the ultimate %s.", 42, "answer");
assert(writer.data == "42 is the ultimate answer.");
// Clear the writer
writer = appender!string();
formattedWrite(writer, "Date: %2$s %1$s", "October", 5);
assert(writer.data == "Date: 5 October");
}
------------------------
The positional and non-positional styles can be mixed in the same
format string. (POSIX leaves this behavior undefined.) The internal
counter for non-positional parameters tracks the next parameter after
the largest positional parameter already used.
*/
void formattedWrite(Writer, Char, A...)(Writer w, in Char[] fmt, A args)
{
enum len = args.length;
void function(Writer, const(void)*, ref FormatSpec!Char) funs[len] = void;
const(void)* argsAddresses[len] = void;
foreach (i, arg; args)
{
funs[i] = &formatGeneric!(Writer, typeof(arg), Char);
// We can safely cast away shared because all data is either
// immutable or completely owned by this function.
argsAddresses[i] = cast(const(void*)) &args[ i ];
}
// Are we already done with formats? Then just dump each parameter in turn
uint currentArg = 0;
auto spec = FormatSpec!Char(fmt);
while (spec.writeUpToNextSpec(w))
{
if (currentArg == funs.length && !spec.indexStart)
{
// leftover spec?
enforce(fmt.length == 0, new FormatException(
cast(string) ("Orphan format specifier: %" ~ fmt)));
break;
}
if (spec.width == spec.DYNAMIC)
{
auto width = to!(typeof(spec.width))(getNthInt(currentArg, args));
if (width < 0)
{
spec.flDash = true;
width = -width;
}
spec.width = width;
++currentArg;
}
else if (spec.width < 0)
{
// means: get width as a positional parameter
auto index = cast(uint) -spec.width;
assert(index > 0);
auto width = to!(typeof(spec.width))(getNthInt(index - 1, args));
if (currentArg < index) currentArg = index;
if (width < 0)
{
spec.flDash = true;
width = -width;
}
spec.width = width;
}
if (spec.precision == spec.DYNAMIC)
{
auto precision = to!(typeof(spec.precision))(
getNthInt(currentArg, args));
if (precision >= 0) spec.precision = precision;
// else negative precision is same as no precision
else spec.precision = spec.UNSPECIFIED;
++currentArg;
}
else if (spec.precision < 0)
{
// means: get precision as a positional parameter
auto index = cast(uint) -spec.precision;
assert(index > 0);
auto precision = to!(typeof(spec.precision))(
getNthInt(index- 1, args));
if (currentArg < index) currentArg = index;
if (precision >= 0) spec.precision = precision;
// else negative precision is same as no precision
else spec.precision = spec.UNSPECIFIED;
}
// Format!
if (spec.indexStart > 0)
{
// using positional parameters!
foreach (i; spec.indexStart - 1 .. spec.indexEnd)
{
if (funs.length <= i) break;
funs[i](w, argsAddresses[i], spec);
}
if (currentArg < spec.indexEnd) currentArg = spec.indexEnd;
}
else
{
funs[currentArg](w, argsAddresses[currentArg], spec);
++currentArg;
}
}
}
/**
Reads characters from input range $(D r), converts them according
to $(D fmt), and writes them to $(D args).
Example:
----
string s = "hello!124:34.5";
string a;
int b;
double c;
formattedRead(s, "%s!%s:%s", &a, &b, &c);
assert(a == "hello" && b == 124 && c == 34.5);
----
*/
uint formattedRead(R, Char, S...)(ref R r, const(Char)[] fmt, S args)
{
auto spec = FormatSpec!Char(fmt);
static if (!S.length)
{
spec.readUpToNextSpec(r);
enforce(spec.trailing.empty);
return 0;
}
else
{
// The function below accounts for '*' == fields meant to be
// read and skipped
void skipUnstoredFields()
{
for (;;)
{
spec.readUpToNextSpec(r);
if (spec.width != spec.DYNAMIC) break;
// must skip this field
skipData(r, spec);
}
}
skipUnstoredFields();
if (r.empty)
{
// Input is empty, nothing to read
return 0;
}
alias typeof(*args[0]) A;
static if (isTuple!A)
{
foreach (i, T; A.Types)
{
(*args[0])[i] = unformatValue!(T)(r, spec);
skipUnstoredFields();
}
}
else
{
*args[0] = unformatValue!(A)(r, spec);
}
return 1 + formattedRead(r, spec.trailing, args[1 .. $]);
}
}
unittest
{
string s = " 1.2 3.4 ";
double x, y, z;
assert(formattedRead(s, " %s %s %s ", &x, &y, &z) == 2);
assert(s.empty);
assert(x == 1.2);
assert(y == 3.4);
assert(isnan(z));
}
template FormatSpec(Char)
if (!is(Unqual!Char == Char))
{
alias FormatSpec!(Unqual!Char) FormatSpec;
}
/**
A compiled version of an individual format specifier, backwards
compatible with $(D printf) specifiers.
*/
struct FormatSpec(Char)
if (is(Unqual!Char == Char))
{
/**
Minimum _width, default $(D 0).
*/
int width = 0;
/**
Precision. Its semantics depends on the argument type. For
floating point numbers, _precision dictates the number of
decimals printed.
*/
int precision = UNSPECIFIED;
/**
Special value for width and precision. $(D DYNAMIC) width or
precision means that they were specified with $(D '*') in the
format string and are passed at runtime through the varargs.
*/
enum int DYNAMIC = int.max;
/**
Special value for precision, meaning the format specifier
contained no explicit precision.
*/
enum int UNSPECIFIED = DYNAMIC - 1;
/**
The actual format specifier, $(D 's') by default.
*/
char spec = 's';
/**
Index of the argument for positional parameters, from $(D 1) to
$(D ubyte.max). ($(D 0) means not used).
*/
ubyte indexStart;
/**
Index of the last argument for positional parameter range, from
$(D 1) to $(D ubyte.max). ($(D 0) means not used).
*/
ubyte indexEnd;
version(StdDdoc) {
/**
The format specifier contained a $(D '-') ($(D printf)
compatibility).
*/
bool flDash;
/**
The format specifier contained a $(D '0') ($(D printf)
compatibility).
*/
bool flZero;
/**
The format specifier contained a $(D ' ') ($(D printf)
compatibility).
*/
bool flSpace;
/**
The format specifier contained a $(D '+') ($(D printf)
compatibility).
*/
bool flPlus;
/**
The format specifier contained a $(D '#') ($(D printf)
compatibility).
*/
bool flHash;
// Fake field to allow compilation
ubyte allFlags;
}
else
{
union
{
ubyte allFlags;
mixin(bitfields!(
bool, "flDash", 1,
bool, "flZero", 1,
bool, "flSpace", 1,
bool, "flPlus", 1,
bool, "flHash", 1,
ubyte, "", 3));
}
}
/**
In case of a compound format specifier starting with $(D
"%$(LPAREN)") and ending with $(D "%$(RPAREN)"), $(D _nested)
contains the string contained within the two separators.
*/
const(Char)[] nested;
/**
$(D _trailing) contains the rest of the format string.
*/
const(Char)[] trailing;
/*
This string is inserted before each sequence (e.g. array)
formatted (by default $(D "[")).
*/
static const(Char)[] seqBefore = "[";
/*
This string is inserted after each sequence formatted (by
default $(D "]")).
*/
static const(Char)[] seqAfter = "]";
/*
This string is inserted after each element keys of a sequence (by
default $(D ":")).
*/
static const(Char)[] keySeparator = ":";
/*
This string is inserted in between elements of a sequence (by
default $(D ", ")).
*/
static const(Char)[] seqSeparator = ", ";
/**
Given a string format specification fmt, parses a format
specifier. The string is assumed to start with the character
immediately following the $(D '%'). The string is advanced to
right after the end of the format specifier.
*/
this(in Char[] fmt)
{
trailing = fmt;
}
bool writeUpToNextSpec(OutputRange)(OutputRange writer)
{
if (trailing.empty) return false;
for (size_t i = 0; i < trailing.length; ++i)
{
if (trailing[i] != '%') continue;
if (trailing[++i] != '%')
{
// Spec found. Print, fill up the spec, and bailout
put(writer, trailing[0 .. i - 1]);
trailing = trailing[i .. $];
fillUp();
return true;
}
// Doubled! Now print whatever we had, then update the
// string and move on
put(writer, trailing[0 .. i - 1]);
trailing = trailing[i .. $];
i = 0;
}
// no format spec found
put(writer, trailing);
trailing = null;
return false;
}
unittest
{
auto w = appender!(char[])();
auto f = FormatSpec("abc%sdef%sghi");
f.writeUpToNextSpec(w);
assert(w.data == "abc", w.data);
assert(f.trailing == "def%sghi", text(f.trailing));
f.writeUpToNextSpec(w);
assert(w.data == "abcdef", w.data);
assert(f.trailing == "ghi");
// test with embedded %%s
f = FormatSpec("ab%%cd%%ef%sg%%h%sij");
w.clear;
f.writeUpToNextSpec(w);
assert(w.data == "ab%cd%ef" && f.trailing == "g%%h%sij", w.data);
f.writeUpToNextSpec(w);
assert(w.data == "ab%cd%efg%h" && f.trailing == "ij");
// bug4775
f = FormatSpec("%%%s");
w.clear;
f.writeUpToNextSpec(w);
assert(w.data == "%" && f.trailing == "");
f = FormatSpec("%%%%%s%%");
w.clear;
while (f.writeUpToNextSpec(w)) continue;
assert(w.data == "%%%");
}
private void fillUp()
{
// Reset content
allFlags = 0;
width = 0;
precision = UNSPECIFIED;
nested = null;
// Parse the spec (we assume we're past '%' already)
for (size_t i = 0; i < trailing.length; )
{
switch (trailing[i])
{
case '(':
// Embedded format specifier.
auto j = i + 1;
void check(bool condition)
{
enforce(
condition,
text("Incorrect format specifier: %",
trailing[i .. $]));
}
// Get the matching balanced paren
for (uint innerParens;; ++j)
{
check(j < trailing.length);
if (trailing[j] != '%')
{
// skip, we're waiting for %( and %)
continue;
}
if (trailing[++j] == ')')
{
if (innerParens-- == 0) break;
}
else if (trailing[j] == '(')
{
++innerParens;
}
}
nested = to!(typeof(nested))(trailing[i + 1 .. j - 1]);
//this = FormatSpec(innerTrailingSpec);
spec = '(';
// We practically found the format specifier
trailing = trailing[j + 1 .. $];
return;
case '-': flDash = true; ++i; break;
case '+': flPlus = true; ++i; break;
case '#': flHash = true; ++i; break;
case '0': flZero = true; ++i; break;
case ' ': flSpace = true; ++i; break;
case '*':
if (isDigit(trailing[++i]))
{
// a '*' followed by digits and '$' is a
// positional format
trailing = trailing[1 .. $];
width = -.parse!(typeof(width))(trailing);
i = 0;
enforce(trailing[i++] == '$',
new FormatException("$ expected"));
}
else
{
// read result
width = DYNAMIC;
}
break;
case '1': .. case '9':
auto tmp = trailing[i .. $];
const widthOrArgIndex = .parse!(uint)(tmp);
enforce(tmp.length,
new FormatException(text("Incorrect format specifier %",
trailing[i .. $])));
i = tmp.ptr - trailing.ptr;
if (tmp.startsWith('$'))
{
// index of the form %n$
indexEnd = indexStart = to!ubyte(widthOrArgIndex);
++i;
}
else if (tmp.length && tmp[0] == ':')
{
// two indexes of the form %m:n$, or one index of the form %m:$
indexStart = to!ubyte(widthOrArgIndex);
tmp = tmp[1 .. $];
if (tmp.startsWith('$'))
{
indexEnd = indexEnd.max;
}
else
{
indexEnd = .parse!(typeof(indexEnd))(tmp);
}
i = tmp.ptr - trailing.ptr;
enforce(trailing[i++] == '$',
new FormatException("$ expected"));
}
else
{
// width
width = to!int(widthOrArgIndex);
}
break;
case '.':
// Precision
if (trailing[++i] == '*')
{
if (isDigit(trailing[++i]))
{
// a '.*' followed by digits and '$' is a
// positional precision
trailing = trailing[i .. $];
i = 0;
precision = -.parse!int(trailing);
enforce(trailing[i++] == '$',
new FormatException("$ expected"));
}
else
{
// read result
precision = DYNAMIC;
}
}
else if (trailing[i] == '-')
{
// negative precision, as good as 0
precision = 0;
auto tmp = trailing[i .. $];
.parse!(int)(tmp); // skip digits
i = tmp.ptr - trailing.ptr;
}
else if (isDigit(trailing[i]))
{
auto tmp = trailing[i .. $];
precision = .parse!int(tmp);
i = tmp.ptr - trailing.ptr;
}
else
{
// "." was specified, but nothing after it
precision = 0;
}
break;
default:
// this is the format char
spec = cast(char) trailing[i++];
trailing = trailing[i .. $];
return;
} // end switch
} // end for
enforce(false, text("Incorrect format specifier: ", trailing));
}
//--------------------------------------------------------------------------
private bool readUpToNextSpec(R)(ref R r)
{
// Reset content
allFlags = 0;
width = 0;
precision = UNSPECIFIED;
nested = null;
// Parse the spec
while (trailing.length)
{
if (*trailing.ptr == '%')
{
if (trailing.length > 1 && trailing.ptr[1] == '%')
{
assert(!r.empty);
// Require a '%'
if (r.front != '%') break;
trailing = trailing[2 .. $];
r.popFront();
}
else
{
enforce(isLower(trailing[1]) || trailing[1] == '*' ||
trailing[1] == '(',
text("'%", trailing[1],
"' not supported with formatted read"));
trailing = trailing[1 .. $];
fillUp();
return true;
}
}
else
{
if (trailing.ptr[0] == ' ')
{
while (!r.empty && std.ascii.isWhite(r.front)) r.popFront();
//r = std.algorithm.find!(not!(std.ascii.isWhite))(r);
}
else
{
enforce(!r.empty,
text("parseToFormatSpec: Cannot find character `",
trailing.ptr[0], "' in the input string."));
if (r.front != trailing.front) break;
r.popFront;
}
trailing.popFront();
}
}
return false;
}
private const string getCurFmtStr()
{
auto w = appender!string();
auto f = FormatSpec!Char("%s"); // for stringnize
put(w, '%');
if (indexStart != 0)
formatValue(w, indexStart, f), put(w, '$');
if (flDash) put(w, '-');
if (flZero) put(w, '0');
if (flSpace) put(w, ' ');
if (flPlus) put(w, '+');
if (flHash) put(w, '#');
if (width != 0)
formatValue(w, width, f);
if (precision != FormatSpec!Char.UNSPECIFIED)
put(w, '.'), formatValue(w, precision, f);
put(w, spec);
return w.data;
}
unittest
{
// issue 5237
auto w = appender!string();
auto f = FormatSpec!char("%.16f");
f.writeUpToNextSpec(w); // dummy eating
assert(f.spec == 'f');
auto fmt = f.getCurFmtStr();
assert(fmt == "%.16f");
}
private const(Char)[] headUpToNextSpec()
{
auto w = appender!(typeof(return))();
auto tr = trailing;
while (tr.length)
{
if (*tr.ptr == '%')
{
if (tr.length > 1 && tr.ptr[1] == '%')
{
tr = tr[2 .. $];
w.put('%');
}
else
break;
}
else
{
w.put(tr.front);
tr.popFront();
}
}
return w.data;
}
string toString()
{
return text("address = ", cast(void*) &this,
"\nwidth = ", width,
"\nprecision = ", precision,
"\nspec = ", spec,
"\nindexStart = ", indexStart,
"\nindexEnd = ", indexEnd,
"\nflDash = ", flDash,
"\nflZero = ", flZero,
"\nflSpace = ", flSpace,
"\nflPlus = ", flPlus,
"\nflHash = ", flHash,
"\nnested = ", nested,
"\ntrailing = ", trailing, "\n");
}
}
/**
$(D void[]) is formatted like $(D ubyte[]).
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(const(T) == const(void[])))
{
formatValue(w, cast(const ubyte[])val, f);
}
unittest
{
FormatSpec!char f;
auto a = appender!(char[])();
void[] val0;
formatValue(a, val0, f);
assert(a.data == "[]");
a.clear();
void[] val = cast(void[])cast(ubyte[])[1, 2, 3];
formatValue(a, val, f);
assert(a.data == "[1, 2, 3]");
a.clear();
void[0] sval0;
formatValue(a, sval0, f);
assert(a.data == "[]");
a.clear();
void[3] sval = cast(void[3])cast(ubyte[3])[1, 2, 3];
formatValue(a, sval, f);
assert(a.data == "[1, 2, 3]");
}
/**
$(D enum) is formatted like its base value.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T == enum))
{
foreach (i, e; EnumMembers!T)
{
if (val == e) {
put(w, __traits(allMembers, T)[i]);
return;
}
}
// val is not a member of T, output cast(T)rawValue instead.
put(w, "cast(" ~ T.stringof ~ ")");
static assert(!is(OriginalType!T == T));
formatValue(w, cast(OriginalType!T)val, f);
}
unittest
{
auto a = appender!string();
enum A { first, second, third }
FormatSpec!char spec;
formatValue(a, A.second, spec);
assert(a.data == "second");
formatValue(a, cast(A)72, spec);
assert(a.data == "secondcast(A)72");
}
unittest
{
auto a = appender!string();
enum A : string { one = "uno", two = "dos", three = "tres" }
FormatSpec!char spec;
formatValue(a, A.three, spec);
assert(a.data == "three");
formatValue(a, cast(A)"mill\ón", spec);
assert(a.data == "threecast(A)mill\ón");
}
unittest
{
auto a = appender!string();
enum A : bool { no, yes }
FormatSpec!char spec;
formatValue(a, A.yes, spec);
assert(a.data == "yes");
formatValue(a, A.no, spec);
assert(a.data == "yesno");
}
/**
Integrals are formatted like $(D printf) does.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isIntegral!T)
{
FormatSpec!Char fs = f; // fs is copy for change its values.
Unqual!T arg = val;
if (fs.spec == 'r')
{
// raw write, skip all else and write the thing
auto begin = cast(const char*) &arg;
if (std.system.endian == Endian.littleEndian && f.flPlus
|| std.system.endian == Endian.bigEndian && f.flDash)
{
// must swap bytes
foreach_reverse (i; 0 .. arg.sizeof)
put(w, begin[i]);
}
else
{
foreach (i; 0 .. arg.sizeof)
put(w, begin[i]);
}
return;
}
if (fs.precision == fs.UNSPECIFIED)
{
// default precision for integrals is 1
fs.precision = 1;
}
else
{
// if a precision is specified, the '0' flag is ignored.
fs.flZero = false;
}
char leftPad = void;
if (!fs.flDash && !fs.flZero)
leftPad = ' ';
else if (!fs.flDash && fs.flZero)
leftPad = '0';
else
leftPad = 0;
// format and write an integral argument
uint base =
fs.spec == 'x' || fs.spec == 'X' ? 16 :
fs.spec == 'o' ? 8 :
fs.spec == 'b' ? 2 :
fs.spec == 's' || fs.spec == 'd' || fs.spec == 'u' ? 10 :
0;
if (base == 0)
throw new FormatException("integral");
// figure out sign and continue in unsigned mode
char forcedPrefix = void;
if (fs.flPlus) forcedPrefix = '+';
else if (fs.flSpace) forcedPrefix = ' ';
else forcedPrefix = 0;
if (base != 10)
{
// non-10 bases are always unsigned
forcedPrefix = 0;
}
else if (arg < 0)
{
// argument is signed
forcedPrefix = '-';
arg = -arg;
}
// fill the digits
char[] digits = void;
{
char buffer[64]; // 64 bits in base 2 at most
uint i = buffer.length;
auto n = cast(Unsigned!(Unqual!T)) arg;
do
{
--i;
buffer[i] = cast(char) (n % base);
n /= base;
if (buffer[i] < 10) buffer[i] += '0';
else buffer[i] += (fs.spec == 'x' ? 'a' : 'A') - 10;
} while (n);
digits = buffer[i .. $]; // got the digits without the sign
}
// adjust precision to print a '0' for octal if alternate format is on
if (base == 8 && fs.flHash
&& (fs.precision <= digits.length)) // too low precision
{
//fs.precision = digits.length + (arg != 0);
forcedPrefix = '0';
}
// write left pad; write sign; write 0x or 0X; write digits;
// write right pad
// Writing left pad
sizediff_t spacesToPrint =
fs.width // start with the minimum width
- digits.length // take away digits to print
- (forcedPrefix != 0) // take away the sign if any
- (base == 16 && fs.flHash && arg ? 2 : 0); // 0x or 0X
const sizediff_t delta = fs.precision - digits.length;
if (delta > 0) spacesToPrint -= delta;
if (spacesToPrint > 0) // need to do some padding
{
if (leftPad == '0')
{
// pad with zeros
fs.precision =
cast(typeof(fs.precision)) (spacesToPrint + digits.length);
//to!(typeof(fs.precision))(spacesToPrint + digits.length);
}
else if (leftPad) foreach (i ; 0 .. spacesToPrint) put(w, ' ');
}
// write sign
if (forcedPrefix) put(w, forcedPrefix);
// write 0x or 0X
if (base == 16 && fs.flHash && arg) {
// @@@ overcome bug in dmd;
//w.write(fs.spec == 'x' ? "0x" : "0X"); //crashes the compiler
put(w, '0');
put(w, fs.spec == 'x' ? 'x' : 'X'); // x or X
}
// write the digits
if (arg || fs.precision)
{
sizediff_t zerosToPrint = fs.precision - digits.length;
foreach (i ; 0 .. zerosToPrint) put(w, '0');
put(w, digits);
}
// write the spaces to the right if left-align
if (!leftPad) foreach (i ; 0 .. spacesToPrint) put(w, ' ');
}
/**
* Floating-point values are formatted like $(D printf) does.
*/
void formatValue(Writer, D, Char)(Writer w, D obj, ref FormatSpec!Char f)
if (isFloatingPoint!D)
{
FormatSpec!Char fs = f; // fs is copy for change its values.
if (fs.spec == 'r')
{
// raw write, skip all else and write the thing
auto begin = cast(const char*) &obj;
if (std.system.endian == Endian.littleEndian && f.flPlus
|| std.system.endian == Endian.bigEndian && f.flDash)
{
// must swap bytes
foreach_reverse (i; 0 .. obj.sizeof)
put(w, begin[i]);
}
else
{
foreach (i; 0 .. obj.sizeof)
put(w, begin[i]);
}
return;
}
if (std.string.indexOf("fgFGaAeEs", fs.spec) < 0) {
throw new FormatException("floating");
}
if (fs.spec == 's') fs.spec = 'g';
char sprintfSpec[1 /*%*/ + 5 /*flags*/ + 3 /*width.prec*/ + 2 /*format*/
+ 1 /*\0*/] = void;
sprintfSpec[0] = '%';
uint i = 1;
if (fs.flDash) sprintfSpec[i++] = '-';
if (fs.flPlus) sprintfSpec[i++] = '+';
if (fs.flZero) sprintfSpec[i++] = '0';
if (fs.flSpace) sprintfSpec[i++] = ' ';
if (fs.flHash) sprintfSpec[i++] = '#';
sprintfSpec[i .. i + 3] = "*.*";
i += 3;
if (is(Unqual!D == real)) sprintfSpec[i++] = 'L';
sprintfSpec[i++] = fs.spec;
sprintfSpec[i] = 0;
//printf("format: '%s'; geeba: %g\n", sprintfSpec.ptr, obj);
char[512] buf;
immutable n = snprintf(buf.ptr, buf.length,
sprintfSpec.ptr,
fs.width,
// negative precision is same as no precision specified
fs.precision == fs.UNSPECIFIED ? -1 : fs.precision,
obj);
if (n < 0)
throw new FormatException("floating point formatting failure");
put(w, buf[0 .. strlen(buf.ptr)]);
}
unittest
{
auto a = appender!(string)();
immutable real x = 5.5;
FormatSpec!char f;
formatValue(a, x, f);
assert(a.data == "5.5");
}
/**
$(D bool) is formatted as "true" or "false" with %s and as "1" or
"0" with integral-specific format specs.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(Unqual!T == bool))
{
if (f.spec == 's') {
put(w, val ? "true" : "false");
} else {
formatValue(w, cast(int) val, f);
}
}
/**
Individual characters ($(D char), $(D wchar), or $(D dchar)) are
formatted as Unicode characters with %s and as integers with
integral-specific format specs.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isSomeChar!T)
{
if (f.spec == 's')
{
put(w, val);
}
else
{
formatValue(w, cast(uint) val, f);
}
}
/**
Strings are formatted like printf does.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isSomeString!T && !isStaticArray!T && !is(T == enum))
{
Unqual!(StringTypeOf!T) str = val; // for `alias this`, see bug5371
if (f.spec == 's')
{
auto s = str[0 .. f.precision < $ ? f.precision : $];
if (!f.flDash)
{
// right align
if (f.width > s.length)
foreach (i ; 0 .. f.width - s.length) put(w, ' ');
put(w, s);
}
else
{
// left align
put(w, s);
if (f.width > s.length)
foreach (i ; 0 .. f.width - s.length) put(w, ' ');
}
}
else
{
static if (is(typeof(str[0]) : const(char)))
{
formatRange(w, str, f);
}
else static if (is(typeof(str[0]) : const(wchar)))
{
formatRange(w, str, f);
}
else static if (is(typeof(str[0]) : const(dchar)))
{
formatRange(w, str, f);
}
}
}
unittest
{
FormatSpec!char f;
auto w = appender!(string);
string s = "abc";
formatValue(w, s, f);
assert(w.data == "abc");
}
unittest
{
// 5371
class C1
{
const(string) var = "C1";
alias var this;
}
class C2
{
string var = "C2";
alias var this;
}
auto c1 = new C1();
auto c2 = new C2();
FormatSpec!char f;
auto a = appender!string();
formatValue(a, c1, f);
formatValue(a, c2, f);
}
/**
Input ranges are formatted like arrays.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isInputRange!T && !isSomeString!T)
{
static if (is(T == class) || is(T == interface) || isPointer!T)
{
if (val is null)
{
put(w, "null");
return;
}
}
static if (isSomeChar!(ElementType!T))
if (f.spec == 's')
{
if (!f.flDash)
{
static if (hasLength!T)
{
// right align
auto len = val.length;
}
else static if (isForwardRange!T)
{
auto len = walkLength(val.save);
}
else
{
enforce(f.width == 0, "Cannot right-align a range without length");
size_t len = 0;
}
if (f.width > len)
foreach (i ; 0 .. f.width - len) put(w, ' ');
for (; !val.empty; val.popFront())
{
put(w, val.front);
}
}
else
{
// left align
size_t printed = 0;
for (; !val.empty; val.popFront(), ++printed)
{
put(w, val.front);
}
if (f.width > printed)
foreach (i ; 0 .. f.width - printed) put(w, ' ');
}
return;
}
formatRange(w, val, f);
}
unittest
{
// 6640
struct Range
{
string value;
const @property bool empty(){ return !value.length; }
const @property dchar front(){ return value.front(); }
void popFront(){ value.popFront(); }
const @property size_t length(){ return value.length; }
}
auto s = "string";
auto r = Range("string");
immutable table =
[
["[%s]", "[string]"],
["[%10s]", "[ string]"],
["[%-10s]", "[string ]"],
["[%(%02x %)]", "[73 74 72 69 6e 67]"],
["[%(%s %)]", "[s t r i n g]"],
];
foreach (e; table)
{
auto w1 = appender!string();
auto w2 = appender!string();
formattedWrite(w1, e[0], s);
formattedWrite(w2, e[0], r);
assert(w1.data == w2.data);
assert(w1.data == e[1]);
}
}
private void formatRange(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isInputRange!T)
{
auto arr = val;
if (f.spec == 'r')
{
// raw writes
for (size_t i; !arr.empty; arr.popFront(), ++i)
{
if (f.spec == '(')
{
// It's a nested format specifier
formattedWrite(w, f.nested, arr.front);
}
else
{
formatValue(w, arr.front, f);
}
}
}
else
{
// formatted writes
if (!f.nested)
{
put(w, f.seqBefore);
scope(exit) put(w, f.seqAfter);
if (!arr.empty)
{
formatElement(w, arr.front, f);
arr.popFront();
for (size_t i; !arr.empty; arr.popFront(), ++i)
{
put(w, f.seqSeparator);
formatElement(w, arr.front, f);
}
}
}
else
{
if (arr.empty)
return;
// Nested specifier is to be used
for (;;)
{
auto fmt = FormatSpec!Char(f.nested);
fmt.writeUpToNextSpec(w);
if (fmt.spec == '(')
{ // If element is range
formatValue(w, arr.front, fmt);
arr.popFront();
fmt.writeUpToNextSpec(w); // always put trailing
if (arr.empty) break;
}
else
{
formatValue(w, arr.front, fmt);
arr.popFront();
if (arr.empty) break;
fmt.writeUpToNextSpec(w);
}
}
}
}
}
private void formatChar(Writer)(Writer w, dchar c)
{
if (std.uni.isGraphical(c))
{
if (c == '\"' || c == '\\')
put(w, '\\'), put(w, c);
else
put(w, c);
}
else if (c <= 0xFF)
{
put(w, '\\');
switch (c)
{
case '\a': put(w, 'a'); break;
case '\b': put(w, 'b'); break;
case '\f': put(w, 'f'); break;
case '\n': put(w, 'n'); break;
case '\r': put(w, 'r'); break;
case '\t': put(w, 't'); break;
case '\v': put(w, 'v'); break;
default:
formattedWrite(w, "x%02X", cast(uint)c);
}
}
else if (c <= 0xFFFF)
formattedWrite(w, "\\u%04X", cast(uint)c);
else
formattedWrite(w, "\\U%08X", cast(uint)c);
}
// undocumented
// string element is formatted like UTF-8 string literal.
void formatElement(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isSomeString!T)
{
if (f.spec == 's')
{
bool invalidSeq = false;
try
{
// ignore other specifications and quote
auto app = appender!(typeof(T[0])[])();
put(app, '\"');
for (size_t i = 0; i < val.length; )
{
auto c = std.utf.decode(val, i);
// \uFFFE and \uFFFF are considered valid by isValidDchar,
// so need checking for interchange.
if (c == 0xFFFE || c == 0xFFFF)
{
invalidSeq = true;
goto LinvalidSeq;
}
formatChar(app, c);
}
put(app, '\"');
put(w, app.data());
}
catch (UTFException)
{
// If val contains invalid UTF sequence, formatted like HexString literal
invalidSeq = true;
}
LinvalidSeq:
if (invalidSeq)
{
static if (is(typeof(val[0]) : const(char)))
{
enum postfix = 'c';
alias const(ubyte)[] IntArr;
}
else static if (is(typeof(val[0]) : const(wchar)))
{
enum postfix = 'w';
alias const(ushort)[] IntArr;
}
else static if (is(typeof(val[0]) : const(dchar)))
{
enum postfix = 'd';
alias const(uint)[] IntArr;
}
formattedWrite(w, "x\"%(%02X %)\"%s", cast(IntArr)val, postfix);
}
}
else
formatValue(w, val, f);
}
// undocumented
// character element is formatted like UTF-8 character literal.
void formatElement(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isSomeChar!T)
{
put(w, '\'');
formatChar(w, val);
put(w, '\'');
}
// undocumented
void formatElement(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (!isSomeString!T && !isSomeChar!T)
{
formatValue(w, val, f);
}
unittest
{
FormatSpec!char f;
auto w = appender!(char[])();
// string literal from valid UTF sequence is encoding free.
foreach (StrType; TypeTuple!(string, wstring, dstring))
{
// Valid and printable (ASCII)
w.clear();
formatValue(w, [cast(StrType)"hello"], f);
assert(w.data == `["hello"]`);
// 1 character escape sequences
w.clear();
formatValue(w, [cast(StrType)"\"\\\a\b\f\n\r\t\v"], f);
assert(w.data == `["\"\\\a\b\f\n\r\t\v"]`);
// Valid and non-printable code point (<= U+FF)
w.clear();
formatValue(w, [cast(StrType)"\x00\x10\x1F\x20test"], f);
assert(w.data == `["\x00\x10\x1F test"]`);
// Valid and non-printable code point (<= U+FFFF)
w.clear();
formatValue(w, [cast(StrType)"\u200B..\u200F"], f);
assert(w.data == `["\u200B..\u200F"]`);
// Valid and non-printable code point (<= U+10FFFF)
w.clear();
formatValue(w, [cast(StrType)"\U000E0020..\U000E007F"], f);
assert(w.data == `["\U000E0020..\U000E007F"]`);
}
// invalid UTF sequence needs hex-string literal postfix (c/w/d)
{
// U+FFFF with UTF-8 (Invalid code point for interchange)
w.clear();
formatValue(w, [cast(string)[0xEF, 0xBF, 0xBF]], f);
assert(w.data == `[x"EF BF BF"c]`);
// U+FFFF with UTF-16 (Invalid code point for interchange)
w.clear();
formatValue(w, [cast(wstring)[0xFFFF]], f);
assert(w.data == `[x"FFFF"w]`);
// U+FFFF with UTF-32 (Invalid code point for interchange)
w.clear();
formatValue(w, [cast(dstring)[0xFFFF]], f);
assert(w.data == `[x"FFFF"d]`);
}
}
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (!isInputRange!T && isDynamicArray!T && !isSomeString!T &&
!is(const(T) == const(void[])))
{
alias Unqual!T U;
static assert(isInputRange!U);
U unq = val;
formatValue(w, unq, f);
}
unittest
{
FormatSpec!char f;
auto w = appender!string();
const short[] a = [1, 2, 3];
formatValue(w, a, f);
assert(w.data == "[1, 2, 3]");
}
unittest
{
FormatSpec!char f;
auto w = appender!(char[])();
// class range (issue 5154)
auto c = inputRangeObject([1,2,3,4]);
w.clear();
formatValue(w, c, f);
assert(w.data == "[1, 2, 3, 4]");
assert(c.empty);
// interface
InputRange!int i = inputRangeObject([1,2,3,4]);
w.clear();
formatValue(w, i, f);
assert(w.data == "[1, 2, 3, 4]");
assert(i.empty);
// pointer
auto r = retro([1,2,3,4]);
w.clear();
formatValue(w, &r, f);
assert(w.data == "[4, 3, 2, 1]");
assert(r.empty);
// null
c = null;
w.clear();
formatValue(w, c, f);
assert(w.data == "null");
assert(r.empty);
}
unittest
{
FormatSpec!char f;
auto w = appender!(char[])();
auto a = ["test", "msg"];
w.clear();
formattedWrite(w, "%({%(%02x %)} %)", a);
assert(w.data == `{74 65 73 74} {6d 73 67} `);
}
/**
Pointers are formatted as hex integers.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isPointer!T && !isInputRange!T)
{
const void * p = val;
if (f.spec == 's')
{
FormatSpec!Char fs = f; // fs is copy for change its values.
fs.spec = 'X';
formatValue(w, cast(ulong) p, fs);
}
else
{
enforce(f.spec == 'X' || f.spec == 'x');
formatValue(w, cast(ulong) p, f);
}
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
struct S{ void* p; string s; }
auto s = S(cast(void*)0xFFEECCAA, "hello");
formatValue(a, s, f);
assert(a.data == `S(FFEECCAA, "hello")`);
}
/**
Objects are formatted by calling $(D toString).
Interfaces are formatted by casting to $(D Object) and then calling
$(D toString).
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (!isSomeString!T && is(T == class) && !isInputRange!T)
{
// TODO: Change this once toString() works for shared objects.
static assert(!is(T == shared), "unable to format shared objects");
if (val is null) put(w, "null");
else put(w, val.toString);
}
/// ditto
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T == interface) && !isInputRange!T)
{
return formatValue(w, cast(Object)val, f);
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
interface Whatever {};
class C : Whatever
{
override @property string toString() { return "ab"; }
}
Whatever val = new C;
formatValue(a, val, f);
assert(a.data == "ab");
}
/**
Associative arrays are formatted by using $(D ':') and $(D ', ') as
separators, and enclosed by $(D '[') and $(D ']').
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (isAssociativeArray!T && !is(T == enum))
{
put(w, f.seqBefore);
bool first = true;
foreach (k, ref v; val) {
if (first) first = false;
else put(w, f.seqSeparator);
formatElement(w, k, f);
put(w, f.keySeparator);
formatElement(w, v, f);
}
put(w, f.seqAfter);
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
int[string] aa;
formatValue(a, aa, f);
assert(a.data == `[]`);
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
int[string] aa = ["aaa": 1, "bbb": 2, "ccc": 3];
formatValue(a, aa, f);
assert(a.data == `["aaa":1, "bbb":2, "ccc":3]`);
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
formatValue(a, ['c':"str"], f);
assert(a.data == `['c':"str"]`);
}
/**
Structs and unions are formatted using by calling $(D toString) member
function of the object. $(D toString) should have one of the following
signatures:
---
const void toString(scope void delegate(const(char)[]) sink, FormatSpec fmt);
const void toString(scope void delegate(const(char)[]) sink, string fmt);
const string toString();
---
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if ((is(T == struct) || is(T == union)) && !isInputRange!T)
{
static if (is(typeof(val.toString((const(char)[] s){}, f))))
{ // Support toString( delegate(const(char)[]) sink, FormatSpec)
val.toString((const(char)[] s) { put(w, s); }, f);
}
else static if (is(typeof(val.toString((const(char)[] s){}, "%s"))))
{ // Support toString( delegate(const(char)[]) sink, string fmt)
val.toString((const(char)[] s) { put(w, s); }, f.getCurFmtStr());
}
else static if (is(typeof(val.toString()) S) && isSomeString!S)
{
put(w, val.toString());
}
else static if (is(T == struct))
{
enum left = T.stringof~"(";
enum separator = ", ";
enum right = ")";
put(w, left);
foreach (i, e; val.tupleof)
{
static if (i > 0)
put(w, separator);
formatElement(w, e, f);
}
put(w, right);
}
else
{
put(w, T.stringof);
}
}
unittest
{
// bug 4638
struct U8 { string toString() { return "blah"; } }
struct U16 { wstring toString() { return "blah"; } }
struct U32 { dstring toString() { return "blah"; } }
FormatSpec!char f;
auto w = appender!string();
formatValue(w, U8(), f);
formatValue(w, U16(), f);
formatValue(w, U32(), f);
assert(w.data() == "blahblahblah");
}
unittest
{
// 3890
struct Int{ int n; }
struct Pair{ string s; Int i; }
FormatSpec!char f;
auto w = appender!string();
formatValue(w, Pair("hello", Int(5)), f);
assert(w.data() == `Pair("hello", Int(5))`);
}
unittest
{
FormatSpec!char f;
auto a = appender!(char[])();
union U1
{
int n;
string s;
}
U1 u1;
formatValue(a, u1, f);
assert(a.data == "U1");
a.clear();
union U2
{
int n;
string s;
string toString(){ return s; }
}
U2 u2;
u2.s = "hello";
formatValue(a, u2, f);
assert(a.data == "hello");
}
/**
Static-size arrays are formatted just like arrays.
*/
void formatValue(Writer, T, Char)(Writer w, ref T val, ref FormatSpec!Char f)
if (isStaticArray!T)
{
formatValue(w, val[], f);
}
/*
Formatting a $(D creal) is deprecated but still kept around for a while.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T : creal))
{
formatValue(w, val.re, f);
put(w, '+');
formatValue(w, val.im, f);
put(w, 'i');
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
creal val = 1 + 1i;
formatValue(a, val, f);
}
/*
Formatting an $(D ireal) is deprecated but still kept around for a while.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T : ireal))
{
formatValue(w, val.im, f);
put(w, 'i');
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
ireal val = 1i;
formatValue(a, val, f);
}
/**
Delegates are formatted by 'Attributes ReturnType delegate(Parameters)'
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T == delegate))
{
alias FunctionAttribute FA;
if (functionAttributes!T & FA.pure_) formatValue(w, "pure ", f);
if (functionAttributes!T & FA.nothrow_) formatValue(w, "nothrow ", f);
if (functionAttributes!T & FA.ref_) formatValue(w, "ref ", f);
if (functionAttributes!T & FA.property) formatValue(w, "@property ", f);
if (functionAttributes!T & FA.trusted) formatValue(w, "@trusted ", f);
if (functionAttributes!T & FA.safe) formatValue(w, "@safe ", f);
formatValue(w, ReturnType!(T).stringof,f);
formatValue(w, " delegate",f);
formatValue(w, ParameterTypeTuple!(T).stringof,f);
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
formatValue(a, {}, f);
}
/*
Formatting a $(D typedef) is deprecated but still kept around for a while.
*/
void formatValue(Writer, T, Char)(Writer w, T val, ref FormatSpec!Char f)
if (is(T == typedef))
{
static if (is(T U == typedef)) {
formatValue(w, cast(U) val, f);
}
}
unittest
{
FormatSpec!char f;
auto a = appender!string();
ireal val = 1i;
formatValue(a, val, f);
}
/*
Formats an object of type 'D' according to 'f' and writes it to
'w'. The pointer 'arg' is assumed to point to an object of type
'D'. The untyped signature is for the sake of taking this function's
address.
*/
private void formatGeneric(Writer, D, Char)(Writer w, const(void)* arg, ref FormatSpec!Char f)
{
formatValue(w, *cast(D*) arg, f);
}
unittest
{
auto w = appender!(char[])();
int[] a = [ 1, 3, 2 ];
formattedWrite(w, "testing %(%s & %) embedded", a);
assert(w.data == "testing 1 & 3 & 2 embedded", w.data);
w.clear;
formattedWrite(w, "testing %((%s) %)) wyda3", a);
assert(w.data == "testing (1) (3) (2) wyda3", w.data);
int[0] empt = [];
w.clear;
formattedWrite(w, "(%s)", empt);
assert(w.data == "([])", w.data);
}
//------------------------------------------------------------------------------
// Fix for issue 1591
private int getNthInt(A...)(uint index, A args)
{
static if (A.length)
{
if (index)
{
return getNthInt(index - 1, args[1 .. $]);
}
static if (is(typeof(args[0]) : long) || is(typeof(arg) : ulong))
{
return to!(int)(args[0]);
}
else
{
throw new FormatException("int expected");
}
}
else
{
throw new FormatException("int expected");
}
}
/* ======================== Unit Tests ====================================== */
unittest
{
auto stream = appender!string();
formattedWrite(stream, "%s", 1.1);
assert(stream.data == "1.1", stream.data);
stream = appender!string();
formattedWrite(stream, "%s", map!"a*a"([2, 3, 5]));
assert(stream.data == "[4, 9, 25]", stream.data);
// Test shared data.
stream = appender!string();
shared int s = 6;
formattedWrite(stream, "%s", s);
assert(stream.data == "6");
}
unittest
{
auto stream = appender!string();
formattedWrite(stream, "%u", 42);
assert(stream.data == "42", stream.data);
}
unittest
{
// testing raw writes
auto w = appender!(char[])();
uint a = 0x02030405;
formattedWrite(w, "%+r", a);
assert(w.data.length == 4 && w.data[0] == 2 && w.data[1] == 3
&& w.data[2] == 4 && w.data[3] == 5);
w.clear;
formattedWrite(w, "%-r", a);
assert(w.data.length == 4 && w.data[0] == 5 && w.data[1] == 4
&& w.data[2] == 3 && w.data[3] == 2);
}
unittest
{
// testing positional parameters
auto w = appender!(char[])();
formattedWrite(w,
"Numbers %2$s and %1$s are reversed and %1$s%2$s repeated",
42, 0);
assert(w.data == "Numbers 0 and 42 are reversed and 420 repeated",
w.data);
w.clear;
formattedWrite(w, "asd%s", 23);
assert(w.data == "asd23", w.data);
w.clear;
formattedWrite(w, "%s%s", 23, 45);
assert(w.data == "2345", w.data);
}
unittest
{
debug(format) printf("std.format.format.unittest\n");
auto stream = appender!(char[])();
//goto here;
formattedWrite(stream,
"hello world! %s %s ", true, 57, 1_000_000_000, 'x', " foo");
assert(stream.data == "hello world! true 57 ",
stream.data);
stream.clear;
formattedWrite(stream, "%g %A %s", 1.67, -1.28, float.nan);
// std.c.stdio.fwrite(stream.data.ptr, stream.data.length, 1, stderr);
/* The host C library is used to format floats. C99 doesn't
* specify what the hex digit before the decimal point is for
* %A. */
version (linux)
{
assert(stream.data == "1.67 -0X1.47AE147AE147BP+0 nan",
stream.data);
}
else version (OSX)
{
assert(stream.data == "1.67 -0X1.47AE147AE147BP+0 nan",
stream.data);
}
else
{
assert(stream.data == "1.67 -0X1.47AE147AE147BP+0 nan",
stream.data);
}
stream.clear;
formattedWrite(stream, "%x %X", 0x1234AF, 0xAFAFAFAF);
assert(stream.data == "1234af AFAFAFAF");
stream.clear;
formattedWrite(stream, "%b %o", 0x1234AF, 0xAFAFAFAF);
assert(stream.data == "100100011010010101111 25753727657");
stream.clear;
formattedWrite(stream, "%d %s", 0x1234AF, 0xAFAFAFAF);
assert(stream.data == "1193135 2947526575");
stream.clear;
// formattedWrite(stream, "%s", 1.2 + 3.4i);
// assert(stream.data == "1.2+3.4i");
// stream.clear;
formattedWrite(stream, "%a %A", 1.32, 6.78f);
//formattedWrite(stream, "%x %X", 1.32);
assert(stream.data == "0x1.51eb851eb851fp+0 0X1.B1EB86P+2");
stream.clear;
formattedWrite(stream, "%#06.*f",2,12.345);
assert(stream.data == "012.35");
stream.clear;
formattedWrite(stream, "%#0*.*f",6,2,12.345);
assert(stream.data == "012.35");
stream.clear;
const real constreal = 1;
formattedWrite(stream, "%g",constreal);
assert(stream.data == "1");
stream.clear;
formattedWrite(stream, "%7.4g:", 12.678);
assert(stream.data == " 12.68:");
stream.clear;
formattedWrite(stream, "%7.4g:", 12.678L);
assert(stream.data == " 12.68:");
stream.clear;
formattedWrite(stream, "%04f|%05d|%#05x|%#5x",-4.,-10,1,1);
assert(stream.data == "-4.000000|-0010|0x001| 0x1",
stream.data);
stream.clear;
int i;
string s;
i = -10;
formattedWrite(stream, "%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(stream.data == "-10|-10|-10|-10|-10.0000");
stream.clear;
i = -5;
formattedWrite(stream, "%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(stream.data == "-5| -5|-05|-5|-5.0000");
stream.clear;
i = 0;
formattedWrite(stream, "%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(stream.data == "0| 0|000|0|0.0000");
stream.clear;
i = 5;
formattedWrite(stream, "%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(stream.data == "5| 5|005|5|5.0000");
stream.clear;
i = 10;
formattedWrite(stream, "%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(stream.data == "10| 10|010|10|10.0000");
stream.clear;
formattedWrite(stream, "%.0d", 0);
assert(stream.data == "");
stream.clear;
formattedWrite(stream, "%.g", .34);
assert(stream.data == "0.3");
stream.clear;
stream.clear; formattedWrite(stream, "%.0g", .34);
assert(stream.data == "0.3");
stream.clear; formattedWrite(stream, "%.2g", .34);
assert(stream.data == "0.34");
stream.clear; formattedWrite(stream, "%0.0008f", 1e-08);
assert(stream.data == "0.00000001");
stream.clear; formattedWrite(stream, "%0.0008f", 1e-05);
assert(stream.data == "0.00001000");
//return;
//std.c.stdio.fwrite(stream.data.ptr, stream.data.length, 1, stderr);
s = "helloworld";
string r;
stream.clear; formattedWrite(stream, "%.2s", s[0..5]);
assert(stream.data == "he");
stream.clear; formattedWrite(stream, "%.20s", s[0..5]);
assert(stream.data == "hello");
stream.clear; formattedWrite(stream, "%8s", s[0..5]);
assert(stream.data == " hello");
byte[] arrbyte = new byte[4];
arrbyte[0] = 100;
arrbyte[1] = -99;
arrbyte[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrbyte);
assert(stream.data == "[100, -99, 0, 0]", stream.data);
ubyte[] arrubyte = new ubyte[4];
arrubyte[0] = 100;
arrubyte[1] = 200;
arrubyte[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrubyte);
assert(stream.data == "[100, 200, 0, 0]", stream.data);
short[] arrshort = new short[4];
arrshort[0] = 100;
arrshort[1] = -999;
arrshort[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrshort);
assert(stream.data == "[100, -999, 0, 0]");
stream.clear; formattedWrite(stream, "%s",arrshort);
assert(stream.data == "[100, -999, 0, 0]");
ushort[] arrushort = new ushort[4];
arrushort[0] = 100;
arrushort[1] = 20_000;
arrushort[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrushort);
assert(stream.data == "[100, 20000, 0, 0]");
int[] arrint = new int[4];
arrint[0] = 100;
arrint[1] = -999;
arrint[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrint);
assert(stream.data == "[100, -999, 0, 0]");
stream.clear; formattedWrite(stream, "%s",arrint);
assert(stream.data == "[100, -999, 0, 0]");
long[] arrlong = new long[4];
arrlong[0] = 100;
arrlong[1] = -999;
arrlong[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrlong);
assert(stream.data == "[100, -999, 0, 0]");
stream.clear; formattedWrite(stream, "%s",arrlong);
assert(stream.data == "[100, -999, 0, 0]");
ulong[] arrulong = new ulong[4];
arrulong[0] = 100;
arrulong[1] = 999;
arrulong[3] = 0;
stream.clear; formattedWrite(stream, "%s", arrulong);
assert(stream.data == "[100, 999, 0, 0]");
string[] arr2 = new string[4];
arr2[0] = "hello";
arr2[1] = "world";
arr2[3] = "foo";
stream.clear; formattedWrite(stream, "%s", arr2);
assert(stream.data == `["hello", "world", "", "foo"]`, stream.data);
stream.clear; formattedWrite(stream, "%.8d", 7);
assert(stream.data == "00000007");
stream.clear; formattedWrite(stream, "%.8x", 10);
assert(stream.data == "0000000a");
stream.clear; formattedWrite(stream, "%-3d", 7);
assert(stream.data == "7 ");
stream.clear; formattedWrite(stream, "%*d", -3, 7);
assert(stream.data == "7 ");
stream.clear; formattedWrite(stream, "%.*d", -3, 7);
//writeln(stream.data);
assert(stream.data == "7");
// assert(false);
// typedef int myint;
// myint m = -7;
// stream.clear; formattedWrite(stream, "", m);
// assert(stream.data == "-7");
stream.clear; formattedWrite(stream, "%s", "abc"c);
assert(stream.data == "abc");
stream.clear; formattedWrite(stream, "%s", "def"w);
assert(stream.data == "def", text(stream.data.length));
stream.clear; formattedWrite(stream, "%s", "ghi"d);
assert(stream.data == "ghi");
here:
void* p = cast(void*)0xDEADBEEF;
stream.clear; formattedWrite(stream, "%s", p);
assert(stream.data == "DEADBEEF", stream.data);
stream.clear; formattedWrite(stream, "%#x", 0xabcd);
assert(stream.data == "0xabcd");
stream.clear; formattedWrite(stream, "%#X", 0xABCD);
assert(stream.data == "0XABCD");
stream.clear; formattedWrite(stream, "%#o", octal!12345);
assert(stream.data == "012345");
stream.clear; formattedWrite(stream, "%o", 9);
assert(stream.data == "11");
stream.clear; formattedWrite(stream, "%+d", 123);
assert(stream.data == "+123");
stream.clear; formattedWrite(stream, "%+d", -123);
assert(stream.data == "-123");
stream.clear; formattedWrite(stream, "% d", 123);
assert(stream.data == " 123");
stream.clear; formattedWrite(stream, "% d", -123);
assert(stream.data == "-123");
stream.clear; formattedWrite(stream, "%%");
assert(stream.data == "%");
stream.clear; formattedWrite(stream, "%d", true);
assert(stream.data == "1");
stream.clear; formattedWrite(stream, "%d", false);
assert(stream.data == "0");
stream.clear; formattedWrite(stream, "%d", 'a');
assert(stream.data == "97", stream.data);
wchar wc = 'a';
stream.clear; formattedWrite(stream, "%d", wc);
assert(stream.data == "97");
dchar dc = 'a';
stream.clear; formattedWrite(stream, "%d", dc);
assert(stream.data == "97");
byte b = byte.max;
stream.clear; formattedWrite(stream, "%x", b);
assert(stream.data == "7f");
stream.clear; formattedWrite(stream, "%x", ++b);
assert(stream.data == "80");
stream.clear; formattedWrite(stream, "%x", ++b);
assert(stream.data == "81");
short sh = short.max;
stream.clear; formattedWrite(stream, "%x", sh);
assert(stream.data == "7fff");
stream.clear; formattedWrite(stream, "%x", ++sh);
assert(stream.data == "8000");
stream.clear; formattedWrite(stream, "%x", ++sh);
assert(stream.data == "8001");
i = int.max;
stream.clear; formattedWrite(stream, "%x", i);
assert(stream.data == "7fffffff");
stream.clear; formattedWrite(stream, "%x", ++i);
assert(stream.data == "80000000");
stream.clear; formattedWrite(stream, "%x", ++i);
assert(stream.data == "80000001");
stream.clear; formattedWrite(stream, "%x", 10);
assert(stream.data == "a");
stream.clear; formattedWrite(stream, "%X", 10);
assert(stream.data == "A");
stream.clear; formattedWrite(stream, "%x", 15);
assert(stream.data == "f");
stream.clear; formattedWrite(stream, "%X", 15);
assert(stream.data == "F");
Object c = null;
stream.clear; formattedWrite(stream, "%s", c);
assert(stream.data == "null");
enum TestEnum
{
Value1, Value2
}
stream.clear; formattedWrite(stream, "%s", TestEnum.Value2);
assert(stream.data == "Value2", stream.data);
stream.clear; formattedWrite(stream, "%s", cast(TestEnum)5);
assert(stream.data == "cast(TestEnum)5", stream.data);
//immutable(char[5])[int] aa = ([3:"hello", 4:"betty"]);
//stream.clear; formattedWrite(stream, "%s", aa.values);
//std.c.stdio.fwrite(stream.data.ptr, stream.data.length, 1, stderr);
//assert(stream.data == "[[h,e,l,l,o],[b,e,t,t,y]]");
//stream.clear; formattedWrite(stream, "%s", aa);
//assert(stream.data == "[3:[h,e,l,l,o],4:[b,e,t,t,y]]");
static const dchar[] ds = ['a','b'];
for (int j = 0; j < ds.length; ++j)
{
stream.clear; formattedWrite(stream, " %d", ds[j]);
if (j == 0)
assert(stream.data == " 97");
else
assert(stream.data == " 98");
}
stream.clear; formattedWrite(stream, "%.-3d", 7);
assert(stream.data == "7", ">" ~ stream.data ~ "<");
// systematic test
const string[] flags = [ "-", "+", "#", "0", " ", "" ];
const string[] widths = [ "", "0", "4", "20" ];
const string[] precs = [ "", ".", ".0", ".4", ".20" ];
const string formats = "sdoxXeEfFgGaA";
/+
foreach (flag1; flags)
foreach (flag2; flags)
foreach (flag3; flags)
foreach (flag4; flags)
foreach (flag5; flags)
foreach (width; widths)
foreach (prec; precs)
foreach (format; formats)
{
stream.clear;
auto fmt = "%" ~ flag1 ~ flag2 ~ flag3
~ flag4 ~ flag5 ~ width ~ prec ~ format
~ '\0';
fmt = fmt[0 .. $ - 1]; // keep it zero-term
char buf[256];
buf[0] = 0;
switch (format)
{
case 's':
formattedWrite(stream, fmt, "wyda");
snprintf(buf.ptr, buf.length, fmt.ptr,
"wyda\0".ptr);
break;
case 'd':
formattedWrite(stream, fmt, 456);
snprintf(buf.ptr, buf.length, fmt.ptr,
456);
break;
case 'o':
formattedWrite(stream, fmt, 345);
snprintf(buf.ptr, buf.length, fmt.ptr,
345);
break;
case 'x':
formattedWrite(stream, fmt, 63546);
snprintf(buf.ptr, buf.length, fmt.ptr,
63546);
break;
case 'X':
formattedWrite(stream, fmt, 12566);
snprintf(buf.ptr, buf.length, fmt.ptr,
12566);
break;
case 'e':
formattedWrite(stream, fmt, 3245.345234);
snprintf(buf.ptr, buf.length, fmt.ptr,
3245.345234);
break;
case 'E':
formattedWrite(stream, fmt, 3245.2345234);
snprintf(buf.ptr, buf.length, fmt.ptr,
3245.2345234);
break;
case 'f':
formattedWrite(stream, fmt, 3245234.645675);
snprintf(buf.ptr, buf.length, fmt.ptr,
3245234.645675);
break;
case 'F':
formattedWrite(stream, fmt, 213412.43);
snprintf(buf.ptr, buf.length, fmt.ptr,
213412.43);
break;
case 'g':
formattedWrite(stream, fmt, 234134.34);
snprintf(buf.ptr, buf.length, fmt.ptr,
234134.34);
break;
case 'G':
formattedWrite(stream, fmt, 23141234.4321);
snprintf(buf.ptr, buf.length, fmt.ptr,
23141234.4321);
break;
case 'a':
formattedWrite(stream, fmt, 21341234.2134123);
snprintf(buf.ptr, buf.length, fmt.ptr,
21341234.2134123);
break;
case 'A':
formattedWrite(stream, fmt, 1092384098.45234);
snprintf(buf.ptr, buf.length, fmt.ptr,
1092384098.45234);
break;
default:
break;
}
auto exp = buf[0 .. strlen(buf.ptr)];
if (stream.data != exp)
{
writeln("Format: \"", fmt, '"');
writeln("Expected: >", exp, "<");
writeln("Actual: >", stream.data,
"<");
assert(false);
}
}+/
}
unittest
{
immutable(char[5])[int] aa = ([3:"hello", 4:"betty"]);
if (false) writeln(aa.keys);
assert(aa[3] == "hello");
assert(aa[4] == "betty");
// if (false)
// {
// writeln(aa.values[0]);
// writeln(aa.values[1]);
// writefln("%s", typeid(typeof(aa.values)));
// writefln("%s", aa[3]);
// writefln("%s", aa[4]);
// writefln("%s", aa.values);
// //writefln("%s", aa);
// wstring a = "abcd";
// writefln(a);
// dstring b = "abcd";
// writefln(b);
// }
auto stream = appender!(char[])();
alias TypeTuple!(byte, ubyte, short, ushort, int, uint, long, ulong,
float, double, real) AllNumerics;
foreach (T; AllNumerics)
{
T value = 1;
stream.clear();
formattedWrite(stream, "%s", value);
assert(stream.data == "1");
}
//auto r = std.string.format("%s", aa.values);
stream.clear; formattedWrite(stream, "%s", aa);
//assert(stream.data == "[3:[h,e,l,l,o],4:[b,e,t,t,y]]", stream.data);
// r = std.string.format("%s", aa);
// assert(r == "[3:[h,e,l,l,o],4:[b,e,t,t,y]]");
}
unittest
{
string s = "hello!124:34.5";
string a;
int b;
double c;
formattedRead(s, "%s!%s:%s", &a, &b, &c);
assert(a == "hello" && b == 124 && c == 34.5);
}
//------------------------------------------------------------------------------
private void skipData(Range, Char)(ref Range input, ref FormatSpec!Char spec)
{
switch (spec.spec)
{
case 'c': input.popFront; break;
case 'd':
if (input.front == '+' || input.front == '-') input.popFront();
goto case 'u';
case 'u':
while (!input.empty && isDigit(input.front)) input.popFront;
break;
default:
assert(false,
text("Format specifier not understood: %", spec.spec));
}
}
private template acceptedSpecs(T)
{
static if (isIntegral!T) enum acceptedSpecs = "sdu";// + "coxX" (todo)
else static if (isFloatingPoint!T) enum acceptedSpecs = "seEfgG";
else enum acceptedSpecs = "";
}
/**
Reads an integral value and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && isIntegral!T)
{
enforce(std.algorithm.find("cdosuxX", spec.spec).length,
text("Wrong integral type specifier: `", spec.spec, "'"));
if (std.algorithm.find("dsu", spec.spec).length)
{
return parse!T(input);
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
/**
Reads a floating-point value and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isFloatingPoint!T)
{
if (spec.spec == 'r')
{
// raw read
//enforce(input.length >= T.sizeof);
enforce(isSomeString!Range || ElementType!(Range).sizeof == 1);
union X
{
ubyte[T.sizeof] raw;
T typed;
}
X x;
foreach (i; 0 .. T.sizeof)
{
static if (isSomeString!Range)
{
x.raw[i] = input[0];
input = input[1 .. $];
}
else
{
// TODO: recheck this
x.raw[i] = cast(ubyte) input.front;
input.popFront();
}
}
return x.typed;
}
enforce(std.algorithm.find(acceptedSpecs!T, spec.spec).length,
text("Format specifier `%", spec.spec,
"' not accepted for floating point types"));
return parse!T(input);
}
version(none)unittest
{
union A
{
char[float.sizeof] untyped;
float typed;
};
A a;
a.typed = 5.5;
char[] input = a.untyped[];
float witness;
formattedRead(input, "%r", &witness);
assert(witness == a.typed);
}
unittest
{
char[] line = "1 2".dup;
int a, b;
formattedRead(line, "%s %s", &a, &b);
assert(a == 1 && b == 2);
line = "10 2 3".dup;
formattedRead(line, "%d ", &a);
assert(a == 10);
assert(line == "2 3");
Tuple!(int, float) t;
line = "1 2.125".dup;
formattedRead(line, "%d %g", &t);
assert(t[0] == 1 && t[1] == 2.125);
line = "1 7643 2.125".dup;
formattedRead(line, "%s %*u %s", &t);
assert(t[0] == 1 && t[1] == 2.125);
}
/**
* Reads a boolean value and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && is(Unqual!T == bool))
{
enforce(std.algorithm.find("cdosuxX", spec.spec).length,
text("Wrong integral type specifier: `", spec.spec, "'"));
if (spec.spec == 's')
{
return parse!T(input);
}
else if (spec.spec == 'd')
{
return parse!long(input) != 0;
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
unittest
{
string line;
bool f1;
line = "true";
formattedRead(line, "%s", &f1);
assert(f1);
line = "TrUE";
formattedRead(line, "%s", &f1);
assert(f1);
line = "false";
formattedRead(line, "%s", &f1);
assert(!f1);
line = "fALsE";
formattedRead(line, "%s", &f1);
assert(!f1);
line = "1";
formattedRead(line, "%d", &f1);
assert(f1);
line = "-1";
formattedRead(line, "%d", &f1);
assert(f1);
line = "0";
formattedRead(line, "%d", &f1);
assert(!f1);
line = "-0";
formattedRead(line, "%d", &f1);
assert(!f1);
}
/**
* Reads one character and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && isSomeChar!T)
{
enforce(std.algorithm.find("cdosuxX", spec.spec).length,
text("Wrong character type specifier: `", spec.spec, "'"));
if (std.algorithm.find("sc", spec.spec).length)
{
auto result = to!T(input.front);
input.popFront();
return result;
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
unittest
{
string line;
char c1, c2;
line = "abc";
formattedRead(line, "%s%c", &c1, &c2);
assert(c1 == 'a' && c2 == 'b');
assert(line == "c");
}
/**
Reads an array (except for string types) and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && isArray!T && !isSomeString!T)
{
if (spec.spec == 's')
{
return parse!T(input);
}
else if (spec.spec == '(')
{
return unformatRange!T(input, spec);
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
unittest
{
string line;
line = "[1,2,3]";
int[] s1;
formattedRead(line, "%s", &s1);
assert(s1 == [1,2,3]);
}
unittest
{
string line;
line = "[1,2,3]";
int[] s1;
formattedRead(line, "[%(%s, %)]", &s1);
assert(s1 == [1,2,3]);
line = `["hello", "world"]`;
string[] s2;
formattedRead(line, "[%(%s, %)]", &s2);
assert(s2 == ["hello", "world"]);
line = "123 456";
int[] s3;
formattedRead(line, "%(%s %)", &s3);
assert(s3 == [123, 456]);
line = "h,e,l,l,o;w,o,r,l,d;";
string[] s4;
formattedRead(line, "%(%(%c,%);%)", &s4);
assert(s4 == ["hello", "world"]);
}
unittest
{
string line;
int[4] sa1;
line = `[1,2,3,4]`;
formattedRead(line, "%s", &sa1);
assert(sa1 == [1,2,3,4]);
int[4] sa2;
line = `[1,2,3]`;
assertThrown(formattedRead(line, "%s", &sa2));
int[4] sa3;
line = `[1,2,3,4,5]`;
assertThrown(formattedRead(line, "%s", &sa3));
}
/**
Reads a string and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && isSomeString!T)
{
if (spec.spec == 's')
{
auto app = appender!T();
if (spec.trailing.empty)
{
for (; !input.empty; input.popFront())
{
app.put(input.front);
}
}
else
{
for (; !input.empty && input.front != spec.trailing.front;
input.popFront())
{
app.put(input.front);
}
}
auto result = app.data;
return result;
}
else if (spec.spec == '(')
{
return unformatRange!T(input, spec);
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
unittest
{
string line;
string s1, s2;
line = "hello, world";
formattedRead(line, "%s", &s1);
assert(s1 == "hello, world", s1);
line = "hello, world;yah";
formattedRead(line, "%s;%s", &s1, &s2);
assert(s1 == "hello, world", s1);
assert(s2 == "yah", s2);
line = `['h','e','l','l','o']`;
string s3;
formattedRead(line, "[%(%s, %)]", &s3);
assert(s3 == "hello");
line = `"hello"`;
string s4;
formattedRead(line, "\"%(%c%)\"", &s4);
assert(s4 == "hello");
}
/**
* Reads an associative array and returns it.
*/
T unformatValue(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range && isAssociativeArray!T)
{
if (spec.spec == 's')
{
return parse!T(input);
}
else if (spec.spec == '(')
{
return unformatRange!T(input, spec);
}
assert(0, "Parsing spec '"~spec.spec~"' not implemented.");
}
unittest
{
string line;
string[int] aa1;
line = `[1:"hello", 2:"world"]`;
formattedRead(line, "%s", &aa1);
assert(aa1 == [1:"hello", 2:"world"]);
int[string] aa2;
line = `{"hello"=1; "world"=2}`;
formattedRead(line, "{%(%s=%s; %)}", &aa2);
assert(aa2 == ["hello":1, "world":2]);
int[string] aa3;
line = `{hello=1; world=2}`;
formattedRead(line, "{%(%(%c%)=%s; %)}", &aa3);
assert(aa3 == ["hello":1, "world":2]);
}
private T unformatRange(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
{
T result;
static if (isStaticArray!T)
{
size_t i;
}
auto tr = spec.headUpToNextSpec();
for (;;)
{
auto fmt = FormatSpec!Char(spec.nested);
fmt.readUpToNextSpec(input);
bool isRangeValue = (fmt.spec == '(');
static if (isStaticArray!T)
{
result[i++] = unformatElement!(typeof(T.init[0]))(input, fmt);
}
else static if (isDynamicArray!T)
{
result ~= unformatElement!(ElementType!T)(input, fmt);
}
else static if (isAssociativeArray!T)
{
auto key = unformatElement!(typeof(T.keys[0]))(input, fmt);
enforce(!input.empty, "Need more input");
fmt.readUpToNextSpec(input); // eat key separator
result[key] = unformatElement!(typeof(T.values[0]))(input, fmt);
}
if (isRangeValue)
{
fmt.readUpToNextSpec(input); // always get trailing
if (input.empty)
break;
if (tr.length && std.algorithm.startsWith(input, tr))
break;
}
else
{
if (input.empty)
break;
if (tr.length && std.algorithm.startsWith(input, tr))
break;
fmt.readUpToNextSpec(input);
}
}
return result;
}
// Undocumented
T unformatElement(T, Range, Char)(ref Range input, ref FormatSpec!Char spec)
if (isInputRange!Range)
{
static if (isSomeString!T)
{
if (spec.spec == 's')
{
return parseElement!T(input);
}
}
else static if (isSomeChar!T)
{
if (spec.spec == 's')
{
return parseElement!T(input);
}
}
return unformatValue!T(input, spec);
}
// Legacy implementation
enum Mangle : char
{
Tvoid = 'v',
Tbool = 'b',
Tbyte = 'g',
Tubyte = 'h',
Tshort = 's',
Tushort = 't',
Tint = 'i',
Tuint = 'k',
Tlong = 'l',
Tulong = 'm',
Tfloat = 'f',
Tdouble = 'd',
Treal = 'e',
Tifloat = 'o',
Tidouble = 'p',
Tireal = 'j',
Tcfloat = 'q',
Tcdouble = 'r',
Tcreal = 'c',
Tchar = 'a',
Twchar = 'u',
Tdchar = 'w',
Tarray = 'A',
Tsarray = 'G',
Taarray = 'H',
Tpointer = 'P',
Tfunction = 'F',
Tident = 'I',
Tclass = 'C',
Tstruct = 'S',
Tenum = 'E',
Ttypedef = 'T',
Tdelegate = 'D',
Tconst = 'x',
Timmutable = 'y',
}
// return the TypeInfo for a primitive type and null otherwise. This
// is required since for arrays of ints we only have the mangled char
// to work from. If arrays always subclassed TypeInfo_Array this
// routine could go away.
private TypeInfo primitiveTypeInfo(Mangle m)
{
// BUG: should fix this in static this() to avoid double checked locking bug
__gshared TypeInfo[Mangle] dic;
if (!dic.length) {
dic = [
Mangle.Tvoid : typeid(void),
Mangle.Tbool : typeid(bool),
Mangle.Tbyte : typeid(byte),
Mangle.Tubyte : typeid(ubyte),
Mangle.Tshort : typeid(short),
Mangle.Tushort : typeid(ushort),
Mangle.Tint : typeid(int),
Mangle.Tuint : typeid(uint),
Mangle.Tlong : typeid(long),
Mangle.Tulong : typeid(ulong),
Mangle.Tfloat : typeid(float),
Mangle.Tdouble : typeid(double),
Mangle.Treal : typeid(real),
Mangle.Tifloat : typeid(ifloat),
Mangle.Tidouble : typeid(idouble),
Mangle.Tireal : typeid(ireal),
Mangle.Tcfloat : typeid(cfloat),
Mangle.Tcdouble : typeid(cdouble),
Mangle.Tcreal : typeid(creal),
Mangle.Tchar : typeid(char),
Mangle.Twchar : typeid(wchar),
Mangle.Tdchar : typeid(dchar)
];
}
auto p = m in dic;
return p ? *p : null;
}
// This stuff has been removed from the docs and is planned for deprecation.
/*
* Interprets variadic argument list pointed to by argptr whose types
* are given by arguments[], formats them according to embedded format
* strings in the variadic argument list, and sends the resulting
* characters to putc.
*
* The variadic arguments are consumed in order. Each is formatted
* into a sequence of chars, using the default format specification
* for its type, and the characters are sequentially passed to putc.
* If a $(D char[]), $(D wchar[]), or $(D dchar[]) argument is
* encountered, it is interpreted as a format string. As many
* arguments as specified in the format string are consumed and
* formatted according to the format specifications in that string and
* passed to putc. If there are too few remaining arguments, a
* $(D FormatException) is thrown. If there are more remaining arguments than
* needed by the format specification, the default processing of
* arguments resumes until they are all consumed.
*
* Params:
* putc = Output is sent do this delegate, character by character.
* arguments = Array of $(D TypeInfo)s, one for each argument to be formatted.
* argptr = Points to variadic argument list.
*
* Throws:
* Mismatched arguments and formats result in a $(D FormatException) being thrown.
*
* Format_String:
* <a name="format-string">$(I Format strings)</a>
* consist of characters interspersed with
* $(I format specifications). Characters are simply copied
* to the output (such as putc) after any necessary conversion
* to the corresponding UTF-8 sequence.
*
* A $(I format specification) starts with a '%' character,
* and has the following grammar:
<pre>
$(I FormatSpecification):
$(B '%%')
$(B '%') $(I Flags) $(I Width) $(I Precision) $(I FormatChar)
$(I Flags):
$(I empty)
$(B '-') $(I Flags)
$(B '+') $(I Flags)
$(B '#') $(I Flags)
$(B '0') $(I Flags)
$(B ' ') $(I Flags)
$(I Width):
$(I empty)
$(I Integer)
$(B '*')
$(I Precision):
$(I empty)
$(B '.')
$(B '.') $(I Integer)
$(B '.*')
$(I Integer):
$(I Digit)
$(I Digit) $(I Integer)
$(I Digit):
$(B '0')
$(B '1')
$(B '2')
$(B '3')
$(B '4')
$(B '5')
$(B '6')
$(B '7')
$(B '8')
$(B '9')
$(I FormatChar):
$(B 's')
$(B 'b')
$(B 'd')
$(B 'o')
$(B 'x')
$(B 'X')
$(B 'e')
$(B 'E')
$(B 'f')
$(B 'F')
$(B 'g')
$(B 'G')
$(B 'a')
$(B 'A')
</pre>
<dl>
<dt>$(I Flags)
<dl>
<dt>$(B '-')
<dd>
Left justify the result in the field.
It overrides any $(B 0) flag.
<dt>$(B '+')
<dd>Prefix positive numbers in a signed conversion with a $(B +).
It overrides any $(I space) flag.
<dt>$(B '#')
<dd>Use alternative formatting:
<dl>
<dt>For $(B 'o'):
<dd> Add to precision as necessary so that the first digit
of the octal formatting is a '0', even if both the argument
and the $(I Precision) are zero.
<dt> For $(B 'x') ($(B 'X')):
<dd> If non-zero, prefix result with $(B 0x) ($(B 0X)).
<dt> For floating point formatting:
<dd> Always insert the decimal point.
<dt> For $(B 'g') ($(B 'G')):
<dd> Do not elide trailing zeros.
</dl>
<dt>$(B '0')
<dd> For integer and floating point formatting when not nan or
infinity, use leading zeros
to pad rather than spaces.
Ignore if there's a $(I Precision).
<dt>$(B ' ')
<dd>Prefix positive numbers in a signed conversion with a space.
</dl>
<dt>$(I Width)
<dd>
Specifies the minimum field width.
If the width is a $(B *), the next argument, which must be
of type $(B int), is taken as the width.
If the width is negative, it is as if the $(B -) was given
as a $(I Flags) character.
<dt>$(I Precision)
<dd> Gives the precision for numeric conversions.
If the precision is a $(B *), the next argument, which must be
of type $(B int), is taken as the precision. If it is negative,
it is as if there was no $(I Precision).
<dt>$(I FormatChar)
<dd>
<dl>
<dt>$(B 's')
<dd>The corresponding argument is formatted in a manner consistent
with its type:
<dl>
<dt>$(B bool)
<dd>The result is <tt>'true'</tt> or <tt>'false'</tt>.
<dt>integral types
<dd>The $(B %d) format is used.
<dt>floating point types
<dd>The $(B %g) format is used.
<dt>string types
<dd>The result is the string converted to UTF-8.
A $(I Precision) specifies the maximum number of characters
to use in the result.
<dt>classes derived from $(B Object)
<dd>The result is the string returned from the class instance's
$(B .toString()) method.
A $(I Precision) specifies the maximum number of characters
to use in the result.
<dt>non-string static and dynamic arrays
<dd>The result is [s<sub>0</sub>, s<sub>1</sub>, ...]
where s<sub>k</sub> is the kth element
formatted with the default format.
</dl>
<dt>$(B 'b','d','o','x','X')
<dd> The corresponding argument must be an integral type
and is formatted as an integer. If the argument is a signed type
and the $(I FormatChar) is $(B d) it is converted to
a signed string of characters, otherwise it is treated as
unsigned. An argument of type $(B bool) is formatted as '1'
or '0'. The base used is binary for $(B b), octal for $(B o),
decimal
for $(B d), and hexadecimal for $(B x) or $(B X).
$(B x) formats using lower case letters, $(B X) uppercase.
If there are fewer resulting digits than the $(I Precision),
leading zeros are used as necessary.
If the $(I Precision) is 0 and the number is 0, no digits
result.
<dt>$(B 'e','E')
<dd> A floating point number is formatted as one digit before
the decimal point, $(I Precision) digits after, the $(I FormatChar),
±, followed by at least a two digit exponent: $(I d.dddddd)e$(I ±dd).
If there is no $(I Precision), six
digits are generated after the decimal point.
If the $(I Precision) is 0, no decimal point is generated.
<dt>$(B 'f','F')
<dd> A floating point number is formatted in decimal notation.
The $(I Precision) specifies the number of digits generated
after the decimal point. It defaults to six. At least one digit
is generated before the decimal point. If the $(I Precision)
is zero, no decimal point is generated.
<dt>$(B 'g','G')
<dd> A floating point number is formatted in either $(B e) or
$(B f) format for $(B g); $(B E) or $(B F) format for
$(B G).
The $(B f) format is used if the exponent for an $(B e) format
is greater than -5 and less than the $(I Precision).
The $(I Precision) specifies the number of significant
digits, and defaults to six.
Trailing zeros are elided after the decimal point, if the fractional
part is zero then no decimal point is generated.
<dt>$(B 'a','A')
<dd> A floating point number is formatted in hexadecimal
exponential notation 0x$(I h.hhhhhh)p$(I ±d).
There is one hexadecimal digit before the decimal point, and as
many after as specified by the $(I Precision).
If the $(I Precision) is zero, no decimal point is generated.
If there is no $(I Precision), as many hexadecimal digits as
necessary to exactly represent the mantissa are generated.
The exponent is written in as few digits as possible,
but at least one, is in decimal, and represents a power of 2 as in
$(I h.hhhhhh)*2<sup>$(I ±d)</sup>.
The exponent for zero is zero.
The hexadecimal digits, x and p are in upper case if the
$(I FormatChar) is upper case.
</dl>
Floating point NaN's are formatted as $(B nan) if the
$(I FormatChar) is lower case, or $(B NAN) if upper.
Floating point infinities are formatted as $(B inf) or
$(B infinity) if the
$(I FormatChar) is lower case, or $(B INF) or $(B INFINITY) if upper.
</dl>
Example:
-------------------------
import std.c.stdio;
import std.format;
void myPrint(...)
{
void putc(char c)
{
fputc(c, stdout);
}
std.format.doFormat(&putc, _arguments, _argptr);
}
...
int x = 27;
// prints 'The answer is 27:6'
myPrint("The answer is %s:", x, 6);
------------------------
*/
void doFormat(void delegate(dchar) putc, TypeInfo[] arguments, va_list argptr)
{
TypeInfo ti;
Mangle m;
uint flags;
int field_width;
int precision;
enum : uint
{
FLdash = 1,
FLplus = 2,
FLspace = 4,
FLhash = 8,
FLlngdbl = 0x20,
FL0pad = 0x40,
FLprecision = 0x80,
}
static TypeInfo skipCI(TypeInfo valti)
{
for (;;)
{
if (valti.classinfo.name.length == 18 &&
valti.classinfo.name[9..18] == "Invariant")
valti = (cast(TypeInfo_Invariant)valti).next;
else if (valti.classinfo.name.length == 14 &&
valti.classinfo.name[9..14] == "Const")
valti = (cast(TypeInfo_Const)valti).next;
else
break;
}
return valti;
}
void formatArg(char fc)
{
bool vbit;
ulong vnumber;
char vchar;
dchar vdchar;
Object vobject;
real vreal;
creal vcreal;
Mangle m2;
int signed = 0;
uint base = 10;
int uc;
char[ulong.sizeof * 8] tmpbuf; // long enough to print long in binary
const(char)* prefix = "";
string s;
void putstr(const char[] s)
{
//printf("putstr: s = %.*s, flags = x%x\n", s.length, s.ptr, flags);
sizediff_t padding = field_width -
(strlen(prefix) + toUCSindex(s, s.length));
sizediff_t prepad = 0;
sizediff_t postpad = 0;
if (padding > 0)
{
if (flags & FLdash)
postpad = padding;
else
prepad = padding;
}
if (flags & FL0pad)
{
while (*prefix)
putc(*prefix++);
while (prepad--)
putc('0');
}
else
{
while (prepad--)
putc(' ');
while (*prefix)
putc(*prefix++);
}
foreach (dchar c; s)
putc(c);
while (postpad--)
putc(' ');
}
void putreal(real v)
{
//printf("putreal %Lg\n", vreal);
switch (fc)
{
case 's':
fc = 'g';
break;
case 'f', 'F', 'e', 'E', 'g', 'G', 'a', 'A':
break;
default:
//printf("fc = '%c'\n", fc);
Lerror:
throw new FormatException("floating");
}
version (DigitalMarsC)
{
uint sl;
char[] fbuf = tmpbuf;
if (!(flags & FLprecision))
precision = 6;
while (1)
{
sl = fbuf.length;
prefix = (*__pfloatfmt)(fc, flags | FLlngdbl,
precision, &v, cast(char*)fbuf, &sl, field_width);
if (sl != -1)
break;
sl = fbuf.length * 2;
fbuf = (cast(char*)alloca(sl * char.sizeof))[0 .. sl];
}
putstr(fbuf[0 .. sl]);
}
else
{
sizediff_t sl;
char[] fbuf = tmpbuf;
char[12] format;
format[0] = '%';
int i = 1;
if (flags & FLdash)
format[i++] = '-';
if (flags & FLplus)
format[i++] = '+';
if (flags & FLspace)
format[i++] = ' ';
if (flags & FLhash)
format[i++] = '#';
if (flags & FL0pad)
format[i++] = '0';
format[i + 0] = '*';
format[i + 1] = '.';
format[i + 2] = '*';
format[i + 3] = 'L';
format[i + 4] = fc;
format[i + 5] = 0;
if (!(flags & FLprecision))
precision = -1;
while (1)
{
sl = fbuf.length;
auto n = snprintf(fbuf.ptr, sl, format.ptr, field_width,
precision, v);
//printf("format = '%s', n = %d\n", cast(char*)format, n);
if (n >= 0 && n < sl)
{ sl = n;
break;
}
if (n < 0)
sl = sl * 2;
else
sl = n + 1;
fbuf = (cast(char*)alloca(sl * char.sizeof))[0 .. sl];
}
putstr(fbuf[0 .. sl]);
}
return;
}
static Mangle getMan(TypeInfo ti)
{
auto m = cast(Mangle)ti.classinfo.name[9];
if (ti.classinfo.name.length == 20 &&
ti.classinfo.name[9..20] == "StaticArray")
m = cast(Mangle)'G';
return m;
}
/* p = pointer to the first element in the array
* len = number of elements in the array
* valti = type of the elements
*/
void putArray(void* p, size_t len, TypeInfo valti)
{
//printf("\nputArray(len = %u), tsize = %u\n", len, valti.tsize());
putc('[');
valti = skipCI(valti);
size_t tsize = valti.tsize();
auto argptrSave = argptr;
auto tiSave = ti;
auto mSave = m;
ti = valti;
//printf("\n%.*s\n", valti.classinfo.name.length, valti.classinfo.name.ptr);
m = getMan(valti);
while (len--)
{
//doFormat(putc, (&valti)[0 .. 1], p);
version(X86)
argptr = p;
else version(X86_64)
{
__va_list va;
va.stack_args = p;
argptr = &va;
}
else
static assert(false, "unsupported platform");
formatArg('s');
p += tsize;
if (len > 0) putc(',');
}
m = mSave;
ti = tiSave;
argptr = argptrSave;
putc(']');
}
void putAArray(ubyte[long] vaa, TypeInfo valti, TypeInfo keyti)
{
putc('[');
bool comma=false;
auto argptrSave = argptr;
auto tiSave = ti;
auto mSave = m;
valti = skipCI(valti);
keyti = skipCI(keyti);
foreach(ref fakevalue; vaa)
{
if (comma) putc(',');
comma = true;
void *pkey = &fakevalue;
version (X86)
pkey -= long.sizeof;
else version(X86_64)
pkey -= 16;
else static assert(false, "unsupported platform");
// the key comes before the value
auto keysize = keyti.tsize;
version (X86)
auto keysizet = (keysize + size_t.sizeof - 1) & ~(size_t.sizeof - 1);
else
auto keysizet = (keysize + 15) & ~(15);
void* pvalue = pkey + keysizet;
//doFormat(putc, (&keyti)[0..1], pkey);
version (X86)
argptr = pkey;
else
{ __va_list va;
va.stack_args = pkey;
argptr = &va;
}
ti = keyti;
m = getMan(keyti);
formatArg('s');
putc(':');
//doFormat(putc, (&valti)[0..1], pvalue);
version (X86)
argptr = pvalue;
else
{ __va_list va2;
va2.stack_args = pvalue;
argptr = &va2;
}
ti = valti;
m = getMan(valti);
formatArg('s');
}
m = mSave;
ti = tiSave;
argptr = argptrSave;
putc(']');
}
//printf("formatArg(fc = '%c', m = '%c')\n", fc, m);
switch (m)
{
case Mangle.Tbool:
vbit = va_arg!(bool)(argptr);
if (fc != 's')
{ vnumber = vbit;
goto Lnumber;
}
putstr(vbit ? "true" : "false");
return;
case Mangle.Tchar:
vchar = va_arg!(char)(argptr);
if (fc != 's')
{ vnumber = vchar;
goto Lnumber;
}
L2:
putstr((&vchar)[0 .. 1]);
return;
case Mangle.Twchar:
vdchar = va_arg!(wchar)(argptr);
goto L1;
case Mangle.Tdchar:
vdchar = va_arg!(dchar)(argptr);
L1:
if (fc != 's')
{ vnumber = vdchar;
goto Lnumber;
}
if (vdchar <= 0x7F)
{ vchar = cast(char)vdchar;
goto L2;
}
else
{ if (!isValidDchar(vdchar))
throw new UTFException("invalid dchar in format");
char[4] vbuf;
putstr(toUTF8(vbuf, vdchar));
}
return;
case Mangle.Tbyte:
signed = 1;
vnumber = va_arg!(byte)(argptr);
goto Lnumber;
case Mangle.Tubyte:
vnumber = va_arg!(ubyte)(argptr);
goto Lnumber;
case Mangle.Tshort:
signed = 1;
vnumber = va_arg!(short)(argptr);
goto Lnumber;
case Mangle.Tushort:
vnumber = va_arg!(ushort)(argptr);
goto Lnumber;
case Mangle.Tint:
signed = 1;
vnumber = va_arg!(int)(argptr);
goto Lnumber;
case Mangle.Tuint:
Luint:
vnumber = va_arg!(uint)(argptr);
goto Lnumber;
case Mangle.Tlong:
signed = 1;
vnumber = cast(ulong)va_arg!(long)(argptr);
goto Lnumber;
case Mangle.Tulong:
Lulong:
vnumber = va_arg!(ulong)(argptr);
goto Lnumber;
case Mangle.Tclass:
vobject = va_arg!(Object)(argptr);
if (vobject is null)
s = "null";
else
s = vobject.toString();
goto Lputstr;
case Mangle.Tpointer:
vnumber = cast(ulong)va_arg!(void*)(argptr);
if (fc != 'x') uc = 1;
flags |= FL0pad;
if (!(flags & FLprecision))
{ flags |= FLprecision;
precision = (void*).sizeof;
}
base = 16;
goto Lnumber;
case Mangle.Tfloat:
case Mangle.Tifloat:
if (fc == 'x' || fc == 'X')
goto Luint;
vreal = va_arg!(float)(argptr);
goto Lreal;
case Mangle.Tdouble:
case Mangle.Tidouble:
if (fc == 'x' || fc == 'X')
goto Lulong;
vreal = va_arg!(double)(argptr);
goto Lreal;
case Mangle.Treal:
case Mangle.Tireal:
vreal = va_arg!(real)(argptr);
goto Lreal;
case Mangle.Tcfloat:
vcreal = va_arg!(cfloat)(argptr);
goto Lcomplex;
case Mangle.Tcdouble:
vcreal = va_arg!(cdouble)(argptr);
goto Lcomplex;
case Mangle.Tcreal:
vcreal = va_arg!(creal)(argptr);
goto Lcomplex;
case Mangle.Tsarray:
version (X86)
putArray(argptr, (cast(TypeInfo_StaticArray)ti).len, (cast(TypeInfo_StaticArray)ti).next);
else
putArray((cast(__va_list*)argptr).stack_args, (cast(TypeInfo_StaticArray)ti).len, (cast(TypeInfo_StaticArray)ti).next);
return;
case Mangle.Tarray:
int mi = 10;
if (ti.classinfo.name.length == 14 &&
ti.classinfo.name[9..14] == "Array")
{ // array of non-primitive types
TypeInfo tn = (cast(TypeInfo_Array)ti).next;
tn = skipCI(tn);
switch (cast(Mangle)tn.classinfo.name[9])
{
case Mangle.Tchar: goto LarrayChar;
case Mangle.Twchar: goto LarrayWchar;
case Mangle.Tdchar: goto LarrayDchar;
default:
break;
}
void[] va = va_arg!(void[])(argptr);
putArray(va.ptr, va.length, tn);
return;
}
if (ti.classinfo.name.length == 25 &&
ti.classinfo.name[9..25] == "AssociativeArray")
{ // associative array
ubyte[long] vaa = va_arg!(ubyte[long])(argptr);
putAArray(vaa,
(cast(TypeInfo_AssociativeArray)ti).next,
(cast(TypeInfo_AssociativeArray)ti).key);
return;
}
while (1)
{
m2 = cast(Mangle)ti.classinfo.name[mi];
switch (m2)
{
case Mangle.Tchar:
LarrayChar:
s = va_arg!(string)(argptr);
goto Lputstr;
case Mangle.Twchar:
LarrayWchar:
wchar[] sw = va_arg!(wchar[])(argptr);
s = toUTF8(sw);
goto Lputstr;
case Mangle.Tdchar:
LarrayDchar:
auto sd = va_arg!(dstring)(argptr);
s = toUTF8(sd);
Lputstr:
if (fc != 's')
throw new FormatException("string");
if (flags & FLprecision && precision < s.length)
s = s[0 .. precision];
putstr(s);
break;
case Mangle.Tconst:
case Mangle.Timmutable:
mi++;
continue;
default:
TypeInfo ti2 = primitiveTypeInfo(m2);
if (!ti2)
goto Lerror;
void[] va = va_arg!(void[])(argptr);
putArray(va.ptr, va.length, ti2);
}
return;
}
assert(0);
case Mangle.Ttypedef:
ti = (cast(TypeInfo_Typedef)ti).base;
m = cast(Mangle)ti.classinfo.name[9];
formatArg(fc);
return;
case Mangle.Tenum:
ti = (cast(TypeInfo_Enum)ti).base;
m = cast(Mangle)ti.classinfo.name[9];
formatArg(fc);
return;
case Mangle.Tstruct:
{ TypeInfo_Struct tis = cast(TypeInfo_Struct)ti;
if (tis.xtoString is null)
throw new FormatException("Can't convert " ~ tis.toString()
~ " to string: \"string toString()\" not defined");
version(X86)
{
s = tis.xtoString(argptr);
argptr += (tis.tsize() + 3) & ~3;
}
else version (X86_64)
{
void[32] parmn = void; // place to copy struct if passed in regs
void* p;
auto tsize = tis.tsize();
TypeInfo arg1, arg2;
if (!tis.argTypes(arg1, arg2)) // if could be passed in regs
{ assert(tsize <= parmn.length);
p = parmn.ptr;
va_arg(argptr, tis, p);
}
else
{ /* Avoid making a copy of the struct; take advantage of
* it always being passed in memory
*/
// The arg may have more strict alignment than the stack
auto talign = tis.talign();
__va_list* ap = cast(__va_list*)argptr;
p = cast(void*)((cast(size_t)ap.stack_args + talign - 1) & ~(talign - 1));
ap.stack_args = cast(void*)(cast(size_t)p + ((tsize + size_t.sizeof - 1) & ~(size_t.sizeof - 1)));
}
s = tis.xtoString(p);
}
else
static assert(0);
goto Lputstr;
}
default:
goto Lerror;
}
Lnumber:
switch (fc)
{
case 's':
case 'd':
if (signed)
{ if (cast(long)vnumber < 0)
{ prefix = "-";
vnumber = -vnumber;
}
else if (flags & FLplus)
prefix = "+";
else if (flags & FLspace)
prefix = " ";
}
break;
case 'b':
signed = 0;
base = 2;
break;
case 'o':
signed = 0;
base = 8;
break;
case 'X':
uc = 1;
if (flags & FLhash && vnumber)
prefix = "0X";
signed = 0;
base = 16;
break;
case 'x':
if (flags & FLhash && vnumber)
prefix = "0x";
signed = 0;
base = 16;
break;
default:
goto Lerror;
}
if (!signed)
{
switch (m)
{
case Mangle.Tbyte:
vnumber &= 0xFF;
break;
case Mangle.Tshort:
vnumber &= 0xFFFF;
break;
case Mangle.Tint:
vnumber &= 0xFFFFFFFF;
break;
default:
break;
}
}
if (flags & FLprecision && fc != 'p')
flags &= ~FL0pad;
if (vnumber < base)
{
if (vnumber == 0 && precision == 0 && flags & FLprecision &&
!(fc == 'o' && flags & FLhash))
{
putstr(null);
return;
}
if (precision == 0 || !(flags & FLprecision))
{ vchar = cast(char)('0' + vnumber);
if (vnumber < 10)
vchar = cast(char)('0' + vnumber);
else
vchar = cast(char)((uc ? 'A' - 10 : 'a' - 10) + vnumber);
goto L2;
}
}
sizediff_t n = tmpbuf.length;
char c;
int hexoffset = uc ? ('A' - ('9' + 1)) : ('a' - ('9' + 1));
while (vnumber)
{
c = cast(char)((vnumber % base) + '0');
if (c > '9')
c += hexoffset;
vnumber /= base;
tmpbuf[--n] = c;
}
if (tmpbuf.length - n < precision && precision < tmpbuf.length)
{
sizediff_t m = tmpbuf.length - precision;
tmpbuf[m .. n] = '0';
n = m;
}
else if (flags & FLhash && fc == 'o')
prefix = "0";
putstr(tmpbuf[n .. tmpbuf.length]);
return;
Lreal:
putreal(vreal);
return;
Lcomplex:
putreal(vcreal.re);
putc('+');
putreal(vcreal.im);
putc('i');
return;
Lerror:
throw new FormatException("formatArg");
}
for (int j = 0; j < arguments.length; )
{
ti = arguments[j++];
//printf("arg[%d]: '%.*s' %d\n", j, ti.classinfo.name.length, ti.classinfo.name.ptr, ti.classinfo.name.length);
//ti.print();
flags = 0;
precision = 0;
field_width = 0;
ti = skipCI(ti);
int mi = 9;
do
{
if (ti.classinfo.name.length <= mi)
goto Lerror;
m = cast(Mangle)ti.classinfo.name[mi++];
} while (m == Mangle.Tconst || m == Mangle.Timmutable);
if (m == Mangle.Tarray)
{
if (ti.classinfo.name.length == 14 &&
ti.classinfo.name[9..14] == "Array")
{
TypeInfo tn = (cast(TypeInfo_Array)ti).next;
tn = skipCI(tn);
switch (cast(Mangle)tn.classinfo.name[9])
{
case Mangle.Tchar:
case Mangle.Twchar:
case Mangle.Tdchar:
ti = tn;
mi = 9;
break;
default:
break;
}
}
L1:
Mangle m2 = cast(Mangle)ti.classinfo.name[mi];
string fmt; // format string
wstring wfmt;
dstring dfmt;
/* For performance reasons, this code takes advantage of the
* fact that most format strings will be ASCII, and that the
* format specifiers are always ASCII. This means we only need
* to deal with UTF in a couple of isolated spots.
*/
switch (m2)
{
case Mangle.Tchar:
fmt = va_arg!(string)(argptr);
break;
case Mangle.Twchar:
wfmt = va_arg!(wstring)(argptr);
fmt = toUTF8(wfmt);
break;
case Mangle.Tdchar:
dfmt = va_arg!(dstring)(argptr);
fmt = toUTF8(dfmt);
break;
case Mangle.Tconst:
case Mangle.Timmutable:
mi++;
goto L1;
default:
formatArg('s');
continue;
}
for (size_t i = 0; i < fmt.length; )
{ dchar c = fmt[i++];
dchar getFmtChar()
{ // Valid format specifier characters will never be UTF
if (i == fmt.length)
throw new FormatException("invalid specifier");
return fmt[i++];
}
int getFmtInt()
{ int n;
while (1)
{
n = n * 10 + (c - '0');
if (n < 0) // overflow
throw new FormatException("int overflow");
c = getFmtChar();
if (c < '0' || c > '9')
break;
}
return n;
}
int getFmtStar()
{ Mangle m;
TypeInfo ti;
if (j == arguments.length)
throw new FormatException("too few arguments");
ti = arguments[j++];
m = cast(Mangle)ti.classinfo.name[9];
if (m != Mangle.Tint)
throw new FormatException("int argument expected");
return va_arg!(int)(argptr);
}
if (c != '%')
{
if (c > 0x7F) // if UTF sequence
{
i--; // back up and decode UTF sequence
c = std.utf.decode(fmt, i);
}
Lputc:
putc(c);
continue;
}
// Get flags {-+ #}
flags = 0;
while (1)
{
c = getFmtChar();
switch (c)
{
case '-': flags |= FLdash; continue;
case '+': flags |= FLplus; continue;
case ' ': flags |= FLspace; continue;
case '#': flags |= FLhash; continue;
case '0': flags |= FL0pad; continue;
case '%': if (flags == 0)
goto Lputc;
break;
default: break;
}
break;
}
// Get field width
field_width = 0;
if (c == '*')
{
field_width = getFmtStar();
if (field_width < 0)
{ flags |= FLdash;
field_width = -field_width;
}
c = getFmtChar();
}
else if (c >= '0' && c <= '9')
field_width = getFmtInt();
if (flags & FLplus)
flags &= ~FLspace;
if (flags & FLdash)
flags &= ~FL0pad;
// Get precision
precision = 0;
if (c == '.')
{ flags |= FLprecision;
//flags &= ~FL0pad;
c = getFmtChar();
if (c == '*')
{
precision = getFmtStar();
if (precision < 0)
{ precision = 0;
flags &= ~FLprecision;
}
c = getFmtChar();
}
else if (c >= '0' && c <= '9')
precision = getFmtInt();
}
if (j == arguments.length)
goto Lerror;
ti = arguments[j++];
ti = skipCI(ti);
mi = 9;
do
{
m = cast(Mangle)ti.classinfo.name[mi++];
} while (m == Mangle.Tconst || m == Mangle.Timmutable);
if (c > 0x7F) // if UTF sequence
goto Lerror; // format specifiers can't be UTF
formatArg(cast(char)c);
}
}
else
{
formatArg('s');
}
}
return;
Lerror:
throw new FormatException();
}
/* ======================== Unit Tests ====================================== */
unittest
{
int i;
string s;
debug(format) printf("std.format.format.unittest\n");
s = std.string.format("hello world! %s %s ", true, 57, 1_000_000_000, 'x', " foo");
assert(s == "hello world! true 57 1000000000x foo");
s = std.string.format(1.67, " %A ", -1.28, float.nan);
/* The host C library is used to format floats.
* C99 doesn't specify what the hex digit before the decimal point
* is for %A.
*/
version (linux)
assert(s == "1.67 -0XA.3D70A3D70A3D8P-3 nan");
else version (OSX)
assert(s == "1.67 -0XA.3D70A3D70A3D8P-3 nan", s);
else
assert(s == "1.67 -0X1.47AE147AE147BP+0 nan");
s = std.string.format("%x %X", 0x1234AF, 0xAFAFAFAF);
assert(s == "1234af AFAFAFAF");
s = std.string.format("%b %o", 0x1234AF, 0xAFAFAFAF);
assert(s == "100100011010010101111 25753727657");
s = std.string.format("%d %s", 0x1234AF, 0xAFAFAFAF);
assert(s == "1193135 2947526575");
s = std.string.format("%s", 1.2 + 3.4i);
assert(s == "1.2+3.4i");
s = std.string.format("%x %X", 1.32, 6.78f);
assert(s == "3ff51eb851eb851f 40D8F5C3");
s = std.string.format("%#06.*f",2,12.345);
assert(s == "012.35");
s = std.string.format("%#0*.*f",6,2,12.345);
assert(s == "012.35");
s = std.string.format("%7.4g:", 12.678);
assert(s == " 12.68:");
s = std.string.format("%7.4g:", 12.678L);
assert(s == " 12.68:");
s = std.string.format("%04f|%05d|%#05x|%#5x",-4.,-10,1,1);
assert(s == "-4.000000|-0010|0x001| 0x1");
i = -10;
s = std.string.format("%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(s == "-10|-10|-10|-10|-10.0000");
i = -5;
s = std.string.format("%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(s == "-5| -5|-05|-5|-5.0000");
i = 0;
s = std.string.format("%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(s == "0| 0|000|0|0.0000");
i = 5;
s = std.string.format("%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(s == "5| 5|005|5|5.0000");
i = 10;
s = std.string.format("%d|%3d|%03d|%1d|%01.4f",i,i,i,i,cast(double) i);
assert(s == "10| 10|010|10|10.0000");
s = std.string.format("%.0d", 0);
assert(s == "");
s = std.string.format("%.g", .34);
assert(s == "0.3");
s = std.string.format("%.0g", .34);
assert(s == "0.3");
s = std.string.format("%.2g", .34);
assert(s == "0.34");
s = std.string.format("%0.0008f", 1e-08);
assert(s == "0.00000001");
s = std.string.format("%0.0008f", 1e-05);
assert(s == "0.00001000");
s = "helloworld";
string r;
r = std.string.format("%.2s", s[0..5]);
assert(r == "he");
r = std.string.format("%.20s", s[0..5]);
assert(r == "hello");
r = std.string.format("%8s", s[0..5]);
assert(r == " hello");
byte[] arrbyte = new byte[4];
arrbyte[0] = 100;
arrbyte[1] = -99;
arrbyte[3] = 0;
r = std.string.format(arrbyte);
assert(r == "[100,-99,0,0]");
ubyte[] arrubyte = new ubyte[4];
arrubyte[0] = 100;
arrubyte[1] = 200;
arrubyte[3] = 0;
r = std.string.format(arrubyte);
assert(r == "[100,200,0,0]");
short[] arrshort = new short[4];
arrshort[0] = 100;
arrshort[1] = -999;
arrshort[3] = 0;
r = std.string.format(arrshort);
assert(r == "[100,-999,0,0]");
r = std.string.format("%s",arrshort);
assert(r == "[100,-999,0,0]");
ushort[] arrushort = new ushort[4];
arrushort[0] = 100;
arrushort[1] = 20_000;
arrushort[3] = 0;
r = std.string.format(arrushort);
assert(r == "[100,20000,0,0]");
int[] arrint = new int[4];
arrint[0] = 100;
arrint[1] = -999;
arrint[3] = 0;
r = std.string.format(arrint);
assert(r == "[100,-999,0,0]");
r = std.string.format("%s",arrint);
assert(r == "[100,-999,0,0]");
long[] arrlong = new long[4];
arrlong[0] = 100;
arrlong[1] = -999;
arrlong[3] = 0;
r = std.string.format(arrlong);
assert(r == "[100,-999,0,0]");
r = std.string.format("%s",arrlong);
assert(r == "[100,-999,0,0]");
ulong[] arrulong = new ulong[4];
arrulong[0] = 100;
arrulong[1] = 999;
arrulong[3] = 0;
r = std.string.format(arrulong);
assert(r == "[100,999,0,0]");
string[] arr2 = new string[4];
arr2[0] = "hello";
arr2[1] = "world";
arr2[3] = "foo";
r = std.string.format(arr2);
assert(r == "[hello,world,,foo]");
r = std.string.format("%.8d", 7);
assert(r == "00000007");
r = std.string.format("%.8x", 10);
assert(r == "0000000a");
r = std.string.format("%-3d", 7);
assert(r == "7 ");
r = std.string.format("%*d", -3, 7);
assert(r == "7 ");
r = std.string.format("%.*d", -3, 7);
assert(r == "7");
//typedef int myint;
//myint m = -7;
//r = std.string.format(m);
//assert(r == "-7");
r = std.string.format("abc"c);
assert(r == "abc");
r = std.string.format("def"w);
assert(r == "def");
r = std.string.format("ghi"d);
assert(r == "ghi");
void* p = cast(void*)0xDEADBEEF;
r = std.string.format(p);
assert(r == "DEADBEEF");
r = std.string.format("%#x", 0xabcd);
assert(r == "0xabcd");
r = std.string.format("%#X", 0xABCD);
assert(r == "0XABCD");
r = std.string.format("%#o", octal!12345);
assert(r == "012345");
r = std.string.format("%o", 9);
assert(r == "11");
r = std.string.format("%+d", 123);
assert(r == "+123");
r = std.string.format("%+d", -123);
assert(r == "-123");
r = std.string.format("% d", 123);
assert(r == " 123");
r = std.string.format("% d", -123);
assert(r == "-123");
r = std.string.format("%%");
assert(r == "%");
r = std.string.format("%d", true);
assert(r == "1");
r = std.string.format("%d", false);
assert(r == "0");
r = std.string.format("%d", 'a');
assert(r == "97");
wchar wc = 'a';
r = std.string.format("%d", wc);
assert(r == "97");
dchar dc = 'a';
r = std.string.format("%d", dc);
assert(r == "97");
byte b = byte.max;
r = std.string.format("%x", b);
assert(r == "7f");
r = std.string.format("%x", ++b);
assert(r == "80");
r = std.string.format("%x", ++b);
assert(r == "81");
short sh = short.max;
r = std.string.format("%x", sh);
assert(r == "7fff");
r = std.string.format("%x", ++sh);
assert(r == "8000");
r = std.string.format("%x", ++sh);
assert(r == "8001");
i = int.max;
r = std.string.format("%x", i);
assert(r == "7fffffff");
r = std.string.format("%x", ++i);
assert(r == "80000000");
r = std.string.format("%x", ++i);
assert(r == "80000001");
r = std.string.format("%x", 10);
assert(r == "a");
r = std.string.format("%X", 10);
assert(r == "A");
r = std.string.format("%x", 15);
assert(r == "f");
r = std.string.format("%X", 15);
assert(r == "F");
Object c = null;
r = std.string.format(c);
assert(r == "null");
enum TestEnum
{
Value1, Value2
}
r = std.string.format("%s", TestEnum.Value2);
assert(r == "1");
immutable(char[5])[int] aa = ([3:"hello", 4:"betty"]);
r = std.string.format("%s", aa.values);
assert(r == "[[h,e,l,l,o],[b,e,t,t,y]]");
r = std.string.format("%s", aa);
assert(r == "[3:[h,e,l,l,o],4:[b,e,t,t,y]]");
static const dchar[] ds = ['a','b'];
for (int j = 0; j < ds.length; ++j)
{
r = std.string.format(" %d", ds[j]);
if (j == 0)
assert(r == " 97");
else
assert(r == " 98");
}
r = std.string.format(">%14d<, ", 15, [1,2,3]);
assert(r == "> 15<, [1,2,3]");
assert(std.string.format("%8s", "bar") == " bar");
assert(std.string.format("%8s", "b\u00e9ll\u00f4") == " b\u00e9ll\u00f4");
}
unittest
{
// bugzilla 3479
auto stream = appender!(char[])();
formattedWrite(stream, "%2$.*1$d", 12, 10);
assert(stream.data == "000000000010", stream.data);
}
| D |
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="VAR_17_agm-1161794141.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="VAR_17_agm-1161794141.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
| D |
# FIXED
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/source/F2837xS_Adc.c
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_device.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/assert.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/linkage.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdarg.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdbool.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stddef.h
F2837xS_Adc.obj: C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdint.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_adc.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_analogsubsys.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cla.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cmpss.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cputimer.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dac.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dcsm.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dma.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_defaultisr.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_ecap.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_emif.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_epwm.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_epwm_xbar.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_eqep.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_flash.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_gpio.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_i2c.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_input_xbar.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_mcbsp.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_memconfig.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_nmiintrupt.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_output_xbar.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_piectrl.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_pievect.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sci.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sdfm.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_spi.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sysctrl.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_trig_xbar.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_upp.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_xbar.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_xint.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Examples.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_GlobalPrototypes.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_cputimervars.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Cla_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_EPwm_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Adc_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Emif_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Gpio_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_I2c_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Pie_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Dma_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_SysCtrl_defines.h
F2837xS_Adc.obj: C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Upp_defines.h
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/source/F2837xS_Adc.c:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_device.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/assert.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/linkage.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdarg.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdbool.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stddef.h:
C:/CCStudio_v8/ccsv8/tools/compiler/ti-cgt-c2000_17.6.0.STS/include/stdint.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_adc.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_analogsubsys.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cla.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cmpss.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_cputimer.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dac.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dcsm.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_dma.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_defaultisr.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_ecap.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_emif.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_epwm.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_epwm_xbar.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_eqep.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_flash.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_gpio.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_i2c.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_input_xbar.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_mcbsp.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_memconfig.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_nmiintrupt.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_output_xbar.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_piectrl.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_pievect.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sci.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sdfm.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_spi.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_sysctrl.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_trig_xbar.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_upp.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_xbar.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_headers/include/F2837xS_xint.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Examples.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_GlobalPrototypes.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_cputimervars.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Cla_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_EPwm_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Adc_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Emif_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Gpio_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_I2c_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Pie_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Dma_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_SysCtrl_defines.h:
C:/ayush2_nigam4/repo/trunk/lab2switchchecker/v140/F2837xS_common/include/F2837xS_Upp_defines.h:
| D |
512 sergei_eisenstein
1 edwin_s_porter
15 dw_griffith
2075 leni_riefenstahl
542 rupert_julian
1570 wesley_ruggles
2595 cecil_b_demille
2084 george_stevens
860 roland_west
1585 michael_curtiz
563 clyde_bruckman
1598 rouben_mamoulian
2099 1028179-william_a_seiter
583 bonnie_hill
1463 frank_r_strayer
1613 jean_vigo
2126 sam_wood
591 george_fitzmaurice
1109 norman_z_mcleod
602 albert_parker
1121 rene_clair
1634 george_cukor
100 charlie_chaplin
2149 1050292-david_butler
1140 william_wellman
119 yakov_protazanov
2178 robert_n_bradbury
643 josef_von_sternberg
132 daniel_bressanutti
135 fritz_lang
1672 ernest_b_schoedsack
655 walter_ruttmann
2192 gregory_la_cava
1169 frank_capra
148 herbert_blache
2657 archie_mayo
673 ja_howe
1187 mervyn_leroy
166 robert_wiene
681 paul_leni
1706 alexander_korda
690 walt_disney
2234 robert_z_leonard
187 carl_boese
2762 enrique_tovar_avalos
705 1051480-david_sutherland
714 carl_theodor_dreyer
1229 frank_borzage
2779 lambert_hillyer
1756 mark_sandrich
734 edward_m_sedgwick
223 fw_murnau
749 _0064600
1270 ernst_lubitsch
1789 john_cromwell
2304 charlie_s_chaplin
260 john_s_robertson
1798 charley_rogers
775 james_w_horne
2519 1072502-marc_connelly
782 georg_wilhelm_pabst
274 dorothy_arzner
796 dziga_verto
800 luis_bunuel
1826 stuart_marshall
806 robert_florey
1321 norman_mcleod
2351 william_wyler
1331 victor_halperin
821 lewis_milestone
312 benjamin_christensen
1860 1059518-alexander_hall
325 robert_flaherty
1870 howard_hawks
348 fred_c_newmeyer
1377 irving_pichel
1893 770890969
361 buster-keaton-jr
2622 _0176699
1413 charles-brabin
2442 william_cameron_menzies
1422 leo_mccarey
918 victor_heerman
1434 frank_lloyd
2463 louis_j_gasnier
929 clarence_brown
951 edmund_goulding
1474 robert_f_hill
455 alfred_hitchcock
979 jean_cocteau
1495 thornton_freeland
991 james_whale
1528 lloyd_bacon
| D |
module graphic.gadget.goal;
import std.algorithm; // max
import std.math;
import basics.globals; // fileImageMouse
import basics.help; // len
import basics.topology;
import graphic.cutbit;
import graphic.gadget;
import graphic.internal;
import graphic.torbit;
import net.ac;
import net.style;
import net.repdata;
import physics.tribe;
import tile.occur;
/* owners are always drawn onto the goal, unless the owner is GARDEN.
* When overtime runs out, set drawWithNoSign.
*/
class Goal : GadgetWithTribeList {
public:
this(const(Topology) top, in GadOcc levelpos) { super(top, levelpos); }
this(in Goal rhs) { super(rhs); }
override Goal clone() const { return new Goal(this); }
override void drawExtrasOnTopOfLand(in Style st) const
{
drawOwner(st, 2);
}
void drawNoSign() const
{
const(Cutbit) c = InternalImage.mouse.toCutbit;
c.draw(Point(
this.loc.x + tile.trigger.x + tile.triggerXl / 2 - c.xl / 2,
this.loc.y + tile.trigger.y + tile.triggerYl / 2 - c.yl),
2, 2); // (2,2) are the (xf,yf) of the international "no" sign
}
protected:
override void onDraw(in Style markWithArrow) const
{
foreach (st; tribes)
drawOwner(st, hasTribe(markWithArrow) ? 1 : 0);
}
private:
void drawOwner(in Style st, in int xf) const
{
if (st == Style.garden || ! tribes.canFind(st))
return;
int offset = tribes.countUntil(st) & 0x7FFF_FFFF;
auto icon = graphic.internal.getGoalMarker(st);
icon.draw(Point(this.loc.x + tile.trigger.x
+ tile.triggerXl/2 - icon.xl/2
+ (20 * offset++) - 10 * (tribes.len - 1),
// Sit 12 pixels above the top of the trigger area.
// Reason: Amanda's tent is very high, arrow should overlap tent.
this.loc.y + tile.trigger.y - icon.yl - 12), xf, 0);
}
}
| D |
module tdd.c.td_json_client;
extern(C) {
void *td_json_client_create();
void td_json_client_send(void *client, const(char*) request);
const(char*) td_json_client_receive(void *client, double timeout);
const(char*) td_json_client_execute(void *client, const(char*) request);
void td_json_client_destroy(void *client);
}
| D |
/Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Download.o : /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Alamofire.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Download.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Error.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Manager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/MultipartFormData.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Notifications.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ParameterEncoding.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Request.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Response.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ResponseSerialization.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Result.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Stream.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Timeline.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Upload.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
/Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Download~partial.swiftmodule : /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Alamofire.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Download.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Error.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Manager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/MultipartFormData.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Notifications.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ParameterEncoding.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Request.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Response.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ResponseSerialization.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Result.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Stream.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Timeline.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Upload.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
/Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Download~partial.swiftdoc : /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Alamofire.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Download.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Error.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Manager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/MultipartFormData.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/NetworkReachabilityManager.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Notifications.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ParameterEncoding.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Request.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Response.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ResponseSerialization.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Result.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/ServerTrustPolicy.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Stream.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Timeline.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Upload.swift /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Alamofire/Source/Validation.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/Pods/Target\ Support\ Files/Alamofire/Alamofire-umbrella.h /Users/shahid/Desktop/Projects/Swift2/Raywenderlich/RayCore/FlickrSwift/DerivedData/FlickrSwift/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule
| D |
/**
Compile with version=sqlite_extended_metadata_available
if your sqlite is compiled with the
SQLITE_ENABLE_COLUMN_METADATA C-preprocessor symbol.
If you enable that, you get the ability to use the
queryDataObject() function with sqlite. (You can still
use DataObjects, but you'll have to set up the mappings
manually without the extended metadata.)
*/
module arsd.sqlite;
pragma(lib, "sqlite3");
version(linux)
pragma(lib, "dl"); // apparently sqlite3 depends on this
public import arsd.database;
import std.exception;
import std.string;
import std.c.stdlib;
import core.exception;
import core.memory;
import std.file;
import std.conv;
/*
NOTE:
This only works correctly on INSERTs if the user can grow the
database file! This means he must have permission to write to
both the file and the directory it is in.
*/
/**
The Database interface provides a consistent and safe way to access sql RDBMSs.
Why are all the classes scope? To ensure the database connection is closed when you are done with it.
The destructor cleans everything up.
(maybe including rolling back a transaction if one is going and it errors.... maybe, or that could bne
scope(exit))
*/
Sqlite openDBAndCreateIfNotPresent(string filename, string sql, void delegate(Sqlite db) initalize = null){
if(exists(filename))
return new Sqlite(filename);
else {
auto db = new Sqlite(filename);
db.exec(sql);
if(initalize !is null)
initalize(db);
return db;
}
}
/*
import std.stdio;
void main() {
Database db = new Sqlite("test.sqlite.db");
db.query("CREATE TABLE users (id integer, name text)");
db.query("INSERT INTO users values (?, ?)", 1, "hello");
foreach(line; db.query("SELECT * FROM users")) {
writefln("%s %s", line[0], line["name"]);
}
}
*/
class Sqlite : Database {
public:
this(string filename, int flags = SQLITE_OPEN_READWRITE) {
/+
int error = sqlite3_open_v2(toStringz(filename), &db, flags, null);
if(error == SQLITE_CANTOPEN)
throw new DatabaseException("omg cant open");
if(error != SQLITE_OK)
throw new DatabaseException("db open " ~ error());
+/
int error = sqlite3_open(toStringz(filename), &db);
if(error != SQLITE_OK)
throw new DatabaseException(this.error());
}
~this(){
if(sqlite3_close(db) != SQLITE_OK)
throw new DatabaseException(error());
}
// my extension for easier editing
version(sqlite_extended_metadata_available) {
ResultByDataObject queryDataObject(T...)(string sql, T t) {
// modify sql for the best data object grabbing
sql = fixupSqlForDataObjectUse(sql);
auto s = Statement(this, sql);
foreach(i, arg; t) {
s.bind(i + 1, arg);
}
auto magic = s.execute(true); // fetch extended metadata
return ResultByDataObject(cast(SqliteResult) magic, magic.extendedMetadata, this);
}
}
override void startTransaction() {
query("BEGIN TRANSACTION");
}
override ResultSet queryImpl(string sql, Variant[] args...) {
auto s = Statement(this, sql);
foreach(int i, arg; args) {
s.bind(i + 1, arg);
}
return s.execute();
}
override string escape(string sql) {
if(sql is null)
return null;
char* got = sqlite3_mprintf("%q", toStringz(sql)); // FIXME: might have to be %Q, need to check this, but I think the other impls do the same as %q
auto orig = got;
string esc;
while(*got) {
esc ~= (*got);
got++;
}
sqlite3_free(orig);
return esc;
}
string error(){
import core.stdc.string : strlen;
char* mesg = sqlite3_errmsg(db);
char[] m;
sizediff_t a = strlen(mesg);
m.length = a;
for(int v = 0; v < a; v++)
m[v] = mesg[v];
return assumeUnique(m);
}
int affectedRows(){
return sqlite3_changes(db);
}
int lastInsertId(){
return cast(int) sqlite3_last_insert_rowid(db);
}
int exec(string sql, void delegate (char[][char[]]) onEach = null) {
char* mesg;
if(sqlite3_exec(db, toStringz(sql), &callback, &onEach, &mesg) != SQLITE_OK) {
import core.stdc.string : strlen;
char[] m;
sizediff_t a = strlen(mesg);
m.length = a;
for(int v = 0; v < a; v++)
m[v] = mesg[v];
sqlite3_free(mesg);
throw new DatabaseException("exec " ~ m.idup);
}
return 0;
}
/*
Statement prepare(string sql){
sqlite3_stmt * s;
if(sqlite3_prepare_v2(db, toStringz(sql), cast(int) sql.length, &s, null) != SQLITE_OK)
throw new DatabaseException("prepare " ~ error());
Statement a = new Statement(s);
return a;
}
*/
private:
sqlite3* db;
}
class SqliteResult : ResultSet {
int getFieldIndex(string field) {
foreach(int i, n; columnNames)
if(n == field)
return i;
throw new Exception("no such field " ~ field);
}
string[] fieldNames() {
return columnNames;
}
// this is a range that can offer other ranges to access it
bool empty() {
return position == rows.length;
}
Row front() {
Row r;
r.resultSet = this;
if(rows.length <= position)
throw new Exception("Result is empty");
foreach(c; rows[position]) {
r.row ~= c.coerce!(string);
}
return r;
}
void popFront() {
position++;
}
int length() {
return cast(int) rows.length;
}
this(Variant[][] rows, char[][] columnNames) {
this.rows = rows;
foreach(c; columnNames)
this.columnNames ~= c.idup;
}
private:
string[] columnNames;
Variant[][] rows;
int position = 0;
}
struct Statement {
private this(Sqlite db, sqlite3_stmt * S) {
this.db = db;
s = S;
finalized = false;
}
Sqlite db;
this(Sqlite db, string sql) {
this.db = db;
if(sqlite3_prepare_v2(db.db, toStringz(sql), cast(int) sql.length, &s, null) != SQLITE_OK)
throw new DatabaseException(db.error());
}
version(sqlite_extended_metadata_available)
Tuple!(string, string)[string] extendedMetadata;
ResultSet execute(bool fetchExtendedMetadata = false) {
bool first = true;
int count;
int numRows = 0;
int r = 0;
// FIXME: doesn't handle busy database
while( SQLITE_ROW == sqlite3_step(s) ){
numRows++;
if(numRows >= rows.length)
rows.length = rows.length + 8;
if(first){
count = sqlite3_column_count(s);
columnNames.length = count;
for(int a = 0; a < count; a++){
import core.stdc.string : strlen;
char* str = sqlite3_column_name(s, a);
sizediff_t l = strlen(str);
columnNames[a].length = l;
for(int b = 0; b < l; b++)
columnNames[a][b] = str[b];
version(sqlite_extended_metadata_available) {
if(fetchExtendedMetadata) {
string origtbl;
string origcol;
const(char)* rofl;
rofl = sqlite3_column_table_name(s, a);
if(rofl is null)
throw new Exception("null table name pointer");
while(*rofl) {
origtbl ~= *rofl;
rofl++;
}
rofl = sqlite3_column_origin_name(s, a);
if(rofl is null)
throw new Exception("null colum name pointer");
while(*rofl) {
origcol ~= *rofl;
rofl++;
}
extendedMetadata[columnNames[a].idup] = tuple(origtbl, origcol);
}
}
}
first = false;
}
rows[r].length = count;
for(int a = 0; a < count; a++){
Variant v;
final switch(sqlite3_column_type(s, a)){
case SQLITE_INTEGER:
v = sqlite3_column_int(s, a);
break;
case SQLITE_FLOAT:
v = sqlite3_column_double(s, a);
break;
case SQLITE3_TEXT:
char* str = sqlite3_column_text(s, a);
char[] st;
import core.stdc.string : strlen;
sizediff_t l = strlen(str);
st.length = l;
for(int aa = 0; aa < l; aa++)
st[aa] = str[aa];
v = assumeUnique(st);
break;
case SQLITE_BLOB:
byte* str = cast(byte*) sqlite3_column_blob(s, a);
byte[] st;
int l = sqlite3_column_bytes(s, a);
st.length = l;
for(int aa = 0; aa < l; aa++)
st[aa] = str[aa];
v = assumeUnique(st);
break;
case SQLITE_NULL:
v = null;
break;
}
rows[r][a] = v;
}
r++;
}
rows.length = numRows;
length = numRows;
position = 0;
executed = true;
reset();
return new SqliteResult(rows.dup, columnNames);
}
/*
template extract(A, T, R...){
void extract(A args, out T t, out R r){
if(r.length + 1 != args.length)
throw new DatabaseException("wrong places");
args[0].to(t);
static if(r.length)
extract(args[1..$], r);
}
}
*/
/*
bool next(T, R...)(out T t, out R r){
if(position == length)
return false;
extract(rows[position], t, r);
position++;
return true;
}
*/
bool step(out Variant[] row){
assert(executed);
if(position == length)
return false;
row = rows[position];
position++;
return true;
}
bool step(out Variant[char[]] row){
assert(executed);
if(position == length)
return false;
for(int a = 0; a < length; a++)
row[columnNames[a].idup] = rows[position][a];
position++;
return true;
}
void reset(){
if(sqlite3_reset(s) != SQLITE_OK)
throw new DatabaseException("reset " ~ db.error());
}
void resetBindings(){
sqlite3_clear_bindings(s);
}
void resetAll(){
reset;
resetBindings;
executed = false;
}
int bindNameLookUp(const char[] name){
int a = sqlite3_bind_parameter_index(s, toStringz(name));
if(a == 0)
throw new DatabaseException("bind name lookup failed " ~ db.error());
return a;
}
bool next(T, R...)(out T t, out R r){
assert(executed);
if(position == length)
return false;
extract(rows[position], t, r);
position++;
return true;
}
template bindAll(T, R...){
void bindAll(T what, R more){
bindAllHelper(1, what, more);
}
}
template exec(T, R...){
void exec(T what, R more){
bindAllHelper(1, what, more);
execute();
}
}
void bindAllHelper(A, T, R...)(A where, T what, R more){
bind(where, what);
static if(more.length)
bindAllHelper(where + 1, more);
}
//void bind(T)(string name, T value) {
//bind(bindNameLookUp(name), value);
//}
// This should be a template, but grrrr.
void bind (const char[] name, const char[] value){ bind(bindNameLookUp(name), value); }
void bind (const char[] name, int value){ bind(bindNameLookUp(name), value); }
void bind (const char[] name, float value){ bind(bindNameLookUp(name), value); }
void bind (const char[] name, const byte[] value){ bind(bindNameLookUp(name), value); }
void bind(int col, const char[] value){
if(value is null) {
if(sqlite3_bind_null(s, col) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
} else {
if(sqlite3_bind_text(s, col, value.ptr, cast(int) value.length, cast(void*)-1) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
}
}
void bind(int col, float value){
if(sqlite3_bind_double(s, col, value) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
}
void bind(int col, int value){
if(sqlite3_bind_int(s, col, value) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
}
void bind(int col, const byte[] value){
if(value is null) {
if(sqlite3_bind_null(s, col) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
} else {
if(sqlite3_bind_blob(s, col, cast(void*)value.ptr, cast(int) value.length, cast(void*)-1) != SQLITE_OK)
throw new DatabaseException("bind " ~ db.error());
}
}
void bind(int col, Variant v) {
if(v.peek!int)
bind(col, v.get!int);
if(v.peek!string)
bind(col, v.get!string);
if(v.peek!float)
bind(col, v.get!float);
if(v.peek!(byte[]))
bind(col, v.get!(byte[]));
if(v.peek!(void*) && v.get!(void*) is null)
bind(col, cast(string) null);
}
~this(){
if(!finalized)
finalize();
}
void finalize(){
if(finalized)
return;
if(sqlite3_finalize(s) != SQLITE_OK)
throw new DatabaseException("finalize " ~ db.error());
finalized = true;
}
private:
Variant[][] rows;
char[][] columnNames;
int length;
int position;
bool finalized;
sqlite3_stmt * s;
bool executed;
new(size_t sz)
{
void* p;
p = std.c.stdlib.malloc(sz);
if (!p)
throw new OutOfMemoryError(__FILE__, __LINE__);
GC.addRange(p, sz);
return p;
}
delete(void* p)
{
if (p)
{ GC.removeRange(p);
std.c.stdlib.free(p);
}
}
}
version(sqlite_extended_metadata_available) {
import std.typecons;
struct ResultByDataObject {
this(SqliteResult r, Tuple!(string, string)[string] mappings, Sqlite db) {
result = r;
this.db = db;
this.mappings = mappings;
}
Tuple!(string, string)[string] mappings;
ulong length() { return result.length; }
bool empty() { return result.empty; }
void popFront() { result.popFront(); }
DataObject front() {
return new DataObject(db, result.front.toAA, mappings);
}
// would it be good to add a new() method? would be valid even if empty
// it'd just fill in the ID's at random and allow you to do the rest
@disable this(this) { }
SqliteResult result;
Sqlite db;
}
}
extern(C) int callback(void* cb, int howmany, char** text, char** columns){
if(cb is null)
return 0;
void delegate(char[][char[]]) onEach = *cast(void delegate(char[][char[]])*)cb;
char[][char[]] row;
import core.stdc.string : strlen;
for(int a = 0; a < howmany; a++){
sizediff_t b = strlen(columns[a]);
char[] buf;
buf.length = b;
for(int c = 0; c < b; c++)
buf[c] = columns[a][c];
sizediff_t d = strlen(text[a]);
char[] t;
t.length = d;
for(int c = 0; c < d; c++)
t[c] = text[a][c];
row[buf.idup] = t;
}
onEach(row);
return 0;
}
extern(C){
alias void sqlite3;
alias void sqlite3_stmt;
int sqlite3_changes(sqlite3*);
int sqlite3_close(sqlite3 *);
int sqlite3_exec(
sqlite3*, /* An open database */
const(char) *sql, /* SQL to be evaluted */
int function(void*,int,char**,char**), /* Callback function */
void *, /* 1st argument to callback */
char **errmsg /* Error msg written here */
);
int sqlite3_open(
const(char) *filename, /* Database filename (UTF-8) */
sqlite3 **ppDb /* OUT: SQLite db handle */
);
/+
int sqlite3_open_v2(
char *filename, /* Database filename (UTF-8) */
sqlite3 **ppDb, /* OUT: SQLite db handle */
int flags, /* Flags */
char *zVfs /* Name of VFS module to use */
);
+/
int sqlite3_prepare_v2(
sqlite3 *db, /* Database handle */
const(char) *zSql, /* SQL statement, UTF-8 encoded */
int nByte, /* Maximum length of zSql in bytes. */
sqlite3_stmt **ppStmt, /* OUT: Statement handle */
char **pzTail /* OUT: Pointer to unused portion of zSql */
);
int sqlite3_finalize(sqlite3_stmt *pStmt);
int sqlite3_step(sqlite3_stmt*);
long sqlite3_last_insert_rowid(sqlite3*);
const int SQLITE_OK = 0;
const int SQLITE_ROW = 100;
const int SQLITE_DONE = 101;
const int SQLITE_INTEGER = 1; // int
const int SQLITE_FLOAT = 2; // float
const int SQLITE3_TEXT = 3; // char[]
const int SQLITE_BLOB = 4; // byte[]
const int SQLITE_NULL = 5; // void* = null
char *sqlite3_mprintf(const char*,...);
int sqlite3_reset(sqlite3_stmt *pStmt);
int sqlite3_clear_bindings(sqlite3_stmt*);
int sqlite3_bind_parameter_index(sqlite3_stmt*, const(char) *zName);
int sqlite3_bind_blob(sqlite3_stmt*, int, void*, int n, void*);
//int sqlite3_bind_blob(sqlite3_stmt*, int, void*, int n, void(*)(void*));
int sqlite3_bind_double(sqlite3_stmt*, int, double);
int sqlite3_bind_int(sqlite3_stmt*, int, int);
int sqlite3_bind_null(sqlite3_stmt*, int);
int sqlite3_bind_text(sqlite3_stmt*, int, const(char)*, int n, void*);
//int sqlite3_bind_text(sqlite3_stmt*, int, char*, int n, void(*)(void*));
void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
double sqlite3_column_double(sqlite3_stmt*, int iCol);
int sqlite3_column_int(sqlite3_stmt*, int iCol);
char *sqlite3_column_text(sqlite3_stmt*, int iCol);
int sqlite3_column_type(sqlite3_stmt*, int iCol);
char *sqlite3_column_name(sqlite3_stmt*, int N);
int sqlite3_column_count(sqlite3_stmt *pStmt);
void sqlite3_free(void*);
char *sqlite3_errmsg(sqlite3*);
const int SQLITE_OPEN_READONLY = 0x1;
const int SQLITE_OPEN_READWRITE = 0x2;
const int SQLITE_OPEN_CREATE = 0x4;
const int SQLITE_CANTOPEN = 14;
// will need these to enable support for DataObjects here
const (char *)sqlite3_column_database_name(sqlite3_stmt*,int);
const (char *)sqlite3_column_table_name(sqlite3_stmt*,int);
const (char *)sqlite3_column_origin_name(sqlite3_stmt*,int);
}
| D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.build/DataFile.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.build/DataFile~partial.swiftmodule : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.build/DataFile~partial.swiftdoc : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+Polymorphic.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Sequence.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Collection+Safe.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Cache.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Extendable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/EmptyInitializable.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DataFile.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+CaseInsensitiveCompare.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Semaphore.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/String.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Dispatch.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Lock.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Portal.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/FileProtocol.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/StaticDataBuffer.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/DispatchTime+Utilities.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Bits.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Exports.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Int+Hex.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/Array.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/WorkingDirectory.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/CSQLite.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
| D |
module dwt.internal.mozilla.nsIIOService;
import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;
import dwt.internal.mozilla.nsIProtocolHandler;
import dwt.internal.mozilla.nsIChannel;
import dwt.internal.mozilla.nsIURI;
import dwt.internal.mozilla.nsIFile;
import dwt.internal.mozilla.nsStringAPI;
const char[] NS_IIOSERVICE_IID_STR = "bddeda3f-9020-4d12-8c70-984ee9f7935e";
const nsIID NS_IIOSERVICE_IID=
{0xbddeda3f, 0x9020, 0x4d12,
[ 0x8c, 0x70, 0x98, 0x4e, 0xe9, 0xf7, 0x93, 0x5e ]};
interface nsIIOService : nsISupports {
static const char[] IID_STR = NS_IIOSERVICE_IID_STR;
static const nsIID IID = NS_IIOSERVICE_IID;
extern(System):
nsresult GetProtocolHandler(char *aScheme, nsIProtocolHandler *_retval);
nsresult GetProtocolFlags(char *aScheme, PRUint32 *_retval);
nsresult NewURI(nsACString * aSpec, char *aOriginCharset, nsIURI aBaseURI, nsIURI *_retval);
nsresult NewFileURI(nsIFile aFile, nsIURI *_retval);
nsresult NewChannelFromURI(nsIURI aURI, nsIChannel *_retval);
nsresult NewChannel(nsACString * aSpec, char *aOriginCharset, nsIURI aBaseURI, nsIChannel *_retval);
nsresult GetOffline(PRBool *aOffline);
nsresult SetOffline(PRBool aOffline);
nsresult AllowPort(PRInt32 aPort, char *aScheme, PRBool *_retval);
nsresult ExtractScheme(nsACString * urlString, nsACString * _retval);
}
| D |
<?xml version="1.0" encoding="ASCII" standalone="no"?>
<di:SashWindowsMngr xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
<pageList>
<availablePage>
<emfPageIdentifier href="VAR_5_MobileMedia-1329952573.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</availablePage>
</pageList>
<sashModel currentSelection="//@sashModel/@windows.0/@children.0">
<windows>
<children xsi:type="di:TabFolder">
<children>
<emfPageIdentifier href="VAR_5_MobileMedia-1329952573.notation#_copSALmGEeKQQp7P9cQvNQ"/>
</children>
</children>
</windows>
</sashModel>
</di:SashWindowsMngr>
| D |
a seat for the rider of a horse or camel
a pass or ridge that slopes gently between two peaks (is shaped like a saddle)
cut of meat (especially mutton or lamb) consisting of part of the backbone and both loins
a piece of leather across the instep of a shoe
a seat for the rider of a bicycle
posterior part of the back of a domestic fowl
put a saddle on
load or burden
impose a task upon, assign a responsibility to
| D |
instance Bdt_1014_Bandit_L(Npc_Default)
{
name[0] = "Brago";
guild = GIL_BDT;
id = 1014;
voice = 6;
flags = 0;
npcType = npctype_main;
aivar[AIV_EnemyOverride] = TRUE;
B_SetAttributesToChapter(self,2);
fight_tactic = FAI_HUMAN_MASTER;
EquipItem(self,ItMw_1h_Sld_Axe);
CreateInvItems(self,ItRw_Bolt,5);
CreateInvItems(self,ItRw_Crossbow_Light,1);
B_CreateAmbientInv(self);
CreateInvItems(self,ItKe_Bandit,1);
CreateInvItems(self,ItWr_SaturasFirstMessage_Addon_Sealed,1);
B_SetNpcVisual(self,MALE,"Hum_Head_Psionic",Face_N_Mud,BodyTex_N,itar_bdt_f);
Mdl_SetModelFatness(self,0);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,30);
daily_routine = RTN_Start_1014;
};
func void RTN_Start_1014()
{
TA_Stand_ArmsCrossed(0,0,12,0,"NW_XARDAS_BANDITS_LEFT");
TA_Stand_ArmsCrossed(12,0,0,0,"NW_XARDAS_BANDITS_LEFT");
};
| D |
module creator.utils.link;
import std.process;
void openLink(string link) {
version(Windows) {
spawnShell("start "~link);
}
version(OSX) {
spawnShell("open "~link);
}
version(Posix) {
spawnShell("xdf-open "~link);
}
} | D |
module tests.ut.types;
import reggae.types;
import unit_threaded;
@("CompilerFlags")
@safe pure unittest {
static immutable expected = ["-g", "-debug"];
CompilerFlags("-g -debug").value.should == expected;
CompilerFlags(["-g", "-debug"]).value.should == expected;
CompilerFlags("-g", "-debug").value.should == expected;
}
| D |
/***********************************************************************\
* dxerr9.d *
* *
* Windows API header module *
* *
* Translated from MinGW Windows headers *
* *
* Placed into public domain *
\***********************************************************************/
module os.win32.directx.dxerr9;
/*
dxerr9.h - Header file for the DirectX 9 Error API
Written by Filip Navara <[email protected]>
Ported to D by James Pelcis <[email protected]>
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
private import os.win32.windef;
extern (Windows) {
char* DXGetErrorString9A(HRESULT);
WCHAR* DXGetErrorString9W(HRESULT);
char* DXGetErrorDescription9A(HRESULT);
WCHAR* DXGetErrorDescription9W(HRESULT);
HRESULT DXTraceA(char*, DWORD, HRESULT, char*, BOOL);
HRESULT DXTraceW(char*, DWORD, HRESULT, WCHAR*, BOOL);
}
version (Unicode) {
alias DXGetErrorString9W DXGetErrorString9;
alias DXGetErrorDescription9W DXGetErrorDescription9;
alias DXTraceW DXTrace;
} else {
alias DXGetErrorString9A DXGetErrorString9;
alias DXGetErrorDescription9A DXGetErrorDescription9;
alias DXTraceA DXTrace;
}
debug (dxerr) {
HRESULT DXTRACE_MSG(TCHAR* str) {
return DXTrace(__FILE__, cast(DWORD)__LINE__, 0, str, FALSE);
}
HRESULT DXTRACE_ERR(TCHAR* str, HRESULT hr) {
return DXTrace(__FILE__, cast(DWORD)__LINE__, hr, str, FALSE);
}
HRESULT DXTRACE_ERR_NOMSGBOX(TCHAR* str, HRESULT hr) {
return DXTrace(__FILE__, cast(DWORD)__LINE__, hr, str, TRUE);
}
} else {
HRESULT DXTRACE_MSG(TCHAR* str) {
return 0;
}
HRESULT DXTRACE_ERR(TCHAR* str, HRESULT hr) {
return hr;
}
HRESULT DXTRACE_ERR_NOMSGBOX(TCHAR* str, HRESULT hr) {
return hr;
}
}
| D |
/Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/DerivedData/GoogleMap/Build/Intermediates.noindex/GoogleMap.build/Debug-iphonesimulator/GoogleMap.build/Objects-normal/x86_64/AppDelegate.o : /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/SceneDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/AppDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/ViewController.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/MapViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadata.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihood.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlace.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteTableDataSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlusCode.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceFieldMask.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapID+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStampStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStyleSpan.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteSessionToken.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompletePrediction.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceViewportInfo.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFetcher.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteResultsViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFilter.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygonLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlayLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GooglePlaces.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceTypes.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAccessibilityLabels.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesDeprecationUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLocationOptions.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSDeprecationMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesErrors.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSOpeningHours.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesClient.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteMatchFragment.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAddressComponent.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadataList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihoodList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/device.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/DerivedData/GoogleMap/Build/Intermediates.noindex/GoogleMap.build/Debug-iphonesimulator/GoogleMap.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/SceneDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/AppDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/ViewController.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/MapViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadata.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihood.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlace.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteTableDataSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlusCode.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceFieldMask.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapID+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStampStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStyleSpan.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteSessionToken.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompletePrediction.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceViewportInfo.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFetcher.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteResultsViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFilter.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygonLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlayLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GooglePlaces.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceTypes.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAccessibilityLabels.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesDeprecationUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLocationOptions.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSDeprecationMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesErrors.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSOpeningHours.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesClient.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteMatchFragment.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAddressComponent.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadataList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihoodList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/device.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/DerivedData/GoogleMap/Build/Intermediates.noindex/GoogleMap.build/Debug-iphonesimulator/GoogleMap.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/SceneDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/AppDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/ViewController.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/MapViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadata.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihood.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlace.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteTableDataSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlusCode.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceFieldMask.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapID+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStampStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStyleSpan.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteSessionToken.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompletePrediction.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceViewportInfo.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFetcher.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteResultsViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFilter.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygonLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlayLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GooglePlaces.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceTypes.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAccessibilityLabels.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesDeprecationUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLocationOptions.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSDeprecationMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesErrors.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSOpeningHours.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesClient.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteMatchFragment.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAddressComponent.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadataList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihoodList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/device.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/DerivedData/GoogleMap/Build/Intermediates.noindex/GoogleMap.build/Debug-iphonesimulator/GoogleMap.build/Objects-normal/x86_64/AppDelegate~partial.swiftsourceinfo : /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/SceneDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/AppDelegate.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/ViewController.swift /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/GoogleMap/MapViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/lib/swift/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Accessibility.framework/Modules/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreLocation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/DataDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/FileProvider.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/_Concurrency.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/15.0/Accessibility.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanorama.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCamera.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadata.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihood.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlace.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaService.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteTableDataSource.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlusCode.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCircle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapStyle.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolyline.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GoogleMapsBase.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaCameraUpdate.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorBuilding.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMutablePath.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLink.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceFieldMask.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorLevel.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapID+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStrokeStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStampStyle+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Premium.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSStyleSpan.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteSessionToken.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygon.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView+Animation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOrientation.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSProjection.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompletePrediction.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCameraPosition.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceViewportInfo.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeocoder.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFetcher.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarker.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteResultsViewController.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteFilter.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCALayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSURLTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSSyncTileLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPolygonLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMarkerLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlayLayer.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCoordinateBounds.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GooglePlaces.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSServices.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceTypes.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSUISettings.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAccessibilityLabels.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesDeprecationUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGeometryUtils.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLocationOptions.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSDeprecationMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Headers/GMSCompatabilityMacros.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSCoordinateBounds+GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GoogleMaps.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesErrors.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSOpeningHours.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSAddress.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacesClient.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteMatchFragment.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSAddressComponent.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlacePhotoMetadataList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Headers/GMSPlaceLikelihoodList.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSPanoramaView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSMapView.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSIndoorDisplay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSOverlay.h /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Headers/GMSGroundOverlay.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet6.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/kcdata.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/uuid.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/device.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GooglePlaces/Frameworks/GooglePlaces.framework/Modules/module.modulemap /Volumes/Samsung_T5/GeekSalon/GeekSalon_iOS/GoogleMap/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_machine.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach_debug.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/mach.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/bank.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_posix_sys_types.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/darwin_cdefs.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/net.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/netinet.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreLocation.framework/Headers/CoreLocation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.0.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
/**
Copyright by The HDF Group. *
Copyright by the Board of Trustees of the University of Illinois. *
All rights reserved. *
*
This file is part of HDF5. The full HDF5 copyright notice, including *
terms governing use, modification, and redistribution, is contained in *
the files COPYING and Copyright.html. COPYING can be found at the root *
of the source code distribution tree; Copyright.html can be found at the *
root level of an installed copy of the electronic HDF5 document set and *
is linked from the top-level documents page. It can also be found at *
http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
access to either file, you may request a copy from [email protected]. *
Ported by Laeeth Isharc 2014 to the D Programming Language
Use at your own risk!
This example shows how to read and write data to a dataset
using szip compression. The program first checks if
szip compression is available, then if it is it writes
integers to a dataset using szip, then closes the file.
Next, it reopens the file, reads back the data, and
outputs the type of compression and the maximum value in
the dataset to the screen.
*/
import hdf5.hdf5;
import std.stdio;
import std.exception;
import std.string;
enum filename ="h5ex_d_szip.h5";
enum DATASET = "DS1";
enum DIM0 = 32;
enum DIM1 = 64;
enum CHUNK0 = 4;
enum CHUNK1 = 8;
int main(string[] args)
{
hid_t file, space, dset, dcpl; /* Handles */
herr_t status;
htri_t avail;
H5ZFilter filter_type;
hsize_t[2] dims = [DIM0, DIM1],
chunk = [CHUNK0, CHUNK1];
size_t nelmts;
int flags;
uint filter_info;
int[DIM1][DIM0] wdata,rdata;
int max;
/*
* Check if szip compression is available and can be used for both
* compression and decompression. Normally we do not perform error
* checking in these examples for the sake of clarity, but in this
* case we will make an exception because this filter is an
* optional part of the hdf5 library.
*/
avail = H5Z.filter_avail(H5ZFilter.SZip);
if (!avail) {
writefln("szip filter not available.");
return 1;
}
H5Z.get_filter_info(H5ZFilter.SZip, &filter_info);
if ( !(filter_info & H5Z_FILTER_CONFIG_ENCODE_ENABLED) ||
!(filter_info & H5Z_FILTER_CONFIG_DECODE_ENABLED) ) {
writefln("szip filter not available for encoding and decoding.");
return 1;
}
/*
* Initialize data.
*/
foreach(i;0..DIM0)
foreach(j;0..DIM1)
wdata[i][j] = i * j - j;
/*
* Create a new file using the default properties.
*/
file = H5F.create(filename, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
/*
* Create dataspace. Setting maximum size to NULL sets the maximum
* size to be the current size.
*/
space = H5S.create_simple(dims);
/*
* Create the dataset creation property list, add the szip
* compression filter and set the chunk size.
*/
dcpl = H5P.create (H5P_DATASET_CREATE);
H5P.set_szip (dcpl, H5_SZIP_NN_OPTION_MASK, 8);
H5P.set_chunk (dcpl, chunk);
/*
* Create the dataset.
*/
dset = H5D.create2(file, DATASET, H5T_STD_I32LE, space, H5P_DEFAULT,dcpl,H5P_DEFAULT);
/*
* Write the data to the dataset.
*/
H5D.write (dset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT,cast(ubyte*)wdata.ptr);
/*
* Close and release resources.
*/
H5P.close (dcpl);
H5D.close (dset);
H5S.close (space);
H5F.close (file);
/*
* Now we begin the read section of this example.
*/
/*
* Open file and dataset using the default properties.
*/
file = H5F.open (filename, H5F_ACC_RDONLY, H5P_DEFAULT);
dset = H5D.open2(file, DATASET,H5P_DEFAULT);
/*
* Retrieve dataset creation property list.
*/
dcpl = H5D.get_create_plist (dset);
/*
* Retrieve and print the filter type. Here we only retrieve the
* first filter because we know that we only added one filter.
*/
nelmts = 0;
//uint cd_values[]/*out*/, size_t namelen, char name[], uint *filter_config /*out*/)
filter_type = H5P.get_filter2(dcpl, 0, &flags, &nelmts, cast(uint[])[0],0LU,cast(char[])"",cast(uint*)0);
writef ("Filter type is: ");
switch (filter_type) {
case H5ZFilter.Deflate:
writefln("H5Z_FILTER_DEFLATE");
break;
case H5ZFilter.Shuffle:
writefln("H5Z_FILTER_SHUFFLE");
break;
case H5ZFilter.Fletcher32:
writefln("H5Z_FILTER_FLETCHER32");
break;
case H5ZFilter.SZip:
writefln("H5Z_FILTER_SZIP");
break;
default:
assert(0);
}
/*
* Read the data using the default properties.
*/
H5D.read(dset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, cast(ubyte*)rdata.ptr);
/*
* Find the maximum value in the dataset, to verify that it was
* read correctly.
*/
max = rdata[0][0];
foreach(i;0..DIM0)
foreach(j;0..DIM1)
if (max < rdata[i][j])
max=rdata[i][j];
/*
* Print the maximum value.
*/
writefln("Maximum value in %s is: %d", DATASET, max);
/*
* Close and release resources.
*/
H5P.close (dcpl);
H5D.close (dset);
H5F.close (file);
return 0;
}
| D |
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Service.build/Utilities/Deprecated.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceID.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Service.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceCache.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Extendable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Config/Config.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Provider/Provider.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/Container.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/SubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicSubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/ServiceError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/ContainerAlias.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Services.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Environment/Environment.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/BasicServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/TypeServiceFactory.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Service.build/Deprecated~partial.swiftmodule : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceID.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Service.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceCache.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Extendable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Config/Config.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Provider/Provider.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/Container.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/SubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicSubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/ServiceError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/ContainerAlias.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Services.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Environment/Environment.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/BasicServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/TypeServiceFactory.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Service.build/Deprecated~partial.swiftdoc : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceID.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Service.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceCache.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Extendable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Config/Config.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Provider/Provider.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/Container.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/SubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicSubContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/BasicContainer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/ServiceError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Container/ContainerAlias.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/Services.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Environment/Environment.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/ServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/BasicServiceFactory.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/service.git--3029908809087319447/Sources/Service/Services/TypeServiceFactory.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/user/Documents/RiseTimeAssets/server/.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/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/cpp_magic.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIODarwin/include/c_nio_darwin.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOAtomics/include/c-atomics.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio.git-3108475404973543938/Sources/CNIOLinux/include/c_nio_linux.h /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/swift-nio-zlib-support.git--1071467962839356487/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/user/Documents/RiseTimeAssets/server/.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 SEK_8047_SHRAT(Npc_Default)
{
name[0] = "Шрэт";
guild = GIL_SEK;
id = 8047;
voice = 13;
flags = 0;
npcType = npctype_main;
B_SetAttributesToChapter(self,4);
level = 1;
fight_tactic = FAI_HUMAN_NORMAL;
EquipItem(self,ItMw_Spicker);
B_CreateAmbientInv(self);
B_SetNpcVisual(self,MALE,"Hum_Head_Psionic",FACE_N_SEKTANT_5,BodyTex_N,itar_slp_l);
Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds");
B_GiveNpcTalents(self);
B_SetFightSkills(self,60);
daily_routine = rtn_start_8047;
};
func void rtn_start_8047()
{
TA_Stand_Eating(8,0,21,0,"NW_FOREST_PATH_PSIGROUP3_01");
TA_Stand_ArmsCrossed(21,0,8,0,"NW_FOREST_PATH_PSIGROUP3_01");
};
| D |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.tvprovider.media.tv;
import static android.support.test.InstrumentationRegistry.getContext;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.media.tv.TvContract;
import android.net.Uri;
import android.os.SystemClock;
import android.support.test.filters.MediumTest;
import android.support.test.filters.Suppress;
import android.support.test.runner.AndroidJUnit4;
import androidx.tvprovider.test.R;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@Suppress // Test is failing b/70905391
@MediumTest
@RunWith(AndroidJUnit4.class)
public class ChannelLogoUtilsTest {
private static final String FAKE_INPUT_ID = "ChannelLogoUtils.test";
private ContentResolver mContentResolver;
private Uri mChannelUri;
private long mChannelId;
@Before
public void setUp() throws Exception {
mContentResolver = getContext().getContentResolver();
ContentValues contentValues = new Channel.Builder()
.setInputId(FAKE_INPUT_ID)
.setType(TvContractCompat.Channels.TYPE_OTHER).build().toContentValues();
mChannelUri = mContentResolver.insert(TvContract.Channels.CONTENT_URI, contentValues);
mChannelId = ContentUris.parseId(mChannelUri);
}
@After
public void tearDown() throws Exception {
mContentResolver.delete(mChannelUri, null, null);
}
@Test
public void testStoreChannelLogo_fromBitmap() {
assertNull(ChannelLogoUtils.loadChannelLogo(getContext(), mChannelId));
Bitmap logo = BitmapFactory.decodeResource(getContext().getResources(),
R.drawable.test_icon);
assertNotNull(logo);
assertTrue(ChannelLogoUtils.storeChannelLogo(getContext(), mChannelId, logo));
// Workaround: the file status is not consistent between openInputStream/openOutputStream,
// wait 10 secs to make sure that the logo file is written into the disk.
SystemClock.sleep(10000);
assertNotNull(ChannelLogoUtils.loadChannelLogo(getContext(), mChannelId));
}
@Test
public void testStoreChannelLogo_fromResUri() {
assertNull(ChannelLogoUtils.loadChannelLogo(getContext(), mChannelId));
int resId = R.drawable.test_icon;
Resources res = getContext().getResources();
Uri logoUri = new Uri.Builder()
.scheme(ContentResolver.SCHEME_ANDROID_RESOURCE)
.authority(res.getResourcePackageName(resId))
.appendPath(res.getResourceTypeName(resId))
.appendPath(res.getResourceEntryName(resId))
.build();
assertTrue(ChannelLogoUtils.storeChannelLogo(getContext(), mChannelId, logoUri));
// Workaround: the file status is not consistent between openInputStream/openOutputStream,
// wait 10 secs to make sure that the logo file is written into the disk.
SystemClock.sleep(10000);
assertNotNull(ChannelLogoUtils.loadChannelLogo(getContext(), mChannelId));
}
}
| D |
GRAPHITEWEB_OPTS="wsgi --workers=4 --bind=127.0.0.1:8080 --log-file=/var/log/graphite-web.log --preload --pythonpath=/opt/graphite/webapp/graphite"
GRAPHITEWEB_ENV="env PYTHONPATH=/opt/graphite/webapp" | D |
module hunt.http.server.HttpServerConnection;
import hunt.http.HttpConnection;
import hunt.http.codec.http.stream.HttpTunnelConnection;
import hunt.concurrency.Promise;
import hunt.concurrency.FuturePromise;
/**
*/
interface HttpServerConnection : HttpConnection {
void upgradeHttpTunnel(Promise!HttpTunnelConnection promise);
FuturePromise!HttpTunnelConnection upgradeHttpTunnel();
}
| D |
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Authentication.build/Persist/SessionAuthenticatable.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationCache.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Authenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/SessionAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/GuardMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/AuthenticationSessionsMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/RedirectMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationProvider.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordVerifier.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/AuthenticationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/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/NIOHTTP1.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Vapor.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Authentication.build/Persist/SessionAuthenticatable~partial.swiftmodule : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationCache.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Authenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/SessionAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/GuardMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/AuthenticationSessionsMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/RedirectMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationProvider.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordVerifier.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/AuthenticationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/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/NIOHTTP1.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Vapor.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Authentication.build/Persist/SessionAuthenticatable~partial.swiftdoc : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationCache.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Authenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/SessionAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticatable.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/GuardMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Basic/BasicAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Token/TokenAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Bearer/BearerAuthenticationMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/AuthenticationSessionsMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Persist/RedirectMiddleware.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/AuthenticationProvider.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Password/PasswordVerifier.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/Utilities/AuthenticationError.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/auth/Sources/Authentication/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/NIOHTTP1.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOOpenSSL.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIO.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/HTTP.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOTLS.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Async.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Command.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Service.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Console.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Core.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Logging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Debugging.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Routing.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/COperatingSystem.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Random.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/URLEncodedForm.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Validation.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Crypto.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Vapor.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/XPC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/ObjectiveC.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Combine.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Dispatch.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Darwin.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Foundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreFoundation.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/CoreGraphics.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/Swift.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/IOKit.swiftmodule/x86_64-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64-apple-macos.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOConcurrencyHelpers.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Bits.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOFoundationCompat.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/WebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/NIOWebSocket.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/DatabaseKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/TemplateKit.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Multipart.swiftmodule /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOSHA1/include/CNIOSHA1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/asn1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/tls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dtls1.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs12.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem2.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl23.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509v3.h /usr/local/Cellar/libressl/3.0.2/include/openssl/md5.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pkcs7.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509.h /usr/local/Cellar/libressl/3.0.2/include/openssl/sha.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdsa.h /usr/local/Cellar/libressl/3.0.2/include/openssl/rsa.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOZlib/include/CNIOZlib.h /usr/local/Cellar/libressl/3.0.2/include/openssl/obj_mac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/hmac.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ec.h /Users/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 /usr/local/Cellar/libressl/3.0.2/include/openssl/rand.h /usr/local/Cellar/libressl/3.0.2/include/openssl/conf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslconf.h /usr/local/Cellar/libressl/3.0.2/include/openssl/dh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ecdh.h /usr/local/Cellar/libressl/3.0.2/include/openssl/lhash.h /usr/local/Cellar/libressl/3.0.2/include/openssl/stack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/safestack.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/3.0.2/include/openssl/pem.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bn.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIODarwin/include/CNIODarwin.h /usr/local/Cellar/libressl/3.0.2/include/openssl/bio.h /usr/local/Cellar/libressl/3.0.2/include/openssl/crypto.h /usr/local/Cellar/libressl/3.0.2/include/openssl/srtp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/evp.h /usr/local/Cellar/libressl/3.0.2/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/3.0.2/include/openssl/buffer.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/CNIOHTTPParser.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/3.0.2/include/openssl/err.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOAtomics/include/CNIOAtomics.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/3.0.2/include/openssl/objects.h /usr/local/Cellar/libressl/3.0.2/include/openssl/opensslv.h /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio/Sources/CNIOLinux/include/CNIOLinux.h /usr/local/Cellar/libressl/3.0.2/include/openssl/x509_vfy.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/crypto/Sources/CBase32/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/CBcrypt/include/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-zlib-support/module.modulemap /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/swift-nio-ssl-support/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/xpc/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
/* ----------------------------------------------------------------------------
* 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 vtkLongLongDataArrayTemplateT;
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 vtkAbstractArray;
static import SWIGTYPE_p_long_long;
static import vtkDataArray;
static import vtkVariant;
static import vtkIdList;
class vtkLongLongDataArrayTemplateT : vtkDataArray.vtkDataArray {
private void* swigCPtr;
public this(void* cObject, bool ownCObject) {
super(vtkd_im.vtkLongLongDataArrayTemplateT_Upcast(cObject), ownCObject);
swigCPtr = cObject;
}
public static void* swigGetCPtr(vtkLongLongDataArrayTemplateT 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 override int Allocate(long sz, long ext) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_Allocate__SWIG_0(cast(void*)swigCPtr, sz, ext);
return ret;
}
public override int Allocate(long sz) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_Allocate__SWIG_1(cast(void*)swigCPtr, sz);
return ret;
}
public override void SetTuple(long i, long j, vtkAbstractArray.vtkAbstractArray source) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetTuple__SWIG_0(cast(void*)swigCPtr, i, j, vtkAbstractArray.vtkAbstractArray.swigGetCPtr(source));
}
public override void InsertTuple(long i, long j, vtkAbstractArray.vtkAbstractArray source) {
vtkd_im.vtkLongLongDataArrayTemplateT_InsertTuple__SWIG_0(cast(void*)swigCPtr, i, j, vtkAbstractArray.vtkAbstractArray.swigGetCPtr(source));
}
public override long InsertNextTuple(long j, vtkAbstractArray.vtkAbstractArray source) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_InsertNextTuple__SWIG_0(cast(void*)swigCPtr, j, vtkAbstractArray.vtkAbstractArray.swigGetCPtr(source));
return ret;
}
public override double* GetTuple(long i) {
auto ret = cast(double*)vtkd_im.vtkLongLongDataArrayTemplateT_GetTuple__SWIG_0(cast(void*)swigCPtr, i);
return ret;
}
public override void GetTuple(long i, double* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_GetTuple__SWIG_1(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public void GetTupleValue(long i, long* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_GetTupleValue(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public override void SetTuple(long i, float* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetTuple__SWIG_1(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public override void SetTuple(long i, double* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetTuple__SWIG_2(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public void SetTupleValue(long i, long* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetTupleValue(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public override void InsertTuple(long i, float* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_InsertTuple__SWIG_1(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public override void InsertTuple(long i, double* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_InsertTuple__SWIG_2(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public void InsertTupleValue(long i, long* tuple) {
vtkd_im.vtkLongLongDataArrayTemplateT_InsertTupleValue(cast(void*)swigCPtr, i, cast(void*)tuple);
}
public override long InsertNextTuple(float* tuple) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_InsertNextTuple__SWIG_1(cast(void*)swigCPtr, cast(void*)tuple);
return ret;
}
public override long InsertNextTuple(double* tuple) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_InsertNextTuple__SWIG_2(cast(void*)swigCPtr, cast(void*)tuple);
return ret;
}
public long InsertNextTupleValue(long* tuple) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_InsertNextTupleValue(cast(void*)swigCPtr, cast(void*)tuple);
return ret;
}
public void GetValueRange(SWIGTYPE_p_long_long.SWIGTYPE_p_long_long range, int comp) {
vtkd_im.vtkLongLongDataArrayTemplateT_GetValueRange__SWIG_0(cast(void*)swigCPtr, SWIGTYPE_p_long_long.SWIGTYPE_p_long_long.swigGetCPtr(range), comp);
}
public long* GetValueRange(int comp) {
auto ret = cast(long*)vtkd_im.vtkLongLongDataArrayTemplateT_GetValueRange__SWIG_1(cast(void*)swigCPtr, comp);
return ret;
}
public long Capacity() {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_Capacity(cast(void*)swigCPtr);
return ret;
}
public long GetValue(long id) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_GetValue(cast(void*)swigCPtr, id);
return ret;
}
public void SetValue(long id, long value) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetValue(cast(void*)swigCPtr, id, value);
}
public void SetNumberOfValues(long number) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetNumberOfValues(cast(void*)swigCPtr, number);
}
public void InsertValue(long id, long f) {
vtkd_im.vtkLongLongDataArrayTemplateT_InsertValue(cast(void*)swigCPtr, id, f);
}
public long InsertNextValue(long f) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_InsertNextValue(cast(void*)swigCPtr, f);
return ret;
}
public long* WritePointer(long id, long number) {
auto ret = cast(long*)vtkd_im.vtkLongLongDataArrayTemplateT_WritePointer(cast(void*)swigCPtr, id, number);
return ret;
}
public long* GetPointer(long id) {
auto ret = cast(long*)vtkd_im.vtkLongLongDataArrayTemplateT_GetPointer(cast(void*)swigCPtr, id);
return ret;
}
public override void DeepCopy(vtkDataArray.vtkDataArray da) {
vtkd_im.vtkLongLongDataArrayTemplateT_DeepCopy__SWIG_0(cast(void*)swigCPtr, vtkDataArray.vtkDataArray.swigGetCPtr(da));
}
public override void DeepCopy(vtkAbstractArray.vtkAbstractArray aa) {
vtkd_im.vtkLongLongDataArrayTemplateT_DeepCopy__SWIG_1(cast(void*)swigCPtr, vtkAbstractArray.vtkAbstractArray.swigGetCPtr(aa));
}
public void SetArray(long* array, long size, int save, int deleteMethod) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetArray__SWIG_0(cast(void*)swigCPtr, cast(void*)array, size, save, deleteMethod);
}
public void SetArray(long* array, long size, int save) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetArray__SWIG_1(cast(void*)swigCPtr, cast(void*)array, size, save);
}
public override void SetVoidArray(void* array, long size, int save) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetVoidArray__SWIG_0(cast(void*)swigCPtr, cast(void*)array, size, save);
}
public void SetVoidArray(void* array, long size, int save, int deleteMethod) {
vtkd_im.vtkLongLongDataArrayTemplateT_SetVoidArray__SWIG_1(cast(void*)swigCPtr, cast(void*)array, size, save, deleteMethod);
}
public override long LookupValue(vtkVariant.vtkVariant value) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_LookupValue__SWIG_0(cast(void*)swigCPtr, vtkVariant.vtkVariant.swigGetCPtr(value));
if (vtkd_im.SwigPendingException.isPending) throw vtkd_im.SwigPendingException.retrieve();
return ret;
}
public override void LookupValue(vtkVariant.vtkVariant value, vtkIdList.vtkIdList ids) {
vtkd_im.vtkLongLongDataArrayTemplateT_LookupValue__SWIG_1(cast(void*)swigCPtr, vtkVariant.vtkVariant.swigGetCPtr(value), vtkIdList.vtkIdList.swigGetCPtr(ids));
if (vtkd_im.SwigPendingException.isPending) throw vtkd_im.SwigPendingException.retrieve();
}
public long LookupValue(long value) {
auto ret = vtkd_im.vtkLongLongDataArrayTemplateT_LookupValue__SWIG_2(cast(void*)swigCPtr, value);
return ret;
}
public void LookupValue(long value, vtkIdList.vtkIdList ids) {
vtkd_im.vtkLongLongDataArrayTemplateT_LookupValue__SWIG_3(cast(void*)swigCPtr, value, vtkIdList.vtkIdList.swigGetCPtr(ids));
}
public void DataElementChanged(long id) {
vtkd_im.vtkLongLongDataArrayTemplateT_DataElementChanged(cast(void*)swigCPtr, id);
}
}
| D |
/*******************************************************************************
Copyright: Copyright (C) 2008 Kris Bell. Все права защищены.
License: BSD стиль: $(LICENSE)
version: Aug 2008: Initial release
Authors: Kris
*******************************************************************************/
module text.xml.DocEntity;
private import Util = text.Util;
/******************************************************************************
Convert XML сущность образцы в_ нормаль characters
<pre>
& => ;
" => "
etc.
</pre>
******************************************************************************/
T[] изСущности (T) (T[] ист, T[] приёмн = пусто)
{
цел delta;
auto s = ист.ptr;
auto длин = ист.length;
// возьми a Просмотр первый в_ see if there's anything
if ((delta = Util.индексУ (s, '&', длин)) < длин)
{
// сделай some room if not enough предоставленный
if (приёмн.length < ист.length)
приёмн.length = ист.length;
auto d = приёмн.ptr;
// копируй segments over, a чанк at a время
do {
d [0 .. delta] = s [0 .. delta];
длин -= delta;
s += delta;
d += delta;
// translate сущность
auto токен = 0;
switch (s[1])
{
case 'a':
if (длин > 4 && s[1..5] == "amp;")
*d++ = '&', токен = 5;
else
if (длин > 5 && s[1..6] == "apos;")
*d++ = '\'', токен = 6;
break;
case 'g':
if (длин > 3 && s[1..4] == "gt;")
*d++ = '>', токен = 4;
break;
case 'l':
if (длин > 3 && s[1..4] == "lt;")
*d++ = '<', токен = 4;
break;
case 'q':
if (длин > 5 && s[1..6] == "quot;")
*d++ = '"', токен = 6;
break;
default:
break;
}
if (токен is 0)
*d++ = '&', токен = 1;
s += токен, длин -= токен;
} while ((delta = Util.индексУ (s, '&', длин)) < длин);
// копируй хвост too
d [0 .. длин] = s [0 .. длин];
return приёмн [0 .. (d + длин) - приёмн.ptr];
}
return ист;
}
/******************************************************************************
Convert XML сущность образцы в_ нормаль characters
---
& => ;
" => "
etc
---
This variant does not require an interim workspace, и instead
излейs directly via the предоставленный delegate
******************************************************************************/
проц изСущности (T) (T[] ист, проц delegate(T[]) излей)
{
цел delta;
auto s = ист.ptr;
auto длин = ист.length;
// возьми a Просмотр первый в_ see if there's anything
if ((delta = Util.индексУ (s, '&', длин)) < длин)
{
// копируй segments over, a чанк at a время
do {
излей (s [0 .. delta]);
длин -= delta;
s += delta;
// translate сущность
auto токен = 0;
switch (s[1])
{
case 'a':
if (длин > 4 && s[1..5] == "amp;")
излей("&"), токен = 5;
else
if (длин > 5 && s[1..6] == "apos;")
излей("'"), токен = 6;
break;
case 'g':
if (длин > 3 && s[1..4] == "gt;")
излей(">"), токен = 4;
break;
case 'l':
if (длин > 3 && s[1..4] == "lt;")
излей("<"), токен = 4;
break;
case 'q':
if (длин > 5 && s[1..6] == "quot;")
излей("\""), токен = 6;
break;
default:
break;
}
if (токен is 0)
излей ("&"), токен = 1;
s += токен, длин -= токен;
} while ((delta = Util.индексУ (s, '&', длин)) < длин);
// копируй хвост too
излей (s [0 .. длин]);
}
else
излей (ист);
}
/******************************************************************************
Convert reserved симвы в_ entities. For example: " => "
Either a срез of the предоставленный вывод буфер is returned, or the
original контент, depending on whether there were reserved симвы
present or not. The вывод буфер should be sufficiently large в_
accomodate the преобразованый вывод, or it will be allocated из_ the
куча instead
******************************************************************************/
T[] вСущность(T) (T[] ист, T[] приёмн = пусто)
{
T[] сущность;
auto s = ист.ptr;
auto t = s;
auto e = s + ист.length;
auto индекс = 0;
while (s < e)
switch (*s)
{
case '"':
сущность = """;
goto common;
case '>':
сущность = ">";
goto common;
case '<':
сущность = "<";
goto common;
case '&':
сущность = "&";
goto common;
case '\'':
сущность = "'";
goto common;
common:
auto длин = s - t;
if (приёмн.length <= индекс + длин + сущность.length)
приёмн.length = (приёмн.length + длин + сущность.length) + приёмн.length / 2;
приёмн [индекс .. индекс + длин] = t [0 .. длин];
индекс += длин;
приёмн [индекс .. индекс + сущность.length] = сущность;
индекс += сущность.length;
t = ++s;
break;
default:
++s;
break;
}
// dопр we change anything?
if (индекс)
{
// копируй хвост too
auto длин = e - t;
if (приёмн.length <= индекс + длин)
приёмн.length = индекс + длин;
приёмн [индекс .. индекс + длин] = t [0 .. длин];
return приёмн [0 .. индекс + длин];
}
return ист;
}
/******************************************************************************
Convert reserved симвы в_ entities. For example: " => "
This variant does not require an interim workspace, и instead
излейs directly via the предоставленный delegate
******************************************************************************/
проц вСущность(T) (T[] ист, проц delegate(T[]) излей)
{
T[] сущность;
auto s = ист.ptr;
auto t = s;
auto e = s + ист.length;
while (s < e)
switch (*s)
{
case '"':
сущность = """;
goto common;
case '>':
сущность = ">";
goto common;
case '<':
сущность = "<";
goto common;
case '&':
сущность = "&";
goto common;
case '\'':
сущность = "'";
goto common;
common:
if (s - t > 0)
излей (t [0 .. s - t]);
излей (сущность);
t = ++s;
break;
default:
++s;
break;
}
// dопр we change anything? Copy хвост also
if (сущность.length)
излей (t [0 .. e - t]);
else
излей (ист);
}
/*******************************************************************************
*******************************************************************************/
debug (DocEntity)
{
import io.Console;
проц main()
{
auto s = изСущности ("&");
assert (s == "&");
s = изСущности (""");
assert (s == "\"");
s = изСущности ("'");
assert (s == "'");
s = изСущности (">");
assert (s == ">");
s = изСущности ("<");
assert (s == "<");
s = изСущности ("<&'");
assert (s == "<&'");
s = изСущности ("*<&'*");
assert (s == "*<&'*");
assert (изСущности ("abc") == "abc");
assert (изСущности ("abc&") == "abc&");
assert (изСущности ("abc<") == "abc<");
assert (изСущности ("abc>goo") == "abc>goo");
assert (изСущности ("&") == "&");
assert (изСущности (""'") == "\"'");
assert (изСущности ("&q&s") == "&q&s");
auto d = вСущность (">");
assert (d == ">");
d = вСущность ("<");
assert (d == "<");
d = вСущность ("&");
assert (d == "&");
d = вСущность ("'");
assert (d == "'");
d = вСущность ("\"");
assert (d == """);
d = вСущность ("^^>*>*");
assert (d == "^^>*>*");
}
}
| D |
/**
* D header file for C99.
*
* $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_fenv.h.html, _fenv.h)
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Sean Kelly
* Source: $(DRUNTIMESRC core/stdc/_fenv.d)
* Standards: ISO/IEC 9899:1999 (E)
*/
module core.stdc.fenv;
extern (C):
@system:
nothrow:
@nogc:
version( MinGW )
version = GNUFP;
version( linux )
version = GNUFP;
version( GNUFP )
{
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/x86/fpu/bits/fenv.h
version (X86)
{
struct fenv_t
{
ushort __control_word;
ushort __unused1;
ushort __status_word;
ushort __unused2;
ushort __tags;
ushort __unused3;
uint __eip;
ushort __cs_selector;
ushort __opcode;
uint __data_offset;
ushort __data_selector;
ushort __unused5;
}
alias fexcept_t = ushort;
}
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/x86/fpu/bits/fenv.h
else version (X86_64)
{
struct fenv_t
{
ushort __control_word;
ushort __unused1;
ushort __status_word;
ushort __unused2;
ushort __tags;
ushort __unused3;
uint __eip;
ushort __cs_selector;
ushort __opcode;
uint __data_offset;
ushort __data_selector;
ushort __unused5;
uint __mxcsr;
}
alias fexcept_t = ushort;
}
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/mips/bits/fenv.h
else version (MIPS32)
{
struct fenv_t
{
uint __fp_control_register;
}
alias fexcept_t = ushort;
}
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/mips/bits/fenv.h
else version (MIPS64)
{
struct fenv_t
{
uint __fp_control_register;
}
alias fexcept_t = ushort;
}
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/arm/bits/fenv.h
else version (ARM)
{
struct fenv_t
{
uint __cw;
}
alias fexcept_t = uint;
}
// https://sourceware.org/git/?p=glibc.git;a=blob;f=sysdeps/powerpc/bits/fenv.h
else version (PPC64)
{
alias fenv_t = double;
alias fexcept_t = uint;
}
else
{
static assert(0, "Unimplemented architecture");
}
}
else version( CRuntime_DigitalMars )
{
struct fenv_t
{
ushort status;
ushort control;
ushort round;
ushort[2] reserved;
}
alias fexcept_t = int;
}
else version( CRuntime_Microsoft )
{
struct fenv_t
{
uint ctl;
uint stat;
}
alias fexcept_t = uint;
}
else version ( OSX )
{
version ( BigEndian )
{
alias uint fenv_t;
alias uint fexcept_t;
}
version ( LittleEndian )
{
struct fenv_t
{
ushort __control;
ushort __status;
uint __mxcsr;
byte[8] __reserved;
}
alias ushort fexcept_t;
}
}
else version ( FreeBSD )
{
struct fenv_t
{
ushort __control;
ushort __mxcsr_hi;
ushort __status;
ushort __mxcsr_lo;
uint __tag;
byte[16] __other;
}
alias ushort fexcept_t;
}
else version( Android )
{
version(X86)
{
struct fenv_t
{
ushort __control;
ushort __mxcsr_hi;
ushort __status;
ushort __mxcsr_lo;
uint __tag;
byte[16] __other;
}
alias ushort fexcept_t;
}
else
{
static assert(false, "Architecture not supported.");
}
}
else version( Solaris )
{
import core.stdc.config : c_ulong;
enum FEX_NUM_EXC = 12;
struct fex_handler_t
{
int __mode;
void function() __handler;
}
struct fenv_t
{
fex_handler_t[FEX_NUM_EXC] __handler;
c_ulong __fsr;
}
alias int fexcept_t;
}
else
{
static assert( false, "Unsupported platform" );
}
version( CRuntime_Microsoft )
{
enum
{
FE_INEXACT = 1, ///
FE_UNDERFLOW = 2, ///
FE_OVERFLOW = 4, ///
FE_DIVBYZERO = 8, ///
FE_INVALID = 0x10, ///
FE_ALL_EXCEPT = 0x1F, ///
FE_TONEAREST = 0, ///
FE_UPWARD = 0x100, ///
FE_DOWNWARD = 0x200, ///
FE_TOWARDZERO = 0x300, ///
}
}
else
{
enum
{
FE_INVALID = 1, ///
FE_DENORMAL = 2, /// non-standard
FE_DIVBYZERO = 4, ///
FE_OVERFLOW = 8, ///
FE_UNDERFLOW = 0x10, ///
FE_INEXACT = 0x20, ///
FE_ALL_EXCEPT = 0x3F, ///
FE_TONEAREST = 0, ///
FE_UPWARD = 0x800, ///
FE_DOWNWARD = 0x400, ///
FE_TOWARDZERO = 0xC00, ///
}
}
version( GNUFP )
{
///
enum FE_DFL_ENV = cast(fenv_t*)(-1);
}
else version( CRuntime_DigitalMars )
{
private extern __gshared fenv_t _FE_DFL_ENV;
///
enum fenv_t* FE_DFL_ENV = &_FE_DFL_ENV;
}
else version( CRuntime_Microsoft )
{
private extern __gshared fenv_t _Fenv0;
///
enum FE_DFL_ENV = &_Fenv0;
}
else version( OSX )
{
private extern __gshared fenv_t _FE_DFL_ENV;
///
enum FE_DFL_ENV = &_FE_DFL_ENV;
}
else version( FreeBSD )
{
private extern const fenv_t __fe_dfl_env;
///
enum FE_DFL_ENV = &__fe_dfl_env;
}
else version( Android )
{
private extern const fenv_t __fe_dfl_env;
///
enum FE_DFL_ENV = &__fe_dfl_env;
}
else version( Solaris )
{
private extern const fenv_t __fenv_def_env;
///
enum FE_DFL_ENV = &__fenv_def_env;
}
else
{
static assert( false, "Unsupported platform" );
}
///
int feclearexcept(int excepts);
///
int fetestexcept(int excepts);
///
int feholdexcept(fenv_t* envp);
///
int fegetexceptflag(fexcept_t* flagp, int excepts);
///
int fesetexceptflag(in fexcept_t* flagp, int excepts);
///
int fegetround();
///
int fesetround(int round);
///
int fegetenv(fenv_t* envp);
///
int fesetenv(in fenv_t* envp);
// MS define feraiseexcept() and feupdateenv() inline.
version( CRuntime_Microsoft ) // supported since MSVCRT 12 (VS 2013) only
{
///
int feraiseexcept()(int excepts)
{
struct Entry
{
int exceptVal;
double num;
double denom;
}
static __gshared immutable(Entry[5]) table =
[ // Raise exception by evaluating num / denom:
{ FE_INVALID, 0.0, 0.0 },
{ FE_DIVBYZERO, 1.0, 0.0 },
{ FE_OVERFLOW, 1e+300, 1e-300 },
{ FE_UNDERFLOW, 1e-300, 1e+300 },
{ FE_INEXACT, 2.0, 3.0 }
];
if ((excepts &= FE_ALL_EXCEPT) == 0)
return 0;
// Raise the exceptions not masked:
double ans = void;
foreach (i; 0 .. table.length)
{
if ((excepts & table[i].exceptVal) != 0)
ans = table[i].num / table[i].denom;
}
return 0;
}
///
int feupdateenv()(in fenv_t* envp)
{
int excepts = fetestexcept(FE_ALL_EXCEPT);
return (fesetenv(envp) != 0 || feraiseexcept(excepts) != 0 ? 1 : 0);
}
}
else
{
///
int feraiseexcept(int excepts);
///
int feupdateenv(in fenv_t* envp);
}
| D |
module mci.tester.common;
import core.exception,
std.exception,
std.variant,
mci.core.common;
version (unittest)
{
private class A
{
}
private class B : A
{
}
private class C : B
{
}
}
unittest
{
auto b = new B();
bool isB;
match(b, (B b) => isB = true);
assert(isB);
}
unittest
{
auto b = new B();
match(b, () => {});
}
unittest
{
A c = new C();
bool isB;
bool isC;
match(c,
(B b) => isB = true,
(C c) => isC = false);
assert(isB);
assert(!isC);
}
unittest
{
Variant v = 1;
assertThrown!AssertError(match(v, (ubyte b) => {}));
}
unittest
{
Variant v1 = 1;
Variant v2;
match(v1,
(string s) => v2 = "foo",
(int i) => v2 = i);
assert(v2.get!int() == 1);
}
unittest
{
Variant v1 = "foo";
Variant v2;
match(v1,
(string s) => v2 = s,
(int i) => v2 = i);
assert(v2.get!string() == "foo");
}
unittest
{
Variant v1 = 1;
match(v1, () => {});
}
| D |
/Users/thendral/POC/vapor/Friends/.build/debug/libc.build/libc.swift.o : /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/libc/libc.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule
/Users/thendral/POC/vapor/Friends/.build/debug/libc.build/libc~partial.swiftmodule : /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/libc/libc.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule
/Users/thendral/POC/vapor/Friends/.build/debug/libc.build/libc~partial.swiftdoc : /Users/thendral/POC/vapor/Friends/Packages/Core-1.1.1/Sources/libc/libc.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule
| D |
module wiz.sym.bankdef;
import wiz.lib;
import wiz.sym.lib;
class BankDef : Definition
{
compile.Bank bank;
this(ast.Node decl)
{
super(decl);
}
} | D |
// Copyright Ferdinand Majerech 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)
//Runtime type information utilities.
module util.typeinfo;
///Is type a class?
bool isClass(TypeInfo type) pure nothrow
{
return cast(TypeInfo_Class)type !is null;
}
/**
* Is type derived from T, or does type implement T?
*
* If type is the same as T, it is not considered derived.
*/
bool isDerivedFrom(T)(TypeInfo type) // pure nothrow //(toString is not pure nothrow)
{
static if(!(is(T == class) || is(T == interface)))
{
return false;
}
else
{
auto classType = cast(TypeInfo_Class) type;
//type is not a class, so it can't be derived from anything
if(classType is null){return false;}
static if(is(T == interface))
{
//Comparing strings because is and == fails to work on interfaces
const typeString = typeid(T).toString();
if(classType.interfaces !is null) foreach(iface; classType.interfaces)
{
const ifaceStr = iface.classinfo.toString;
if(ifaceStr == typeString){return true;}
}
}
else static if(is(T == class))
{
if(classType.base is typeid(T)){return true;}
}
else assert(false);
//Done, no base class to check left
if(classType.base is null){return false;}
//We have a base class, so check that
return isDerivedFrom!T(classType.base);
}
}
unittest
{
interface I1{}
interface I2{}
interface I3{}
class B : I1, I2{}
class D1 : B {}
class D2 : D1, I3 {}
assert(!isDerivedFrom!B(typeid(B)));
assert(!isDerivedFrom!int(typeid(B)));
assert(!isDerivedFrom!B(typeid(int)));
assert(!isDerivedFrom!I3(typeid(B)));
assert(isDerivedFrom!B(typeid(D1)));
assert(isDerivedFrom!B(typeid(D2)));
assert(isDerivedFrom!D1(typeid(D2)));
assert(isDerivedFrom!I1(typeid(B)));
assert(isDerivedFrom!I2(typeid(B)));
assert(isDerivedFrom!I1(typeid(D1)));
assert(isDerivedFrom!I1(typeid(D2)));
assert(isDerivedFrom!I3(typeid(D2)));
}
/**
* Get number of bytes by an object of type T in memory.
*
* Unlike .sizeof, this also works for classes, i.e. size
* of the actual class instance, not reference, is returned.
*
* For arrays, this still returns size of the "fat pointer" array,
* object, not the size of the array content.
*/
size_t memorySize(T)() pure nothrow
if(!is(T == interface))
{
static if(is(T == class)){return __traits(classInstanceSize, T);}
else {return T.sizeof;}
}
unittest
{
struct S{int i; float f;}
class C1{}
class C2{int i; float f;}
class C3 : C2 {long l;}
assert(memorySize!float == 4);
assert(memorySize!S == 8);
version(X86_64)
{
assert(memorySize!C1 == 24);
assert(memorySize!C2 == 32);
assert(memorySize!C3 == 40);
}
}
| D |
import std.stdio;
import std.json;
import std.csv;
import std.conv;
import std.array;
import std.algorithm.searching;
import std.string;
void main()
{
// Ask for a file
writeln("Give me a file to read:");
string fileStr = readln().strip;
// Open given file, read it into a string
auto dataFile = File(fileStr, "r");
string fileContents, line;
while ((line = dataFile.readln()) !is null)
fileContents ~= line;
dataFile.close();
// Parse file into JSON, open CSV doc for output
JSONValue json = parseJSON(fileContents);
auto csv = File("out.csv", "w");
// Loop through all entries, export as a line in the CSV document
foreach (JSONValue matchData; json.array())
{
// All the keys per match to be read and output
string[] json_keys = [
"match", "team_num", "scout", "teleop-hatch", "teleop-cargo"
];
// Loop through all above keys, output that JSON value to CSV file
foreach(string attrib; json_keys) {
csv.write("\"" ~ matchData[attrib].str ~ "\",");
}
csv.write("\n");
}
}
| D |
/**
* Takes a token stream from the lexer, and parses it into an abstract syntax tree.
*
* Specification: C11
*
* Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/cparse.d, _cparse.d)
* Documentation: https://dlang.org/phobos/dmd_cparse.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/cparse.d
*/
module dmd.cparse;
import core.stdc.stdio;
import core.stdc.string : memcpy;
import dmd.astenums;
import dmd.errorsink;
import dmd.id;
import dmd.identifier;
import dmd.lexer;
import dmd.location;
import dmd.parse;
import dmd.root.array;
import dmd.common.outbuffer;
import dmd.root.rmem;
import dmd.tokens;
/***********************************************************
*/
final class CParser(AST) : Parser!AST
{
AST.Dsymbols* symbols; // symbols declared in current scope
bool addFuncName; /// add declaration of __func__ to function symbol table
bool importBuiltins; /// seen use of C compiler builtins, so import __builtins;
private
{
structalign_t packalign; // current state of #pragma pack alignment
// #pragma pack stack
Array!Identifier* records; // identifers (or null)
Array!structalign_t* packs; // parallel alignment values
}
/* C cannot be parsed without determining if an identifier is a type or a variable.
* For expressions like `(T)-3`, is it a cast or a minus expression?
* It also occurs with `typedef int (F)(); F fun;`
* but to build the AST we need to distinguish `fun` being a function as opposed to a variable.
* To fix, build a symbol table for the typedefs.
* Symbol table of typedefs indexed by Identifier cast to void*.
* 1. if an identifier is a typedef, then it will return a non-null Type
* 2. if an identifier is not a typedef, then it will return null
*/
Array!(void*) typedefTab; /// Array of AST.Type[Identifier], typedef's indexed by Identifier
/* This is passed in as a list of #define lines, as generated by the C preprocessor with the
* appropriate switch to emit them. We append to it any #define's and #undef's encountered in the source
* file, as cpp with the -dD embeds them in the preprocessed output file.
* Once the file is parsed, then the #define's are converted to D symbols and appended to the array
* of Dsymbols returned by parseModule().
*/
OutBuffer* defines;
extern (D) this(TARGET)(AST.Module _module, const(char)[] input, bool doDocComment,
ErrorSink errorSink,
const ref TARGET target, OutBuffer* defines, const CompileEnv* compileEnv) scope
{
const bool doUnittests = false;
super(_module, input, doDocComment, errorSink, compileEnv, doUnittests);
//printf("CParser.this()\n");
mod = _module;
linkage = LINK.c;
Ccompile = true;
this.packalign.setDefault();
this.defines = defines;
// Configure sizes for C `long`, `long double`, `wchar_t`, ...
this.boolsize = target.boolsize;
this.shortsize = target.shortsize;
this.intsize = target.intsize;
this.longsize = target.longsize;
this.long_longsize = target.long_longsize;
this.long_doublesize = target.long_doublesize;
this.wchar_tsize = target.wchar_tsize;
// C `char` is always unsigned in ImportC
}
/********************************************
* Parse translation unit.
* C11 6.9
* translation-unit:
* external-declaration
* translation-unit external-declaration
*
* external-declaration:
* function-definition
* declaration
* Returns:
* array of Dsymbols that were declared
*/
override AST.Dsymbols* parseModule()
{
//printf("cparseTranslationUnit()\n");
symbols = new AST.Dsymbols();
typedefTab.push(null); // C11 6.2.1-3 symbol table for "file scope"
while (1)
{
if (token.value == TOK.endOfFile)
{
addDefines(); // convert #define's to Dsymbols
// wrap the symbols in `extern (C) { symbols }`
auto wrap = new AST.Dsymbols();
auto ld = new AST.LinkDeclaration(token.loc, LINK.c, symbols);
wrap.push(ld);
if (importBuiltins)
{
/* Seen references to C builtin functions.
* Import their definitions
*/
auto s = new AST.Import(Loc.initial, null, Id.builtins, null, false);
wrap.push(s);
}
// end of file scope
typedefTab.pop();
assert(typedefTab.length == 0);
return wrap;
}
cparseDeclaration(LVL.global);
}
}
/******************************************************************************/
/********************************* Statement Parser ***************************/
//{
/**********************
* C11 6.8
* statement:
* labeled-statement
* compound-statement
* expression-statement
* selection-statement
* iteration-statement
* jump-statement
*
* Params:
* flags = PSxxxx
* endPtr = store location of closing brace
* pEndloc = if { ... statements ... }, store location of closing brace, otherwise loc of last token of statement
* Returns:
* parsed statement
*/
AST.Statement cparseStatement(int flags, const(char)** endPtr = null, Loc* pEndloc = null)
{
AST.Statement s;
const loc = token.loc;
//printf("cparseStatement()\n");
const typedefTabLengthSave = typedefTab.length;
auto symbolsSave = symbols;
if (flags & ParseStatementFlags.scope_)
{
typedefTab.push(null); // introduce new block scope
}
if (!(flags & (ParseStatementFlags.scope_ | ParseStatementFlags.curlyScope)))
{
symbols = new AST.Dsymbols();
}
switch (token.value)
{
case TOK.identifier:
/* A leading identifier can be a declaration, label, or expression.
* A quick check of the next token can disambiguate most cases.
*/
switch (peekNext())
{
case TOK.colon:
{
// It's a label
auto ident = token.ident;
nextToken(); // advance to `:`
nextToken(); // advance past `:`
if (token.value == TOK.rightCurly)
s = null;
else if (token.value == TOK.leftCurly)
s = cparseStatement(ParseStatementFlags.curly | ParseStatementFlags.scope_);
else
s = cparseStatement(0);
s = new AST.LabelStatement(loc, ident, s);
break;
}
case TOK.dot:
case TOK.arrow:
case TOK.plusPlus:
case TOK.minusMinus:
case TOK.leftBracket:
case TOK.question:
case TOK.assign:
case TOK.addAssign:
case TOK.minAssign:
case TOK.mulAssign:
case TOK.divAssign:
case TOK.modAssign:
case TOK.andAssign:
case TOK.orAssign:
case TOK.xorAssign:
case TOK.leftShiftAssign:
case TOK.rightShiftAssign:
goto Lexp;
case TOK.leftParenthesis:
if (auto pt = lookupTypedef(token.ident))
{
if (*pt)
goto Ldeclaration;
}
goto Lexp; // function call
default:
{
/* If tokens look like a declaration, assume it is one
*/
auto tk = &token;
if (isCDeclaration(tk))
goto Ldeclaration;
goto Lexp;
}
}
break;
case TOK.charLiteral:
case TOK.int32Literal:
case TOK.uns32Literal:
case TOK.int64Literal:
case TOK.uns64Literal:
case TOK.int128Literal:
case TOK.uns128Literal:
case TOK.float32Literal:
case TOK.float64Literal:
case TOK.float80Literal:
case TOK.imaginary32Literal:
case TOK.imaginary64Literal:
case TOK.imaginary80Literal:
case TOK.leftParenthesis:
case TOK.and:
case TOK.mul:
case TOK.min:
case TOK.add:
case TOK.tilde:
case TOK.not:
case TOK.plusPlus:
case TOK.minusMinus:
case TOK.sizeof_:
case TOK._Generic:
case TOK._assert:
Lexp:
auto exp = cparseExpression();
if (token.value == TOK.identifier && exp.op == EXP.identifier)
{
error(token.loc, "found `%s` when expecting `;` or `=`, did you mean `%s %s = %s`?", peek(&token).toChars(), exp.toChars(), token.toChars(), peek(peek(&token)).toChars());
nextToken();
}
else
check(TOK.semicolon, "statement");
s = new AST.ExpStatement(loc, exp);
break;
// type-specifiers
case TOK.void_:
case TOK.char_:
case TOK.int16:
case TOK.int32:
case TOK.int64:
case TOK.__int128:
case TOK.float32:
case TOK.float64:
case TOK.signed:
case TOK.unsigned:
case TOK._Bool:
//case TOK._Imaginary:
case TOK._Complex:
case TOK.struct_:
case TOK.union_:
case TOK.enum_:
case TOK.typeof_:
// storage-class-specifiers
case TOK.typedef_:
case TOK.extern_:
case TOK.static_:
case TOK._Thread_local:
case TOK.__thread:
case TOK.auto_:
case TOK.register:
// function-specifiers
case TOK.inline:
case TOK._Noreturn:
// type-qualifiers
case TOK.const_:
case TOK.volatile:
case TOK.restrict:
case TOK.__stdcall:
// alignment-specifier
case TOK._Alignas:
// atomic-type-specifier or type_qualifier
case TOK._Atomic:
case TOK.__attribute__:
Ldeclaration:
{
cparseDeclaration(LVL.local);
if (symbols.length > 1)
{
auto as = new AST.Statements();
as.reserve(symbols.length);
foreach (d; (*symbols)[])
{
s = new AST.ExpStatement(loc, d);
as.push(s);
}
s = new AST.CompoundDeclarationStatement(loc, as);
symbols.setDim(0);
}
else if (symbols.length == 1)
{
auto d = (*symbols)[0];
s = new AST.ExpStatement(loc, d);
symbols.setDim(0);
}
else
s = new AST.ExpStatement(loc, cast(AST.Expression)null);
if (flags & ParseStatementFlags.scope_)
s = new AST.ScopeStatement(loc, s, token.loc);
break;
}
case TOK._Static_assert: // _Static_assert ( constant-expression, string-literal ) ;
s = new AST.StaticAssertStatement(cparseStaticAssert());
break;
case TOK.leftCurly:
{
/* C11 6.8.2
* compound-statement:
* { block-item-list (opt) }
*
* block-item-list:
* block-item
* block-item-list block-item
*
* block-item:
* declaration
* statement
*/
nextToken();
auto statements = new AST.Statements();
while (token.value != TOK.rightCurly && token.value != TOK.endOfFile)
{
statements.push(cparseStatement(ParseStatementFlags.curlyScope));
}
if (endPtr)
*endPtr = token.ptr;
endloc = token.loc;
if (pEndloc)
{
*pEndloc = token.loc;
pEndloc = null; // don't set it again
}
s = new AST.CompoundStatement(loc, statements);
if (flags & (ParseStatementFlags.scope_ | ParseStatementFlags.curlyScope))
s = new AST.ScopeStatement(loc, s, token.loc);
check(TOK.rightCurly, "compound statement");
break;
}
case TOK.while_:
{
nextToken();
check(TOK.leftParenthesis);
auto condition = cparseExpression();
check(TOK.rightParenthesis);
Loc endloc;
auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
s = new AST.WhileStatement(loc, condition, _body, endloc, null);
break;
}
case TOK.semicolon:
/* C11 6.8.3 null statement
*/
nextToken();
s = new AST.ExpStatement(loc, cast(AST.Expression)null);
break;
case TOK.do_:
{
nextToken();
auto _body = cparseStatement(ParseStatementFlags.scope_);
check(TOK.while_);
check(TOK.leftParenthesis);
auto condition = cparseExpression();
check(TOK.rightParenthesis);
check(TOK.semicolon, "terminating `;` required after do-while statement");
s = new AST.DoStatement(loc, _body, condition, token.loc);
break;
}
case TOK.for_:
{
AST.Statement _init;
AST.Expression condition;
AST.Expression increment;
nextToken();
check(TOK.leftParenthesis);
if (token.value == TOK.semicolon)
{
_init = null;
nextToken();
}
else
{
_init = cparseStatement(0);
}
if (token.value == TOK.semicolon)
{
condition = null;
nextToken();
}
else
{
condition = cparseExpression();
check(TOK.semicolon, "`for` condition");
}
if (token.value == TOK.rightParenthesis)
{
increment = null;
nextToken();
}
else
{
increment = cparseExpression();
check(TOK.rightParenthesis);
}
Loc endloc;
auto _body = cparseStatement(ParseStatementFlags.scope_, null, &endloc);
s = new AST.ForStatement(loc, _init, condition, increment, _body, endloc);
break;
}
case TOK.if_:
{
nextToken();
check(TOK.leftParenthesis);
auto condition = cparseExpression();
check(TOK.rightParenthesis);
auto ifbody = cparseStatement(ParseStatementFlags.scope_);
AST.Statement elsebody;
if (token.value == TOK.else_)
{
nextToken();
elsebody = cparseStatement(ParseStatementFlags.scope_);
}
else
elsebody = null;
if (condition && ifbody)
s = new AST.IfStatement(loc, null, condition, ifbody, elsebody, token.loc);
else
s = null; // don't propagate parsing errors
break;
}
case TOK.else_:
error("found `else` without a corresponding `if` statement");
goto Lerror;
case TOK.switch_:
{
nextToken();
check(TOK.leftParenthesis);
auto condition = cparseExpression();
check(TOK.rightParenthesis);
auto _body = cparseStatement(ParseStatementFlags.scope_);
s = new AST.SwitchStatement(loc, condition, _body, false);
break;
}
case TOK.case_:
{
nextToken();
auto exp = cparseAssignExp();
AST.Expression expHigh;
if (token.value == TOK.dotDotDot)
{
/* Case Ranges https://gcc.gnu.org/onlinedocs/gcc/Case-Ranges.html
*/
nextToken();
expHigh = cparseAssignExp();
}
check(TOK.colon);
if (flags & ParseStatementFlags.curlyScope)
{
auto statements = new AST.Statements();
while (token.value != TOK.case_ && token.value != TOK.default_ && token.value != TOK.endOfFile && token.value != TOK.rightCurly)
{
auto cur = cparseStatement(ParseStatementFlags.curlyScope);
statements.push(cur);
// https://issues.dlang.org/show_bug.cgi?id=21739
// Stop at the last break s.t. the following non-case statements are
// not merged into the current case. This can happen for
// case 1: ... break;
// debug { case 2: ... }
if (cur && cur.isBreakStatement())
break;
}
s = new AST.CompoundStatement(loc, statements);
}
else
{
s = cparseStatement(0);
}
s = new AST.ScopeStatement(loc, s, token.loc);
if (expHigh)
s = new AST.CaseRangeStatement(loc, exp, expHigh, s);
else
s = new AST.CaseStatement(loc, exp, s);
break;
}
case TOK.default_:
{
nextToken();
check(TOK.colon);
if (flags & ParseStatementFlags.curlyScope)
{
auto statements = new AST.Statements();
while (token.value != TOK.case_ && token.value != TOK.default_ && token.value != TOK.endOfFile && token.value != TOK.rightCurly)
{
statements.push(cparseStatement(ParseStatementFlags.curlyScope));
}
s = new AST.CompoundStatement(loc, statements);
}
else
s = cparseStatement(0);
s = new AST.ScopeStatement(loc, s, token.loc);
s = new AST.DefaultStatement(loc, s);
break;
}
case TOK.return_:
{
/* return ;
* return expression ;
*/
nextToken();
auto exp = token.value == TOK.semicolon ? null : cparseExpression();
check(TOK.semicolon, "`return` statement");
s = new AST.ReturnStatement(loc, exp);
break;
}
case TOK.break_:
nextToken();
check(TOK.semicolon, "`break` statement");
s = new AST.BreakStatement(loc, null);
break;
case TOK.continue_:
nextToken();
check(TOK.semicolon, "`continue` statement");
s = new AST.ContinueStatement(loc, null);
break;
case TOK.goto_:
{
Identifier ident;
nextToken();
if (token.value != TOK.identifier)
{
error("identifier expected following `goto`");
ident = null;
}
else
{
ident = token.ident;
nextToken();
}
s = new AST.GotoStatement(loc, ident);
check(TOK.semicolon, "`goto` statement");
break;
}
case TOK.asm_:
switch (peekNext())
{
case TOK.goto_:
case TOK.inline:
case TOK.volatile:
case TOK.leftParenthesis:
s = cparseGnuAsm();
break;
default:
// ImportC extensions: parse as a D asm block.
s = parseAsm();
break;
}
break;
default:
error("found `%s` instead of statement", token.toChars());
goto Lerror;
Lerror:
panic();
if (token.value == TOK.semicolon)
nextToken();
s = null;
break;
}
if (pEndloc)
*pEndloc = prevloc;
symbols = symbolsSave;
typedefTab.setDim(typedefTabLengthSave);
return s;
}
//}
/*******************************************************************************/
/********************************* Expression Parser ***************************/
//{
/**************
* C11 6.5.17
* expression:
* assignment-expression
* expression , assignment-expression
*/
AST.Expression cparseExpression()
{
auto loc = token.loc;
//printf("cparseExpression() loc = %d\n", loc.linnum);
auto e = cparseAssignExp();
while (token.value == TOK.comma)
{
nextToken();
auto e2 = cparseAssignExp();
e = new AST.CommaExp(loc, e, e2, false);
loc = token.loc;
}
return e;
}
/*********************
* C11 6.5.1
* primary-expression:
* identifier
* constant
* string-literal
* ( expression )
* generic-selection
* __builtin_va_arg(assign_expression, type)
*/
AST.Expression cparsePrimaryExp()
{
AST.Expression e;
const loc = token.loc;
//printf("parsePrimaryExp(): loc = %d\n", loc.linnum);
switch (token.value)
{
case TOK.identifier:
const id = token.ident.toString();
if (id.length > 2 && id[0] == '_' && id[1] == '_') // leading double underscore
{
if (token.ident is Id.__func__)
{
addFuncName = true; // implicitly declare __func__
}
else if (token.ident is Id.builtin_va_arg)
{
e = cparseBuiltin_va_arg();
break;
}
else
importBuiltins = true; // probably one of those compiler extensions
}
e = new AST.IdentifierExp(loc, token.ident);
nextToken();
break;
case TOK.charLiteral:
case TOK.int32Literal:
e = new AST.IntegerExp(loc, token.intvalue, AST.Type.tint32);
nextToken();
break;
case TOK.uns32Literal:
e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns32);
nextToken();
break;
case TOK.int64Literal:
e = new AST.IntegerExp(loc, token.intvalue, AST.Type.tint64);
nextToken();
break;
case TOK.uns64Literal:
e = new AST.IntegerExp(loc, token.unsvalue, AST.Type.tuns64);
nextToken();
break;
case TOK.float32Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.tfloat32);
nextToken();
break;
case TOK.float64Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.tfloat64);
nextToken();
break;
case TOK.float80Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.tfloat80);
nextToken();
break;
case TOK.imaginary32Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.timaginary32);
nextToken();
break;
case TOK.imaginary64Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.timaginary64);
nextToken();
break;
case TOK.imaginary80Literal:
e = new AST.RealExp(loc, token.floatvalue, AST.Type.timaginary80);
nextToken();
break;
case TOK.string_:
{
// cat adjacent strings
auto s = token.ustring;
auto len = token.len;
auto postfix = token.postfix;
while (1)
{
nextToken();
if (token.value == TOK.string_)
{
if (token.postfix)
{
if (token.postfix != postfix)
error(token.loc, "mismatched string literal postfixes `'%c'` and `'%c'`", postfix, token.postfix);
postfix = token.postfix;
}
const len1 = len;
const len2 = token.len;
len = len1 + len2;
auto s2 = cast(char*)mem.xmalloc_noscan(len * char.sizeof);
memcpy(s2, s, len1 * char.sizeof);
memcpy(s2 + len1, token.ustring, len2 * char.sizeof);
s = s2;
}
else
break;
}
e = new AST.StringExp(loc, s[0 .. len], len, 1, postfix);
break;
}
case TOK.leftParenthesis:
nextToken();
if (token.value == TOK.leftCurly)
e = cparseStatementExpression(); // gcc extension
else
e = cparseExpression();
check(TOK.rightParenthesis);
break;
case TOK._Generic:
e = cparseGenericSelection();
break;
case TOK._assert: // __check(assign-exp) extension
nextToken();
check(TOK.leftParenthesis, "`__check`");
e = parseAssignExp();
check(TOK.rightParenthesis);
e = new AST.AssertExp(loc, e, null);
break;
default:
error("expression expected, not `%s`", token.toChars());
// Anything for e, as long as it's not NULL
e = new AST.IntegerExp(loc, 0, AST.Type.tint32);
nextToken();
break;
}
return e;
}
/*********************************
* C11 6.5.2
* postfix-expression:
* primary-expression
* postfix-expression [ expression ]
* postfix-expression ( argument-expression-list (opt) )
* postfix-expression . identifier
* postfix-expression -> identifier
* postfix-expression ++
* postfix-expression --
* ( type-name ) { initializer-list }
* ( type-name ) { initializer-list , }
*
* argument-expression-list:
* assignment-expression
* argument-expression-list , assignment-expression
*/
private AST.Expression cparsePostfixExp(AST.Expression e)
{
e = cparsePrimaryExp();
return cparsePostfixOperators(e);
}
/********************************
* C11 6.5.2
* Parse a series of operators for a postfix expression after already parsing
* a primary-expression or compound literal expression.
* Params:
* e = parsed primary or compound literal expression
* Returns:
* parsed postfix expression
*/
private AST.Expression cparsePostfixOperators(AST.Expression e)
{
while (1)
{
const loc = token.loc;
switch (token.value)
{
case TOK.dot:
nextToken();
if (token.value == TOK.identifier)
{
Identifier id = token.ident;
e = new AST.DotIdExp(loc, e, id);
break;
}
error("identifier expected following `.`, not `%s`", token.toChars());
break;
case TOK.arrow:
nextToken();
if (token.value == TOK.identifier)
{
Identifier id = token.ident;
auto die = new AST.DotIdExp(loc, e, id);
die.arrow = true;
e = die;
break;
}
error("identifier expected following `->`, not `%s`", token.toChars());
break;
case TOK.plusPlus:
e = new AST.PostExp(EXP.plusPlus, loc, e);
break;
case TOK.minusMinus:
e = new AST.PostExp(EXP.minusMinus, loc, e);
break;
case TOK.leftParenthesis:
e = new AST.CallExp(loc, e, cparseArguments());
continue;
case TOK.leftBracket:
{
// array dereferences:
// array[index]
AST.Expression index;
auto arguments = new AST.Expressions();
inBrackets++;
nextToken();
index = cparseAssignExp();
arguments.push(index);
check(TOK.rightBracket);
inBrackets--;
e = new AST.ArrayExp(loc, e, arguments);
continue;
}
default:
return e;
}
nextToken();
}
}
/************************
* C11 6.5.3
* unary-expression:
* postfix-expression
* ++ unary-expression
* -- unary-expression
* unary-operator cast-expression
* sizeof unary-expression
* sizeof ( type-name )
* _Alignof ( type-name )
*
* unary-operator:
* & * + - ~ !
*/
private AST.Expression cparseUnaryExp()
{
AST.Expression e;
const loc = token.loc;
switch (token.value)
{
case TOK.plusPlus:
nextToken();
// Parse `++` as an unary operator so that cast expressions only give
// an error for being non-lvalues.
e = cparseCastExp();
e = new AST.PreExp(EXP.prePlusPlus, loc, e);
break;
case TOK.minusMinus:
nextToken();
// Parse `--` as an unary operator, same as prefix increment.
e = cparseCastExp();
e = new AST.PreExp(EXP.preMinusMinus, loc, e);
break;
case TOK.and:
nextToken();
e = cparseCastExp();
e = new AST.AddrExp(loc, e);
break;
case TOK.mul:
nextToken();
e = cparseCastExp();
e = new AST.PtrExp(loc, e);
break;
case TOK.min:
nextToken();
e = cparseCastExp();
e = new AST.NegExp(loc, e);
break;
case TOK.add:
nextToken();
e = cparseCastExp();
e = new AST.UAddExp(loc, e);
break;
case TOK.not:
nextToken();
e = cparseCastExp();
e = new AST.NotExp(loc, e);
break;
case TOK.tilde:
nextToken();
e = cparseCastExp();
e = new AST.ComExp(loc, e);
break;
case TOK.sizeof_:
{
nextToken();
if (token.value == TOK.leftParenthesis)
{
auto tk = peek(&token);
if (isTypeName(tk))
{
/* Expression may be either be requesting the sizeof a type-name
* or a compound literal, which requires checking whether
* the next token is leftCurly
*/
nextToken();
auto t = cparseTypeName();
check(TOK.rightParenthesis);
if (token.value == TOK.leftCurly)
{
// ( type-name ) { initializer-list }
auto ci = cparseInitializer();
e = new AST.CompoundLiteralExp(loc, t, ci);
e = cparsePostfixOperators(e);
}
else
{
// ( type-name )
e = new AST.TypeExp(loc, t);
}
}
else
{
// must be an expression
e = cparseUnaryExp();
}
}
else
{
//C11 6.5.3
e = cparseUnaryExp();
}
e = new AST.DotIdExp(loc, e, Id.__sizeof);
break;
}
case TOK._Alignof:
{
nextToken();
check(TOK.leftParenthesis);
auto t = cparseTypeName();
check(TOK.rightParenthesis);
e = new AST.TypeExp(loc, t);
e = new AST.DotIdExp(loc, e, Id.__xalignof);
break;
}
default:
e = cparsePostfixExp(e);
break;
}
assert(e);
return e;
}
/**************
* C11 6.5.4
* cast-expression
* unary-expression
* ( type-name ) cast-expression
*/
private AST.Expression cparseCastExp()
{
if (token.value == TOK.leftParenthesis)
{
//printf("cparseCastExp()\n");
auto tk = peek(&token);
bool iscast;
bool isexp;
if (tk.value == TOK.identifier)
{
iscast = isTypedef(tk.ident);
isexp = !iscast;
}
if (isexp)
{
// ( identifier ) is an expression
return cparseUnaryExp();
}
// If ( type-name )
auto pt = &token;
if (isCastExpression(pt))
{
// Expression may be either a cast or a compound literal, which
// requires checking whether the next token is leftCurly
const loc = token.loc;
nextToken();
auto t = cparseTypeName();
check(TOK.rightParenthesis);
pt = &token;
if (token.value == TOK.leftCurly)
{
// C11 6.5.2.5 ( type-name ) { initializer-list }
auto ci = cparseInitializer();
auto ce = new AST.CompoundLiteralExp(loc, t, ci);
return cparsePostfixOperators(ce);
}
if (iscast)
{
// ( type-name ) cast-expression
auto ce = cparseCastExp();
return new AST.CastExp(loc, ce, t);
}
if (t.isTypeIdentifier() &&
isexp &&
token.value == TOK.leftParenthesis &&
!isCastExpression(pt))
{
/* (t)(...)... might be a cast expression or a function call,
* with different grammars: a cast would be cparseCastExp(),
* a function call would be cparsePostfixExp(CallExp(cparseArguments())).
* We can't know until t is known. So, parse it as a function call
* and let semantic() rewrite the AST as a CastExp if it turns out
* to be a type.
*/
auto ie = new AST.IdentifierExp(loc, t.isTypeIdentifier().ident);
ie.parens = true; // let semantic know it might be a CastExp
AST.Expression e = new AST.CallExp(loc, ie, cparseArguments());
return cparsePostfixOperators(e);
}
// ( type-name ) cast-expression
auto ce = cparseCastExp();
return new AST.CastExp(loc, ce, t);
}
}
return cparseUnaryExp();
}
/**************
* C11 6.5.5
* multiplicative-expression
* cast-expression
* multiplicative-expression * cast-expression
* multiplicative-expression / cast-expression
* multiplicative-expression % cast-expression
*/
private AST.Expression cparseMulExp()
{
const loc = token.loc;
auto e = cparseCastExp();
while (1)
{
switch (token.value)
{
case TOK.mul:
nextToken();
auto e2 = cparseCastExp();
e = new AST.MulExp(loc, e, e2);
continue;
case TOK.div:
nextToken();
auto e2 = cparseCastExp();
e = new AST.DivExp(loc, e, e2);
continue;
case TOK.mod:
nextToken();
auto e2 = cparseCastExp();
e = new AST.ModExp(loc, e, e2);
continue;
default:
break;
}
break;
}
return e;
}
/**************
* C11 6.5.6
* additive-expression
* multiplicative-expression
* additive-expression + multiplicative-expression
* additive-expression - multiplicative-expression
*/
private AST.Expression cparseAddExp()
{
const loc = token.loc;
auto e = cparseMulExp();
while (1)
{
switch (token.value)
{
case TOK.add:
nextToken();
auto e2 = cparseMulExp();
e = new AST.AddExp(loc, e, e2);
continue;
case TOK.min:
nextToken();
auto e2 = cparseMulExp();
e = new AST.MinExp(loc, e, e2);
continue;
default:
break;
}
break;
}
return e;
}
/**************
* C11 6.5.7
* shift-expression
* additive-expression
* shift-expression << additive-expression
* shift-expression >> additive-expression
*/
private AST.Expression cparseShiftExp()
{
const loc = token.loc;
auto e = cparseAddExp();
while (1)
{
switch (token.value)
{
case TOK.leftShift:
nextToken();
auto e2 = cparseAddExp();
e = new AST.ShlExp(loc, e, e2);
continue;
case TOK.rightShift:
nextToken();
auto e2 = cparseAddExp();
e = new AST.ShrExp(loc, e, e2);
continue;
default:
break;
}
break;
}
return e;
}
/**************
* C11 6.5.8
* relational-expression
* shift-expression
* relational-expression < shift-expression
* relational-expression > shift-expression
* relational-expression <= shift-expression
* relational-expression >= shift-expression
*/
private AST.Expression cparseRelationalExp()
{
const loc = token.loc;
auto e = cparseShiftExp();
EXP op = EXP.reserved;
switch (token.value)
{
case TOK.lessThan: op = EXP.lessThan; goto Lcmp;
case TOK.lessOrEqual: op = EXP.lessOrEqual; goto Lcmp;
case TOK.greaterThan: op = EXP.greaterThan; goto Lcmp;
case TOK.greaterOrEqual: op = EXP.greaterOrEqual; goto Lcmp;
Lcmp:
nextToken();
auto e2 = cparseShiftExp();
e = new AST.CmpExp(op, loc, e, e2);
break;
default:
break;
}
return e;
}
/**************
* C11 6.5.9
* equality-expression
* relational-expression
* equality-expression == relational-expression
* equality-expression != relational-expression
*/
private AST.Expression cparseEqualityExp()
{
const loc = token.loc;
auto e = cparseRelationalExp();
EXP op = EXP.reserved;
switch (token.value)
{
case TOK.equal: op = EXP.equal; goto Lequal;
case TOK.notEqual: op = EXP.notEqual; goto Lequal;
Lequal:
nextToken();
auto e2 = cparseRelationalExp();
e = new AST.EqualExp(op, loc, e, e2);
break;
default:
break;
}
return e;
}
/**************
* C11 6.5.10
* AND-expression
* equality-expression
* AND-expression & equality-expression
*/
private AST.Expression cparseAndExp()
{
Loc loc = token.loc;
auto e = cparseEqualityExp();
while (token.value == TOK.and)
{
nextToken();
auto e2 = cparseEqualityExp();
e = new AST.AndExp(loc, e, e2);
loc = token.loc;
}
return e;
}
/**************
* C11 6.5.11
* exclusive-OR-expression
* AND-expression
* exclusive-OR-expression ^ AND-expression
*/
private AST.Expression cparseXorExp()
{
const loc = token.loc;
auto e = cparseAndExp();
while (token.value == TOK.xor)
{
nextToken();
auto e2 = cparseAndExp();
e = new AST.XorExp(loc, e, e2);
}
return e;
}
/**************
* C11 6.5.12
* inclusive-OR-expression
* exclusive-OR-expression
* inclusive-OR-expression | exclusive-OR-expression
*/
private AST.Expression cparseOrExp()
{
const loc = token.loc;
auto e = cparseXorExp();
while (token.value == TOK.or)
{
nextToken();
auto e2 = cparseXorExp();
e = new AST.OrExp(loc, e, e2);
}
return e;
}
/**************
* C11 6.5.13
* logical-AND-expression
* inclusive-OR-expression
* logical-AND-expression && inclusive-OR-expression
*/
private AST.Expression cparseAndAndExp()
{
const loc = token.loc;
auto e = cparseOrExp();
while (token.value == TOK.andAnd)
{
nextToken();
auto e2 = cparseOrExp();
e = new AST.LogicalExp(loc, EXP.andAnd, e, e2);
}
return e;
}
/**************
* C11 6.5.14
* logical-OR-expression
* logical-AND-expression
* logical-OR-expression || logical-AND-expression
*/
private AST.Expression cparseOrOrExp()
{
const loc = token.loc;
auto e = cparseAndAndExp();
while (token.value == TOK.orOr)
{
nextToken();
auto e2 = cparseAndAndExp();
e = new AST.LogicalExp(loc, EXP.orOr, e, e2);
}
return e;
}
/**************
* C11 6.5.15
* conditional-expression:
* logical-OR-expression
* logical-OR-expression ? expression : conditional-expression
*/
private AST.Expression cparseCondExp()
{
const loc = token.loc;
auto e = cparseOrOrExp();
if (token.value == TOK.question)
{
nextToken();
auto e1 = cparseExpression();
check(TOK.colon);
auto e2 = cparseCondExp();
e = new AST.CondExp(loc, e, e1, e2);
}
return e;
}
/**************
* C11 6.5.16
* assignment-expression:
* conditional-expression
* unary-expression assignment-operator assignment-expression
*
* assignment-operator:
* = *= /= %= += -= <<= >>= &= ^= |=
*/
AST.Expression cparseAssignExp()
{
AST.Expression e;
e = cparseCondExp(); // constrain it to being unary-expression in semantic pass
if (e is null)
return e;
const loc = token.loc;
switch (token.value)
{
case TOK.assign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.AssignExp(loc, e, e2);
break;
case TOK.addAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.AddAssignExp(loc, e, e2);
break;
case TOK.minAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.MinAssignExp(loc, e, e2);
break;
case TOK.mulAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.MulAssignExp(loc, e, e2);
break;
case TOK.divAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.DivAssignExp(loc, e, e2);
break;
case TOK.modAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.ModAssignExp(loc, e, e2);
break;
case TOK.andAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.AndAssignExp(loc, e, e2);
break;
case TOK.orAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.OrAssignExp(loc, e, e2);
break;
case TOK.xorAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.XorAssignExp(loc, e, e2);
break;
case TOK.leftShiftAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.ShlAssignExp(loc, e, e2);
break;
case TOK.rightShiftAssign:
nextToken();
auto e2 = cparseAssignExp();
e = new AST.ShrAssignExp(loc, e, e2);
break;
default:
break;
}
return e;
}
/***********************
* C11 6.5.1.1
* _Generic ( assignment-expression, generic-assoc-list )
*
* generic-assoc-list:
* generic-association
* generic-assoc-list generic-association
*
* generic-association:
* type-name : assignment-expression
* default : assignment-expression
*/
private AST.Expression cparseGenericSelection()
{
const loc = token.loc;
nextToken();
check(TOK.leftParenthesis);
auto cntlExp = cparseAssignExp();
check(TOK.comma);
auto types = new AST.Types();
auto exps = new AST.Expressions();
bool sawDefault;
while (1)
{
AST.Type t;
if (token.value == TOK.default_)
{
nextToken();
if (sawDefault)
error("only one `default` allowed in generic-assoc-list");
sawDefault = true;
t = null;
}
else
t = cparseTypeName();
types.push(t);
check(TOK.colon);
auto e = cparseAssignExp();
exps.push(e);
if (token.value == TOK.rightParenthesis || token.value == TOK.endOfFile)
break;
check(TOK.comma);
}
check(TOK.rightParenthesis);
return new AST.GenericExp(loc, cntlExp, types, exps);
}
/***********************
* C11 6.6 Constant expressions
* constant-expression:
* conditional-expression
*/
private AST.Expression cparseConstantExp()
{
return cparseAssignExp();
}
/*****************************
* gcc extension:
* type __builtin_va_arg(assign-expression, type)
* Rewrite as `va_arg` template from `core.stdc.stdarg`:
* va_arg!(type)(assign-expression);
* Lexer is on `__builtin_va_arg`
*/
private AST.Expression cparseBuiltin_va_arg()
{
importBuiltins = true; // need core.stdc.stdarg
nextToken();
check(TOK.leftParenthesis);
auto arguments = new AST.Expressions();
auto arg = cparseAssignExp();
arguments.push(arg);
check(TOK.comma);
auto t = cparseTypeName();
auto tiargs = new AST.Objects();
tiargs.push(t);
const loc = loc;
auto ti = new AST.TemplateInstance(loc, Id.va_arg, tiargs);
auto tie = new AST.ScopeExp(loc, ti);
AST.Expression e = new AST.CallExp(loc, tie, arguments);
check(TOK.rightParenthesis);
return e;
}
/*****************************
* gcc extension: https://gcc.gnu.org/onlinedocs/gcc/Statement-Exprs.html
* Represent as a function literal, then call the function literal.
* Parser is on opening curly brace.
*/
private AST.Expression cparseStatementExpression()
{
AST.ParameterList parameterList;
StorageClass stc = 0;
const loc = token.loc;
typedefTab.push(null);
auto fbody = cparseStatement(ParseStatementFlags.scope_);
typedefTab.pop(); // end of function scope
// Rewrite last ExpStatement (if there is one) as a ReturnStatement
auto ss = fbody.isScopeStatement();
auto cs = ss.statement.isCompoundStatement();
assert(cs);
if (const len = (*cs.statements).length)
{
auto s = (*cs.statements)[len - 1];
if (auto es = s.isExpStatement())
(*cs.statements)[len - 1] = new AST.ReturnStatement(es.loc, es.exp);
}
auto tf = new AST.TypeFunction(parameterList, null, LINK.d, stc);
auto fd = new AST.FuncLiteralDeclaration(loc, token.loc, tf, TOK.delegate_, null, null, 0);
fd.fbody = fbody;
auto fe = new AST.FuncExp(loc, fd);
auto args = new AST.Expressions();
auto e = new AST.CallExp(loc, fe, args); // call the function literal
return e;
}
//}
/********************************************************************************/
/********************************* Declaration Parser ***************************/
//{
/*************************************
* C11 6.7
* declaration:
* declaration-specifiers init-declarator-list (opt) ;
* static_assert-declaration
*
* init-declarator-list:
* init-declarator
* init-declarator-list , init-declarator
*
* init-declarator:
* declarator
* declarator = initializer
*
* Params:
* level = declaration context
*/
void cparseDeclaration(LVL level)
{
//printf("cparseDeclaration(level = %d)\n", level);
if (token.value == TOK._Static_assert)
{
auto s = cparseStaticAssert();
symbols.push(s);
return;
}
if (token.value == TOK.__pragma)
{
uupragmaDirective(scanloc);
return;
}
if (token.value == TOK._import) // import declaration extension
{
auto a = parseImport();
if (a && a.length)
symbols.append(a);
return;
}
const typedefTabLengthSave = typedefTab.length;
auto symbolsSave = symbols;
Specifier specifier;
specifier.packalign = this.packalign;
auto tspec = cparseDeclarationSpecifiers(level, specifier);
AST.Dsymbol declareTag(AST.TypeTag tt, ref Specifier specifier)
{
/* `struct tag;` and `struct tag { ... };`
* always result in a declaration in the current scope
*/
auto stag = (tt.tok == TOK.struct_) ? new AST.StructDeclaration(tt.loc, tt.id, false) :
(tt.tok == TOK.union_) ? new AST.UnionDeclaration(tt.loc, tt.id) :
new AST.EnumDeclaration(tt.loc, tt.id, tt.base);
if (!tt.packalign.isUnknown())
{
// saw `struct __declspec(align(N)) Tag ...`
auto st = stag.isStructDeclaration();
st.alignment = tt.packalign;
}
stag.members = tt.members;
tt.members = null;
if (!symbols)
symbols = new AST.Dsymbols();
auto stags = applySpecifier(stag, specifier);
symbols.push(stags);
return stags;
}
/* If a declarator does not follow, it is unnamed
*/
if (token.value == TOK.semicolon)
{
if (!tspec)
{
nextToken();
return; // accept empty declaration as an extension
}
if (auto ti = tspec.isTypeIdentifier())
{
// C11 6.7.2-2
error("type-specifier missing for declaration of `%s`", ti.ident.toChars());
nextToken();
return;
}
nextToken();
auto tt = tspec.isTypeTag();
if (!tt ||
!tt.id && (tt.tok == TOK.struct_ || tt.tok == TOK.union_))
return; // legal but meaningless empty declaration, ignore it
auto stags = declareTag(tt, specifier);
if (0 && tt.tok == TOK.enum_) // C11 proscribes enums with no members, but we allow it
{
if (!tt.members)
error(tt.loc, "`enum %s` has no members", stags.toChars());
}
return;
}
if (!tspec)
{
error("no type for declarator before `%s`", token.toChars());
panic();
nextToken();
return;
}
if (tspec && specifier.mod & MOD.xconst)
{
tspec = toConst(tspec);
specifier.mod &= ~MOD.xnone; // 'used' it
}
void scanPastSemicolon()
{
while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
nextToken();
nextToken();
}
if (token.value == TOK.assign && tspec && tspec.isTypeIdentifier())
{
/* C11 6.7.2-2
* Special check for `const b = 1;` because some compilers allow it
*/
error("type-specifier omitted for declaration of `%s`", tspec.isTypeIdentifier().ident.toChars());
return scanPastSemicolon();
}
bool first = true;
while (1)
{
Identifier id;
AST.StringExp asmName;
auto dt = cparseDeclarator(DTR.xdirect, tspec, id, specifier);
if (!dt)
{
panic();
nextToken();
break; // error recovery
}
/* GNU Extensions
* init-declarator:
* declarator simple-asm-expr (opt) gnu-attributes (opt)
* declarator simple-asm-expr (opt) gnu-attributes (opt) = initializer
*/
switch (token.value)
{
case TOK.assign:
case TOK.comma:
case TOK.semicolon:
case TOK.asm_:
case TOK.__attribute__:
if (token.value == TOK.asm_)
asmName = cparseGnuAsmLabel();
if (token.value == TOK.__attribute__)
{
cparseGnuAttributes(specifier);
if (token.value == TOK.leftCurly)
break; // function definition
}
/* This is a data definition, there cannot now be a
* function definition.
*/
first = false;
break;
default:
break;
}
if (specifier.alignExps && dt.isTypeFunction())
error("no alignment-specifier for function declaration"); // C11 6.7.5-2
if (specifier.alignExps && specifier.scw == SCW.xregister)
error("no alignment-specifier for `register` storage class"); // C11 6.7.5-2
/* C11 6.9.1 Function Definitions
* function-definition:
* declaration-specifiers declarator declaration-list (opt) compound-statement
*
* declaration-list:
* declaration
* declaration-list declaration
*/
auto t = &token;
if (first && // first declarator
id &&
dt.isTypeFunction() && // function type not inherited from a typedef
isDeclarationList(t) && // optional declaration-list
level == LVL.global && // function definitions only at global scope
t.value == TOK.leftCurly) // start of compound-statement
{
auto s = cparseFunctionDefinition(id, dt.isTypeFunction(), specifier);
typedefTab.setDim(typedefTabLengthSave);
symbols = symbolsSave;
symbols.push(s);
return;
}
AST.Dsymbol s = null;
typedefTab.setDim(typedefTabLengthSave);
symbols = symbolsSave;
if (!symbols)
symbols = new AST.Dsymbols; // lazilly create it
if (level != LVL.global && !tspec && !specifier.scw && !specifier.mod)
error("declaration-specifier-seq required");
else if (specifier.scw == SCW.xtypedef)
{
if (token.value == TOK.assign)
error("no initializer for typedef declaration");
if (specifier.alignExps)
error("no alignment-specifier for typedef declaration"); // C11 6.7.5-2
bool isalias = true;
if (auto ts = dt.isTypeStruct())
{
if (ts.sym.isAnonymous())
{
// This is a typedef for an anonymous struct-or-union.
// Directly set the ident for the struct-or-union.
ts.sym.ident = id;
isalias = false;
}
}
else if (auto te = dt.isTypeEnum())
{
if (te.sym.isAnonymous())
{
// This is a typedef for an anonymous enum.
te.sym.ident = id;
isalias = false;
}
}
else if (auto tt = dt.isTypeTag())
{
if (tt.id || tt.tok == TOK.enum_)
{
if (!tt.id && id)
tt.id = id;
Specifier spec;
auto stag = declareTag(tt, spec);
if (tt.tok == TOK.enum_)
{
isalias = false;
s = new AST.AliasDeclaration(token.loc, id, stag);
}
}
}
if (isalias)
s = new AST.AliasDeclaration(token.loc, id, dt);
insertTypedefToTypedefTab(id, dt); // remember typedefs
}
else if (id)
{
if (auto tt = dt.isTypeTag())
{
if (tt.members && (tt.id || tt.tok == TOK.enum_))
{
Specifier spec;
declareTag(tt, spec);
}
}
if (level == LVL.prototype)
break; // declared later as Parameter, not VarDeclaration
if (dt.ty == AST.Tvoid)
error("`void` has no value");
AST.Initializer initializer;
bool hasInitializer;
if (token.value == TOK.assign)
{
nextToken();
hasInitializer = true;
initializer = cparseInitializer();
}
// declare the symbol
assert(id);
if (isFunctionTypedef(dt))
{
if (hasInitializer)
error("no initializer for function declaration");
if (specifier.scw & SCW.x_Thread_local)
error("functions cannot be `_Thread_local`"); // C11 6.7.1-4
auto fd = new AST.FuncDeclaration(token.loc, Loc.initial, id, specifiersToSTC(level, specifier), dt, specifier.noreturn);
specifiersToFuncDeclaration(fd, specifier);
s = fd;
}
else
{
// Give non-extern variables an implicit void initializer
// if one has not been explicitly set.
if (!hasInitializer &&
!(specifier.scw & (SCW.xextern | SCW.xstatic | SCW.x_Thread_local) || level == LVL.global))
initializer = new AST.VoidInitializer(token.loc);
auto vd = new AST.VarDeclaration(token.loc, dt, id, initializer, specifiersToSTC(level, specifier));
specifiersToVarDeclaration(vd, specifier);
s = vd;
}
if (level != LVL.global)
insertIdToTypedefTab(id); // non-typedef declarations can hide typedefs in outer scopes
}
if (s !is null)
{
// Saw `asm("name")` in the function, type, or variable definition.
// This is equivalent to `pragma(mangle, "name")` in D
if (asmName)
{
/*
https://issues.dlang.org/show_bug.cgi?id=23012
Ideally this would be translated to a pragma(mangle)
decl. This is not possible because ImportC symbols are
(currently) merged before semantic analysis is performed,
so the pragma(mangle) never effects any change on the declarations
it pertains too.
Writing to mangleOverride directly avoids this, and is possible
because C only a StringExp is allowed unlike a full fat pragma(mangle)
which is more liberal.
*/
if (auto p = s.isDeclaration())
{
auto str = asmName.peekString();
p.mangleOverride = str;
// p.adFlags |= AST.VarDeclaration.nounderscore;
p.adFlags |= 4; // cannot get above line to compile on Ubuntu
}
}
s = applySpecifier(s, specifier);
if (level == LVL.local)
{
// Wrap the declaration in `extern (C) { declaration }`
// Necessary for function pointers, but harmless to apply to all.
auto decls = new AST.Dsymbols(1);
(*decls)[0] = s;
s = new AST.LinkDeclaration(s.loc, linkage, decls);
}
symbols.push(s);
}
first = false;
switch (token.value)
{
case TOK.identifier:
if (s)
{
error(token.loc, "missing comma or semicolon after declaration of `%s`, found `%s` instead", s.toChars(), token.toChars());
goto Lend;
}
goto default;
case TOK.semicolon:
nextToken();
return;
case TOK.comma:
if (!symbolsSave)
symbolsSave = symbols;
nextToken();
break;
default:
error("`=`, `;` or `,` expected to end declaration instead of `%s`", token.toChars());
Lend:
return scanPastSemicolon();
}
}
}
/***************************************
* C11 Function Definitions
* function-definition
* declaration-specifiers declarator declaration-list (opt) compound-statement
*
* declaration-list:
* declaration
* declaration-list declaration
*
* It's already been parsed up to the declaration-list (opt).
* Pick it up from there.
* Params:
* id = function identifier
* ft = function type
* specifier = function specifiers
* Returns:
* Dsymbol for the function
*/
AST.Dsymbol cparseFunctionDefinition(Identifier id, AST.TypeFunction ft, ref Specifier specifier)
{
/* Start function scope
*/
typedefTab.push(null);
if (token.value != TOK.leftCurly) // if not start of a compound-statement
{
// Do declaration-list
do
{
cparseDeclaration(LVL.parameter);
} while (token.value != TOK.leftCurly);
/* Since there were declarations, the parameter-list must have been
* an identifier-list.
*/
ft.parameterList.hasIdentifierList = true; // semantic needs to know to adjust parameter types
auto pl = ft.parameterList;
if (pl.varargs != AST.VarArg.none && pl.length)
error("function identifier-list cannot end with `...`");
ft.parameterList.varargs = AST.VarArg.KRvariadic; // but C11 allows extra arguments
auto plLength = pl.length;
if (symbols.length != plLength)
error(token.loc, "%d identifiers does not match %d declarations", cast(int)plLength, cast(int)symbols.length);
/* Transfer the types and storage classes from symbols[] to pl[]
*/
foreach (i; 0 .. plLength)
{
auto p = pl[i]; // yes, quadratic
// Convert typedef-identifier to identifier
if (p.type)
{
if (auto t = p.type.isTypeIdentifier())
{
p.ident = t.ident;
p.type = null;
}
}
if (p.type || !(p.storageClass & STC.parameter))
error("storage class and type are not allowed in identifier-list");
foreach (s; (*symbols)[]) // yes, quadratic
{
auto ad = s.isAttribDeclaration();
if (ad)
s = (*ad.decl)[0]; // AlignDeclaration wrapping the declaration
auto d = s.isDeclaration();
if (d && p.ident == d.ident && d.type)
{
p.type = d.type;
p.storageClass = d.storage_class;
d.type = null; // don't reuse
break;
}
}
if (!p.type)
{
error("no declaration for identifier `%s`", p.ident.toChars());
p.type = AST.Type.terror;
}
}
}
addFuncName = false; // gets set to true if somebody references __func__ in this function
const locFunc = token.loc;
auto body = cparseStatement(ParseStatementFlags.curly); // don't start a new scope; continue with parameter scope
typedefTab.pop(); // end of function scope
auto fd = new AST.FuncDeclaration(locFunc, prevloc, id, specifiersToSTC(LVL.global, specifier), ft, specifier.noreturn);
specifiersToFuncDeclaration(fd, specifier);
if (addFuncName)
{
auto s = createFuncName(locFunc, id);
body = new AST.CompoundStatement(locFunc, s, body);
}
fd.fbody = body;
// TODO add `symbols` to the function's local symbol table `sc2` in FuncDeclaration::semantic3()
return fd;
}
/***************************************
* C11 Initialization
* initializer:
* assignment-expression
* { initializer-list }
* { initializer-list , }
*
* initializer-list:
* designation (opt) initializer
* initializer-list , designation (opt) initializer
*
* designation:
* designator-list =
*
* designator-list:
* designator
* designator-list designator
*
* designator:
* [ constant-expression ]
* . identifier
* Returns:
* initializer
*/
AST.Initializer cparseInitializer()
{
if (token.value != TOK.leftCurly)
{
auto ae = cparseAssignExp(); // assignment-expression
return new AST.ExpInitializer(token.loc, ae);
}
nextToken();
const loc = token.loc;
/* Collect one or more `designation (opt) initializer`
* into ci.initializerList, but lazily create ci
*/
AST.CInitializer ci;
while (1)
{
/* There can be 0 or more designators preceding an initializer.
* Collect them in desigInit
*/
AST.DesigInit desigInit;
while (1)
{
if (token.value == TOK.leftBracket) // [ constant-expression ]
{
nextToken();
auto e = cparseConstantExp();
check(TOK.rightBracket);
if (!desigInit.designatorList)
desigInit.designatorList = new AST.Designators;
desigInit.designatorList.push(AST.Designator(e));
}
else if (token.value == TOK.dot) // . identifier
{
nextToken();
if (token.value != TOK.identifier)
{
error("identifier expected following `.` designator");
break;
}
if (!desigInit.designatorList)
desigInit.designatorList = new AST.Designators;
desigInit.designatorList.push(AST.Designator(token.ident));
nextToken();
}
else
{
if (desigInit.designatorList)
check(TOK.assign);
break;
}
}
desigInit.initializer = cparseInitializer();
if (!ci)
ci = new AST.CInitializer(loc);
ci.initializerList.push(desigInit);
if (token.value == TOK.comma)
{
nextToken();
if (token.value != TOK.rightCurly)
continue;
}
break;
}
check(TOK.rightCurly);
//printf("ci: %s\n", ci.toChars());
return ci;
}
/*************************************
* C11 6.7
* declaration-specifier:
* storage-class-specifier declaration-specifiers (opt)
* type-specifier declaration-specifiers (opt)
* type-qualifier declaration-specifiers (opt)
* function-specifier declaration-specifiers (opt)
* alignment-specifier declaration-specifiers (opt)
* Params:
* level = declaration context
* specifier = specifiers in and out
* Returns:
* resulting type, null if not specified
*/
private AST.Type cparseDeclarationSpecifiers(LVL level, ref Specifier specifier)
{
enum TKW : uint
{
xnone = 0,
xchar = 1,
xsigned = 2,
xunsigned = 4,
xshort = 8,
xint = 0x10,
xlong = 0x20,
xllong = 0x40,
xfloat = 0x80,
xdouble = 0x100,
xldouble = 0x200,
xtag = 0x400,
xident = 0x800,
xvoid = 0x1000,
xbool = 0x4000,
ximaginary = 0x8000,
xcomplex = 0x10000,
x_Atomic = 0x20000,
xint128 = 0x40000,
}
AST.Type t;
Loc loc;
//printf("parseDeclarationSpecifiers()\n");
TKW tkw;
SCW scw = specifier.scw & SCW.xtypedef;
MOD mod;
Identifier id;
Identifier previd;
Lwhile:
while (1)
{
//printf("token %s\n", token.toChars());
TKW tkwx;
SCW scwx;
MOD modx;
switch (token.value)
{
// Storage class specifiers
case TOK.static_: scwx = SCW.xstatic; break;
case TOK.extern_: scwx = SCW.xextern; break;
case TOK.auto_: scwx = SCW.xauto; break;
case TOK.register: scwx = SCW.xregister; break;
case TOK.typedef_: scwx = SCW.xtypedef; break;
case TOK.inline: scwx = SCW.xinline; break;
case TOK._Noreturn: scwx = SCW.x_Noreturn; break;
case TOK.__thread:
case TOK._Thread_local: scwx = SCW.x_Thread_local; break;
// Type qualifiers
case TOK.const_: modx = MOD.xconst; break;
case TOK.volatile: modx = MOD.xvolatile; break;
case TOK.restrict: modx = MOD.xrestrict; break;
case TOK.__stdcall: modx = MOD.x__stdcall; break;
// Type specifiers
case TOK.char_: tkwx = TKW.xchar; break;
case TOK.signed: tkwx = TKW.xsigned; break;
case TOK.unsigned: tkwx = TKW.xunsigned; break;
case TOK.int16: tkwx = TKW.xshort; break;
case TOK.int32: tkwx = TKW.xint; break;
case TOK.int64: tkwx = TKW.xlong; break;
case TOK.__int128: tkwx = TKW.xint128; break;
case TOK.float32: tkwx = TKW.xfloat; break;
case TOK.float64: tkwx = TKW.xdouble; break;
case TOK.void_: tkwx = TKW.xvoid; break;
case TOK._Bool: tkwx = TKW.xbool; break;
case TOK._Imaginary: tkwx = TKW.ximaginary; break;
case TOK._Complex: tkwx = TKW.xcomplex; break;
case TOK.identifier:
tkwx = TKW.xident;
id = token.ident;
break;
case TOK.struct_:
case TOK.union_:
{
const structOrUnion = token.value;
const sloc = token.loc;
nextToken();
Specifier tagSpecifier;
/* GNU Extensions
* struct-or-union-specifier:
* struct-or-union gnu-attributes (opt) identifier (opt) { struct-declaration-list } gnu-attributes (opt)
* struct-or-union gnu-attribute (opt) identifier
*/
while (1)
{
if (token.value == TOK.__attribute__)
cparseGnuAttributes(tagSpecifier);
else if (token.value == TOK.__declspec)
cparseDeclspec(tagSpecifier);
else
break;
}
t = cparseStruct(sloc, structOrUnion, tagSpecifier.packalign, symbols);
tkwx = TKW.xtag;
break;
}
case TOK.enum_:
t = cparseEnum(symbols);
tkwx = TKW.xtag;
break;
case TOK._Atomic:
{
// C11 6.7.2.4
// type-specifier if followed by `( type-name )`
auto tk = peek(&token);
if (tk.value == TOK.leftParenthesis)
{
tk = peek(tk);
if (isTypeName(tk) && tk.value == TOK.rightParenthesis)
{
nextToken();
nextToken();
t = cparseTypeName();
tkwx = TKW.x_Atomic;
break;
}
}
// C11 6.7.3 type-qualifier if not
modx = MOD.x_Atomic;
break;
}
case TOK._Alignas:
{
/* C11 6.7.5
* _Alignas ( type-name )
* _Alignas ( constant-expression )
*/
if (level & (LVL.parameter | LVL.prototype))
error("no alignment-specifier for parameters"); // C11 6.7.5-2
nextToken();
check(TOK.leftParenthesis);
AST.Expression exp;
auto tk = &token;
if (isTypeName(tk)) // _Alignas ( type-name )
{
auto talign = cparseTypeName();
/* Convert type to expression: `talign.alignof`
*/
auto e = new AST.TypeExp(loc, talign);
exp = new AST.DotIdExp(loc, e, Id.__xalignof);
}
else // _Alignas ( constant-expression )
{
exp = cparseConstantExp();
}
if (!specifier.alignExps)
specifier.alignExps = new AST.Expressions(0);
specifier.alignExps.push(exp);
check(TOK.rightParenthesis);
break;
}
case TOK.__attribute__:
{
/* GNU Extensions
* declaration-specifiers:
* gnu-attributes declaration-specifiers (opt)
*/
cparseGnuAttributes(specifier);
break;
}
case TOK.__declspec:
{
/* Microsoft extension
*/
cparseDeclspec(specifier);
break;
}
case TOK.typeof_:
{
nextToken();
check(TOK.leftParenthesis);
auto tk = &token;
AST.Expression e;
if (isTypeName(tk))
e = new AST.TypeExp(loc, cparseTypeName());
else
e = cparseExpression();
t = new AST.TypeTypeof(loc, e);
if(token.value == TOK.rightParenthesis)
nextToken();
else
{
t = AST.Type.terror;
error("`typeof` operator expects an expression or type name in parentheses");
// skipParens et. al expect to be on the opening parenthesis
int parens;
loop: while(1)
{
switch(token.value)
{
case TOK.leftParenthesis:
parens++;
break;
case TOK.rightParenthesis:
parens--;
if(parens < 0)
goto case;
break;
case TOK.endOfFile:
break loop;
default:
}
nextToken();
}
}
tkwx = TKW.xtag;
break;
}
default:
break Lwhile;
}
if (tkwx)
{
if (tkw & TKW.xlong && tkwx & TKW.xlong)
{
tkw &= ~TKW.xlong;
tkwx = TKW.xllong;
}
if (tkw && tkwx & TKW.xident)
{
// 2nd identifier can't be a typedef
break Lwhile; // leave parser on the identifier for the following declarator
}
else if (tkwx & TKW.xident)
{
// 1st identifier, save it for TypeIdentifier
previd = id;
}
if (tkw & TKW.xident && tkwx || // typedef-name followed by type-specifier
tkw & tkwx) // duplicate type-specifiers
{
error("illegal combination of type specifiers");
tkwx = TKW.init;
}
tkw |= tkwx;
if (!(tkwx & TKW.xtag)) // if parser already advanced
nextToken();
continue;
}
if (modx)
{
mod |= modx;
nextToken();
continue;
}
if (scwx)
{
if (scw & scwx)
error("duplicate storage class");
scw |= scwx;
// C11 6.7.1-2 At most one storage-class may be given, except that
// _Thread_local may appear with static or extern.
const scw2 = scw & (SCW.xstatic | SCW.xextern | SCW.xauto | SCW.xregister | SCW.xtypedef);
if (scw2 & (scw2 - 1) ||
scw & (SCW.x_Thread_local) && scw & (SCW.xauto | SCW.xregister | SCW.xtypedef))
{
error("multiple storage classes in declaration specifiers");
scw &= ~scwx;
}
if (level == LVL.local &&
scw & (SCW.x_Thread_local) && scw & (SCW.xinline | SCW.x_Noreturn))
{
error("`inline` and `_Noreturn` function specifiers not allowed for `_Thread_local`");
scw &= ~scwx;
}
if (level == LVL.local &&
scw & (SCW.x_Thread_local) && !(scw & (SCW.xstatic | SCW.xextern)))
{
error("`_Thread_local` in block scope must be accompanied with `static` or `extern`"); // C11 6.7.1-3
scw &= ~scwx;
}
if (level & (LVL.parameter | LVL.prototype) &&
scw & ~SCW.xregister)
{
error("only `register` storage class allowed for function parameters");
scw &= ~scwx;
}
if (level == LVL.global &&
scw & (SCW.xauto | SCW.xregister))
{
error("`auto` and `register` storage class not allowed for global");
scw &= ~scwx;
}
nextToken();
continue;
}
}
specifier.scw = scw;
specifier.mod = mod;
// Convert TKW bits to type t
switch (tkw)
{
case TKW.xnone: t = null; break;
case TKW.xchar: t = AST.Type.tchar; break;
case TKW.xsigned | TKW.xchar: t = AST.Type.tint8; break;
case TKW.xunsigned | TKW.xchar: t = AST.Type.tuns8; break;
case TKW.xshort:
case TKW.xsigned | TKW.xshort:
case TKW.xsigned | TKW.xshort | TKW.xint:
case TKW.xshort | TKW.xint: t = integerTypeForSize(shortsize); break;
case TKW.xunsigned | TKW.xshort | TKW.xint:
case TKW.xunsigned | TKW.xshort: t = unsignedTypeForSize(shortsize); break;
case TKW.xint:
case TKW.xsigned:
case TKW.xsigned | TKW.xint: t = integerTypeForSize(intsize); break;
case TKW.xunsigned:
case TKW.xunsigned | TKW.xint: t = unsignedTypeForSize(intsize); break;
case TKW.xlong:
case TKW.xsigned | TKW.xlong:
case TKW.xsigned | TKW.xlong | TKW.xint:
case TKW.xlong | TKW.xint: t = integerTypeForSize(longsize); break;
case TKW.xunsigned | TKW.xlong | TKW.xint:
case TKW.xunsigned | TKW.xlong: t = unsignedTypeForSize(longsize); break;
case TKW.xllong:
case TKW.xsigned | TKW.xllong:
case TKW.xsigned | TKW.xllong | TKW.xint:
case TKW.xllong | TKW.xint: t = integerTypeForSize(long_longsize); break;
case TKW.xunsigned | TKW.xllong | TKW.xint:
case TKW.xunsigned | TKW.xllong: t = unsignedTypeForSize(long_longsize); break;
case TKW.xint128:
case TKW.xsigned | TKW.xint128: t = integerTypeForSize(16); break;
case TKW.xunsigned | TKW.xint128: t = unsignedTypeForSize(16); break;
case TKW.xvoid: t = AST.Type.tvoid; break;
case TKW.xbool: t = boolsize == 1 ? AST.Type.tbool : integerTypeForSize(boolsize); break;
case TKW.xfloat: t = AST.Type.tfloat32; break;
case TKW.xdouble: t = AST.Type.tfloat64; break;
case TKW.xlong | TKW.xdouble: t = realType(RTFlags.realfloat); break;
case TKW.ximaginary | TKW.xfloat: t = AST.Type.timaginary32; break;
case TKW.ximaginary | TKW.xdouble: t = AST.Type.timaginary64; break;
case TKW.ximaginary | TKW.xlong | TKW.xdouble: t = realType(RTFlags.imaginary); break;
case TKW.xcomplex | TKW.xfloat: t = AST.Type.tcomplex32; break;
case TKW.xcomplex | TKW.xdouble: t = AST.Type.tcomplex64; break;
case TKW.xcomplex | TKW.xlong | TKW.xdouble: t = realType(RTFlags.complex); break;
case TKW.xident:
{
const idx = previd.toString();
if (idx.length > 2 && idx[0] == '_' && idx[1] == '_') // leading double underscore
importBuiltins = true; // probably one of those compiler extensions
t = null;
/* Punch through to what the typedef is, to support things like:
* typedef T* T;
*/
auto pt = lookupTypedef(previd);
if (pt && *pt) // if previd is a known typedef
t = *pt;
if (!t)
t = new AST.TypeIdentifier(loc, previd);
break;
}
case TKW.xtag:
case TKW.x_Atomic: // no atomics for you
break; // t is already set
default:
error("illegal type combination");
t = AST.Type.terror;
break;
}
return t;
}
/********************************
* C11 6.7.6
* Parse a declarator (including function definitions).
* declarator:
* pointer (opt) direct-declarator
*
* direct-declarator :
* identifier
* ( declarator )
* direct-declarator [ type-qualifier-list (opt) assignment-expression (opt) ]
* direct-declarator [ static type-qualifier-list (opt) assignment-expression ]
* direct-declarator [ type-qualifier-list static assignment-expression (opt) ]
* direct-declarator [ type-qualifier-list (opt) * ]
* direct-declarator ( parameter-type-list )
* direct-declarator ( identifier-list (opt) )
*
* pointer :
* * type-qualifier-list (opt)
* * type-qualifier-list (opt) pointer
*
* type-qualifier-list :
* type-qualifier
* type-qualifier-list type-qualifier
*
* parameter-type-list :
* parameter-list
* parameter-list , ...
*
* parameter-list :
* parameter-declaration
* parameter-list , parameter-declaration
*
* parameter-declaration :
* declaration-specifiers declarator
* declaration-specifiers abstract-declarator (opt)
*
* identifier-list :
* identifier
* identifier-list , identifier
*
* Params:
* declarator = declarator kind
* tbase = base type to start with
* pident = set to Identifier if there is one, null if not
* specifier = specifiers in and out
* Returns:
* type declared. If a TypeFunction is returned, this.symbols is the
* symbol table for the parameter-type-list, which will contain any
* declared struct, union or enum tags.
*/
private AST.Type cparseDeclarator(DTR declarator, AST.Type tbase,
out Identifier pident, ref Specifier specifier)
{
//printf("cparseDeclarator(%d, %p)\n", declarator, t);
AST.Types constTypes; // all the Types that will need `const` applied to them
/* Insert tx -> t into
* ts -> ... -> t
* so that
* ts -> ... -> tx -> t
*/
static void insertTx(ref AST.Type ts, AST.Type tx, AST.Type t)
{
AST.Type* pt;
for (pt = &ts; *pt != t; pt = &(cast(AST.TypeNext)*pt).next)
{
}
*pt = tx;
}
AST.Type parseDecl(AST.Type t)
{
AST.Type ts;
while (1)
{
switch (token.value)
{
case TOK.identifier: // identifier
//printf("identifier %s\n", token.ident.toChars());
if (declarator == DTR.xabstract)
error("identifier not allowed in abstract-declarator");
pident = token.ident;
ts = t;
nextToken();
break;
case TOK.leftParenthesis: // ( declarator )
/* like: T (*fp)();
* T ((*fp))();
*/
nextToken();
if (token.value == TOK.__stdcall) // T (__stdcall*fp)();
{
specifier.mod |= MOD.x__stdcall;
nextToken();
}
ts = parseDecl(t);
check(TOK.rightParenthesis);
break;
case TOK.mul: // pointer
t = new AST.TypePointer(t);
nextToken();
// add post fixes const/volatile/restrict/_Atomic
const mod = cparseTypeQualifierList();
if (mod & MOD.xconst)
constTypes.push(t);
if (token.value == TOK.__attribute__)
cparseGnuAttributes(specifier);
continue;
default:
if (declarator == DTR.xdirect)
{
if (!t || t.isTypeIdentifier())
{
// const arr[1];
error("no type-specifier for declarator");
t = AST.Type.tint32;
}
else
error("identifier or `(` expected"); // )
panic();
}
ts = t;
break;
}
break;
}
// parse DeclaratorSuffixes
while (1)
{
switch (token.value)
{
case TOK.leftBracket:
{
// post [] syntax, pick up any leading type qualifiers, `static` and `*`
AST.Type ta;
nextToken();
auto mod = cparseTypeQualifierList(); // const/volatile/restrict/_Atomic
bool isStatic;
bool isVLA;
if (token.value == TOK.static_)
{
isStatic = true; // `static`
nextToken();
if (!mod) // type qualifiers after `static`
mod = cparseTypeQualifierList();
}
else if (token.value == TOK.mul)
{
if (peekNext() == TOK.rightBracket)
{
isVLA = true; // `*`
nextToken();
}
}
if (isStatic || token.value != TOK.rightBracket)
{
//printf("It's a static array\n");
AST.Expression e = cparseAssignExp(); // [ expression ]
ta = new AST.TypeSArray(t, e);
}
else
{
/* C11 6.7.6.2-4 An [ ] array is an incomplete array type
*/
ta = new AST.TypeSArray(t);
}
check(TOK.rightBracket);
// Issue errors for unsupported types.
if (isVLA) // C11 6.7.6.2
{
error("variable length arrays are not supported");
}
if (isStatic) // C11 6.7.6.3
{
error("static array parameters are not supported");
}
if (declarator != DTR.xparameter)
{
/* C11 6.7.6.2-4: '*' can only be used with function prototype scope.
*/
if (isVLA)
error("variable length array used outside of function prototype");
/* C11 6.7.6.2-1: type qualifiers and 'static' shall only appear
* in a declaration of a function parameter with an array type.
*/
if (isStatic || mod)
error("static or type qualifier used outside of function prototype");
}
if (ts.isTypeSArray() || ts.isTypeDArray())
{
/* C11 6.7.6.2-1: type qualifiers and 'static' shall only appear
* in the outermost array type derivation.
*/
if (isStatic || mod)
error("static or type qualifier used in non-outermost array type derivation");
/* C11 6.7.6.2-1: the element type shall not be an incomplete or
* function type.
*/
if (ta.isTypeSArray() && ta.isTypeSArray().isIncomplete() && !isVLA)
error("array type has incomplete element type `%s`", ta.toChars());
}
// Apply type qualifiers to the constructed type.
if (mod & MOD.xconst) // ignore the other bits
ta = toConst(ta);
insertTx(ts, ta, t); // ts -> ... -> ta -> t
continue;
}
case TOK.leftParenthesis:
{
// New symbol table for parameter-list
auto symbolsSave = this.symbols;
this.symbols = null;
auto parameterList = cparseParameterList();
const lkg = specifier.mod & MOD.x__stdcall ? LINK.windows : linkage;
StorageClass stc = specifier._nothrow ? STC.nothrow_ : 0;
if (specifier._pure)
stc |= STC.pure_;
AST.Type tf = new AST.TypeFunction(parameterList, t, lkg, stc);
// tf = tf.addSTC(storageClass); // TODO
insertTx(ts, tf, t); // ts -> ... -> tf -> t
if (ts != tf)
this.symbols = symbolsSave;
break;
}
default:
break;
}
break;
}
return ts;
}
auto t = parseDecl(tbase);
if (specifier.vector_size)
{
auto length = new AST.IntegerExp(token.loc, specifier.vector_size / tbase.size(), AST.Type.tuns32);
auto tsa = new AST.TypeSArray(tbase, length);
AST.Type tv = new AST.TypeVector(tsa);
specifier.vector_size = 0; // used it up
insertTx(t, tv, tbase); // replace tbase with tv
}
/* Because const is transitive, cannot assemble types from
* fragments. Instead, types to be annotated with const are put
* in constTypes[], and a bottom up scan of t is done to apply
* const
*/
if (constTypes.length)
{
AST.Type constApply(AST.Type t)
{
if (t.nextOf())
{
auto tn = cast(AST.TypeNext)t; // t.nextOf() should return a ref instead of this
tn.next = constApply(tn.next);
}
foreach (tc; constTypes[])
{
if (tc is t)
{
return toConst(t);
}
}
return t;
}
if (declarator == DTR.xparameter &&
t.isTypePointer())
{
/* Because there are instances in .h files of "const pointer to mutable",
* skip applying transitive `const`
* https://issues.dlang.org/show_bug.cgi?id=22534
*/
auto tn = cast(AST.TypeNext)t;
tn.next = constApply(tn.next);
}
else
t = constApply(t);
}
//printf("result: %s\n", t.toChars());
return t;
}
/******************************
* C11 6.7.3
* type-qualifier:
* const
* restrict
* volatile
* _Atomic
* __stdcall
*/
MOD cparseTypeQualifierList()
{
MOD mod;
while (1)
{
switch (token.value)
{
case TOK.const_: mod |= MOD.xconst; break;
case TOK.volatile: mod |= MOD.xvolatile; break;
case TOK.restrict: mod |= MOD.xrestrict; break;
case TOK._Atomic: mod |= MOD.x_Atomic; break;
case TOK.__stdcall: mod |= MOD.x__stdcall; break;
default:
return mod;
}
nextToken();
}
}
/***********************************
* C11 6.7.7
*/
AST.Type cparseTypeName()
{
Specifier specifier;
specifier.packalign.setDefault();
auto tspec = cparseSpecifierQualifierList(LVL.global, specifier);
if (!tspec)
{
error("type-specifier is missing");
tspec = AST.Type.tint32;
}
if (tspec && specifier.mod & MOD.xconst)
{
tspec = toConst(tspec);
specifier.mod = MOD.xnone; // 'used' it
}
Identifier id;
return cparseDeclarator(DTR.xabstract, tspec, id, specifier);
}
/***********************************
* C11 6.7.2.1
* specifier-qualifier-list:
* type-specifier specifier-qualifier-list (opt)
* type-qualifier specifier-qualifier-list (opt)
* Params:
* level = declaration context
* specifier = specifiers in and out
* Returns:
* resulting type, null if not specified
*/
AST.Type cparseSpecifierQualifierList(LVL level, ref Specifier specifier)
{
auto t = cparseDeclarationSpecifiers(level, specifier);
if (specifier.scw)
error("storage class not allowed in specifier-qualified-list");
return t;
}
/***********************************
* C11 6.7.6.3
* ( parameter-type-list )
* ( identifier-list (opt) )
*/
AST.ParameterList cparseParameterList()
{
auto parameters = new AST.Parameters();
AST.VarArg varargs = AST.VarArg.none;
StorageClass varargsStc;
check(TOK.leftParenthesis);
if (token.value == TOK.void_ && peekNext() == TOK.rightParenthesis) // func(void)
{
nextToken();
nextToken();
return AST.ParameterList(parameters, varargs, varargsStc);
}
if (token.value == TOK.rightParenthesis) // func()
{
nextToken();
return AST.ParameterList(parameters, AST.VarArg.KRvariadic, varargsStc);
}
/* Create function prototype scope
*/
typedefTab.push(null);
AST.ParameterList finish()
{
typedefTab.pop();
return AST.ParameterList(parameters, varargs, varargsStc);
}
/* The check for identifier-list comes later,
* when doing the trailing declaration-list (opt)
*/
while (1)
{
if (token.value == TOK.rightParenthesis)
break;
if (token.value == TOK.dotDotDot)
{
if (parameters.length == 0) // func(...)
error("named parameter required before `...`");
importBuiltins = true; // will need __va_list_tag
varargs = AST.VarArg.variadic; // C-style variadics
nextToken();
check(TOK.rightParenthesis);
return finish();
}
Specifier specifier;
specifier.packalign.setDefault();
auto tspec = cparseDeclarationSpecifiers(LVL.prototype, specifier);
if (!tspec)
{
error("no type-specifier for parameter");
tspec = AST.Type.tint32;
}
if (specifier.mod & MOD.xconst)
{
if ((token.value == TOK.rightParenthesis || token.value == TOK.comma) &&
tspec.isTypeIdentifier())
error("type-specifier omitted for parameter `%s`", tspec.isTypeIdentifier().ident.toChars());
tspec = toConst(tspec);
specifier.mod = MOD.xnone; // 'used' it
}
Identifier id;
auto t = cparseDeclarator(DTR.xparameter, tspec, id, specifier);
if (token.value == TOK.__attribute__)
cparseGnuAttributes(specifier);
if (specifier.mod & MOD.xconst)
t = toConst(t);
auto param = new AST.Parameter(specifiersToSTC(LVL.parameter, specifier),
t, id, null, null);
parameters.push(param);
if (token.value == TOK.rightParenthesis || token.value == TOK.endOfFile)
break;
check(TOK.comma);
}
check(TOK.rightParenthesis);
return finish();
}
/***********************************
* C11 6.7.10
* _Static_assert ( constant-expression , string-literal ) ;
*/
private AST.StaticAssert cparseStaticAssert()
{
const loc = token.loc;
//printf("cparseStaticAssert()\n");
nextToken();
check(TOK.leftParenthesis);
auto exp = cparseConstantExp();
check(TOK.comma);
if (token.value != TOK.string_)
error("string literal expected");
auto msg = cparsePrimaryExp();
check(TOK.rightParenthesis);
check(TOK.semicolon);
return new AST.StaticAssert(loc, exp, msg);
}
/*************************
* Collect argument list.
* Parser is on opening parenthesis.
* Returns:
* the arguments
*/
private AST.Expressions* cparseArguments()
{
nextToken();
auto arguments = new AST.Expressions();
while (token.value != TOK.rightParenthesis && token.value != TOK.endOfFile)
{
auto arg = cparseAssignExp();
arguments.push(arg);
if (token.value != TOK.comma)
break;
nextToken(); // consume comma
}
check(TOK.rightParenthesis);
return arguments;
}
/*************************
* __declspec parser
* https://docs.microsoft.com/en-us/cpp/cpp/declspec
* decl-specifier:
* __declspec ( extended-decl-modifier-seq )
*
* extended-decl-modifier-seq:
* extended-decl-modifier (opt)
* extended-decl-modifier extended-decl-modifier-seq
*
* extended-decl-modifier:
* align(number)
* deprecated(depMsg)
* dllimport
* dllexport
* naked
* noinline
* noreturn
* nothrow
* thread
* Params:
* specifier = filled in with the attribute(s)
*/
private void cparseDeclspec(ref Specifier specifier)
{
//printf("cparseDeclspec()\n");
/* Check for dllexport, dllimport
* Ignore the rest
*/
nextToken(); // move past __declspec
check(TOK.leftParenthesis);
while (1)
{
if (token.value == TOK.rightParenthesis)
{
nextToken();
break;
}
else if (token.value == TOK.endOfFile)
break;
else if (token.value == TOK.identifier)
{
if (token.ident == Id.dllimport)
{
specifier.dllimport = true;
nextToken();
}
else if (token.ident == Id.dllexport)
{
specifier.dllexport = true;
nextToken();
}
else if (token.ident == Id.naked)
{
specifier.naked = true;
nextToken();
}
else if (token.ident == Id.noinline)
{
specifier.scw |= SCW.xnoinline;
nextToken();
}
else if (token.ident == Id.noreturn)
{
specifier.noreturn = true;
nextToken();
}
else if (token.ident == Id._nothrow)
{
specifier._nothrow = true;
nextToken();
}
else if (token.ident == Id.thread)
{
specifier.scw |= SCW.x_Thread_local;
nextToken();
}
else if (token.ident == Id._align)
{
// Microsoft spec is very imprecise as to how this actually works
nextToken();
check(TOK.leftParenthesis);
if (token.value == TOK.int32Literal)
{
const n = token.unsvalue;
if (n < 1 || n & (n - 1) || 8192 < n)
error("__decspec(align(%lld)) must be an integer positive power of 2 and be <= 8,192", cast(ulong)n);
specifier.packalign.set(cast(uint)n);
specifier.packalign.setPack(true);
nextToken();
}
else
{
error("alignment value expected, not `%s`", token.toChars());
nextToken();
}
check(TOK.rightParenthesis);
}
else if (token.ident == Id._deprecated)
{
specifier._deprecated = true;
nextToken();
if (token.value == TOK.leftParenthesis) // optional deprecation message
{
nextToken();
specifier.depMsg = cparseExpression();
check(TOK.rightParenthesis);
}
}
else
{
nextToken();
if (token.value == TOK.leftParenthesis)
cparseParens();
}
}
else if (token.value == TOK.restrict) // ImportC assigns no semantics to `restrict`, so just ignore the keyword.
nextToken();
else
{
error("extended-decl-modifier expected");
break;
}
}
}
/*************************
* Parser for asm label. It appears after the declarator, and has apparently
* nothing to do with inline assembler.
* https://gcc.gnu.org/onlinedocs/gcc/Asm-Labels.html
* simple-asm-expr:
* asm ( asm-string-literal )
*
* asm-string-literal:
* string-literal
*/
private AST.StringExp cparseGnuAsmLabel()
{
nextToken(); // move past asm
check(TOK.leftParenthesis);
if (token.value != TOK.string_)
error("string literal expected for Asm Label, not `%s`", token.toChars());
auto label = cparsePrimaryExp();
check(TOK.rightParenthesis);
return cast(AST.StringExp) label;
}
/********************
* Parse C inline assembler statement in Gnu format.
* https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html
* asm asm-qualifiers ( AssemblerTemplate : OutputOperands : InputOperands : Clobbers : GotoLabels )
* Current token is on the `asm`.
* Returns:
* inline assembler expression as a Statement
*/
private AST.Statement cparseGnuAsm()
{
// Defer parsing of AsmStatements until semantic processing.
const loc = token.loc;
nextToken();
// Consume all asm-qualifiers. As a future optimization, we could record
// the `inline` and `volatile` storage classes against the statement.
while (token.value == TOK.goto_ ||
token.value == TOK.inline ||
token.value == TOK.volatile)
nextToken();
check(TOK.leftParenthesis);
if (token.value != TOK.string_)
error("string literal expected for Assembler Template, not `%s`", token.toChars());
Token* toklist = null;
Token** ptoklist = &toklist;
//Identifier label = null;
auto statements = new AST.Statements();
int parens;
while (1)
{
switch (token.value)
{
case TOK.leftParenthesis:
++parens;
goto default;
case TOK.rightParenthesis:
--parens;
if (parens >= 0)
goto default;
break;
case TOK.semicolon:
error("matching `)` expected, not `;`");
break;
case TOK.endOfFile:
/* ( */
error("matching `)` expected, not end of file");
break;
case TOK.colonColon: // treat as two separate : tokens for iasmgcc
*ptoklist = allocateToken();
memcpy(*ptoklist, &token, Token.sizeof);
(*ptoklist).value = TOK.colon;
ptoklist = &(*ptoklist).next;
*ptoklist = allocateToken();
memcpy(*ptoklist, &token, Token.sizeof);
(*ptoklist).value = TOK.colon;
ptoklist = &(*ptoklist).next;
*ptoklist = null;
nextToken();
continue;
default:
*ptoklist = allocateToken();
memcpy(*ptoklist, &token, Token.sizeof);
ptoklist = &(*ptoklist).next;
*ptoklist = null;
nextToken();
continue;
}
if (toklist)
{
// Create AsmStatement from list of tokens we've saved
AST.Statement s = new AST.AsmStatement(token.loc, toklist);
statements.push(s);
}
break;
}
nextToken();
auto s = new AST.CompoundAsmStatement(loc, statements, 0);
return s;
}
/*************************
* __attribute__ parser
* https://gcc.gnu.org/onlinedocs/gcc/Attribute-Syntax.html
* gnu-attributes:
* gnu-attributes gnu-attribute-specifier
*
* gnu-attribute-specifier:
* __attribute__ (( gnu-attribute-list ))
*
* gnu-attribute-list:
* gnu-attribute (opt)
* gnu-attribute-list , gnu-attribute
*
* Params:
* specifier = filled in with the attribute(s)
*/
private void cparseGnuAttributes(ref Specifier specifier)
{
while (token.value == TOK.__attribute__)
{
nextToken(); // move past __attribute__
check(TOK.leftParenthesis);
check(TOK.leftParenthesis);
if (token.value != TOK.rightParenthesis)
{
while (1)
{
cparseGnuAttribute(specifier);
if (token.value != TOK.comma)
break;
nextToken();
}
}
check(TOK.rightParenthesis);
check(TOK.rightParenthesis);
}
}
/*************************
* Parse a single GNU attribute
* gnu-attribute:
* gnu-attribute-name
* gnu-attribute-name ( identifier )
* gnu-attribute-name ( identifier , expression-list )
* gnu-attribute-name ( expression-list (opt) )
*
* gnu-attribute-name:
* keyword
* identifier
*
* expression-list:
* constant-expression
* expression-list , constant-expression
*
* Params:
* specifier = filled in with the attribute(s)
*/
private void cparseGnuAttribute(ref Specifier specifier)
{
/* Check for dllimport, dllexport, naked, noreturn, vector_size(bytes)
* Ignore the rest
*/
if (!isGnuAttributeName())
return;
if (token.value == TOK.identifier)
{
if (token.ident == Id.aligned)
{
nextToken();
if (token.value == TOK.leftParenthesis)
{
nextToken();
if (token.value == TOK.int32Literal)
{
const n = token.unsvalue;
if (n < 1 || n & (n - 1) || ushort.max < n)
error("__attribute__((aligned(%lld))) must be an integer positive power of 2 and be <= 32,768", cast(ulong)n);
specifier.packalign.set(cast(uint)n);
specifier.packalign.setPack(true);
nextToken();
}
else
{
error("alignment value expected, not `%s`", token.toChars());
nextToken();
}
check(TOK.rightParenthesis);
}
/* ignore __attribute__((aligned)), which sets the alignment to the largest value for any data
* type on the target machine. It's the opposite of __attribute__((packed))
*/
}
else if (token.ident == Id.always_inline) // https://gcc.gnu.org/onlinedocs/gcc/Common-Function-Attributes.html
{
specifier.scw |= SCW.xinline;
nextToken();
}
else if (token.ident == Id._deprecated)
{
specifier._deprecated = true;
nextToken();
if (token.value == TOK.leftParenthesis) // optional deprecation message
{
nextToken();
specifier.depMsg = cparseExpression();
check(TOK.rightParenthesis);
}
}
else if (token.ident == Id.dllimport)
{
specifier.dllimport = true;
nextToken();
}
else if (token.ident == Id.dllexport)
{
specifier.dllexport = true;
nextToken();
}
else if (token.ident == Id.naked)
{
specifier.naked = true;
nextToken();
}
else if (token.ident == Id.noinline)
{
specifier.scw |= SCW.xnoinline;
nextToken();
}
else if (token.ident == Id.noreturn)
{
specifier.noreturn = true;
nextToken();
}
else if (token.ident == Id._nothrow)
{
specifier._nothrow = true;
nextToken();
}
else if (token.ident == Id._pure)
{
specifier._pure = true;
nextToken();
}
else if (token.ident == Id.vector_size)
{
nextToken();
check(TOK.leftParenthesis);
if (token.value == TOK.int32Literal)
{
const n = token.unsvalue;
if (n < 1 || n & (n - 1) || ushort.max < n)
error("__attribute__((vector_size(%lld))) must be an integer positive power of 2 and be <= 32,768", cast(ulong)n);
specifier.vector_size = cast(uint) n;
nextToken();
}
else
{
error("value for vector_size expected, not `%s`", token.toChars());
nextToken();
}
check(TOK.rightParenthesis);
}
else
{
nextToken();
if (token.value == TOK.leftParenthesis)
cparseParens();
}
}
else
{
nextToken();
if (token.value == TOK.leftParenthesis)
cparseParens();
}
}
/*************************
* See if match for GNU attribute name, which may be any identifier,
* storage-class-specifier, type-specifier, or type-qualifier.
* Returns:
* true if a valid GNU attribute name
*/
private bool isGnuAttributeName()
{
switch (token.value)
{
case TOK.identifier:
case TOK.static_:
case TOK.unsigned:
case TOK.int64:
case TOK.const_:
case TOK.extern_:
case TOK.register:
case TOK.typedef_:
case TOK.int16:
case TOK.inline:
case TOK._Noreturn:
case TOK.volatile:
case TOK.signed:
case TOK.auto_:
case TOK.restrict:
case TOK._Complex:
case TOK._Thread_local:
case TOK.int32:
case TOK.__int128:
case TOK.char_:
case TOK.float32:
case TOK.float64:
case TOK.void_:
case TOK._Bool:
case TOK._Atomic:
return true;
default:
return false;
}
}
/***************************
* Like skipParens(), but consume the tokens.
*/
private void cparseParens()
{
check(TOK.leftParenthesis);
int parens = 1;
while (1)
{
switch (token.value)
{
case TOK.leftParenthesis:
++parens;
break;
case TOK.rightParenthesis:
--parens;
if (parens < 0)
{
error("extra right parenthesis");
return;
}
if (parens == 0)
{
nextToken();
return;
}
break;
case TOK.endOfFile:
error("end of file found before right parenthesis");
return;
default:
break;
}
nextToken();
}
}
//}
/******************************************************************************/
/***************************** Struct & Enum Parser ***************************/
//{
/*************************************
* C11 6.7.2.2
* enum-specifier:
* enum identifier (opt) { enumerator-list }
* enum identifier (opt) { enumerator-list , }
* enum identifier
*
* enumerator-list:
* enumerator
* enumerator-list , enumerator
*
* enumerator:
* enumeration-constant
* enumeration-constant = constant-expression
*
* enumeration-constant:
* identifier
*
* Params:
* symbols = symbols to add enum declaration to
* Returns:
* type of the enum
*/
private AST.Type cparseEnum(ref AST.Dsymbols* symbols)
{
const loc = token.loc;
nextToken();
/* GNU Extensions
* enum-specifier:
* enum gnu-attributes (opt) identifier (opt) { enumerator-list } gnu-attributes (opt)
* enum gnu-attributes (opt) identifier (opt) { enumerator-list , } gnu-attributes (opt)
* enum gnu-attributes (opt) identifier
*/
Specifier specifier;
specifier.packalign.setDefault();
if (token.value == TOK.__attribute__)
cparseGnuAttributes(specifier);
Identifier tag;
if (token.value == TOK.identifier)
{
tag = token.ident;
nextToken();
}
/* clang extension: add optional base type after the identifier
* https://en.cppreference.com/w/cpp/language/enum
* enum Identifier : Type
*/
//AST.Type base = AST.Type.tint32; // C11 6.7.2.2-4 implementation defined default base type
AST.Type base = null; // C23 says base type is determined by enum member values
if (token.value == TOK.colon)
{
nextToken();
base = cparseTypeName();
}
AST.Dsymbols* members;
if (token.value == TOK.leftCurly)
{
nextToken();
members = new AST.Dsymbols();
if (token.value == TOK.rightCurly) // C11 6.7.2.2-1
{
if (tag)
error("no members for `enum %s`", tag.toChars());
else
error("no members for anonymous enum");
}
while (token.value == TOK.identifier)
{
auto ident = token.ident; // enumeration-constant
nextToken();
auto mloc = token.loc;
if (token.value == TOK.__attribute__)
{
/* gnu-attributes can appear here, but just scan and ignore them
* https://gcc.gnu.org/onlinedocs/gcc/Enumerator-Attributes.html
*/
Specifier specifierx;
specifierx.packalign.setDefault();
cparseGnuAttributes(specifierx);
}
AST.Expression value;
if (token.value == TOK.assign)
{
nextToken();
value = cparseConstantExp();
// TODO C11 6.7.2.2-2 value must fit into an int
}
if (token.value == TOK.__attribute__)
{
/* gnu-attributes can appear here, but just scan and ignore them
* https://gcc.gnu.org/onlinedocs/gcc/Enumerator-Attributes.html
*/
Specifier specifierx;
specifierx.packalign.setDefault();
cparseGnuAttributes(specifierx);
}
auto em = new AST.EnumMember(mloc, ident, value, null, 0, null, null);
members.push(em);
if (token.value == TOK.comma)
{
nextToken();
continue;
}
break;
}
check(TOK.rightCurly);
/* GNU Extensions
* Parse the postfix gnu-attributes (opt)
*/
if (token.value == TOK.__attribute__)
cparseGnuAttributes(specifier);
}
else if (!tag)
error("missing `identifier` after `enum`");
/* Need semantic information to determine if this is a declaration,
* redeclaration, or reference to existing declaration.
* Defer to the semantic() pass with a TypeTag.
*/
return new AST.TypeTag(loc, TOK.enum_, tag, structalign_t.init, base, members);
}
/*************************************
* C11 6.7.2.1
* Parse struct and union specifiers.
* Parser is advanced to the tag identifier or brace.
* struct-or-union-specifier:
* struct-or-union identifier (opt) { struct-declaration-list }
* struct-or-union identifier
*
* struct-or-union:
* struct
* union
*
* struct-declaration-list:
* struct-declaration
* struct-declaration-list struct-declaration
*
* Params:
* loc = location of `struct` or `union`
* structOrUnion = TOK.struct_ or TOK.union_
* packalign = alignment to use for struct members
* symbols = symbols to add struct-or-union declaration to
* Returns:
* type of the struct
*/
private AST.Type cparseStruct(Loc loc, TOK structOrUnion, structalign_t packalign, ref AST.Dsymbols* symbols)
{
Identifier tag;
if (token.value == TOK.identifier)
{
tag = token.ident;
nextToken();
}
AST.Dsymbols* members;
if (token.value == TOK.leftCurly)
{
nextToken();
members = new AST.Dsymbols(); // so `members` will be non-null even with 0 members
while (token.value != TOK.rightCurly)
{
cparseStructDeclaration(members);
if (token.value == TOK.endOfFile)
break;
}
check(TOK.rightCurly);
if ((*members).length == 0) // C11 6.7.2.1-8
{
/* allow empty structs as an extension
* struct-declarator-list:
* struct-declarator (opt)
*/
}
}
else if (!tag)
error("missing tag `identifier` after `%s`", Token.toChars(structOrUnion));
/* Need semantic information to determine if this is a declaration,
* redeclaration, or reference to existing declaration.
* Defer to the semantic() pass with a TypeTag.
*/
return new AST.TypeTag(loc, structOrUnion, tag, packalign, null, members);
}
/*************************************
* C11 6.7.2.1
* Parse a struct declaration member.
* struct-declaration:
* specifier-qualifier-list struct-declarator-list (opt) ;
* static_assert-declaration
*
* struct-declarator-list:
* struct-declarator
* struct-declarator-list , struct-declarator
*
* struct-declarator:
* declarator
* declarator (opt) : constant-expression
* Params:
* members = where to put the fields (members)
*/
void cparseStructDeclaration(AST.Dsymbols* members)
{
//printf("cparseStructDeclaration()\n");
if (token.value == TOK._Static_assert)
{
auto s = cparseStaticAssert();
members.push(s);
return;
}
Specifier specifier;
specifier.packalign = this.packalign;
auto tspec = cparseSpecifierQualifierList(LVL.member, specifier);
if (!tspec)
{
error("no type-specifier for struct member");
tspec = AST.Type.tint32;
}
if (specifier.mod & MOD.xconst)
{
tspec = toConst(tspec);
specifier.mod = MOD.xnone; // 'used' it
}
/* If a declarator does not follow, it is unnamed
*/
if (token.value == TOK.semicolon && tspec)
{
nextToken();
auto tt = tspec.isTypeTag();
if (!tt)
{
if (auto ti = tspec.isTypeIdentifier())
{
error("type-specifier omitted before declaration of `%s`", ti.ident.toChars());
}
return; // legal but meaningless empty declaration
}
/* If anonymous struct declaration
* struct { ... members ... };
* C11 6.7.2.1-13
*/
if (!tt.id && tt.members)
{
/* members of anonymous struct are considered members of
* the containing struct
*/
auto ad = new AST.AnonDeclaration(tt.loc, tt.tok == TOK.union_, tt.members);
auto s = applySpecifier(ad, specifier);
members.push(s);
return;
}
if (!tt.id && !tt.members)
return; // already gave error in cparseStruct()
/* `struct tag;` and `struct tag { ... };`
* always result in a declaration in the current scope
*/
// TODO: merge in specifier
auto stag = (tt.tok == TOK.struct_)
? new AST.StructDeclaration(tt.loc, tt.id, false)
: new AST.UnionDeclaration(tt.loc, tt.id);
stag.members = tt.members;
if (!symbols)
symbols = new AST.Dsymbols();
auto s = applySpecifier(stag, specifier);
symbols.push(s);
return;
}
while (1)
{
Identifier id;
AST.Type dt;
if (token.value == TOK.colon)
{
if (auto ti = tspec.isTypeIdentifier())
{
error("type-specifier omitted before bit field declaration of `%s`", ti.ident.toChars());
tspec = AST.Type.tint32;
}
// C11 6.7.2.1-12 unnamed bit-field
id = Identifier.generateAnonymousId("BitField");
dt = tspec;
}
else
{
dt = cparseDeclarator(DTR.xdirect, tspec, id, specifier);
if (!dt)
{
panic();
nextToken();
break; // error recovery
}
}
AST.Expression width;
if (token.value == TOK.colon)
{
// C11 6.7.2.1-10 bit-field
nextToken();
width = cparseConstantExp();
}
/* GNU Extensions
* struct-declarator:
* declarator gnu-attributes (opt)
* declarator (opt) : constant-expression gnu-attributes (opt)
*/
if (token.value == TOK.__attribute__)
cparseGnuAttributes(specifier);
if (!tspec && !specifier.scw && !specifier.mod)
error("specifier-qualifier-list required");
else if (width)
{
if (specifier.alignExps)
error("no alignment-specifier for bit field declaration"); // C11 6.7.5-2
auto s = new AST.BitFieldDeclaration(width.loc, dt, id, width);
members.push(s);
}
else if (id)
{
if (dt.ty == AST.Tvoid)
error("`void` has no value");
// declare the symbol
// Give member variables an implicit void initializer
auto initializer = new AST.VoidInitializer(token.loc);
AST.Dsymbol s = new AST.VarDeclaration(token.loc, dt, id, initializer, specifiersToSTC(LVL.member, specifier));
s = applySpecifier(s, specifier);
members.push(s);
}
switch (token.value)
{
case TOK.identifier:
error("missing comma");
goto default;
case TOK.semicolon:
nextToken();
return;
case TOK.comma:
nextToken();
break;
default:
error("`;` or `,` expected");
while (token.value != TOK.semicolon && token.value != TOK.endOfFile)
nextToken();
nextToken();
return;
}
}
}
//}
/******************************************************************************/
/********************************* Lookahead Parser ***************************/
//{
/************************************
* Determine if the scanner is sitting on the start of a declaration.
* Params:
* t = current token of the scanner
* needId = flag with additional requirements for a declaration
* endtok = ending token
* pt = will be set ending token (if not null)
* Returns:
* true at start of a declaration
*/
private bool isCDeclaration(ref Token* pt)
{
auto t = pt;
//printf("isCDeclaration() %s\n", t.toChars());
if (!isDeclarationSpecifiers(t))
return false;
while (1)
{
if (t.value == TOK.semicolon)
{
t = peek(t);
pt = t;
return true;
}
if (!isCDeclarator(t, DTR.xdirect))
return false;
if (t.value == TOK.asm_)
{
t = peek(t);
if (t.value != TOK.leftParenthesis || !skipParens(t, &t))
return false;
}
if (t.value == TOK.__attribute__)
{
t = peek(t);
if (t.value != TOK.leftParenthesis || !skipParens(t, &t))
return false;
}
if (t.value == TOK.assign)
{
t = peek(t);
if (!isInitializer(t))
return false;
}
switch (t.value)
{
case TOK.comma:
t = peek(t);
break;
case TOK.semicolon:
t = peek(t);
pt = t;
return true;
default:
return false;
}
}
}
/********************************
* See if match for initializer.
* Params:
* pt = starting token, updated to one past end of initializer if true
* Returns:
* true if initializer
*/
private bool isInitializer(ref Token* pt)
{
//printf("isInitializer()\n");
auto t = pt;
if (t.value == TOK.leftCurly)
{
if (!skipBraces(t))
return false;
pt = t;
return true;
}
// skip over assignment-expression, ending before comma or semiColon or EOF
if (!isAssignmentExpression(t))
return false;
pt = t;
return true;
}
/********************************
* See if match for:
* postfix-expression ( argument-expression-list(opt) )
* Params:
* pt = starting token, updated to one past end of initializer if true
* Returns:
* true if function call
*/
private bool isFunctionCall(ref Token* pt)
{
//printf("isFunctionCall()\n");
auto t = pt;
if (!isPrimaryExpression(t))
return false;
if (t.value != TOK.leftParenthesis)
return false;
t = peek(t);
while (1)
{
if (!isAssignmentExpression(t))
return false;
if (t.value == TOK.comma)
{
t = peek(t);
continue;
}
if (t.value == TOK.rightParenthesis)
{
t = peek(t);
break;
}
return false;
}
if (t.value != TOK.semicolon)
return false;
pt = t;
return true;
}
/********************************
* See if match for assignment-expression.
* Params:
* pt = starting token, updated to one past end of assignment-expression if true
* Returns:
* true if assignment-expression
*/
private bool isAssignmentExpression(ref Token* pt)
{
auto t = pt;
//printf("isAssignmentExpression() %s\n", t.toChars());
/* This doesn't actually check for grammar matching an
* assignment-expression. It just matches ( ) [ ] looking for
* an ending token that would terminate one.
*/
bool any;
while (1)
{
switch (t.value)
{
case TOK.comma:
case TOK.semicolon:
case TOK.rightParenthesis:
case TOK.rightBracket:
case TOK.endOfFile:
if (!any)
return false;
break;
case TOK.leftParenthesis:
if (!skipParens(t, &t))
return false;
/*
https://issues.dlang.org/show_bug.cgi?id=22267
Fix issue 22267: If the parser encounters the following
`identifier variableName = (expression);`
the initializer is not identified as such since the parentheses
cause the parser to keep walking indefinitely
(whereas `(1) + 1` would not be affected.).
*/
any = true;
continue;
case TOK.leftBracket:
if (!skipBrackets(t))
return false;
continue;
case TOK.leftCurly:
if (!skipBraces(t))
return false;
continue;
default:
any = true; // assume token was part of an a-e
t = peek(t);
continue;
}
pt = t;
return true;
}
}
/********************************
* See if match for constant-expression.
* Params:
* pt = starting token, updated to one past end of constant-expression if true
* Returns:
* true if constant-expression
*/
private bool isConstantExpression(ref Token* pt)
{
return isAssignmentExpression(pt);
}
/********************************
* See if match for declaration-specifiers.
* No errors are diagnosed.
* Params:
* pt = starting token, updated to one past end of declaration-specifiers if true
* Returns:
* true if declaration-specifiers
*/
private bool isDeclarationSpecifiers(ref Token* pt)
{
//printf("isDeclarationSpecifiers()\n");
auto t = pt;
bool seenType;
bool any;
while (1)
{
switch (t.value)
{
// type-specifiers
case TOK.void_:
case TOK.char_:
case TOK.int16:
case TOK.int32:
case TOK.int64:
case TOK.__int128:
case TOK.float32:
case TOK.float64:
case TOK.signed:
case TOK.unsigned:
case TOK._Bool:
//case TOK._Imaginary:
case TOK._Complex:
t = peek(t);
seenType = true;
any = true;
continue;
case TOK.identifier: // typedef-name
if (!seenType)
{
t = peek(t);
seenType = true;
any = true;
continue;
}
break;
case TOK.struct_:
case TOK.union_:
case TOK.enum_:
t = peek(t);
if (t.value == TOK.__attribute__ ||
t.value == TOK.__declspec)
{
t = peek(t);
if (!skipParens(t, &t))
return false;
}
if (t.value == TOK.identifier)
{
t = peek(t);
if (t.value == TOK.leftCurly)
{
if (!skipBraces(t))
return false;
}
}
else if (t.value == TOK.leftCurly)
{
if (!skipBraces(t))
return false;
}
else
return false;
any = true;
continue;
// storage-class-specifiers
case TOK.typedef_:
case TOK.extern_:
case TOK.static_:
case TOK.__thread:
case TOK._Thread_local:
case TOK.auto_:
case TOK.register:
// function-specifiers
case TOK.inline:
case TOK._Noreturn:
// type-qualifiers
case TOK.const_:
case TOK.volatile:
case TOK.restrict:
case TOK.__stdcall:
t = peek(t);
any = true;
continue;
case TOK._Alignas: // alignment-specifier
case TOK.__declspec: // decl-specifier
case TOK.__attribute__: // attribute-specifier
t = peek(t);
if (!skipParens(t, &t))
return false;
any = true;
continue;
// either atomic-type-specifier or type_qualifier
case TOK._Atomic: // TODO _Atomic ( type-name )
t = peek(t);
if (t.value == TOK.leftParenthesis) // maybe atomic-type-specifier
{
auto tsave = t;
t = peek(t);
if (!isTypeName(t) || t.value != TOK.rightParenthesis)
{ // it's a type-qualifier
t = tsave; // back up parser
any = true;
continue;
}
t = peek(t); // move past right parenthesis of atomic-type-specifier
}
any = true;
continue;
default:
break;
}
break;
}
if (any)
{
pt = t;
return true;
}
return false;
}
/**************************************
* See if declaration-list is present.
* Returns:
* true if declaration-list is present, even an empty one
*/
bool isDeclarationList(ref Token* pt)
{
auto t = pt;
while (1)
{
if (t.value == TOK.leftCurly)
{
pt = t;
return true;
}
if (!isCDeclaration(t))
return false;
}
}
/*******************************************
* Skip braces.
* Params:
* pt = enters on left brace, set to token past right bracket on true
* Returns:
* true if successful
*/
private bool skipBraces(ref Token* pt)
{
auto t = pt;
if (t.value != TOK.leftCurly)
return false;
int braces = 0;
while (1)
{
switch (t.value)
{
case TOK.leftCurly:
++braces;
t = peek(t);
continue;
case TOK.rightCurly:
--braces;
if (braces == 0)
{
pt = peek(t);
return true;
}
if (braces < 0)
return false;
t = peek(t);
continue;
case TOK.endOfFile:
return false;
default:
t = peek(t);
continue;
}
}
}
/*******************************************
* Skip brackets.
* Params:
* pt = enters on left bracket, set to token past right bracket on true
* Returns:
* true if successful
*/
private bool skipBrackets(ref Token* pt)
{
auto t = pt;
if (t.value != TOK.leftBracket)
return false;
int brackets = 0;
while (1)
{
switch (t.value)
{
case TOK.leftBracket:
++brackets;
t = peek(t);
continue;
case TOK.rightBracket:
--brackets;
if (brackets == 0)
{
pt = peek(t);
return true;
}
if (brackets < 0)
return false;
t = peek(t);
continue;
case TOK.endOfFile:
return false;
default:
t = peek(t);
continue;
}
}
}
/*********************************
* Check to see if tokens starting with *pt form a declarator.
* Params:
* pt = pointer to starting token, updated to point past declarator if true is returned
* declarator = declarator kind
* Returns:
* true if it does
*/
private bool isCDeclarator(ref Token* pt, DTR declarator)
{
auto t = pt;
while (1)
{
if (t.value == TOK.mul) // pointer
{
t = peek(t);
if (!isTypeQualifierList(t))
return false;
}
else
break;
}
if (t.value == TOK.identifier)
{
if (declarator == DTR.xabstract)
return false;
t = peek(t);
}
else if (t.value == TOK.leftParenthesis)
{
t = peek(t);
if (!isCDeclarator(t, declarator))
return false;
if (t.value != TOK.rightParenthesis)
return false;
t = peek(t);
}
else if (declarator == DTR.xdirect)
{
return false;
}
while (1)
{
if (t.value == TOK.leftBracket)
{
if (!skipBrackets(t))
return false;
}
else if (t.value == TOK.leftParenthesis)
{
if (!skipParens(t, &t))
return false;
}
else
break;
}
pt = t;
return true;
}
/***************************
* Is this the start of a type-qualifier-list?
* (Can be empty.)
* Params:
* pt = first token; updated with past end of type-qualifier-list if true
* Returns:
* true if start of type-qualifier-list
*/
private bool isTypeQualifierList(ref Token* pt)
{
auto t = pt;
while (1)
{
switch (t.value)
{
case TOK.const_:
case TOK.restrict:
case TOK.volatile:
case TOK._Atomic:
case TOK.__stdcall:
t = peek(t);
continue;
default:
break;
}
break;
}
pt = t;
return true;
}
/***************************
* Is this the start of a type-name?
* Params:
* pt = first token; updated with past end of type-name if true
* Returns:
* true if start of type-name
*/
private bool isTypeName(ref Token* pt)
{
auto t = pt;
//printf("isTypeName() %s\n", t.toChars());
if (!isSpecifierQualifierList(t))
return false;
if (!isCDeclarator(t, DTR.xabstract))
return false;
if (t.value != TOK.rightParenthesis)
return false;
pt = t;
return true;
}
/***************************
* Is this the start of a specifier-qualifier-list?
* Params:
* pt = first token; updated with past end of specifier-qualifier-list if true
* Returns:
* true if start of specifier-qualifier-list
*/
private bool isSpecifierQualifierList(ref Token* pt)
{
auto t = pt;
bool result;
while (1)
{
switch (t.value)
{
// Type Qualifiers
case TOK.const_:
case TOK.restrict:
case TOK.volatile:
case TOK.__stdcall:
// Type Specifiers
case TOK.char_:
case TOK.signed:
case TOK.unsigned:
case TOK.int16:
case TOK.int32:
case TOK.int64:
case TOK.__int128:
case TOK.float32:
case TOK.float64:
case TOK.void_:
case TOK._Bool:
//case TOK._Imaginary: // ? missing in Spec
case TOK._Complex:
t = peek(t);
break;
case TOK.identifier:
// Use typedef table to disambiguate
if (isTypedef(t.ident))
{
t = peek(t);
break;
}
else
{
return false;
}
// struct-or-union-specifier
// enum-specifier
case TOK.struct_:
case TOK.union_:
case TOK.enum_:
t = peek(t);
if (t.value == TOK.identifier)
{
t = peek(t);
if (t.value == TOK.leftCurly)
{
if (!skipBraces(t))
return false;
}
}
else if (t.value == TOK.leftCurly)
{
if (!skipBraces(t))
return false;
}
else
return false;
break;
// atomic-type-specifier
case TOK._Atomic:
case TOK.typeof_:
case TOK.__attribute__:
t = peek(t);
if (t.value != TOK.leftParenthesis ||
!skipParens(t, &t))
return false;
break;
default:
if (result)
pt = t;
return result;
}
result = true;
}
}
/************************************
* Looking at the leading left parenthesis, and determine if it is
* either of the following:
* ( type-name ) cast-expression
* ( type-name ) { initializer-list }
* as opposed to:
* ( expression )
* Params:
* pt = starting token, updated to one past end of constant-expression if true
* afterParenType = true if already seen `( type-name )`
* Returns:
* true if matches ( type-name ) ...
*/
private bool isCastExpression(ref Token* pt, bool afterParenType = false)
{
enum log = false;
if (log) printf("isCastExpression(tk: `%s`, afterParenType: %d)\n", token.toChars(pt.value), afterParenType);
auto t = pt;
switch (t.value)
{
case TOK.leftParenthesis:
auto tk = peek(t); // move past left parenthesis
if (!isTypeName(tk) || tk.value != TOK.rightParenthesis)
{
if (afterParenType)
goto default; // could be ( type-name ) ( unary-expression )
return false;
}
tk = peek(tk); // move past right parenthesis
if (tk.value == TOK.leftCurly)
{
// ( type-name ) { initializer-list }
if (!isInitializer(tk))
{
return false;
}
t = tk;
break;
}
if (tk.value == TOK.leftParenthesis && peek(tk).value == TOK.rightParenthesis)
{
return false; // (type-name)() is not a cast (it might be a function call)
}
if (!isCastExpression(tk, true))
{
if (afterParenType) // could be ( type-name ) ( unary-expression )
goto default; // where unary-expression also matched type-name
return true;
}
// ( type-name ) cast-expression
t = tk;
break;
default:
if (!afterParenType || !isUnaryExpression(t, afterParenType))
{
return false;
}
// if we've already seen ( type-name ), then this is a cast
break;
}
pt = t;
if (log) printf("isCastExpression true\n");
return true;
}
/********************************
* See if match for unary-expression.
* Params:
* pt = starting token, updated to one past end of constant-expression if true
* afterParenType = true if already seen ( type-name ) of a cast-expression
* Returns:
* true if unary-expression
*/
private bool isUnaryExpression(ref Token* pt, bool afterParenType = false)
{
auto t = pt;
switch (t.value)
{
case TOK.plusPlus:
case TOK.minusMinus:
t = peek(t);
if (!isUnaryExpression(t, afterParenType))
return false;
break;
case TOK.and:
case TOK.mul:
case TOK.min:
case TOK.add:
case TOK.not:
case TOK.tilde:
t = peek(t);
if (!isCastExpression(t, afterParenType))
return false;
break;
case TOK.sizeof_:
t = peek(t);
if (t.value == TOK.leftParenthesis)
{
auto tk = peek(t);
if (isTypeName(tk))
{
if (tk.value != TOK.rightParenthesis)
return false;
t = peek(tk);
break;
}
}
if (!isUnaryExpression(t, afterParenType))
return false;
break;
case TOK._Alignof:
t = peek(t);
if (t.value != TOK.leftParenthesis)
return false;
t = peek(t);
if (!isTypeName(t) || t.value != TOK.rightParenthesis)
return false;
break;
default:
// Compound literals are handled by cast and sizeof expressions,
// so be content with just seeing a primary expression.
if (!isPrimaryExpression(t))
return false;
break;
}
pt = t;
return true;
}
/********************************
* See if match for primary-expression.
* Params:
* pt = starting token, updated to one past end of constant-expression if true
* Returns:
* true if primary-expression
*/
private bool isPrimaryExpression(ref Token* pt)
{
auto t = pt;
switch (t.value)
{
case TOK.identifier:
case TOK.charLiteral:
case TOK.int32Literal:
case TOK.uns32Literal:
case TOK.int64Literal:
case TOK.uns64Literal:
case TOK.float32Literal:
case TOK.float64Literal:
case TOK.float80Literal:
case TOK.imaginary32Literal:
case TOK.imaginary64Literal:
case TOK.imaginary80Literal:
case TOK.string_:
t = peek(t);
break;
case TOK.leftParenthesis:
// ( expression )
if (!skipParens(t, &t))
return false;
break;
case TOK._Generic:
t = peek(t);
if (!skipParens(t, &t))
return false;
break;
default:
return false;
}
pt = t;
return true;
}
//}
/******************************************************************************/
/********************************* More ***************************************/
//{
/**************
* Declaration context
*/
enum LVL
{
global = 1, /// global
parameter = 2, /// function parameter (declarations for function identifier-list)
prototype = 4, /// function prototype
local = 8, /// local
member = 0x10, /// struct member
}
/// Types of declarator to parse
enum DTR
{
xdirect = 1, /// C11 6.7.6 direct-declarator
xabstract = 2, /// C11 6.7.7 abstract-declarator
xparameter = 3, /// parameter declarator may be either direct or abstract
}
/// C11 6.7.1 Storage-class specifiers
enum SCW : uint
{
xnone = 0,
xtypedef = 1,
xextern = 2,
xstatic = 4,
x_Thread_local = 8,
xauto = 0x10,
xregister = 0x20,
// C11 6.7.4 Function specifiers
xinline = 0x40,
x_Noreturn = 0x80,
xnoinline = 0x100,
}
/// C11 6.7.3 Type qualifiers
enum MOD : uint
{
xnone = 0,
xconst = 1,
xvolatile = 2,
xrestrict = 4,
x_Atomic = 8,
x__stdcall = 0x10, // Windows linkage extension
}
/**********************************
* Aggregate for all the various specifiers
*/
struct Specifier
{
bool noreturn; /// noreturn attribute
bool naked; /// naked attribute
bool _nothrow; /// nothrow attribute
bool _pure; /// pure attribute
bool dllimport; /// dllimport attribute
bool dllexport; /// dllexport attribute
bool _deprecated; /// deprecated attribute
AST.Expression depMsg; /// deprecated message
uint vector_size; /// positive power of 2 multipe of base type size
SCW scw; /// storage-class specifiers
MOD mod; /// type qualifiers
AST.Expressions* alignExps; /// alignment
structalign_t packalign; /// #pragma pack alignment value
}
/***********************
* Convert from C specifiers to D storage class
* Params:
* level = declaration context
* specifier = specifiers, context, etc.
* Returns:
* corresponding D storage class
*/
StorageClass specifiersToSTC(LVL level, const ref Specifier specifier)
{
StorageClass stc;
if (specifier.scw & SCW.x_Thread_local)
{
if (level == LVL.global)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.static_;
}
else if (level == LVL.local)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.static_;
}
else if (level == LVL.member)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.static_;
}
}
else
{
if (level == LVL.global)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_ | AST.STC.gshared;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.gshared | AST.STC.static_;
else
stc = AST.STC.gshared;
}
else if (level == LVL.local)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_ | AST.STC.gshared;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.gshared;
else if (specifier.scw & SCW.xregister)
stc = AST.STC.register;
}
else if (level == LVL.parameter)
{
if (specifier.scw & SCW.xregister)
stc = AST.STC.register | AST.STC.parameter;
else
stc = AST.STC.parameter;
}
else if (level == LVL.member)
{
if (specifier.scw & SCW.xextern)
stc = AST.STC.extern_ | AST.STC.gshared;
else if (specifier.scw & SCW.xstatic)
stc = AST.STC.gshared;
}
}
if (specifier._deprecated && !specifier.depMsg)
stc |= AST.STC.deprecated_;
return stc;
}
/***********************
* Add attributes from Specifier to function
* Params:
* fd = function to apply them to
* specifier = specifiers
*/
void specifiersToFuncDeclaration(AST.FuncDeclaration fd, const ref Specifier specifier)
{
fd.isNaked = specifier.naked;
fd.dllImport = specifier.dllimport;
fd.dllExport = specifier.dllexport;
if (specifier.scw & SCW.xnoinline)
fd.inlining = PINLINE.never;
else if (specifier.scw & SCW.xinline)
fd.inlining = PINLINE.always;
}
/***********************
* Add attributes from Specifier to variable
* Params:
* vd = function to apply them to
* specifier = specifiers
*/
void specifiersToVarDeclaration(AST.VarDeclaration vd, const ref Specifier specifier)
{
vd.dllImport = specifier.dllimport;
vd.dllExport = specifier.dllexport;
}
/***********************
* Return suitable signed integer type for the given size
* Params:
* size = size of type
* Returns:
* corresponding signed D integer type
*/
private AST.Type integerTypeForSize(ubyte size)
{
if (size <= 1)
return AST.Type.tint8;
if (size <= 2)
return AST.Type.tint16;
if (size <= 4)
return AST.Type.tint32;
if (size <= 8)
return AST.Type.tint64;
if (size == 16)
{
error("__int128 not supported");
return AST.Type.terror;
}
error("unsupported integer type");
return AST.Type.terror;
}
/***********************
* Return suitable unsigned integer type for the given size
* Params:
* size = size of type
* Returns:
* corresponding unsigned D integer type
*/
private AST.Type unsignedTypeForSize(ubyte size)
{
if (size <= 1)
return AST.Type.tuns8;
if (size <= 2)
return AST.Type.tuns16;
if (size <= 4)
return AST.Type.tuns32;
if (size <= 8)
return AST.Type.tuns64;
if (size == 16)
{
error("unsigned __int128 not supported");
return AST.Type.terror;
}
error("unsupported integer type");
return AST.Type.terror;
}
/***********************
* Return suitable D float type for C `long double`
* Params:
* flags = kind of float to return (real, imaginary, complex).
* Returns:
* corresponding D type
*/
private AST.Type realType(RTFlags flags)
{
if (long_doublesize == AST.Type.tfloat80.size())
{
// On GDC and LDC, D `real` types map to C `long double`, so never
// return a double type when real.sizeof == double.sizeof.
final switch (flags)
{
case RTFlags.realfloat: return AST.Type.tfloat80;
case RTFlags.imaginary: return AST.Type.timaginary80;
case RTFlags.complex: return AST.Type.tcomplex80;
}
}
else
{
final switch (flags)
{
case RTFlags.realfloat: return long_doublesize == 8 ? AST.Type.tfloat64 : AST.Type.tfloat80;
case RTFlags.imaginary: return long_doublesize == 8 ? AST.Type.timaginary64 : AST.Type.timaginary80;
case RTFlags.complex: return long_doublesize == 8 ? AST.Type.tcomplex64 : AST.Type.tcomplex80;
}
}
}
/**************
* Flags for realType
*/
private enum RTFlags
{
realfloat,
imaginary,
complex,
}
/********************
* C11 6.4.2.2 Create declaration to predefine __func__
* `static const char __func__[] = " function-name ";`
* Params:
* loc = location for this declaration
* id = identifier of function
* Returns:
* statement representing the declaration of __func__
*/
private AST.Statement createFuncName(Loc loc, Identifier id)
{
const fn = id.toString(); // function-name
auto efn = new AST.StringExp(loc, fn, fn.length, 1, 'c');
auto ifn = new AST.ExpInitializer(loc, efn);
auto lenfn = new AST.IntegerExp(loc, fn.length + 1, AST.Type.tuns32); // +1 for terminating 0
auto tfn = new AST.TypeSArray(AST.Type.tchar, lenfn);
efn.type = tfn.immutableOf();
efn.committed = true;
auto sfn = new AST.VarDeclaration(loc, tfn, Id.__func__, ifn, STC.gshared | STC.immutable_);
auto e = new AST.DeclarationExp(loc, sfn);
return new AST.ExpStatement(loc, e);
}
/************************
* After encountering an error, scan forward until a right brace or ; is found
* or the end of the file.
*/
void panic()
{
while (token.value != TOK.rightCurly && token.value != TOK.semicolon && token.value != TOK.endOfFile)
nextToken();
}
/**************************
* Apply `const` to a type.
* Params:
* t = type to add const to
* Returns:
* resulting type
*/
private AST.Type toConst(AST.Type t)
{
// `const` is always applied to the return type, not the
// type function itself.
if (auto tf = t.isTypeFunction())
tf.next = tf.next.addSTC(STC.const_);
else if (auto tt = t.isTypeTag())
tt.mod |= MODFlags.const_;
else
{
/* Ignore const if the result would be const pointer to mutable
*/
auto tn = t.nextOf();
if (!tn || tn.isConst())
t = t.addSTC(STC.const_);
}
return t;
}
/***************************
* Apply specifier to a Dsymbol.
* Params:
* s = Dsymbol
* specifier = specifiers to apply
* Returns:
* Dsymbol with specifiers applied
*/
private AST.Dsymbol applySpecifier(AST.Dsymbol s, ref Specifier specifier)
{
//printf("applySpecifier() %s\n", s.toChars());
if (specifier._deprecated)
{
if (specifier.depMsg)
{
// Wrap declaration in a DeprecatedDeclaration
auto decls = new AST.Dsymbols(1);
(*decls)[0] = s;
s = new AST.DeprecatedDeclaration(specifier.depMsg, decls);
}
}
if (specifier.alignExps)
{
//printf(" applying _Alignas %s, packalign %d\n", (*specifier.alignExps)[0].toChars(), cast(int)specifier.packalign);
// Wrap declaration in an AlignDeclaration
auto decls = new AST.Dsymbols(1);
(*decls)[0] = s;
s = new AST.AlignDeclaration(s.loc, specifier.alignExps, decls);
}
else if (!specifier.packalign.isDefault())
{
//printf(" applying packalign %d\n", cast(int)specifier.packalign);
// Wrap #pragma pack in an AlignDeclaration
auto decls = new AST.Dsymbols(1);
(*decls)[0] = s;
s = new AST.AlignDeclaration(s.loc, specifier.packalign, decls);
}
return s;
}
//}
/******************************************************************************/
/************************** typedefTab symbol table ***************************/
//{
/********************************
* Determines if type t is a function type.
* Params:
* t = type to test
* Returns:
* true if it represents a function
*/
bool isFunctionTypedef(AST.Type t)
{
//printf("isFunctionTypedef() %s\n", t.toChars());
if (t.isTypeFunction())
return true;
if (auto tid = t.isTypeIdentifier())
{
auto pt = lookupTypedef(tid.ident);
if (pt && *pt)
{
return (*pt).isTypeFunction() !is null;
}
}
return false;
}
/********************************
* Determine if `id` is a symbol for a Typedef.
* Params:
* id = possible typedef
* Returns:
* true if id is a Type
*/
bool isTypedef(Identifier id)
{
auto pt = lookupTypedef(id);
return (pt && *pt);
}
/*******************************
* Add `id` to typedefTab[], but only if it will mask an existing typedef.
* Params: id = identifier for non-typedef symbol
*/
void insertIdToTypedefTab(Identifier id)
{
//printf("insertIdToTypedefTab(id: %s) level %d\n", id.toChars(), cast(int)typedefTab.length - 1);
if (isTypedef(id)) // if existing typedef
{
/* Add id as null, so we can later distinguish it from a non-null typedef
*/
auto tab = cast(void*[void*])(typedefTab[$ - 1]);
tab[cast(void*)id] = cast(void*)null;
}
}
/*******************************
* Add `id` to typedefTab[]
* Params:
* id = identifier for typedef symbol
* t = type of the typedef symbol
*/
void insertTypedefToTypedefTab(Identifier id, AST.Type t)
{
//printf("insertTypedefToTypedefTab(id: %s, t: %s) level %d\n", id.toChars(), t ? t.toChars() : "null".ptr, cast(int)typedefTab.length - 1);
if (auto tid = t.isTypeIdentifier())
{
// Try to resolve the TypeIdentifier to its type
auto pt = lookupTypedef(tid.ident);
if (pt && *pt)
t = *pt;
}
auto tab = cast(void*[void*])(typedefTab[$ - 1]);
tab[cast(void*)id] = cast(void*)t;
typedefTab[$ - 1] = cast(void*)tab;
}
/*********************************
* Lookup id in typedefTab[].
* Returns:
* if not found, then null.
* if found, then Type*. Deferencing it will yield null if it is not
* a typedef, and a type if it is a typedef.
*/
AST.Type* lookupTypedef(Identifier id)
{
foreach_reverse (tab; typedefTab[])
{
if (auto pt = cast(void*)id in cast(void*[void*])tab)
{
return cast(AST.Type*)pt;
}
}
return null; // not found
}
//}
/******************************************************************************/
/********************************* Directive Parser ***************************/
//{
override bool parseSpecialTokenSequence()
{
Token n;
scan(&n);
if (n.value == TOK.int32Literal)
{
poundLine(n, true);
return true;
}
if (n.value == TOK.identifier)
{
if (n.ident == Id.line)
{
poundLine(n, false);
return true;
}
else if (defines && (n.ident == Id.define || n.ident == Id.undef))
{
/* Append this line to `defines`.
* Not canonicalizing it - assume it already is
*/
defines.writeByte('#');
defines.writestring(n.ident.toString());
skipToNextLine(defines);
defines.writeByte('\n');
return true;
}
else if (n.ident == Id.__pragma)
{
pragmaDirective(scanloc);
return true;
}
else if (n.ident == Id.ident) // #ident "string"
{
scan(&n);
if (n.value == TOK.string_ && n.ptr[0] == '"' && n.postfix == 0)
{
/* gcc inserts string into the .comment section in the object file.
* Just ignore it for now, but can support it later by writing
* the string to obj_exestr()
*/
//auto comment = n.ustring;
scan(&n);
if (n.value == TOK.endOfFile || n.value == TOK.endOfLine)
return true;
}
error("\"string\" expected after `#ident`");
return false;
}
}
if (n.ident != Id.undef)
error("C preprocessor directive `#%s` is not supported", n.toChars());
return false;
}
/*********************************************
* VC __pragma
* https://docs.microsoft.com/en-us/cpp/preprocessor/pragma-directives-and-the-pragma-keyword?view=msvc-170
* Scanner is on the `__pragma`
* Params:
* startloc = location to use for error messages
*/
private void uupragmaDirective(const ref Loc startloc)
{
const loc = startloc;
nextToken();
if (token.value != TOK.leftParenthesis)
{
error(loc, "left parenthesis expected to follow `__pragma`");
return;
}
nextToken();
if (token.value == TOK.identifier && token.ident == Id.pack)
pragmaPack(startloc, false);
else
error(loc, "unrecognized __pragma");
if (token.value != TOK.rightParenthesis)
{
error(loc, "right parenthesis expected to close `__pragma(...)`");
return;
}
nextToken();
}
/*********************************************
* C11 6.10.6 Pragma directive
* # pragma pp-tokens(opt) new-line
* The C preprocessor sometimes leaves pragma directives in
* the preprocessed output. Ignore them.
* Upon return, p is at start of next line.
*/
private void pragmaDirective(const ref Loc loc)
{
Token n;
scan(&n);
if (n.value == TOK.identifier && n.ident == Id.pack)
return pragmaPack(loc, true);
if (n.value != TOK.endOfLine)
skipToNextLine();
}
/*********
* # pragma pack
* https://gcc.gnu.org/onlinedocs/gcc-4.4.4/gcc/Structure_002dPacking-Pragmas.html
* https://docs.microsoft.com/en-us/cpp/preprocessor/pack
* Scanner is on the `pack`
* Params:
* startloc = location to use for error messages
* useScan = use scan() to retrieve next token, instead of nextToken()
*/
private void pragmaPack(const ref Loc startloc, bool useScan)
{
const loc = startloc;
/* Pull tokens from scan() or nextToken()
*/
void scan(Token* t)
{
if (useScan)
{
Lexer.scan(t);
}
else
{
nextToken();
*t = token;
}
}
Token n;
scan(&n);
if (n.value != TOK.leftParenthesis)
{
error(loc, "left parenthesis expected to follow `#pragma pack`");
if (n.value != TOK.endOfLine)
skipToNextLine();
return;
}
void closingParen()
{
if (n.value != TOK.rightParenthesis)
{
error(loc, "right parenthesis expected to close `#pragma pack(`");
}
if (n.value != TOK.endOfLine)
skipToNextLine();
}
void setPackAlign(ref const Token t)
{
const n = t.unsvalue;
if (n < 1 || n & (n - 1) || ushort.max < n)
error(loc, "pack must be an integer positive power of 2, not 0x%llx", cast(ulong)n);
packalign.set(cast(uint)n);
packalign.setPack(true);
}
scan(&n);
if (!records)
{
records = new Array!Identifier;
packs = new Array!structalign_t;
}
/* # pragma pack ( show )
*/
if (n.value == TOK.identifier && n.ident == Id.show)
{
if (packalign.isDefault())
eSink.warning(startloc, "current pack attribute is default");
else
eSink.warning(startloc, "current pack attribute is %d", packalign.get());
scan(&n);
return closingParen();
}
/* # pragma pack ( push )
* # pragma pack ( push , identifier )
* # pragma pack ( push , integer )
* # pragma pack ( push , identifier , integer )
*/
if (n.value == TOK.identifier && n.ident == Id.push)
{
scan(&n);
Identifier record = null;
if (n.value == TOK.comma)
{
scan(&n);
if (n.value == TOK.identifier)
{
record = n.ident;
scan(&n);
if (n.value == TOK.comma)
{
scan(&n);
if (n.value == TOK.int32Literal)
{
setPackAlign(n);
scan(&n);
}
else
error(loc, "alignment value expected, not `%s`", n.toChars());
}
}
else if (n.value == TOK.int32Literal)
{
setPackAlign(n);
scan(&n);
}
else
error(loc, "alignment value expected, not `%s`", n.toChars());
}
this.records.push(record);
this.packs.push(packalign);
return closingParen();
}
/* # pragma pack ( pop )
* # pragma pack ( pop PopList )
* PopList :
* , IdentifierOrInteger
* , IdentifierOrInteger PopList
* IdentifierOrInteger:
* identifier
* integer
*/
if (n.value == TOK.identifier && n.ident == Id.pop)
{
scan(&n);
size_t len = this.records.length;
if (n.value == TOK.rightParenthesis) // #pragma pack ( pop )
{
if (len == 0) // nothing to pop
return closingParen();
this.records.setDim(len - 1);
this.packs.setDim(len - 1);
if (len == 1) // stack is now empty
packalign.setDefault();
else
packalign = (*this.packs)[len - 1];
return closingParen();
}
while (n.value == TOK.comma) // #pragma pack ( pop ,
{
scan(&n);
if (n.value == TOK.identifier)
{
/* pragma pack(pop, identifier
* Pop until identifier is found, pop that one too, and set
* alignment to the new top of the stack.
* If identifier is not found, do nothing.
*/
for ( ; len; --len)
{
if ((*this.records)[len - 1] == n.ident)
{
this.records.setDim(len - 1);
this.packs.setDim(len - 1);
if (len > 1)
packalign = (*this.packs)[len - 2];
else
packalign.setDefault(); // stack empty, use default
break;
}
}
scan(&n);
}
else if (n.value == TOK.int32Literal)
{
setPackAlign(n);
scan(&n);
}
else
{
error(loc, "identifier or alignment value expected following `#pragma pack(pop,` not `%s`", n.toChars());
scan(&n);
}
}
return closingParen();
}
/* # pragma pack ( integer )
* Sets alignment to integer
*/
if (n.value == TOK.int32Literal)
{
setPackAlign(n);
scan(&n);
return closingParen();
}
/* # pragma pack ( )
* Sets alignment to default
*/
if (n.value == TOK.rightParenthesis)
{
packalign.setDefault();
return closingParen();
}
error(loc, "unrecognized `#pragma pack(%s)`", n.toChars());
if (n.value != TOK.endOfLine)
skipToNextLine();
}
//}
/******************************************************************************/
/********************************* #define Parser *****************************/
//{
/**
* Go through the #define's in the defines buffer and see what we can convert
* to Dsymbols, which are then appended to symbols[]
*/
void addDefines()
{
if (!defines || defines.length < 10) // minimum length of a #define line
return;
OutBuffer* buf = defines;
defines = null; // prevent skipToNextLine() and parseSpecialTokenSequence()
// from appending to slice[]
const length = buf.length;
buf.writeByte(0);
auto slice = buf.peekChars()[0 .. length];
resetDefineLines(slice); // reset lexer
const(char)* endp = &slice[length - 7];
size_t[void*] defineTab; // hash table of #define's turned into Symbol's
// indexed by Identifier, returns index into symbols[]
// The memory for this is leaked
void addVar(AST.VarDeclaration v)
{
//printf("addVar() %s\n", v.toChars());
v.isCmacro(true); // mark it as coming from a C #define
/* If it's already defined, replace the earlier
* definition
*/
if (size_t* pd = cast(void*)v.ident in defineTab)
{
//printf("replacing %s\n", v.toChars());
(*symbols)[*pd] = v;
return;
}
defineTab[cast(void*)v.ident] = symbols.length;
symbols.push(v);
}
Token n;
while (p < endp)
{
if (p[0 .. 7] == "#define")
{
p += 7;
scan(&n);
//printf("%s\n", n.toChars());
if (n.value == TOK.identifier)
{
auto id = n.ident;
scan(&n);
AST.Type t;
switch (n.value)
{
case TOK.endOfLine: // #define identifier
nextDefineLine();
continue;
case TOK.int32Literal:
case TOK.charLiteral: t = AST.Type.tint32; goto Linteger;
case TOK.uns32Literal: t = AST.Type.tuns32; goto Linteger;
case TOK.int64Literal: t = AST.Type.tint64; goto Linteger;
case TOK.uns64Literal: t = AST.Type.tuns64; goto Linteger;
Linteger:
const intvalue = n.intvalue;
scan(&n);
if (n.value == TOK.endOfLine)
{
/* Declare manifest constant:
* enum id = intvalue;
*/
AST.Expression e = new AST.IntegerExp(scanloc, intvalue, t);
auto v = new AST.VarDeclaration(scanloc, t, id, new AST.ExpInitializer(scanloc, e), STC.manifest);
addVar(v);
nextDefineLine();
continue;
}
break;
case TOK.float32Literal: t = AST.Type.tfloat32; goto Lfloat;
case TOK.float64Literal: t = AST.Type.tfloat64; goto Lfloat;
case TOK.float80Literal: t = AST.Type.tfloat80; goto Lfloat;
case TOK.imaginary32Literal: t = AST.Type.timaginary32; goto Lfloat;
case TOK.imaginary64Literal: t = AST.Type.timaginary64; goto Lfloat;
case TOK.imaginary80Literal: t = AST.Type.timaginary80; goto Lfloat;
Lfloat:
const floatvalue = n.floatvalue;
scan(&n);
if (n.value == TOK.endOfLine)
{
/* Declare manifest constant:
* enum id = floatvalue;
*/
AST.Expression e = new AST.RealExp(scanloc, floatvalue, t);
auto v = new AST.VarDeclaration(scanloc, t, id, new AST.ExpInitializer(scanloc, e), STC.manifest);
addVar(v);
nextDefineLine();
continue;
}
break;
case TOK.string_:
const str = n.ustring;
const len = n.len;
const postfix = n.postfix;
scan(&n);
if (n.value == TOK.endOfLine)
{
/* Declare manifest constant:
* enum id = "string";
*/
AST.Expression e = new AST.StringExp(scanloc, str[0 .. len], len, 1, postfix);
auto v = new AST.VarDeclaration(scanloc, null, id, new AST.ExpInitializer(scanloc, e), STC.manifest);
addVar(v);
nextDefineLine();
continue;
}
break;
default:
break;
}
}
skipToNextLine();
}
else
{
scan(&n);
if (n.value != TOK.endOfLine)
{
skipToNextLine();
}
}
nextDefineLine();
}
defines = buf;
}
//}
}
| D |
var int enter_oldworld_firsttime_trigger_onetime;
func void enter_oldworld_firsttime_trigger()
{
if(enter_oldworld_firsttime_trigger_onetime == FALSE)
{
B_KillNpc(Bruder);
B_KillNpc(VLK_Leiche3);
B_KillNpc(VLK_Leiche2);
B_KillNpc(STRF_Leiche1);
B_KillNpc(STRF_Leiche2);
B_KillNpc(STRF_Leiche3);
B_KillNpc(STRF_Leiche4);
B_KillNpc(STRF_Leiche5);
B_KillNpc(STRF_Leiche6);
B_KillNpc(STRF_Leiche7);
B_KillNpc(STRF_Leiche8);
B_KillNpc(PAL_Leiche1);
B_KillNpc(PAL_Leiche2);
B_KillNpc(PAL_Leiche3);
B_KillNpc(VLK_Leiche1);
B_KillNpc(PAL_Leiche4);
B_KillNpc(PAL_Leiche5);
B_KillNpc(Olav);
PlayVideo("DRAGONATTACK.BIK");
enter_oldworld_firsttime_trigger_onetime = TRUE;
};
if(TschuessBilgot == TRUE)
{
B_RemoveNpc(Bilgot);
};
};
| D |
module owlchain.api.app;
import vibe.d;
import vibe.utils.array;
final class ApiService {
@path("/")
void getIndex(string _error = null){
//render!("index.dt");
}
}
shared static this()
{
auto router = new URLRouter;
router.registerWebInterface(new ApiService);
auto settings = new HTTPServerSettings;
settings.port = 8888;
//settings.bindAddresses = ["::1", "127.0.0.1"];
settings.bindAddresses = ["127.0.0.1"];
listenHTTP(settings, router);
logInfo("Please open http://127.0.0.1:8888/ in your browser.");
}
| D |
/**
SSL/TLS stream implementation
SSLStream can be used to implement SSL/TLS communication on top of a TCP connection. The
SSLContextKind of an SSLStream determines if the SSL tunnel is established actively (client) or
passively (server).
Copyright: © 2012-2014 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig
*/
module vibe.stream.ssl;
import vibe.core.log;
import vibe.core.net;
import vibe.core.stream;
import vibe.core.sync;
import std.algorithm;
import std.array;
import std.conv;
import std.exception;
import std.string;
import core.stdc.string : strlen;
import core.sync.mutex;
import core.thread;
version (VibeNoSSL) {}
else version = OpenSSL;
/// A simple SSL client
unittest {
import vibe.core.net;
import vibe.stream.ssl;
void sendSSLMessage()
{
auto conn = connectTCP("127.0.0.1", 1234);
auto sslctx = createSSLContext(SSLContextKind.client);
auto stream = createSSLStream(conn, sslctx);
stream.write("Hello, World!");
stream.finalize();
conn.close();
}
}
/// Corresponding server
unittest {
import vibe.core.log;
import vibe.core.net;
import vibe.stream.operations;
import vibe.stream.ssl;
void listenForSSL()
{
auto sslctx = createSSLContext(SSLContextKind.server);
sslctx.useCertificateChainFile("server.crt");
sslctx.usePrivateKeyFile("server.key");
listenTCP(1234, (conn){
auto stream = createSSLStream(conn, sslctx);
logInfo("Got message: %s", stream.readAllUTF8());
stream.finalize();
});
}
}
/**************************************************************************************************/
/* Public functions */
/**************************************************************************************************/
/** Creates a new context of the given kind.
Params:
kind = Specifies if the context is going to be used on the client
or on the server end of the SSL tunnel
ver = The SSL/TLS protocol used for negotiating the tunnel
*/
SSLContext createSSLContext(SSLContextKind kind, SSLVersion ver = SSLVersion.any)
{
version (VibeNoSSL) assert(false, "No SSL support compiled in (VibeNoSSL)");
else return new SSLContext(DEPRECATION_HACK.init, kind, ver);
}
/** Constructs a new SSL tunnel and infers the stream state from the SSLContextKind.
Depending on the SSLContextKind of ctx, the tunnel will try to establish an SSL
tunnel by either passively accepting or by actively connecting.
Params:
underlying = The base stream which is used for the SSL tunnel
ctx = SSL context used for initiating the tunnel
peer_name = DNS name of the remote peer, used for certificate validation
peer_address = IP address of the remote peer, used for certificate validation
*/
SSLStream createSSLStream(Stream underlying, SSLContext ctx, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
auto stream_state = ctx.kind == SSLContextKind.client ? SSLStreamState.connecting : SSLStreamState.accepting;
return createSSLStream(underlying, ctx, stream_state, peer_name, peer_address);
}
/** Constructs a new SSL tunnel, allowing to override the stream state.
This constructor allows to specify a custom tunnel state, which can
be useful when a tunnel has already been established by other means.
Params:
underlying = The base stream which is used for the SSL tunnel
ctx = SSL context used for initiating the tunnel
state = The manually specified tunnel state
peer_name = DNS name of the remote peer, used for certificate validation
peer_address = IP address of the remote peer, used for certificate validation
*/
SSLStream createSSLStream(Stream underlying, SSLContext ctx, SSLStreamState state, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
version (VibeNoSSL) assert(false, "No SSL support compiled in (VibeNoSSL)");
else return new SSLStream(DEPRECATION_HACK.init, underlying, ctx, state, peer_name, peer_address);
}
/**
Constructs a new SSL stream using manual memory allocator.
*/
FreeListRef!SSLStream createSSLStreamFL(Stream underlying, SSLContext ctx, SSLStreamState state, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
version (VibeNoSSL) assert(false, "No SSL support compiled in (VibeNoSSL)");
else {
import vibe.utils.memory;
static assert(AllocSize!SSLStream > 0);
return FreeListRef!SSLStream(DEPRECATION_HACK.init, underlying, ctx, state, peer_name, peer_address);
}
}
/**************************************************************************************************/
/* Public types */
/**************************************************************************************************/
version (OpenSSL) {
import deimos.openssl.bio;
import deimos.openssl.err;
import deimos.openssl.rand;
import deimos.openssl.ssl;
import deimos.openssl.x509v3;
version (VibePragmaLib) {
pragma(lib, "ssl");
version (Windows) pragma(lib, "eay");
}
}
/**
Creates an SSL/TLS tunnel within an existing stream.
Note: Be sure to call finalize before finalizing/closing the outer stream so that the SSL
tunnel is properly closed first.
*/
final class SSLStream : Stream {
private {
Stream m_stream;
SSLContext m_sslCtx;
SSLStreamState m_state;
SSLState m_ssl;
version (OpenSSL) {
BIO* m_bio;
}
ubyte m_peekBuffer[64];
Exception[] m_exceptions;
}
/** Deprecated. Use createSSLStream instead.
*/
deprecated("Use createSSLStream instead of directly instantiating SSLStream.")
this(Stream underlying, SSLContext ctx, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
auto stream_state = ctx.kind == SSLContextKind.client ? SSLStreamState.connecting : SSLStreamState.accepting;
this(DEPRECATION_HACK.init, underlying, ctx, stream_state, peer_name, peer_address);
}
/** Deprecated. Use createSSLStream instead.
*/
deprecated("Use createSSLStream instead of directly instantiating SSLStream.")
this(Stream underlying, SSLContext ctx, SSLStreamState state, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
this(DEPRECATION_HACK.init, underlying, ctx, state, peer_name, peer_address);
}
/// private
/*private*/ this(DEPRECATION_HACK, Stream underlying, SSLContext ctx, SSLStreamState state, string peer_name = null, NetworkAddress peer_address = NetworkAddress.init)
{
m_stream = underlying;
m_state = state;
m_sslCtx = ctx;
m_ssl = ctx.createClientCtx();
scope (failure) {
version (OpenSSL) SSL_free(m_ssl);
m_ssl = null;
}
version (OpenSSL) {
m_bio = BIO_new(&s_bio_methods);
enforce(m_bio !is null, "SSL failed: failed to create BIO structure.");
m_bio.init_ = 1;
m_bio.ptr = cast(void*)this;
m_bio.shutdown = 0;
SSL_set_bio(m_ssl, m_bio, m_bio);
if (state != SSLStreamState.connected) {
SSLContext.VerifyData vdata;
vdata.verifyDepth = ctx.maxCertChainLength;
vdata.validationMode = ctx.peerValidationMode;
vdata.callback = ctx.peerValidationCallback;
vdata.peerName = peer_name;
vdata.peerAddress = peer_address;
SSL_set_ex_data(m_ssl, gs_verifyDataIndex, &vdata);
scope (exit) SSL_set_ex_data(m_ssl, gs_verifyDataIndex, null);
final switch (state) {
case SSLStreamState.accepting:
//SSL_set_accept_state(m_ssl);
enforceSSL(SSL_accept(m_ssl), "Failed to accept SSL tunnel");
break;
case SSLStreamState.connecting:
//SSL_set_connect_state(m_ssl);
enforceSSL(SSL_connect(m_ssl), "Failed to connect SSL tunnel.");
break;
case SSLStreamState.connected:
break;
}
// ensure that the SSL tunnel gets terminated when an error happens during verification
scope (failure) SSL_shutdown(m_ssl);
if (auto peer = SSL_get_peer_certificate(m_ssl)) {
scope(exit) X509_free(peer);
auto result = SSL_get_verify_result(m_ssl);
if (result == X509_V_OK && (ctx.peerValidationMode & SSLPeerValidationMode.checkPeer)) {
if (!verifyCertName(peer, GENERAL_NAME.GEN_DNS, vdata.peerName)) {
version(Windows) import std.c.windows.winsock;
else import core.sys.posix.netinet.in_;
logWarn("peer name '%s' couldn't be verified, trying IP address.", vdata.peerName);
char* addr;
int addrlen;
switch (vdata.peerAddress.family) {
default: break;
case AF_INET:
addr = cast(char*)&vdata.peerAddress.sockAddrInet4.sin_addr;
addrlen = vdata.peerAddress.sockAddrInet4.sin_addr.sizeof;
break;
case AF_INET6:
addr = cast(char*)&vdata.peerAddress.sockAddrInet6.sin6_addr;
addrlen = vdata.peerAddress.sockAddrInet6.sin6_addr.sizeof;
break;
}
if (!verifyCertName(peer, GENERAL_NAME.GEN_IPADD, addr[0 .. addrlen])) {
logWarn("Error validating peer address");
result = X509_V_ERR_APPLICATION_VERIFICATION;
}
}
}
enforce(result == X509_V_OK, "Peer failed the certificate validation: "~to!string(result));
} //else enforce(ctx.verifyMode < requireCert);
}
checkExceptions();
} else assert(false, "No SSL support compiled in (VibeNoSSL).");
}
~this()
{
version (OpenSSL) if (m_ssl) SSL_free(m_ssl);
}
@property bool empty()
{
return leastSize() == 0 && m_stream.empty;
}
@property ulong leastSize()
{
version (OpenSSL) {
auto ret = SSL_pending(m_ssl);
return ret > 0 ? ret : m_stream.empty ? 0 : 1;
} else assert(false);
}
@property bool dataAvailableForRead()
{
version (OpenSSL) return SSL_pending(m_ssl) > 0 || m_stream.dataAvailableForRead;
else assert(false);
}
const(ubyte)[] peek()
{
version (OpenSSL) {
auto ret = SSL_peek(m_ssl, m_peekBuffer.ptr, m_peekBuffer.length);
checkExceptions();
return ret > 0 ? m_peekBuffer[0 .. ret] : null;
} else assert(false);
}
void read(ubyte[] dst)
{
version (OpenSSL) {
while( dst.length > 0 ){
int readlen = min(dst.length, int.max);
auto ret = checkSSLRet("SSL_read", SSL_read(m_ssl, dst.ptr, readlen));
//logTrace("SSL read %d/%d", ret, dst.length);
dst = dst[ret .. $];
}
}
}
void write(in ubyte[] bytes_)
{
version (OpenSSL) {
const(ubyte)[] bytes = bytes_;
while( bytes.length > 0 ){
int writelen = min(bytes.length, int.max);
auto ret = checkSSLRet("SSL_write", SSL_write(m_ssl, bytes.ptr, writelen));
//logTrace("SSL write %s", cast(string)bytes[0 .. ret]);
bytes = bytes[ret .. $];
}
}
}
alias Stream.write write;
void flush()
{
}
void finalize()
{
if( !m_ssl ) return;
logTrace("SSLStream finalize");
version (OpenSSL) {
SSL_shutdown(m_ssl);
SSL_free(m_ssl);
}
m_ssl = null;
checkExceptions();
}
void write(InputStream stream, ulong nbytes = 0)
{
writeDefault(stream, nbytes);
}
version (OpenSSL) {
private int checkSSLRet(string what, int ret)
{
checkExceptions();
if (ret <= 0) {
const(char)* file = null, data = null;
int line;
int flags;
c_ulong eret;
char[120] ebuf;
while( (eret = ERR_get_error_line_data(&file, &line, &data, &flags)) != 0 ){
ERR_error_string(eret, ebuf.ptr);
logDiagnostic("%s error at at %s:%d: %s (%s)", what, to!string(file), line, to!string(ebuf.ptr), flags & ERR_TXT_STRING ? to!string(data) : "-");
}
}
enforce(ret != 0, format("%s was unsuccessful with ret 0", what));
enforce(ret >= 0, format("%s returned an error: %s", what, SSL_get_error(m_ssl, ret)));
return ret;
}
private int enforceSSL(int ret, string message)
{
if (ret <= 0) {
auto err = SSL_get_error(m_ssl, ret);
char[120] ebuf;
ERR_error_string(err, ebuf.ptr);
throw new Exception(format("%s: %s (%s)", message, ebuf.ptr.to!string(), err));
}
return ret;
}
}
private void checkExceptions()
{
if( m_exceptions.length > 0 ){
foreach( e; m_exceptions )
logDiagnostic("Exception occured on SSL source stream: %s", e.toString());
throw m_exceptions[0];
}
}
}
enum SSLStreamState {
connecting,
accepting,
connected
}
/**
Encapsulates the configuration for an SSL tunnel.
Note that when creating an SSLContext with SSLContextKind.client, the
peerValidationMode will be set to SSLPeerValidationMode.trustedCert,
but no trusted certificate authorities are added by default. Use
useTrustedCertificateFile to add those.
*/
final class SSLContext {
private {
SSLContextKind m_kind;
version (OpenSSL) ssl_ctx_st* m_ctx;
SSLPeerValidationCallback m_peerValidationCallback;
SSLPeerValidationMode m_validationMode;
int m_verifyDepth;
}
/** Deprecated. Use createSSLContext instead.
*/
deprecated("Use createSSLContext instead of directly instantiating SSLContext.")
this(SSLContextKind kind, SSLVersion ver = SSLVersion.any)
{
this(DEPRECATION_HACK.init, kind, ver);
}
private this(DEPRECATION_HACK, SSLContextKind kind, SSLVersion ver = SSLVersion.any)
{
m_kind = kind;
version (OpenSSL) {
const(SSL_METHOD)* method;
c_long options = SSL_OP_NO_SSLv2|SSL_OP_NO_COMPRESSION|
SSL_OP_SINGLE_DH_USE|SSL_OP_SINGLE_ECDH_USE;
final switch (kind) {
case SSLContextKind.client:
final switch (ver) {
case SSLVersion.any: method = SSLv23_client_method(); break;
case SSLVersion.ssl3: method = SSLv3_client_method(); break;
case SSLVersion.tls1: method = TLSv1_client_method(); break;
case SSLVersion.dtls1: method = DTLSv1_client_method(); break;
}
break;
case SSLContextKind.server:
final switch (ver) {
case SSLVersion.any: method = SSLv23_server_method(); break;
case SSLVersion.ssl3: method = SSLv3_server_method(); break;
case SSLVersion.tls1: method = TLSv1_server_method(); break;
case SSLVersion.dtls1: method = DTLSv1_server_method(); break;
}
options |= SSL_OP_CIPHER_SERVER_PREFERENCE;
break;
}
m_ctx = SSL_CTX_new(method);
SSL_CTX_set_options!()(m_ctx, options);
if (kind == SSLContextKind.server) {
setDHParams();
setECDHCurve();
}
setCipherList();
} else enforce(false, "No SSL support compiled in!");
maxCertChainLength = 9;
if (kind == SSLContextKind.client) peerValidationMode = SSLPeerValidationMode.trustedCert;
else peerValidationMode = SSLPeerValidationMode.none;
// while it would be nice to use the system's certificate store, this
// seems to be difficult to get right across all systems. The most
// popular alternative is to use Mozilla's certificate store and
// distribute it along with the library (e.g. in source code form.
/*version (Posix) {
enforce(SSL_CTX_load_verify_locations(m_ctx, null, "/etc/ssl/certs"),
"Failed to load system certificate store.");
}
version (Windows) {
auto store = CertOpenSystemStore(null, "ROOT");
enforce(store !is null, "Failed to load system certificate store.");
scope (exit) CertCloseStore(store, 0);
PCCERT_CONTEXT ctx;
while((ctx = CertEnumCertificatesInStore(store, ctx)) !is null) {
X509* x509cert;
auto buffer = ctx.pbCertEncoded;
auto len = ctx.cbCertEncoded;
if (ctx.dwCertEncodingType & X509_ASN_ENCODING) {
x509cert = d2i_X509(null, &buffer, len);
X509_STORE_add_cert(SSL_CTX_get_cert_store(m_ctx), x509cert);
}
}
}*/
}
/** Deprecated. Use createSSLContext instead.
*/
deprecated("Use createSSLContext instead of directly instantiating SSLContext.")
this(string cert_file, string key_file, SSLVersion ver = SSLVersion.any)
{
this(SSLContextKind.server, ver);
version (OpenSSL) {
scope(failure) SSL_CTX_free(m_ctx);
auto succ = SSL_CTX_use_certificate_chain_file(m_ctx, toStringz(cert_file)) &&
SSL_CTX_use_PrivateKey_file(m_ctx, toStringz(key_file), SSL_FILETYPE_PEM);
enforce(succ, "Failed to load server cert/key.");
}
}
/** Deprecated. Use createSSLContext instead.
*/
deprecated("Use createSSLContext instead of directly instantiating SSLContext.")
this(SSLVersion ver = SSLVersion.any)
{
this(SSLContextKind.client, ver);
}
~this()
{
version (OpenSSL) {
SSL_CTX_free(m_ctx);
m_ctx = null;
}
}
/// The kind of SSL context (client/server)
@property SSLContextKind kind() const { return m_kind; }
/** Specifies the validation level of remote peers.
The default mode for SSLContextKind.client is
SSLPeerValidationMode.trustedCert and the default for
SSLContextKind.server is SSLPeerValidationMode.none.
*/
@property void peerValidationMode(SSLPeerValidationMode mode)
{
m_validationMode = mode;
version (OpenSSL) {
int sslmode;
with (SSLPeerValidationMode) {
if (mode == none) sslmode = SSL_VERIFY_NONE;
else {
sslmode |= SSL_VERIFY_PEER | SSL_VERIFY_CLIENT_ONCE;
if (mode & requireCert) sslmode |= SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
}
}
SSL_CTX_set_verify(m_ctx, sslmode, &verify_callback);
}
}
/// ditto
@property SSLPeerValidationMode peerValidationMode() const { return m_validationMode; }
/** The maximum length of an accepted certificate chain.
Any certificate chain longer than this will result in the SSL/TLS
negitiation failing.
The default value is 9.
*/
@property int maxCertChainLength() { return m_verifyDepth; }
/// ditto
@property void maxCertChainLength(int val)
{
m_verifyDepth = val;
// + 1 to let the validation callback handle the error
version (OpenSSL) SSL_CTX_set_verify_depth(m_ctx, val + 1);
}
/** An optional user callback for peer validation.
This callback will be called for each peer and each certificate of
its certificate chain to allow overriding the validation decision
based on the selected peerValidationMode (e.g. to allow invalid
certificates or to reject valid ones). This is mainly useful for
presenting the user with a dialog in case of untrusted or mismatching
certificates.
*/
@property void peerValidationCallback(SSLPeerValidationCallback callback) { m_peerValidationCallback = callback; }
/// ditto
@property inout(SSLPeerValidationCallback) peerValidationCallback() inout { return m_peerValidationCallback; }
/** Set the list of cipher specifications to use for SSL/TLS tunnels.
The list must be a colon separated list of cipher
specifications as accepted by OpenSSL. Calling this function
without argument will restore the default.
See_also: $(LINK https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT)
*/
void setCipherList(string list = null)
{
version (OpenSSL) {
if (list is null)
SSL_CTX_set_cipher_list(m_ctx,
"ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:"
"RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS");
else
SSL_CTX_set_cipher_list(m_ctx, toStringz(list));
}
}
/** Set params to use for DH cipher.
*
* By default the 2048-bit prime from RFC 3526 is used.
*
* Params:
* pem_file = Path to a PEM file containing the DH parameters. Calling
* this function without argument will restore the default.
*/
void setDHParams(string pem_file=null)
{
version (OpenSSL) {
DH* dh;
scope(exit) DH_free(dh);
if (pem_file is null) {
dh = enforce(DH_new(), "Unable to create DH structure.");
dh.p = get_rfc3526_prime_2048(null);
ubyte dh_generator = 2;
dh.g = BN_bin2bn(&dh_generator, dh_generator.sizeof, null);
} else {
import core.stdc.stdio : fclose, fopen;
auto f = enforce(fopen(toStringz(pem_file), "r"), "Failed to load dhparams file "~pem_file);
scope(exit) fclose(f);
dh = enforce(PEM_read_DHparams(f, null, null, null), "Failed to read dhparams file "~pem_file);
}
SSL_CTX_set_tmp_dh(m_ctx, dh);
}
}
/** Set the elliptic curve to use for ECDH cipher.
*
* By default a curve is either chosen automatically or prime256v1 is used.
*
* Params:
* curve = The short name of the elliptic curve to use. Calling this
* function without argument will restore the default.
*
*/
void setECDHCurve(string curve=null)
{
version (OpenSSL) {
static if (OPENSSL_VERSION_NUMBER >= 0x10200000) {
// use automatic ecdh curve selection by default
if (curve is null) {
SSL_CTX_set_ecdh_auto(m_ctx, true);
return;
}
// but disable it when an explicit curve is given
SSL_CTX_set_ecdh_auto(m_ctx, false);
}
int nid;
if (curve is null)
nid = NID_X9_62_prime256v1;
else
nid = enforce(OBJ_sn2nid(toStringz(curve)), "Unknown ECDH curve '"~curve~"'.");
auto ecdh = enforce(EC_KEY_new_by_curve_name(nid), "Unable to create ECDH curve.");
SSL_CTX_set_tmp_ecdh(m_ctx, ecdh);
EC_KEY_free(ecdh);
}
}
/// Sets a certificate file to use for authenticating to the remote peer
void useCertificateChainFile(string path)
{
version (OpenSSL) enforce(SSL_CTX_use_certificate_chain_file(m_ctx, toStringz(path)), "Failed to load certificate file " ~ path);
}
/// Sets the private key to use for authenticating to the remote peer based
/// on the configured certificate chain file.
void usePrivateKeyFile(string path)
{
version (OpenSSL) enforce(SSL_CTX_use_PrivateKey_file(m_ctx, toStringz(path), SSL_FILETYPE_PEM), "Failed to load private key file " ~ path);
}
/** Sets the list of trusted certificates for verifying peer certificates.
If this is a server context, this also entails that the given
certificates are advertised to connecting clients during handshake.
On Linux, the system's root certificate authority list is usually
found at "/etc/ssl/certs/ca-certificates.crt",
"/etc/pki/tls/certs/ca-bundle.crt", or "/etc/ssl/ca-bundle.pem".
*/
void useTrustedCertificateFile(string path)
{
version (OpenSSL) {
immutable cPath = toStringz(path);
enforce(SSL_CTX_load_verify_locations(m_ctx, cPath, null),
"Failed to load trusted certificate file " ~ path);
if (m_kind == SSLContextKind.server) {
auto certNames = enforce(SSL_load_client_CA_file(cPath),
"Failed to load client CA name list from file " ~ path);
SSL_CTX_set_client_CA_list(m_ctx, certNames);
}
}
}
private SSLState createClientCtx()
{
version(OpenSSL) return SSL_new(m_ctx);
else assert(false);
}
private static struct VerifyData {
int verifyDepth;
SSLPeerValidationMode validationMode;
SSLPeerValidationCallback callback;
string peerName;
NetworkAddress peerAddress;
}
version (OpenSSL) {
private static extern(C) nothrow
int verify_callback(int valid, X509_STORE_CTX* ctx)
{
X509* err_cert = X509_STORE_CTX_get_current_cert(ctx);
int err = X509_STORE_CTX_get_error(ctx);
int depth = X509_STORE_CTX_get_error_depth(ctx);
SSL* ssl = cast(SSL*)X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
VerifyData* vdata = cast(VerifyData*)SSL_get_ex_data(ssl, gs_verifyDataIndex);
char[256] buf;
X509_NAME_oneline(X509_get_subject_name(err_cert), buf.ptr, 256);
try {
logDebug("validate callback for %s", buf.ptr.to!string);
if (depth > vdata.verifyDepth) {
logDiagnostic("SSL cert chain too long: %s vs. %s", depth, vdata.verifyDepth);
valid = false;
err = X509_V_ERR_CERT_CHAIN_TOO_LONG;
}
if (err != X509_V_OK)
logDebug("SSL cert error: %s", X509_verify_cert_error_string(err).to!string);
if (!valid && (err == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT)) {
X509_NAME_oneline(X509_get_issuer_name(ctx.current_cert), buf.ptr, 256);
logDebug("SSL unknown issuer cert: %s", buf.ptr.to!string);
if (!(vdata.validationMode & SSLPeerValidationMode.checkTrust)) {
valid = true;
err = X509_V_OK;
}
}
if (!(vdata.validationMode & SSLPeerValidationMode.checkCert)) {
valid = true;
err = X509_V_OK;
}
if (vdata.callback) {
SSLPeerValidationData pvdata;
// ...
if (!valid) {
if (vdata.callback(pvdata)) {
valid = true;
err = X509_V_OK;
}
} else {
if (!vdata.callback(pvdata)) {
valid = false;
err = X509_V_ERR_APPLICATION_VERIFICATION;
}
}
}
} catch (Exception e) {
logWarn("SSL verification failed due to exception: %s", e.msg);
err = X509_V_ERR_APPLICATION_VERIFICATION;
valid = false;
}
X509_STORE_CTX_set_error(ctx, err);
return valid;
}
}
}
version (OpenSSL) alias SSLState = ssl_st*;
else alias SSLState = void*;
enum SSLContextKind {
client,
server
}
enum SSLVersion {
any, /// Accept SSLv3 or TLSv1.0 and greater
ssl3, /// Accept only SSLv3
tls1, /// Accept only TLSv1.0
dtls1, /// Use DTLSv1.0
ssl23 = any /// Deprecated compatibility alias
}
/** Specifies how rigorously SSL peer certificates are validated.
The individual options can be combined using a bitwise "or". Usually it is
recommended to use $(D trustedCert) for full validation.
*/
enum SSLPeerValidationMode {
/** Accept any peer regardless if and which certificate is presented.
This mode is generally discouraged and should only be used with
a custom validation callback set to do the verification.
*/
none = 0,
/** Require the peer to always present a certificate.
Note that this option alone does not verify the certificate at all. It
can be used together with the "check" options, or by using a custom
validation callback to actually validate certificates.
*/
requireCert = 1<<0,
/** Check the certificate for basic validity.
This verifies the validity of the certificate chain and some other
general properties, such as expiration time. It doesn't verify
either the peer name or the trust state of the certificate.
*/
checkCert = 1<<1,
/** Validate the actual peer name/address against the certificate.
Compares the name/address of the connected peer, as passed to
$(D createSSLStream) to the list of patterns present in the
certificate, if any. If no match is found, the connection is
rejected.
*/
checkPeer = 1<<2,
/** Requires that the certificate or any parent certificate is trusted.
Searches list of trusted certificates for a match of the certificate
chain. If no match is found, the connection is rejected.
See_also: $(D useTrustedCertificateFile)
*/
checkTrust = 1<<3,
/** Require a valid certificate matching the peer name.
In this mode, the certificate is validated for general consistency and
possible expiration, and the peer name is checked to see if the
certificate actually applies.
However, the certificate chain is not matched against the system's
pool of trusted certificate authorities, so a custom validation
callback is still needed to get a secure validation process.
This option is a combination $(D requireCert), $(D checkCert) and
$(D checkPeer).
*/
validCert = requireCert | checkCert | checkPeer,
/** Require a valid and trusted certificate (strongly recommended).
Checks the certificate and peer name for validity and requires that
the certificate chain originates from a trusted CA (based on the
registered pool of certificate authorities).
This option is a combination $(D validCert) and $(D checkTrust).
See_also: $(D useTrustedCertificateFile)
*/
trustedCert = validCert | checkTrust,
}
struct SSLPeerValidationData {
char[] certName;
string errorString;
// certificate chain
// public key
// public key fingerprint
}
alias SSLPeerValidationCallback = bool delegate(scope SSLPeerValidationData data);
/**************************************************************************************************/
/* Private functions */
/**************************************************************************************************/
private {
__gshared Mutex[] g_cryptoMutexes;
__gshared int gs_verifyDataIndex;
}
shared static this()
{
version (OpenSSL) {
logDebug("Initializing OpenSSL...");
SSL_load_error_strings();
SSL_library_init();
g_cryptoMutexes.length = CRYPTO_num_locks();
// TODO: investigate if a normal Mutex is enough - not sure if BIO is called in a locked state
foreach (i; 0 .. g_cryptoMutexes.length)
g_cryptoMutexes[i] = new TaskMutex;
foreach (ref m; g_cryptoMutexes) {
assert(m !is null);
}
CRYPTO_set_id_callback(&onCryptoGetThreadID);
CRYPTO_set_locking_callback(&onCryptoLock);
enforce(RAND_poll(), "Fatal: failed to initialize random number generator entropy (RAND_poll).");
logDebug("... done.");
gs_verifyDataIndex = SSL_get_ex_new_index(0, cast(void*)"VerifyData".ptr, null, null, null);
}
}
version (OpenSSL) {
private bool verifyCertName(X509* cert, int field, in char[] value, bool allow_wildcards = true)
{
bool delegate(in char[]) str_match;
bool check_value(ASN1_STRING* str, int type) {
if (!str.data || !str.length) return false;
if (type > 0) {
if (type != str.type) return 0;
auto strstr = cast(string)str.data[0 .. str.length];
return type == V_ASN1_IA5STRING ? str_match(strstr) : strstr == value;
}
char* utfstr;
auto utflen = ASN1_STRING_to_UTF8(&utfstr, str);
enforce (utflen >= 0, "Error converting ASN1 string to UTF-8.");
scope (exit) OPENSSL_free(utfstr);
return str_match(utfstr[0 .. utflen]);
}
int cnid;
int alt_type;
final switch (field) {
case GENERAL_NAME.GEN_DNS:
cnid = NID_commonName;
alt_type = V_ASN1_IA5STRING;
str_match = allow_wildcards ? s => matchWildcard(value, s) : s => s.icmp(value) == 0;
break;
case GENERAL_NAME.GEN_IPADD:
cnid = 0;
alt_type = V_ASN1_OCTET_STRING;
str_match = s => s == value;
break;
}
if (auto gens = cast(STACK_OF!GENERAL_NAME*)X509_get_ext_d2i(cert, NID_subject_alt_name, null, null)) {
scope(exit) GENERAL_NAMES_free(gens);
foreach (i; 0 .. sk_GENERAL_NAME_num(gens)) {
auto gen = sk_GENERAL_NAME_value(gens, i);
if (gen.type != field) continue;
ASN1_STRING *cstr = field == GENERAL_NAME.GEN_DNS ? gen.d.dNSName : gen.d.iPAddress;
if (check_value(cstr, alt_type)) return true;
}
if (!cnid) return false;
}
X509_NAME* name = X509_get_subject_name(cert);
int i;
while ((i = X509_NAME_get_index_by_NID(name, cnid, i)) >= 0) {
X509_NAME_ENTRY* ne = X509_NAME_get_entry(name, i);
ASN1_STRING* str = X509_NAME_ENTRY_get_data(ne);
if (check_value(str, -1)) return true;
}
return false;
}
}
private bool matchWildcard(const(char)[] str, const(char)[] pattern)
{
auto strparts = str.split(".");
auto patternparts = pattern.split(".");
if (strparts.length != patternparts.length) return false;
bool isValidChar(dchar ch) {
if (ch >= '0' && ch <= '9') return true;
if (ch >= 'a' && ch <= 'z') return true;
if (ch >= 'A' && ch <= 'Z') return true;
if (ch == '-' || ch == '.') return true;
return false;
}
if (!pattern.all!(c => isValidChar(c) || c == '*') || !str.all!(c => isValidChar(c)))
return false;
foreach (i; 0 .. strparts.length) {
import std.regex;
auto p = patternparts[i];
auto s = strparts[i];
if (!p.length || !s.length) return false;
auto rex = "^" ~ std.array.replace(p, "*", "[^.]*") ~ "$";
if (!match(s, rex)) return false;
}
return true;
}
unittest {
assert(matchWildcard("www.example.org", "*.example.org"));
assert(matchWildcard("www.example.org", "*w.example.org"));
assert(matchWildcard("www.example.org", "w*w.example.org"));
assert(matchWildcard("www.example.org", "*w*.example.org"));
assert(matchWildcard("test.abc.example.org", "test.*.example.org"));
assert(!matchWildcard("test.abc.example.org", "abc.example.org"));
assert(!matchWildcard("test.abc.example.org", ".abc.example.org"));
assert(!matchWildcard("abc.example.org", "a.example.org"));
assert(!matchWildcard("abc.example.org", "bc.example.org"));
assert(!matchWildcard("abcdexample.org", "abc.example.org"));
}
version (OpenSSL) private nothrow extern(C)
{
import core.stdc.config;
c_ulong onCryptoGetThreadID()
{
try {
return cast(c_ulong)(cast(size_t)cast(void*)Thread.getThis() * 0x35d2c57);
} catch (Exception e) {
logWarn("OpenSSL: failed to get current thread ID: %s", e.msg);
return 0;
}
}
void onCryptoLock(int mode, int n, const(char)* file, int line)
{
try {
enforce(n >= 0 && n < g_cryptoMutexes.length, "Mutex index out of range.");
auto mutex = g_cryptoMutexes[n];
assert(mutex !is null);
if (mode & CRYPTO_LOCK) mutex.lock();
else mutex.unlock();
} catch (Exception e) {
logWarn("OpenSSL: failed to lock/unlock mutex: %s", e.msg);
}
}
int onBioNew(BIO *b) nothrow
{
b.init_ = 0;
b.num = -1;
b.ptr = null;
b.flags = 0;
return 1;
}
int onBioFree(BIO *b)
{
if( !b ) return 0;
if( b.shutdown ){
//if( b.init && b.ptr ) b.ptr.stream.free();
b.init_ = 0;
b.flags = 0;
b.ptr = null;
}
return 1;
}
int onBioRead(BIO *b, char *outb, int outlen)
{
auto stream = cast(SSLStream)b.ptr;
try {
outlen = min(outlen, stream.m_stream.leastSize);
stream.m_stream.read(cast(ubyte[])outb[0 .. outlen]);
} catch(Exception e){
stream.m_exceptions ~= e;
return -1;
}
return outlen;
}
int onBioWrite(BIO *b, const(char) *inb, int inlen)
{
auto stream = cast(SSLStream)b.ptr;
try {
stream.m_stream.write(inb[0 .. inlen]);
} catch(Exception e){
stream.m_exceptions ~= e;
return -1;
}
return inlen;
}
c_long onBioCtrl(BIO *b, int cmd, c_long num, void *ptr)
{
auto stream = cast(SSLStream)b.ptr;
c_long ret = 1;
switch(cmd){
case BIO_CTRL_GET_CLOSE: ret = b.shutdown; break;
case BIO_CTRL_SET_CLOSE:
logTrace("SSL set close %d", num);
b.shutdown = cast(int)num;
break;
case BIO_CTRL_PENDING:
try {
auto sz = stream.m_stream.leastSize;
return sz <= c_long.max ? cast(c_long)sz : c_long.max;
} catch( Exception e ){
stream.m_exceptions ~= e;
return -1;
}
case BIO_CTRL_WPENDING: return 0;
case BIO_CTRL_DUP:
case BIO_CTRL_FLUSH:
ret = 1;
break;
default:
ret = 0;
break;
}
return ret;
}
int onBioPuts(BIO *b, const(char) *s)
{
return onBioWrite(b, s, cast(int)strlen(s));
}
}
version (OpenSSL) {
private BIO_METHOD s_bio_methods = {
57, "SslStream",
&onBioWrite,
&onBioRead,
&onBioPuts,
null, // &onBioGets
&onBioCtrl,
&onBioNew,
&onBioFree,
null, // &onBioCallbackCtrl
};
}
private struct DEPRECATION_HACK {}
| D |
# FIXED
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: ../320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.c
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: ../320c66x_le/bsp-evmc6678/hwif/srio-320c66x/srio.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdio.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/linkage.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/std.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdarg.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stddef.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/select.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/std.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/elf/C66.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/targets/std.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdint.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_tsc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/soc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_device.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/tistdtypes.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_chip.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_chip.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/c6x.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/vect.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srio.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_srio.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srioAux.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srioAuxPhyLayer.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cache.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cgem.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cacheAux.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_psc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_psc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_pscAux.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_bootcfg.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_bootcfg.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_bootcfgAux.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/srio/srio_drv.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppi_drv.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_global_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_rx_channel_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_rx_flow_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_tx_channel_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_tx_scheduler_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cppi.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppiver.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppi_desc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_drv.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmssver.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_qm.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_descriptor_region_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_queue_management.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_queue_status_config.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_pdsp.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_intd.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_mcdma.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cp_timer16.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_qm_queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_acc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_drv.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_qos.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_mgmt.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/include/qmss_pvt.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_osal.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/srio/sriover.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/xdc.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/package.defs.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/package/package.defs.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Main_Module_GateProxy.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IGateProvider.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Text.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/IHwi.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/package/package.defs.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/family/c64p/Hwi__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/semaphore.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/package.defs.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Main.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Swi.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Clock_TimerProxy.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITimer.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/package/Task_SupportProxy.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/interfaces/ITaskSupport.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IInstance.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__prologue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Assert.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Diags.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Log.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Queue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Clock.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Task.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IModule.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/bios_6_46_05_55/packages/ti/sysbios/knl/Event__epilogue.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Error.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/Memory.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/package/Memory_HeapProxy.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/xdctools_3_32_02_25_core/packages/xdc/runtime/IHeap.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/resourcemgr.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_types.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/pa/pa.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdlib.h
320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.obj: D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/pa/paver.h
../320c66x_le/bsp-evmc6678/hwif/srio-320c66x/bspsrio_320c66x.c:
../320c66x_le/bsp-evmc6678/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-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_tsc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/soc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_device.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/tistdtypes.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_types.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_error.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_chip.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/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-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srio.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_srio.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srioAux.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_srioAuxPhyLayer.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cache.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cgem.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cacheAux.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_psc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_psc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_pscAux.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_bootcfg.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_bootcfg.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_bootcfgAux.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/srio/srio_drv.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppi_drv.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_global_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_rx_channel_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_rx_flow_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_tx_channel_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cppidma_tx_scheduler_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_cppi.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppiver.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/cppi/cppi_desc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_drv.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmssver.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_qm.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_descriptor_region_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_queue_management.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_queue_status_config.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_pdsp.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_qm_intd.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_mcdma.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/cslr_cp_timer16.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/csl/csl_qm_queue.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_acc.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_drv.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_qos.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_mgmt.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/include/qmss_pvt.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_osal.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/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-11-27/drv/320c66x_le/bsp-evmc6678/resourcemgr.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/qmss/qmss_types.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/pa/pa.h:
C:/ti/ccsv7/tools/compiler/ti-cgt-c6000_8.1.4/include/stdlib.h:
D:/workspace/6678/v7-11-27/drv/320c66x_le/bsp-evmc6678/ti/drv/pa/paver.h:
| D |
/Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/build/SudarshanKriya.build/Debug-iphonesimulator/SudarshanKriya.build/Objects-normal/x86_64/BhastrikaViewController.o : /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AumViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/WelcomeViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/Techniques.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/StartViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/CircularTransition.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/OnboardingViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/KriyScene.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/DailyKriya.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/BhastrikaViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/InfoViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AppDelegate.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/UjayiViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.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/GLKit.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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/Firebase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap
/Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/build/SudarshanKriya.build/Debug-iphonesimulator/SudarshanKriya.build/Objects-normal/x86_64/BhastrikaViewController~partial.swiftmodule : /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AumViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/WelcomeViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/Techniques.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/StartViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/CircularTransition.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/OnboardingViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/KriyScene.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/DailyKriya.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/BhastrikaViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/InfoViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AppDelegate.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/UjayiViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.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/GLKit.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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/Firebase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap
/Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/build/SudarshanKriya.build/Debug-iphonesimulator/SudarshanKriya.build/Objects-normal/x86_64/BhastrikaViewController~partial.swiftdoc : /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AumViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/WelcomeViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/Techniques.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/StartViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/CircularTransition.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/OnboardingViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/KriyScene.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/DailyKriya.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/BhastrikaViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/InfoViewController.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/AppDelegate.swift /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/SnapchatCamera/UjayiViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SpriteKit.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/GLKit.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/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreMedia.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SceneKit.swiftmodule /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseCore/Frameworks/frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseAnalytics/Frameworks/frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/FirebaseInstanceID/Frameworks/frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Firebase/Core/Sources/Firebase.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/FABAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Headers/Fabric.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Fabric/iOS/Fabric.framework/Modules/module.modulemap /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/ANSCompatibility.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Answers.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSStackFrame.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSReport.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSLogging.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/CLSAttributes.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Headers/Crashlytics.h /Users/adityagarg/Code/Mobile-App/IOS/ArtOfLiving/Pods/Crashlytics/iOS/Crashlytics.framework/Modules/module.modulemap
| D |
module zug.graph;
| D |
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, std.bitmanip;
immutable long INF = 1L << 59;
void main() {
auto s = readln.split.map!(to!int);
auto D = s[0];
auto G = s[1].to!long;
auto PC = D.iota.map!(_ => readln.split.map!(to!long).array).array;
int ans = 1 << 29;
foreach (mask; 0..(1<<D)) {
long tmp = 0;
int cnt = 0;
foreach (i; 0..D) {
if (mask & (1 << i)) {
tmp += PC[i][0] * (i + 1) * 100 + PC[i][1];
cnt += PC[i][0];
}
}
for (int i = D-1; i >= 0 && tmp < G; --i) {
if (mask & (1 << i)) continue;
long hoge = (G - tmp - 1) / ((i + 1) * 100) + 1;
hoge = min(hoge, PC[i][0]);
tmp += hoge * (i + 1) * 100;
cnt += hoge;
}
if (tmp >= G) ans = min(ans, cnt);
}
ans.writeln;
}
| D |
import std.stdio;
import yitter;
import GenTest;
import core.thread;
import std.conv;
import std.datetime;
import std.stdio;
/**
* 测试结果:
* (1):1W并发,方法 1只要 1ms.而方法 2 要 180ms。
* (2):5W并发,方法 1只要 3ms.而方法 2 要 900ms。
* [不同CPU可能结果有差异,但相对大小不变]
* 默认配置下,最佳性能是5W/s-8W/s
*/
enum int genIdCount = 50000;
//1-漂移算法,2-传统算法
enum short method = 1;
void main()
{
IdGeneratorOptions options = new IdGeneratorOptions();
options.Method = method;
options.BaseTime = 1582206693000L;
options.WorkerId = 1;
IIdGenerator idGen = new DefaultIdGenerator(options);
GenTest.GenTest genTest = new GenTest.GenTest(idGen, genIdCount, options.WorkerId);
// 首先测试一下 IdHelper 方法,获取单个Id
YitIdHelper.setIdGenerator(options);
long newId = YitIdHelper.nextId();
writeln("=====================================");
writeln("Method " ~ method.to!string() ~ " used, the result Id:" ~ newId.to!string());
// 然后循环测试一下,看看并发请求时的耗时情况
try {
while (true) {
genTest.GenStart();
Thread.sleep(1000.msecs);
// writeln("Hello World! D");
}
} catch (Exception e) {
writeln(e.toString());
}
}
| D |
/*
* #157 Potion of Velocity has wrong ore value
*
* The value of the item "ItFo_Potion_Haste_02" is inspected programmatically.
*
* Expected behavior: The item will have the correct value.
*/
func int G1CP_Test_157() {
// Check if item exists
var int symbId; symbId = MEM_GetSymbolIndex("ItFo_Potion_Haste_02");
if (symbId == -1) {
G1CP_TestsuiteErrorDetail("Item 'ItFo_Potion_Haste_02' not found");
return FALSE;
};
// Check if variable exists
var int symbPtr; symbPtr = MEM_GetSymbol("Value_Haste2");
if (!symbPtr) {
G1CP_TestsuiteErrorDetail("Variable 'Value_Haste2' not found");
return FALSE;
};
var int Value_Haste2; Value_Haste2 = MEM_ReadInt(symbPtr + zCParSymbol_content_offset);
// Create the potion locally
if (Itm_GetPtr(symbId)) {
if (item.value == Value_Haste2) {
return TRUE;
} else {
var string msg; msg = "Category incorrect: value = '";
msg = ConcatStrings(msg, IntToString(item.value));
msg = ConcatStrings(msg, "'");
G1CP_TestsuiteErrorDetail(msg);
return FALSE;
};
} else {
G1CP_TestsuiteErrorDetail("Item 'ItFo_Potion_Haste_02' could not be created");
return FALSE;
};
};
| D |
/Users/Dawid/Nauka/Game Dev/Typespeed/target/debug/build/typenum-6fe87b1d2e501b0e/build_script_main-6fe87b1d2e501b0e: /Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/main.rs /Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/op.rs
/Users/Dawid/Nauka/Game Dev/Typespeed/target/debug/build/typenum-6fe87b1d2e501b0e/build_script_main-6fe87b1d2e501b0e.d: /Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/main.rs /Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/op.rs
/Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/main.rs:
/Users/Dawid/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.11.2/build/op.rs:
| D |
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Authenticator.o : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Authenticator~partial.swiftmodule : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Authenticator~partial.swiftdoc : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/Authenticator~partial.swiftsourceinfo : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF1.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PBKDF2.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA3.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEADChaCha20Poly1305.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/MD5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS5.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt128.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/ECB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/OFB.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CBCMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HMAC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/PCBC.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AEAD/AEAD.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/HKDF.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/GCM.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CTR.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockMode.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Updatable.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/DigestType.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ISO78164Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/PKCS/PKCS7Padding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/NoPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ZeroPadding.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Blowfish.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Checksum.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt32+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt64+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt16+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/UInt8+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Data+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/String+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Collection+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Int+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Array+Extension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/String+FoundationExtension.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/ChaCha20+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/HMAC+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/AES+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Blowfish+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Utils+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Rabbit+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Foundation/Array+Foundation.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BatchedCollection.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/CompactMap.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockCipher.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/CipherModeWorker.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Authenticator.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamDecryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/StreamEncryptor.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Generics.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SecureBytes.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Utils.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/BlockMode/BlockModeOptions.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Operators.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/AES.Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Cryptors.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Bit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Rabbit.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Scrypt.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/Digest.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/MohamedNawar/Desktop/Task/Pods/Target\ Support\ Files/CryptoSwift/CryptoSwift-umbrella.h /Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
| D |
module image_display;
import std.stdio;
import std.math;
import std.datetime;
import glib.Timeout;
import cairo.Context;
import cairo.Surface;
import cairo.ImageSurface;
import gtk.Widget;
import gtk.DrawingArea;
import std.datetime;
class ImageDisplay : DrawingArea
{
public:
this(ImageSurface surface, void delegate(double elapsedSeconds) redraw)
{
start = Clock.currTime();
this.redraw = redraw;
this.surface = surface;
redraw(0);
//Attach our expose callback, which will draw the window.
addOnDraw(&drawCallback);
}
void createImage() {
auto total = (Clock.currTime() - start).total!"msecs";
this.redraw(total/1000.0);
}
protected:
bool drawCallback(Scoped!Context cr, Widget widget)
{
createImage();
if ( m_timeout is null )
{
//Create a new timeout that will ask the window to be drawn once every second.
m_timeout = new Timeout( 1000/30, &onSecondElapsed, false );
}
GtkAllocation size;
getAllocation(size);
// scale to unit square and translate (0, 0) to be (0.5, 0.5), i.e. the
// center of the window
cr.scale(size.width/2.0, size.height/2.0);
cr.translate(1, 1);
cr.setLineWidth(0.01);
{
int w = surface.getWidth();
int h = surface.getHeight();
cr.translate(-1., -1.);
cr.scale (2.0/w, 2.0/h);
cr.setSourceSurface(surface, 0, 0);
cr.paint();
}
return true;
}
bool onSecondElapsed()
{
//force our program to redraw the entire clock once per every second.
GtkAllocation area;
getAllocation(area);
queueDrawArea(area.x, area.y, area.width, area.height);
return true;
}
Timeout m_timeout;
ImageSurface surface;
SysTime start;
void delegate(double) redraw;
}
| D |
import dsfml.graphics;
import dsfml.window;
import dsfml.system;
import std.conv : to;
import std.random : Random, unpredictableSeed, uniform;
import std.stdio : writeln;
import std.datetime : Duration;
import population;
class Game
{
RenderWindow window;
Vector2i size;
ContextSettings *options;
Color color;
CircleShape target;
RectangleShape[]obs;
Clock clock;
Duration last;
long iter;
int frames;
Population pop;
this()
{
this.color = Color(0, 0, 0);
this.size = Vector2i(1200, 800);
this.options = new ContextSettings();
this.options.antialiasingLevel = 8;
this.window = new RenderWindow(VideoMode(this.size.x, this.size.y), "Smart Rockets", Window.Style.DefaultStyle, *options);
this.pop = new Population(this.size);
this.target = new CircleShape(6);
this.clock = new Clock();
foreach (i; 0 .. 7)
this.obs ~= new RectangleShape();
this.target.position = Vector2f(this.size.x / 2 - 6, 50);
this.target.fillColor = Color(255, 0, 0);
this.obs[0].size = Vector2f(this.size.x / 2, 10);
this.obs[0].position = Vector2f((this.size.x / 2) - (this.obs[0].size.x / 2), this.size.y / 4);
this.obs[1].size = Vector2f(this.size.x, 5);
this.obs[2].size = Vector2f(1, this.size.y + 100);
this.obs[3].size = Vector2f(1, this.size.y + 100);
this.obs[4].size = Vector2f(this.size.x, 10);
this.obs[5].size = Vector2f(this.size.x / 3, 10);
this.obs[6].size = Vector2f(this.size.x / 3, 10);
this.obs[3].position = Vector2f(this.size.x, 0);
this.obs[4].position = Vector2f(-10, this.size.y + 100);
this.obs[5].position = Vector2f(0, this.size.y / 2);
this.obs[6].position = Vector2f(this.size.x - (this.size.x / 3), this.size.y / 2);
foreach (i; 0 .. 7)
this.obs[i].fillColor = Color(255, 255, 255);
this.window.setFramerateLimit(500);
last = clock.getElapsedTime();
}
void run()
{
while (this.window.isOpen())
{
this.getEvents();
if (this.pop.count == 250 || this.pop.done())
{
writeln(this.iter);
this.pop.evaluate(this.target.position);
this.pop.selection();
this.pop.count = 0;
this.iter++;
}
Duration current = clock.getElapsedTime();
if ((current - last).total!"seconds" >= 1)
{
writeln(frames);
last = current;
frames = 0;
}
this.window.clear(this.color);
//Uncomment if you want to see the obstructions
//this.window.draw(this.target);
//foreach (ob; this.obs)
// this.window.draw(ob);
this.pop.run(this.frames, this.window, this.target, this.obs);
this.window.display();
this.frames++;
}
}
void getEvents()
{
Event event;
while (this.window.pollEvent(event))
{
if (event.type == Event.EventType.Closed)
window.close();
}
}
} | D |
/// Vulkan implementation of GrAAL
module gfx.vulkan;
import gfx.bindings.vulkan;
import gfx.core.log : LogTag;
import gfx.graal;
enum gfxVkLogMask = 0x2000_0000;
package(gfx) immutable gfxVkLog = LogTag("GFX-VK", gfxVkLogMask);
// some standard layers
immutable lunarGValidationLayers = [
"VK_LAYER_LUNARG_core_validation",
"VK_LAYER_LUNARG_standard_validation",
"VK_LAYER_LUNARG_parameter_validation",
];
immutable debugReportInstanceExtensions = [
"VK_KHR_debug_report", "VK_EXT_debug_report"
];
@property ApiProps vulkanApiProps()
{
import gfx.math.proj : ndc, XYClip, ZClip;
return ApiProps(
"vulkan", ndc(XYClip.rightHand, ZClip.zeroToOne)
);
}
/// Load global level vulkan functions, and instance level layers and extensions
/// This function must be called before any other in this module
void vulkanInit()
{
_globCmds = loadVulkanGlobalCmds();
_instanceLayers = loadInstanceLayers();
_instanceExtensions = loadInstanceExtensions();
}
struct VulkanVersion
{
import std.bitmanip : bitfields;
mixin(bitfields!(
uint, "patch", 12,
uint, "minor", 10,
uint, "major", 10,
));
this (in uint major, in uint minor, in uint patch) {
this.major = major; this.minor = minor; this.patch = patch;
}
this (in uint vkVer) {
this(VK_VERSION_MAJOR(vkVer), VK_VERSION_MINOR(vkVer), VK_VERSION_PATCH(vkVer));
}
static VulkanVersion fromUint(in uint vkVer) {
return *cast(VulkanVersion*)(cast(void*)&vkVer);
}
uint toUint() const {
return *cast(uint*)(cast(void*)&this);
}
string toString() {
import std.format : format;
return format("VulkanVersion(%s, %s, %s)", this.major, this.minor, this.patch);
}
}
unittest {
const vkVer = VK_MAKE_VERSION(12, 7, 38);
auto vv = VulkanVersion.fromUint(vkVer);
assert(vv.major == 12);
assert(vv.minor == 7);
assert(vv.patch == 38);
assert(vv.toUint() == vkVer);
}
struct VulkanLayerProperties
{
string layerName;
VulkanVersion specVer;
VulkanVersion implVer;
string description;
@property VulkanExtensionProperties[] instanceExtensions()
{
return loadInstanceExtensions(layerName);
}
}
struct VulkanExtensionProperties
{
string extensionName;
VulkanVersion specVer;
}
/// Retrieve available instance level layer properties
@property VulkanLayerProperties[] vulkanInstanceLayers() {
return _instanceLayers;
}
/// Retrieve available instance level extensions properties
@property VulkanExtensionProperties[] vulkanInstanceExtensions()
{
return _instanceExtensions;
}
/// Options to create a Vulkan instance.
struct VulkanCreateInfo
{
/// Application name and version.
string appName;
/// ditto
VulkanVersion appVersion = VulkanVersion(0, 0, 0);
/// Mandatory layers that are needed by the application.
/// Instance creation will fail if one is not present.
const(string)[] mandatoryLayers;
/// Optional layers that will be enabled if present.
const(string)[] optionalLayers;
/// Mandatory extensions that are needed by the application.
/// Instance creation will fail if one is not present.
const(string)[] mandatoryExtensions;
/// Optional extensions that will be enabled if present.
const(string)[] optionalExtensions;
/// Build VulkanCreateInfo with default extensions, suitable for
/// 3D graphics on a surface.
/// Debug builds have by default Lunar-G validation layers and debug
/// extensions.
static VulkanCreateInfo defaultExts(string appName = "",
VulkanVersion appVersion = VulkanVersion(0, 0, 0))
{
VulkanCreateInfo info;
info.appName = appName;
info.appVersion = appVersion;
debug
{
info.optionalLayers = lunarGValidationLayers;
info.optionalExtensions = debugReportInstanceExtensions;
}
info.mandatoryExtensions = surfaceInstanceExtensions;
return info;
}
}
/// Creates an Instance object with Vulkan backend with options
VulkanInstance createVulkanInstance(VulkanCreateInfo createInfo = VulkanCreateInfo.defaultExts())
{
import gfx : gfxVersionMaj, gfxVersionMin, gfxVersionMic;
import std.algorithm : all, canFind, map;
import std.array : array;
import std.exception : enforce;
import std.range : chain;
import std.string : toStringz;
// throw if some requested layers or extensions are not available
// TODO: specific exception
foreach (l; createInfo.mandatoryLayers) {
enforce(
_instanceLayers.map!(il => il.layerName).canFind(l),
"Could not find layer " ~ l ~ " when creating Vulkan instance"
);
}
foreach (e; createInfo.mandatoryExtensions) {
enforce(
_instanceExtensions.map!(ie => ie.extensionName).canFind(e),
"Could not find extension " ~ e ~ " when creating Vulkan instance"
);
}
const(string)[] layers = createInfo.mandatoryLayers;
foreach (l; createInfo.optionalLayers) {
if (_instanceLayers.map!(il => il.layerName).canFind(l)) {
layers ~= l;
}
else {
gfxVkLog.warningf("Optional layer %s is not present and won't be enabled", l);
}
}
const(string)[] extensions = createInfo.mandatoryExtensions;
foreach (e; createInfo.optionalExtensions) {
if (_instanceExtensions.map!(ie => ie.extensionName).canFind(e)) {
extensions ~= e;
}
else {
gfxVkLog.warningf("Optional extension %s is not present and won't be enabled", e);
}
}
VkApplicationInfo ai;
ai.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
if (createInfo.appName.length) {
ai.pApplicationName = toStringz(createInfo.appName);
}
ai.applicationVersion = createInfo.appVersion.toUint();
ai.pEngineName = "gfx-d\0".ptr;
ai.engineVersion = VK_MAKE_VERSION(gfxVersionMaj, gfxVersionMin, gfxVersionMic);
ai.apiVersion = VK_API_VERSION_1_0;
const vkLayers = layers.map!toStringz.array;
const vkExts = extensions.map!toStringz.array;
gfxVkLog.info("Opening Vulkan instance.");
gfxVkLog.infof("Vulkan layers:%s", layers.length?"":" none");
foreach (l; layers) {
gfxVkLog.infof(" %s", l);
}
gfxVkLog.infof("Vulkan extensions:%s", extensions.length?"":" none");
import std.algorithm : canFind, filter, map;
import std.array : array;
import std.range : chain;
foreach (e; extensions) {
gfxVkLog.infof(" %s", e);
}
VkInstanceCreateInfo ici;
ici.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
ici.pApplicationInfo = &ai;
ici.enabledLayerCount = cast(uint)vkLayers.length;
ici.ppEnabledLayerNames = vkLayers.ptr;
ici.enabledExtensionCount = cast(uint)vkExts.length;
ici.ppEnabledExtensionNames = vkExts.ptr;
auto vk = _globCmds;
VkInstance vkInst;
vulkanEnforce(vk.CreateInstance(&ici, null, &vkInst), "Could not create Vulkan instance");
return new VulkanInstance(vkInst, layers, extensions);
}
/// Retrieve available device level layers
@property VulkanLayerProperties[] vulkanDeviceLayers(PhysicalDevice device) {
auto pd = cast(VulkanPhysicalDevice)device;
if (!pd) return [];
return pd._availableLayers;
}
/// Retrieve available instance level extensions properties
VulkanExtensionProperties[] vulkanDeviceExtensions(PhysicalDevice device, in string layerName=null)
{
auto pd = cast(VulkanPhysicalDevice)device;
if (!pd) return [];
if (!layerName) {
return pd._availableExtensions;
}
else {
return pd.loadDeviceExtensions(layerName);
}
}
void overrideDeviceOpenVulkanLayers(PhysicalDevice device, string[] layers)
{
auto pd = cast(VulkanPhysicalDevice)device;
if (!pd) return;
pd._openLayers = layers;
}
void overrideDeviceOpenVulkanExtensions(PhysicalDevice device, string[] extensions)
{
auto pd = cast(VulkanPhysicalDevice)device;
if (!pd) return;
pd._openExtensions = extensions;
}
package:
import gfx.core.rc;
import gfx.graal.device;
import gfx.graal.format;
import gfx.graal.memory;
import gfx.graal.presentation;
import gfx.graal.queue;
import gfx.vulkan.conv;
import gfx.vulkan.device;
import gfx.vulkan.error;
import gfx.vulkan.wsi : VulkanSurface;
import std.exception : enforce;
__gshared VkGlobalCmds _globCmds;
__gshared VulkanLayerProperties[] _instanceLayers;
__gshared VulkanExtensionProperties[] _instanceExtensions;
VulkanLayerProperties[] loadInstanceLayers()
{
auto vk = _globCmds;
uint count;
vulkanEnforce(
vk.EnumerateInstanceLayerProperties(&count, null),
"Could not retrieve Vulkan instance layers"
);
if (!count) return[];
auto vkLayers = new VkLayerProperties[count];
vulkanEnforce(
vk.EnumerateInstanceLayerProperties(&count, &vkLayers[0]),
"Could not retrieve Vulkan instance layers"
);
import std.algorithm : map;
import std.array : array;
import std.string : fromStringz;
return vkLayers
.map!((ref VkLayerProperties vkLp) {
return VulkanLayerProperties(
fromStringz(&vkLp.layerName[0]).idup,
VulkanVersion.fromUint(vkLp.specVersion),
VulkanVersion.fromUint(vkLp.implementationVersion),
fromStringz(&vkLp.description[0]).idup,
);
})
.array;
}
VulkanExtensionProperties[] loadInstanceExtensions(in string layerName=null)
{
import std.string : toStringz;
const(char)* layer;
if (layerName.length) {
layer = toStringz(layerName);
}
auto vk = _globCmds;
uint count;
vulkanEnforce(
vk.EnumerateInstanceExtensionProperties(layer, &count, null),
"Could not retrieve Vulkan instance extensions"
);
if (!count) return[];
auto vkExts = new VkExtensionProperties[count];
vulkanEnforce(
vk.EnumerateInstanceExtensionProperties(layer, &count, &vkExts[0]),
"Could not retrieve Vulkan instance extensions"
);
import std.algorithm : map;
import std.array : array;
import std.string : fromStringz;
return vkExts
.map!((ref VkExtensionProperties vkExt) {
return VulkanExtensionProperties(
fromStringz(&vkExt.extensionName[0]).idup,
VulkanVersion.fromUint(vkExt.specVersion)
);
})
.array;
}
VulkanLayerProperties[] loadDeviceLayers(VulkanPhysicalDevice pd)
{
auto vk = pd.vk;
uint count;
vulkanEnforce(
vk.EnumerateDeviceLayerProperties(pd.vkObj, &count, null),
"Could not retrieve Vulkan device layers"
);
if (!count) return[];
auto vkLayers = new VkLayerProperties[count];
vulkanEnforce(
vk.EnumerateDeviceLayerProperties(pd.vkObj, &count, &vkLayers[0]),
"Could not retrieve Vulkan device layers"
);
import std.algorithm : map;
import std.array : array;
import std.string : fromStringz;
return vkLayers
.map!((ref VkLayerProperties vkLp) {
return VulkanLayerProperties(
fromStringz(&vkLp.layerName[0]).idup,
VulkanVersion.fromUint(vkLp.specVersion),
VulkanVersion.fromUint(vkLp.implementationVersion),
fromStringz(&vkLp.description[0]).idup,
);
})
.array;
}
VulkanExtensionProperties[] loadDeviceExtensions(VulkanPhysicalDevice pd, in string layerName=null)
{
import std.string : toStringz;
const(char)* layer;
if (layerName.length) {
layer = toStringz(layerName);
}
auto vk = pd.vk;
uint count;
vulkanEnforce(
vk.EnumerateDeviceExtensionProperties(pd.vkObj, layer, &count, null),
"Could not retrieve Vulkan device extensions"
);
if (!count) return[];
auto vkExts = new VkExtensionProperties[count];
vulkanEnforce(
vk.EnumerateDeviceExtensionProperties(pd.vkObj, layer, &count, &vkExts[0]),
"Could not retrieve Vulkan device extensions"
);
import std.algorithm : map;
import std.array : array;
import std.string : fromStringz;
return vkExts
.map!((ref VkExtensionProperties vkExt) {
return VulkanExtensionProperties(
fromStringz(&vkExt.extensionName[0]).idup,
VulkanVersion.fromUint(vkExt.specVersion)
);
})
.array;
}
class VulkanObj(VkType)
{
this (VkType vkObj) {
_vkObj = vkObj;
}
final @property VkType vkObj() {
return _vkObj;
}
private VkType _vkObj;
}
class VulkanInstObj(VkType) : Disposable
{
this (VkType vkObj, VulkanInstance inst)
{
_vkObj = vkObj;
_inst = inst;
_inst.retain();
}
override void dispose() {
_inst.release();
_inst = null;
}
final @property VkType vkObj() {
return _vkObj;
}
final @property VulkanInstance inst() {
return _inst;
}
final @property VkInstance vkInst() {
return _inst.vkObj;
}
private VkType _vkObj;
private VulkanInstance _inst;
}
final class VulkanInstance : VulkanObj!(VkInstance), Instance
{
mixin(atomicRcCode);
this(VkInstance vkObj, in string[] layers, in string[] extensions) {
super(vkObj);
_vk = new VkInstanceCmds(vkObj, _globCmds);
this.layers = layers;
this.extensions = extensions;
}
override void dispose() {
if (_vkCb) {
vk.DestroyDebugReportCallbackEXT(vkObj, _vkCb, null);
_vkCb = VK_NULL_ND_HANDLE;
_callback = null;
}
vk.DestroyInstance(vkObj, null);
}
override @property Backend backend() {
return Backend.vulkan;
}
override @property ApiProps apiProps() {
return vulkanApiProps;
}
@property VkInstanceCmds vk() {
return _vk;
}
override PhysicalDevice[] devices()
{
import std.algorithm : map;
import std.array : array, uninitializedArray;
if (!_phDs.length) {
uint count;
vulkanEnforce(vk.EnumeratePhysicalDevices(vkObj, &count, null),
"Could not enumerate Vulkan devices");
auto devices = uninitializedArray!(VkPhysicalDevice[])(count);
vulkanEnforce(vk.EnumeratePhysicalDevices(vkObj, &count, devices.ptr),
"Could not enumerate Vulkan devices");
_phDs = devices
.map!(vkD => cast(PhysicalDevice)new VulkanPhysicalDevice(vkD, this))
.array();
}
return _phDs;
}
override void setDebugCallback(DebugCallback callback) {
VkDebugReportCallbackCreateInfoEXT ci;
ci.sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT;
ci.flags = 0x1f;
ci.pfnCallback = &gfxd_vk_DebugReportCallback;
ci.pUserData = cast(void*)this;
vk.CreateDebugReportCallbackEXT(vkObj, &ci, null, &_vkCb);
_callback = callback;
}
/// The layers enabled with this instance
public const(string[]) layers;
/// The extensions enabled with this instance
public const(string[]) extensions;
private VkInstanceCmds _vk;
private PhysicalDevice[] _phDs;
private VkDebugReportCallbackEXT _vkCb;
private DebugCallback _callback;
}
extern(C) nothrow {
VkBool32 gfxd_vk_DebugReportCallback(VkDebugReportFlagsEXT flags,
VkDebugReportObjectTypeEXT /+objectType+/,
ulong /+object+/,
size_t /+location+/,
int /+messageCode+/,
const(char)* pLayerPrefix,
const(char)* pMessage,
void* pUserData)
{
auto vkInst = cast(VulkanInstance)pUserData;
if (vkInst && vkInst._callback) {
import gfx.vulkan.conv : debugReportFlagsToGfx;
import std.string : fromStringz;
try {
vkInst._callback(debugReportFlagsToGfx(flags), fromStringz(pMessage).idup);
}
catch(Exception ex) {
import std.exception : collectException;
import std.stdio : stderr;
collectException(
stderr.writefln("Exception thrown in debug callback: %s", ex.msg)
);
}
}
return VK_FALSE;
}
}
version(glfw) {
extern(C) @nogc nothrow int glfwGetPhysicalDevicePresentationSupport(VkInstance, VkPhysicalDevice, uint);
}
final class VulkanPhysicalDevice : PhysicalDevice
{
this(VkPhysicalDevice vkObj, VulkanInstance inst) {
_vkObj = vkObj;
_inst = inst;
_vk = _inst.vk;
vk.GetPhysicalDeviceProperties(_vkObj, &_vkProps);
_availableLayers = loadDeviceLayers(this);
_availableExtensions = loadDeviceExtensions(this);
import std.algorithm : canFind, map;
import std.exception : enforce;
debug {
foreach (l; lunarGValidationLayers) {
if (_availableLayers.map!"a.layerName".canFind(l)) {
_openLayers ~= l;
}
}
}
version(GfxOffscreen) {}
else {
import gfx.vulkan.wsi : swapChainDeviceExtension;
enforce(_availableExtensions.map!"a.extensionName".canFind(swapChainDeviceExtension));
_openExtensions ~= swapChainDeviceExtension;
}
}
@property VkPhysicalDevice vkObj() {
return _vkObj;
}
@property VkInstanceCmds vk() {
return _vk;
}
override @property Instance instance()
{
auto inst = lockObj(_inst);
if (!inst) return null;
return giveAwayObj(inst);
}
override @property string name() {
import std.string : fromStringz;
return fromStringz(_vkProps.deviceName.ptr).idup;
}
override @property DeviceType type() {
return devTypeToGfx(_vkProps.deviceType);
}
override @property DeviceFeatures features() {
import std.algorithm : canFind, map;
import gfx.vulkan.wsi : swapChainDeviceExtension;
VkPhysicalDeviceFeatures vkFeats;
vk.GetPhysicalDeviceFeatures(vkObj, &vkFeats);
DeviceFeatures features;
features.anisotropy = vkFeats.samplerAnisotropy == VK_TRUE;
features.presentation = vulkanDeviceExtensions(this)
.map!(e => e.extensionName)
.canFind(swapChainDeviceExtension);
return features;
}
/// See_Also: <a href="https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkPhysicalDeviceLimits.html">VkPhysicalDeviceLimits</a>
override @property DeviceLimits limits()
{
DeviceLimits limits;
limits.linearOptimalGranularity =
cast(size_t)_vkProps.limits.bufferImageGranularity;
limits.maxStorageBufferSize =
cast(size_t)_vkProps.limits.maxStorageBufferRange;
limits.maxDescriptorSetStorageBuffers =
cast(size_t)_vkProps.limits.maxDescriptorSetStorageBuffers;
limits.maxDescriptorSetStorageBuffersDynamic =
cast(size_t)_vkProps.limits.maxDescriptorSetStorageBuffersDynamic;
limits.minStorageBufferOffsetAlignment =
cast(size_t)_vkProps.limits.minStorageBufferOffsetAlignment;
limits.maxPushConstantsSize =
cast(size_t)_vkProps.limits.maxPushConstantsSize;
limits.maxUniformBufferSize =
cast(size_t)_vkProps.limits.maxUniformBufferRange;
limits.maxDescriptorSetUniformBuffers =
cast(size_t)_vkProps.limits.maxDescriptorSetUniformBuffers;
limits.maxDescriptorSetUniformBuffersDynamic =
cast(size_t)_vkProps.limits.maxDescriptorSetUniformBuffersDynamic;
limits.minUniformBufferOffsetAlignment =
cast(size_t)_vkProps.limits.minUniformBufferOffsetAlignment;
return limits;
}
override @property MemoryProperties memoryProperties()
{
VkPhysicalDeviceMemoryProperties vkProps=void;
vk.GetPhysicalDeviceMemoryProperties(_vkObj, &vkProps);
MemoryProperties props;
foreach(i; 0 .. vkProps.memoryHeapCount) {
const vkHeap = vkProps.memoryHeaps[i];
props.heaps ~= MemoryHeap(
cast(size_t)vkHeap.size, (vkHeap.flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT) != 0
);
}
foreach(i; 0 .. vkProps.memoryTypeCount) {
const vkMemType = vkProps.memoryTypes[i];
props.types ~= MemoryType(
memPropsToGfx(vkMemType.propertyFlags),
vkMemType.heapIndex,
);
}
return props;
}
override @property QueueFamily[] queueFamilies()
{
import std.array : array, uninitializedArray;
uint count;
vk.GetPhysicalDeviceQueueFamilyProperties(_vkObj, &count, null);
auto vkQueueFams = uninitializedArray!(VkQueueFamilyProperties[])(count);
vk.GetPhysicalDeviceQueueFamilyProperties(_vkObj, &count, vkQueueFams.ptr);
import std.algorithm : map;
return vkQueueFams.map!(vkObj => QueueFamily(
queueCapToGfx(vkObj.queueFlags), vkObj.queueCount
)).array;
}
override FormatProperties formatProperties(in Format format)
{
VkFormatProperties vkFp;
vk.GetPhysicalDeviceFormatProperties(_vkObj, format.toVk(), &vkFp);
return FormatProperties(
vkFp.linearTilingFeatures.toGfx(),
vkFp.optimalTilingFeatures.toGfx(),
vkFp.bufferFeatures.toGfx(),
);
}
override bool supportsSurface(uint queueFamilyIndex, Surface graalSurface) {
auto surf = enforce(
cast(VulkanSurface)graalSurface,
"Did not pass a Vulkan surface"
);
VkBool32 supported;
vulkanEnforce(
vk.GetPhysicalDeviceSurfaceSupportKHR(vkObj, queueFamilyIndex, surf.vkObj, &supported),
"Could not query vulkan surface support"
);
version(glfw) {
import bindbc.glfw : GLFW_FALSE;
const supportsGlfw = glfwGetPhysicalDevicePresentationSupport(_inst.vkObj, _vkObj, queueFamilyIndex);
return supported != VK_FALSE && supportsGlfw != GLFW_FALSE;
} else {
return supported != VK_FALSE;
}
}
override SurfaceCaps surfaceCaps(Surface graalSurface) {
auto surf = enforce(
cast(VulkanSurface)graalSurface,
"Did not pass a Vulkan surface"
);
VkSurfaceCapabilitiesKHR vkSc;
vulkanEnforce(
vk.GetPhysicalDeviceSurfaceCapabilitiesKHR(vkObj, surf.vkObj, &vkSc),
"Could not query vulkan surface capabilities"
);
return vkSc.toGfx();
}
override Format[] surfaceFormats(Surface graalSurface) {
auto surf = enforce(
cast(VulkanSurface)graalSurface,
"Did not pass a Vulkan surface"
);
uint count;
vulkanEnforce(
vk.GetPhysicalDeviceSurfaceFormatsKHR(vkObj, surf.vkObj, &count, null),
"Could not query vulkan surface formats"
);
auto vkSf = new VkSurfaceFormatKHR[count];
vulkanEnforce(
vk.GetPhysicalDeviceSurfaceFormatsKHR(vkObj, surf.vkObj, &count, &vkSf[0]),
"Could not query vulkan surface formats"
);
import std.algorithm : filter, map;
import std.array : array;
return vkSf
.filter!(sf => sf.colorSpace == VK_COLOR_SPACE_SRGB_NONLINEAR_KHR)
.map!(sf => sf.format.toGfx())
.array;
}
override PresentMode[] surfacePresentModes(Surface graalSurface) {
auto surf = enforce(
cast(VulkanSurface)graalSurface,
"Did not pass a Vulkan surface"
);
uint count;
vulkanEnforce(
vk.GetPhysicalDeviceSurfacePresentModesKHR(vkObj, surf.vkObj, &count, null),
"Could not query vulkan surface present modes"
);
auto vkPms = new VkPresentModeKHR[count];
vulkanEnforce(
vk.GetPhysicalDeviceSurfacePresentModesKHR(vkObj, surf.vkObj, &count, &vkPms[0]),
"Could not query vulkan surface present modes"
);
import std.algorithm : filter, map;
import std.array : array;
return vkPms
.filter!(pm => pm.hasGfxSupport)
.map!(pm => pm.toGfx())
.array;
}
override Device open(in QueueRequest[] queues, in DeviceFeatures features=DeviceFeatures.all)
{
import std.algorithm : filter, map, sort;
import std.array : array;
import std.exception : enforce;
import std.string : toStringz;
import gfx.vulkan.wsi : swapChainDeviceExtension;
if (!queues.length) {
return null;
}
const qcis = queues.map!((const(QueueRequest) r) {
VkDeviceQueueCreateInfo qci;
qci.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
qci.queueFamilyIndex = r.familyIndex;
qci.queueCount = cast(uint)r.priorities.length;
qci.pQueuePriorities = r.priorities.ptr;
return qci;
}).array;
const layers = _openLayers.map!toStringz.array;
const extensions = _openExtensions
.filter!(e => e != swapChainDeviceExtension || features.presentation)
.map!toStringz.array;
VkPhysicalDeviceFeatures vkFeats;
vkFeats.samplerAnisotropy = features.anisotropy ? VK_TRUE : VK_FALSE;
VkDeviceCreateInfo ci;
ci.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
ci.queueCreateInfoCount = cast(uint)qcis.length;
ci.pQueueCreateInfos = qcis.ptr;
ci.enabledLayerCount = cast(uint)layers.length;
ci.ppEnabledLayerNames = layers.ptr;
ci.enabledExtensionCount = cast(uint)extensions.length;
ci.ppEnabledExtensionNames = extensions.ptr;
ci.pEnabledFeatures = &vkFeats;
VkDevice vkDev;
vulkanEnforce(vk.CreateDevice(_vkObj, &ci, null, &vkDev),
"Vulkan device creation failed");
return new VulkanDevice(vkDev, this, _inst);
}
private VkPhysicalDevice _vkObj;
private VkPhysicalDeviceProperties _vkProps;
private VulkanInstance _inst;
private VkInstanceCmds _vk;
private VulkanLayerProperties[] _availableLayers;
private VulkanExtensionProperties[] _availableExtensions;
private string[] _openLayers;
private string[] _openExtensions;
}
DeviceType devTypeToGfx(in VkPhysicalDeviceType vkType)
{
switch (vkType) {
case VK_PHYSICAL_DEVICE_TYPE_OTHER:
return DeviceType.other;
case VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU:
return DeviceType.integratedGpu;
case VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU:
return DeviceType.discreteGpu;
case VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU:
return DeviceType.virtualGpu;
case VK_PHYSICAL_DEVICE_TYPE_CPU:
return DeviceType.cpu;
default:
assert(false, "unexpected vulkan device type constant");
}
}
| D |
pleasing by delicacy or grace
(used ironically) unexpectedly bad
to a moderately sufficient extent or degree
| D |
/*
* Copyright (c) 2017-2018 sel-project
*
* 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.
*
*/
/**
* Copyright: 2017-2018 sel-project
* License: MIT
* Authors: Kripth
* Source: $(HTTP github.com/sel-project/selery/source/selery/server.d, selery/server.d)
*/
module selery.server;
import selery.config : Config, Files;
import selery.lang : LanguageManager;
import selery.log : Logger;
import selery.plugin : Plugin;
/**
* Generic server with a configuration and plugins.
*/
interface Server {
/**
* Gets the server's configuration.
* Example:
* ---
* // server name
* log("Welcome to ", server.config.hub.displayName);
*
* // game version
* static if(__pocket) assert(server.config.node.pocket);
* static if(__minecraft) log("Port for Minecraft: ", server.config.node.minecraft.port);
* ---
*/
shared nothrow @property @safe @nogc const(Config) config();
/**
* Gets the server's files (assets and temp files).
* Example:
* ---
* if(!server.files.hasTemp("test")) {
* server.files.writeTemp("test", "Some content");
* assert(server.files.readTemp("test" == "Some content");
* }
* ---
*/
final shared nothrow @property @safe @nogc const(Files) files() {
return this.config.files;
}
/**
* Gets the server's language manager.
*/
final shared nothrow @property @safe @nogc const(LanguageManager) lang() {
return this.config.lang;
}
/**
* Gets the server's logger.
* Example:
* ---
* server.logger.log("Hello");
* ---
*/
shared @property Logger logger();
/**
* Gets the plugins actived on the server.
* Example:
* ---
* log("There are ", server.plugins.filter!(a => a.author == "sel-plugins").length, " by sel-plugins");
* log("There are ", server.plugins.filter!(a => a.api).length, " plugins with APIs");
* ---
*/
shared nothrow @property @safe @nogc const(Plugin)[] plugins();
}
| D |
// Written in the D programming language.
/**
This module is a port of a growing fragment of the $(D_PARAM
functional) header in Alexander Stepanov's
$(LINK2 http://sgi.com/tech/stl, Standard Template Library).
Macros:
WIKI = Phobos/StdFunctional
Author:
Andrei Alexandrescu
*/
/*
* Copyright (C) 2004-2006 by Digital Mars, www.digitalmars.com
* Written by Andrei Alexandrescu, www.erdani.org
*
* 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:
*
* o 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.
* o Altered source versions must be plainly marked as such, and must not
* be misrepresented as being the original software.
* o This notice may not be removed or altered from any source
* distribution.
*/
module std2.functional;
//version(Tango) import std.compat;
/**
Predicate that returns $(D_PARAM a < b).
*/
bool less(T)(T a, T b) { return a < b; }
/**
Predicate that returns $(D_PARAM a > b).
*/
bool greater(T)(T a, T b) { return a > b; }
| 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 vtkCompositeInterpolatedVelocityField;
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 vtkDataSet;
static import vtkAbstractInterpolatedVelocityField;
class vtkCompositeInterpolatedVelocityField : vtkAbstractInterpolatedVelocityField.vtkAbstractInterpolatedVelocityField {
private void* swigCPtr;
public this(void* cObject, bool ownCObject) {
super(vtkd_im.vtkCompositeInterpolatedVelocityField_Upcast(cObject), ownCObject);
swigCPtr = cObject;
}
public static void* swigGetCPtr(vtkCompositeInterpolatedVelocityField 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 int IsTypeOf(string type) {
auto ret = vtkd_im.vtkCompositeInterpolatedVelocityField_IsTypeOf((type ? std.string.toStringz(type) : null));
return ret;
}
public static vtkCompositeInterpolatedVelocityField SafeDownCast(vtkObjectBase.vtkObjectBase o) {
void* cPtr = vtkd_im.vtkCompositeInterpolatedVelocityField_SafeDownCast(vtkObjectBase.vtkObjectBase.swigGetCPtr(o));
vtkCompositeInterpolatedVelocityField ret = (cPtr is null) ? null : new vtkCompositeInterpolatedVelocityField(cPtr, false);
return ret;
}
public vtkCompositeInterpolatedVelocityField NewInstance() const {
void* cPtr = vtkd_im.vtkCompositeInterpolatedVelocityField_NewInstance(cast(void*)swigCPtr);
vtkCompositeInterpolatedVelocityField ret = (cPtr is null) ? null : new vtkCompositeInterpolatedVelocityField(cPtr, false);
return ret;
}
alias vtkAbstractInterpolatedVelocityField.vtkAbstractInterpolatedVelocityField.NewInstance NewInstance;
public int GetLastDataSetIndex() {
auto ret = vtkd_im.vtkCompositeInterpolatedVelocityField_GetLastDataSetIndex(cast(void*)swigCPtr);
return ret;
}
public void AddDataSet(vtkDataSet.vtkDataSet dataset) {
vtkd_im.vtkCompositeInterpolatedVelocityField_AddDataSet(cast(void*)swigCPtr, vtkDataSet.vtkDataSet.swigGetCPtr(dataset));
}
}
| D |
/Users/Mac/Documents/jose/repositorios/RustProjects/rust-first-contract/target/rls/debug/build/num-traits-a20fd11cac21b7b5/build_script_build-a20fd11cac21b7b5: /Users/Mac/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs
/Users/Mac/Documents/jose/repositorios/RustProjects/rust-first-contract/target/rls/debug/build/num-traits-a20fd11cac21b7b5/build_script_build-a20fd11cac21b7b5.d: /Users/Mac/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs
/Users/Mac/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs:
| D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range;
void get(Args...)(ref Args args)
{
import std.traits, std.meta, std.typecons;
static if (Args.length == 1) {
alias Arg = Args[0];
static if (isArray!Arg) {
static if (isSomeChar!(ElementType!Arg)) {
args[0] = readln.chomp.to!Arg;
} else {
args[0] = readln.split.to!Arg;
}
} else static if (isTuple!Arg) {
auto input = readln.split;
static foreach (i; 0..Fields!Arg.length) {
args[0][i] = input[i].to!(Fields!Arg[i]);
}
} else {
args[0] = readln.chomp.to!Arg;
}
} else {
auto input = readln.split;
assert(input.length == Args.length);
static foreach (i; 0..Args.length) {
args[i] = input[i].to!(Args[i]);
}
}
}
void get_lines(Args...)(size_t N, ref Args args)
{
import std.traits, std.range;
static foreach (i; 0..Args.length) {
static assert(isArray!(Args[i]));
args[i].length = N;
}
foreach (i; 0..N) {
static if (Args.length == 1) {
get(args[0][i]);
} else {
auto input = readln.split;
static foreach (j; 0..Args.length) {
args[j][i] = input[j].to!(ElementType!(Args[j]));
}
}
}
}
alias P = Tuple!(long, "x", long, "y");
void main()
{
long W, H; get(W, H);
int N; get(N);
if (N == 1) {
long x, y; get(x, y);
writefln!"%d\n%d %d"(0, x, y);
return;
}
P[] ps; get_lines(N, ps);
sort!"a.x < b.x"(ps);
auto x1 = ps[(N-1)/2].x;
auto x2 = ps[(N-1)/2 + (N%2 == 0 ? 1 : -1)].x;
sort!"a.y < b.y"(ps);
auto y1 = ps[(N-1)/2].y;
auto y2 = ps[(N-1)/2 + (N%2 == 0 ? 1 : -1)].y;
long r11, r12, r21, r22;
foreach (p; ps) {
r11 += (abs(p.x - x1) + abs(p.y - y1)) * 2;
r12 += (abs(p.x - x1) + abs(p.y - y2)) * 2;
r21 += (abs(p.x - x2) + abs(p.y - y1)) * 2;
r22 += (abs(p.x - x2) + abs(p.y - y2)) * 2;
}
long x, y, r_min = long.max;
foreach (p; ps) {
foreach (rxy; [[r11, x1, y1], [r12, x1, y2], [r21, x2, y1], [r22, x2, y2]]) {
auto rr = rxy[0];
auto xx = rxy[1];
auto yy = rxy[2];
auto r = rr - abs(p.x - xx) - abs(p.y - yy);
if (r < r_min || (r == r_min && (xx < x || (xx == x && yy < y)))) {
r_min = r;
x = xx;
y = yy;
}
}
}
writefln!"%d\n%d %d"(r_min, x, y);
}
/*
* +
1 2 3 4
+ *
1 2 3 4 5
*/ | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.