code
stringlengths
3
10M
language
stringclasses
31 values
/*#D*/ // Copyright 2016-2017, Jakob Bornecrantz. // SPDX-License-Identifier: BSL-1.0 module volt.arg; import core.exception; import watt.text.string : indexOf, replace; import watt.text.format : format; import watt.path : dirSeparator, baseName, dirName; import watt.conv : toLower; import watt.io.file : searchDir, SearchStatus; import volt.errors; import volt.interfaces; import volta.settings; class Arg { public: enum Conditional { None = 0x0, Std = 0x1, Arch = 0x2, Platform = 0x4, } enum Kind { File, Identifier, IncludePath, SrcPath, Warnings, PreprocessOnly, //!< -E CompileOnly, //!< -S MissingDeps, //!< --missing ImportAsSrc, //!< --import-as-src Debug, //!< --debug Release, //!< --release DebugSimpleTrace, Dep, //!< --dep Output, EmitLLVM, //!< --emit-llvm EmitBitcode, //!< --emit-bitcode (depricated) NoLink, CCompiler, CCompilerArg, LD, LDArg, Link, LinkArg, Clang, ClangArg, LLVMAr, LLVMArArg, Linker, LinkerArg, LibraryPath, LibraryName, FrameworkPath, FrameworkName, StringImportPath, JSONOutput, PerfOutput, InternalDiff, InternalPerf, InternalDebug, InternalNoCatch, //< --no-catch } string arg; int condArch; int condPlatform; Kind kind; Conditional cond; public: this(Kind kind) { this.kind = kind; } this(string arg, Kind kind) { this.arg = arg; this.kind = kind; } } void filterArgs(Arg[] args, ref string[] files, VersionSet ver, Settings settings) { foreach (arg; args) { if (arg.cond & Arg.Conditional.Std && settings.noStdLib) { continue; } if (arg.cond & Arg.Conditional.Arch && !(arg.condArch & (1 << settings.arch))) { continue; } if (arg.cond & Arg.Conditional.Platform && !(arg.condPlatform & (1 << settings.platform))) { continue; } final switch (arg.kind) with (Arg.Kind) { case File: auto barg = baseName(arg.arg); SearchStatus addFile(string s) { files ~= s; return SearchStatus.Continue; } if (barg.length > 2 && barg[0 .. 2] == "*.") { version (Volt) searchDir(dirName(arg.arg), barg, addFile); else searchDir(dirName(arg.arg), barg, &addFile); continue; } files ~= arg.arg; break; case Identifier: if (!ver.setVersionIdentifierIfNotReserved(arg.arg)) { throw new Exception("cannot set reserved identifier."); } break; case IncludePath: settings.includePaths ~= arg.arg; break; case SrcPath: settings.srcIncludePaths ~= arg.arg; break; case Warnings: settings.warningsEnabled = true; break; case PreprocessOnly: settings.removeConditionalsOnly = true; settings.noBackend = true; // TODO needed? break; case CompileOnly: settings.noBackend = true; break; case MissingDeps: settings.missingDeps = true; break; case ImportAsSrc: settings.importAsSrc ~= arg.arg; break; case Debug: ver.debugEnabled = true; break; case Release: ver.debugEnabled = false; break; case DebugSimpleTrace: settings.simpleTrace = true; break; case Dep: settings.depFile = arg.arg; break; case Output: settings.outputFile = arg.arg; break; case EmitLLVM: settings.emitLLVM = true; break; case EmitBitcode: settings.noLink = true; settings.emitLLVM = true; break; case NoLink: settings.noLink = true; break; case CCompiler: settings.cc = arg.arg; break; case CCompilerArg: settings.xcc ~= arg.arg; break; case LD: settings.ld = arg.arg; break; case LDArg: settings.xld ~= arg.arg; break; case Link: settings.link = arg.arg; break; case LinkArg: settings.xlink ~= arg.arg; break; case Clang: settings.clang = arg.arg; break; case ClangArg: settings.xclang ~= arg.arg; break; case LLVMAr: settings.llvmAr = arg.arg; break; case LLVMArArg: settings.xllvmAr ~= arg.arg; break; case Linker: settings.linker = arg.arg; break; case LinkerArg: settings.xlinker ~= arg.arg; break; case LibraryPath: settings.libraryPaths ~= arg.arg; break; case LibraryName: settings.libraryFiles ~= arg.arg; break; case FrameworkPath: settings.frameworkPaths ~= arg.arg; break; case FrameworkName: settings.frameworkNames ~= arg.arg; break; case StringImportPath: settings.stringImportPaths ~= arg.arg; break; case JSONOutput: settings.jsonOutput = arg.arg; break; case PerfOutput: settings.perfOutput = arg.arg; break; case InternalDiff: settings.internalDiff = true; break; case InternalPerf: settings.perfOutput = "perf.cvs"; break; case InternalDebug: settings.internalDebug = true; break; case InternalNoCatch: settings.noCatch = true; break; } } } Arch parseArch(string a) { switch (toLower(a)) { case "x86": return Arch.X86; case "x86_64": return Arch.X86_64; case "armhf": return Arch.ARMHF; case "aarch64": return Arch.AArch64; default: throw makeUnknownArch(a); } } Platform parsePlatform(string p, out CRuntime cRuntime) { switch (toLower(p)) { case "metal": cRuntime = CRuntime.None; return Platform.Metal; case "mingw": cRuntime = CRuntime.MinGW; return Platform.MinGW; case "msvc": cRuntime = CRuntime.Microsoft; return Platform.MSVC; case "linux", "linux-glibc": cRuntime = CRuntime.Glibc; return Platform.Linux; case "linux-none": cRuntime = CRuntime.None; return Platform.Linux; case "osx": cRuntime = CRuntime.Darwin; return Platform.OSX; default: throw makeUnknownPlatform(p); } }
D
/Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Moya.build/Plugins/NetworkActivityPlugin.swift.o : /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultipartFormData.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URL+Moya.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Image.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/AnyEncodable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Cancellable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/ValidationType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/TargetType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Moya+Alamofire.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Response.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URLRequest+Encoding.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Task.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Internal.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/AccessTokenPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkLoggerPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/CredentialsPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkActivityPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaError.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Defaults.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultiTarget.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Endpoint.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/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Alamofire.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Result.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/RxCocoaRuntime.build/module.modulemap /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/QuickSpecBase.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/xpc/XPC.apinotes /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/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.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/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Moya.build/NetworkActivityPlugin~partial.swiftmodule : /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultipartFormData.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URL+Moya.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Image.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/AnyEncodable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Cancellable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/ValidationType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/TargetType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Moya+Alamofire.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Response.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URLRequest+Encoding.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Task.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Internal.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/AccessTokenPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkLoggerPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/CredentialsPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkActivityPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaError.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Defaults.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultiTarget.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Endpoint.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/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Alamofire.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Result.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/RxCocoaRuntime.build/module.modulemap /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/QuickSpecBase.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/xpc/XPC.apinotes /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/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.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/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Moya.build/NetworkActivityPlugin~partial.swiftdoc : /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultipartFormData.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URL+Moya.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Image.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/AnyEncodable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Cancellable.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/ValidationType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/TargetType.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Moya+Alamofire.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Response.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/URLRequest+Encoding.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Task.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Internal.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/AccessTokenPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkLoggerPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/CredentialsPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Plugins/NetworkActivityPlugin.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaError.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MoyaProvider+Defaults.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/MultiTarget.swift /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/checkouts/Moya.git--5230867493987625585/Sources/Moya/Endpoint.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/XPC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreData.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreImage.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Alamofire.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/AppKit.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/Result.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/RxCocoaRuntime.build/module.modulemap /Users/rrunfa/Desktop/RxIssuesSample/RxIssuesSample/.build/x86_64-apple-macosx10.10/debug/QuickSpecBase.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/usr/include/xpc/XPC.apinotes /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/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.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/AppKit.framework/Headers/AppKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
module cli.ui.formatter; import cli.ui.glyph; import cli.ui.ansi; import std.conv: toText = text, wtext; class Formatter { static immutable string[string] SGR_MAP; shared static this() { SGR_MAP = [ // Colors "red": "31", "green": "32", "yellow": "33", "blue": "94", "magenta": "35", "cyan": "36", // Style "bold": "1", "italic": "3", "underline": "4", "reset": "0", // Semantic "error": "31", "success": "32", "warning": "33", "info": "94", "command": "36" ]; } string text; this(string text) { this.text = text; } auto format(bool enableColor = true, const string[string] sgrMap = SGR_MAP) { // I didn't understand original logic of formatting so I implemented // my version here enum State { TEXT, SPECIAL, COLOR } State state = State.TEXT; string res = ""; string colorname = ""; foreach(c; this.text) { final switch(state) { case State.TEXT: if(c == '$') { state = State.SPECIAL; break; } if(c == '`') { state = State.COLOR; colorname = ""; break; } res ~= c; break; case State.SPECIAL: state = State.TEXT; if(c == '$' || c == '`' || c == '@') { res ~= c; break; } res ~= Glyph.lookup([c]).to_s.toText; break; case State.COLOR: if(c == ':') { state = State.TEXT; res ~= ANSI.sgr(SGR_MAP[colorname].wtext).toText; break; } colorname ~= c; break; } } return res; } }
D
/** Mirror _compile.h */ module deimos.python.compile; import deimos.python.code; import deimos.python.node; import deimos.python.pythonrun; import deimos.python.pyarena; import deimos.python.code; extern(C): // Python-header-file: Include/compile.h: /// _ PyCodeObject* PyNode_Compile(node*, const(char)*); version(Python_3_7_Or_Later) { enum PyCF_MASK = CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_WITH_STATEMENT | CO_FUTURE_PRINT_FUNCTION | CO_FUTURE_UNICODE_LITERALS | CO_FUTURE_BARRY_AS_BDFL | CO_FUTURE_GENERATOR_STOP | CO_FUTURE_ANNOTATIONS; enum PyCF_MASK_OBSOLETE = CO_NESTED; enum PyCF_SOURCE_IS_UTF8 = 0x100; enum PyCF_DONT_IMPLY_DEDENT = 0x200; enum PyCF_ONLY_AST = 0x400; enum PyCF_IGNORE_COOKIE = 0x800; struct PyCompilerFlags { int cf_flags; } } /// _ struct PyFutureFeatures { version(Python_2_5_Or_Later){ /** flags set by future statements */ /// Availability: >= 2.5 int ff_features; /** line number of last future statement */ /// Availability: >= 2.5 int ff_lineno; }else{ /// Availability: <= 2.4 int ff_found_docstring; /// Availability: <= 2.4 int ff_last_linno; /// Availability: <= 2.4 int ff_features; } } version(Python_2_5_Or_Later){ }else{ /// Availability: <= 2.4 PyFutureFeatures *PyNode_Future(node*, const(char)*); /// Availability: <= 2.4 PyCodeObject *PyNode_CompileFlags(node*, const(char)*, PyCompilerFlags*); } /// _ enum FUTURE_NESTED_SCOPES = "nested_scopes"; /// _ enum FUTURE_GENERATORS = "generators"; /// _ enum FUTURE_DIVISION = "division"; version(Python_2_5_Or_Later){ /// Availability: >= 2.5 enum FUTURE_ABSOLUTE_IMPORT = "absolute_import"; /// Availability: >= 2.5 enum FUTURE_WITH_STATEMENT = "with_statement"; version(Python_2_6_Or_Later){ /// Availability: >= 2.6 enum FUTURE_PRINT_FUNCTION = "print_function"; /// Availability: >= 2.6 enum FUTURE_UNICODE_LITERALS = "unicode_literals"; } version(Python_3_0_Or_Later) { /// Availability: >= 3.2 enum FUTURE_BARRY_AS_BDFL = "barry_as_FLUFL"; } /// _ struct _mod; /* Declare the existence of this type */ version(Python_3_2_Or_Later) { /// Availability: >= 3.2 PyCodeObject* PyAST_Compile()(_mod* mod, const(char)* s, PyCompilerFlags* f, PyArena* ar) { return PyAST_CompileEx(mod, s, f, -1, ar); } /** Params: filename = decoded from the filesystem encoding */ /// Availability: >= 3.2 PyCodeObject* PyAST_CompileEx( _mod* mod, const(char)* filename, PyCompilerFlags* flags, int optimize, PyArena* arena); }else { /// Availability: 2.* PyCodeObject* PyAST_Compile( _mod*, const(char)*, PyCompilerFlags*, PyArena*); } /// Availability: >= 2.5 PyFutureFeatures* PyFuture_FromAST(_mod*, const(char)*); } version(Python_3_5_Or_Later) { enum FUTURE_GENERATOR_STOP = "generator_stop"; } version(Python_3_7_Or_Later) { enum FUTURE_ANNOTATIONS = "annotations"; }
D
var int Edgor_Exiteinmal; instance DIA_Addon_Edgor_EXIT(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 999; condition = DIA_Addon_Edgor_EXIT_Condition; information = DIA_Addon_Edgor_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Edgor_EXIT_Condition() { return TRUE; }; func void DIA_Addon_Edgor_EXIT_Info() { if(Npc_KnowsInfo(other,DIA_Addon_Edgor_MIS2) && (Edgor_Exiteinmal == FALSE)) { AI_Output(self,other,"DIA_Addon_Edgor_EXIT_06_00"); //Был рад познакомиться... Edgor_Exiteinmal = TRUE; }; AI_StopProcessInfos(self); }; instance DIA_Addon_Edgor_PICKPOCKET(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 900; condition = DIA_Addon_Edgor_PICKPOCKET_Condition; information = DIA_Addon_Edgor_PICKPOCKET_Info; permanent = TRUE; description = Pickpocket_20; }; func int DIA_Addon_Edgor_PICKPOCKET_Condition() { return C_Beklauen(10,7); }; func void DIA_Addon_Edgor_PICKPOCKET_Info() { Info_ClearChoices(DIA_Addon_Edgor_PICKPOCKET); Info_AddChoice(DIA_Addon_Edgor_PICKPOCKET,Dialog_Back,DIA_Addon_Edgor_PICKPOCKET_BACK); Info_AddChoice(DIA_Addon_Edgor_PICKPOCKET,DIALOG_PICKPOCKET,DIA_Addon_Edgor_PICKPOCKET_DoIt); }; func void DIA_Addon_Edgor_PICKPOCKET_DoIt() { B_Beklauen(); B_Say(self,self,"$AWAKE"); Info_ClearChoices(DIA_Addon_Edgor_PICKPOCKET); }; func void DIA_Addon_Edgor_PICKPOCKET_BACK() { Info_ClearChoices(DIA_Addon_Edgor_PICKPOCKET); }; instance DIA_Addon_Edgor_Hi(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 2; condition = DIA_Addon_Edgor_Hi_Condition; information = DIA_Addon_Edgor_Hi_Info; permanent = FALSE; description = "Как дела?"; }; func int DIA_Addon_Edgor_Hi_Condition() { return TRUE; }; func void DIA_Addon_Edgor_Hi_Info() { AI_Output(other,self,"DIA_Addon_Edgor_Hi_15_00"); //Как дела? AI_Output(self,other,"DIA_Addon_Edgor_Hi_06_01"); //Ты хочешь узнать, как у меня дела? Я тебе расскажу, как у меня дела. AI_Output(self,other,"DIA_Addon_Edgor_Hi_06_02"); //Сначала какие-то пираты привезли меня сюда в шторм. Я облевал всю их посудину. AI_Output(self,other,"DIA_Addon_Edgor_Hi_06_03"); //Затем Ворон запер шахту, потому что какие-то идиоты слишком сильно хотят золота. AI_Output(self,other,"DIA_Addon_Edgor_Hi_06_04"); //А затем Франко стал командиром охотников и убивает всякого, кто против него. AI_Output(self,other,"DIA_Addon_Edgor_Hi_06_05"); //Я бы сказал, что дела идут отвратительно. if(SC_KnowsRavensGoldmine == FALSE) { B_LogEntry(TOPIC_Addon_RavenKDW,LogText_Addon_RavensGoldmine); Log_AddEntry(TOPIC_Addon_Sklaven,LogText_Addon_RavensGoldmine); B_LogEntry(TOPIC_Addon_ScoutBandits,Log_Text_Addon_ScoutBandits); }; SC_KnowsRavensGoldmine = TRUE; }; instance DIA_Addon_Edgor_Franco(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 2; condition = DIA_Addon_Edgor_Franco_Condition; information = DIA_Addon_Edgor_Franco_Info; permanent = FALSE; description = "Как Франко сделался старшим?"; }; func int DIA_Addon_Edgor_Franco_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Edgor_Hi)) { return TRUE; }; }; func void DIA_Addon_Edgor_Franco_Info() { AI_Output(other,self,"DIA_Addon_Edgor_Franco_15_00"); //Как Франко сделался старшим? AI_Output(self,other,"DIA_Addon_Edgor_Franco_06_01"); //Очень просто. Убил Флетчера, который был командиром до него. AI_Output(self,other,"DIA_Addon_Edgor_Franco_06_02"); //Флетчер был свой парень. А Франко просто загонял нас. }; instance DIA_Addon_Edgor_MIS2(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 4; condition = DIA_Addon_Edgor_MIS2_Condition; information = DIA_Addon_Edgor_MIS2_Info; permanent = FALSE; description = "Франко послал меня по поводу этой каменной таблички..."; }; func int DIA_Addon_Edgor_MIS2_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Edgor_Hi) && (MIS_HlpEdgor == LOG_Running)) { return TRUE; }; }; func void DIA_Addon_Edgor_MIS2_Info() { AI_Output(other,self,"DIA_Addon_Edgor_MIS2_15_00"); //Франко послал меня по поводу этой каменной таблички. Ты ее нашел? AI_Output(self,other,"DIA_Addon_Edgor_MIS2_06_01"); //Приятель, я даже не пытался ее искать. Все, что я знаю, - это то, что она должна быть где-то в том старом здании на болоте. AI_Output(self,other,"DIA_Addon_Edgor_MIS2_06_02"); //А мой внутренний голос говорит мне: 'Эдгор, сторонись старых зданий, стоящих на болоте'. AI_Output(self,other,"DIA_Addon_Edgor_MIS2_06_03"); //Я не собираюсь рисковать своей шкурой ради этого раздолбая Франко! B_LogEntry(Topic_Addon_Stoneplate,"Эдгор не собирается искать каменную табличку. Он говорит, что она находится в каком-то старом строении на болотах."); }; instance DIA_Addon_Edgor_Weg(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 4; condition = DIA_Addon_Edgor_Weg_Condition; information = DIA_Addon_Edgor_Weg_Info; permanent = FALSE; description = "А где находится это старое здание?"; }; func int DIA_Addon_Edgor_Weg_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Edgor_MIS2)) { return TRUE; }; }; func void DIA_Addon_Edgor_Weg_Info() { AI_Output(other,self,"DIA_Addon_Edgor_Weg_15_00"); //А где находится это старое здание? AI_Output(self,other,"DIA_Addon_Edgor_Weg_06_01"); //Обойди слева тот большой камень. Через некоторое время увидишь другой большой камень. AI_Output(self,other,"DIA_Addon_Edgor_Weg_06_02"); //Его надо обойти слева... или справа, я уже не помню - это было слишком давно. AI_Output(self,other,"DIA_Addon_Edgor_Weg_06_03"); //Но развалины должны быть на небольшом возвышении. И они совсем заросли растениями. AI_Output(self,other,"DIA_Addon_Edgor_Weg_06_04"); //Может быть, тебе повезет и ты не найдешь их... }; instance DIA_Addon_Edgor_Found(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 4; condition = DIA_Addon_Edgor_Found_Condition; information = DIA_Addon_Edgor_Found_Info; permanent = FALSE; description = "Я нашел каменную табличку!"; }; func int DIA_Addon_Edgor_Found_Condition() { if((Npc_HasItems(other,ItMi_Addon_Stone_04) >= 1) && !Npc_IsDead(Franco) && (MIS_HlpEdgor == LOG_Running)) { return TRUE; }; }; func void DIA_Addon_Edgor_Found_Info() { AI_Output(other,self,"DIA_Addon_Edgor_Found_15_00"); //Я нашел каменную табличку! AI_Output(self,other,"DIA_Addon_Edgor_Found_06_01"); //Правда? Ты смелый парень. AI_Output(self,other,"DIA_Addon_Edgor_Found_06_02"); //Тогда ты наверняка заработал себе пропуск в лагерь. }; instance DIA_Addon_Edgor_Teach(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 9; condition = DIA_Addon_Edgor_Teach_Condition; information = DIA_Addon_Edgor_Teach_Info; permanent = FALSE; description = "Ты можешь научить меня чему-нибудь?"; }; func int DIA_Addon_Edgor_Teach_Condition() { if(Npc_KnowsInfo(other,DIA_Addon_Edgor_Hi)) { return TRUE; }; }; func void DIA_Addon_Edgor_Teach_Info() { AI_Output(other,self,"DIA_Addon_Edgor_Teach_15_00"); //Можешь научить меня кое-чему? AI_Output(self,other,"DIA_Addon_Edgor_Teach_06_01"); //Я многое знаю про кровавых мух. Я ненавижу этих гадкий тварей даже больше, чем я ненавижу Франко! AI_Output(self,other,"DIA_Addon_Edgor_Teach_06_02"); //Но я знаю, как отрывать от них жала и крылья, от их мертвых тушек. Да! Отрывать от них... AI_Output(self,other,"DIA_Addon_Edgor_Teach_06_03"); //Кроме того, я знаю, как выделять секрет из оторванных жал. AI_Output(self,other,"DIA_Addon_Edgor_Teach_06_04"); //Если хочешь, я могу научить тебя всей этой фигне. AI_Output(self,other,"DIA_Addon_Edgor_Teach_06_05"); //Конечно, я ничего не буду делать бесплатно... Log_CreateTopic(Topic_Addon_BDT_Teacher,LOG_NOTE); B_LogEntry(Topic_Addon_BDT_Teacher,"О кровавых мухах Эдгору известно все."); Edgor_Teach = TRUE; }; func void B_Edgor_NotEnoughGold() { AI_Output(self,other,"DIA_Addon_Edgor_NotEnoughGold_06_00"); //Мне нужно золото. Меня интересуют только монеты, не самородки. }; instance DIA_Addon_Edgor_TrainStart(C_Info) { npc = BDT_1074_Addon_Edgor; nr = 9; condition = DIA_Addon_Edgor_Start_Condition; information = DIA_Addon_Edgor_Start_Info; permanent = TRUE; description = "Кровавые мухи..."; }; func int DIA_Addon_Edgor_Start_Condition() { if(Edgor_Teach == TRUE) { return TRUE; }; }; func int GetBloodflyLearnCost() { if((Fortuno_Done == FALSE) && Npc_KnowsInfo(other,DIA_Addon_Fortuno_FREE)) { return 0; } else { return 1; }; }; func string GetBloodflyCostString() { var string tempStr; var int tempCost; tempCost = GetBloodflyLearnCost(); if(tempCost == 0) { tempStr = ""; } else { tempStr = ConcatStrings(IntToString(tempCost)," LP, "); }; return tempStr; }; func void DIA_Addon_Edgor_Start_Info() { AI_Output(other,self,"DIA_Addon_Edgor_TrainStart_SEKRET_15_00"); //По поводу кровавых мух... AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_SEKRET_06_01"); //Что бы ты хотел узнать? Info_ClearChoices(DIA_Addon_Edgor_TrainStart); Info_AddChoice(DIA_Addon_Edgor_TrainStart,Dialog_Back,DIA_Addon_Edgor_TrainStart_BACK); if(PLAYER_TALENT_TAKEANIMALTROPHY[TROPHY_BFSting] == FALSE) { Info_AddChoice(DIA_Addon_Edgor_TrainStart,"Жало кровавой мухи (5 LP, 100 золота)",DIA_Addon_Edgor_TrainStart_Sting); }; if(PLAYER_TALENT_TAKEANIMALTROPHY[TROPHY_BFWing] == FALSE) { Info_AddChoice(DIA_Addon_Edgor_TrainStart,"Крылья кровавой мухи (5 LP, 100 золота)",DIA_Addon_Edgor_TrainStart_Wing); }; if(Knows_Bloodfly == FALSE) { Info_AddChoice(DIA_Addon_Edgor_TrainStart,ConcatStrings(ConcatStrings("Секрет из жала (",GetBloodflyCostString()),"100 золота)"),DIA_Addon_Edgor_TrainStart_GIFT); }; }; func void DIA_Addon_Edgor_TrainStart_BACK() { Info_ClearChoices(DIA_Addon_Edgor_TrainStart); }; func void DIA_Addon_Edgor_TrainStart_Sting() { if(B_GiveInvItems(other,self,ItMi_Gold,100)) { if(B_TeachPlayerTalentTakeAnimalTrophy(self,other,TROPHY_BFSting)) { AI_Output(other,self,"DIA_Addon_Edgor_TrainStart_Sting_15_00"); //Как оторвать жало от мухи? AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_Sting_06_01"); //Переверни дохлую тварь на брюхо и разрежь ее крест-накрест. Схвати внутренности и разрежь ткани вдоль всей спины. AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_Sting_06_02"); //После этого ты сможешь выдернуть жало резким движением. }; } else { B_Edgor_NotEnoughGold(); }; Info_ClearChoices(DIA_Addon_Edgor_TrainStart); }; func void DIA_Addon_Edgor_TrainStart_Wing() { if(B_GiveInvItems(other,self,ItMi_Gold,100)) { if(B_TeachPlayerTalentTakeAnimalTrophy(self,other,TROPHY_BFWing)) { AI_Output(other,self,"DIA_Addon_Edgor_TrainStart_Wing_15_00"); //А как отделить крылья? AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_Wing_06_01"); //Схвати их одной рукой. Другой просто отрежь их по внешней стороне кожи. }; } else { B_Edgor_NotEnoughGold(); }; Info_ClearChoices(DIA_Addon_Edgor_TrainStart); }; func void DIA_Addon_Edgor_TrainStart_GIFT() { if(B_GiveInvItems(other,self,ItMi_Gold,100)) { var int bloodflyLpCost; bloodflyLpCost = GetBloodflyLearnCost(); if(other.lp >= bloodflyLpCost) { AI_Output(other,self,"DIA_Addon_Edgor_TrainStart_GIFT_15_00"); //Как добыть секрет из жала кровавой мухи? AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_GIFT_06_01"); //Разрежь верхний слой жала вдоль - тогда лечебный секрет и вытечет. AI_Output(self,other,"DIA_Addon_Edgor_TrainStart_GIFT_06_02"); //Это совершенно безопасный способ высосать его из жала - или использовать его для лечебного зелья. other.lp = other.lp - bloodflyLpCost; Knows_Bloodfly = TRUE; PrintScreen(PRINT_ADDON_KNOWSBF,-1,-1,FONT_Screen,2); } else { PrintScreen(PRINT_NotEnoughLP,-1,-1,FONT_Screen,2); B_Say(self,other,"$NOLEARNNOPOINTS"); }; } else { B_Edgor_NotEnoughGold(); }; Info_ClearChoices(DIA_Addon_Edgor_TrainStart); };
D
module queue; public class Queue(T) { private: QueueNode!T front, back; public: this() { } final bool empty() { return front is null; } final void enqueue(T addition) { if (empty()) { front = new QueueNode!T(addition); back = front; } else { back.back = new QueueNode!T(addition); back = back.back; } } final T dequeue() { auto ret = front.content; front = front.back; return ret; } } private class QueueNode(T) { T content; QueueNode!T forward, back; this(T contents) { content = contents; } }
D
a republic in southwestern Africa on the south Atlantic coast (formerly called South West Africa
D
/** Calculate pi at compile time * * Compile with dmd -c pi.d */ module calcpi; import meta.math; import meta.conv; /** real evaluateSeries!(real x, real metafunction!(real y, int n) term) * * Evaluate a power series at compile time. * * Given a metafunction of the form * real term!(real y, int n), * which gives the nth term of a convergent series at the point y * (where the first term is n==1), and a real number x, * this metafunction calculates the infinite sum at the point x * by adding terms until the sum doesn't change any more. */ template evaluateSeries(real x, alias term, int n=1, real sumsofar=0.0) { static if (n>1 && sumsofar == sumsofar + term!(x, n+1)) { const real evaluateSeries = sumsofar; } else { const real evaluateSeries = evaluateSeries!(x, term, n+1, sumsofar + term!(x, n)); } } /*** Calculate atan(x) at compile time. * * Uses the Maclaurin formula * atan(z) = z - z^3/3 + Z^5/5 - Z^7/7 + ... */ template atan(real z) { const real atan = evaluateSeries!(z, atanTerm); } template atanTerm(real x, int n) { const real atanTerm = (n & 1 ? 1 : -1) * pow!(x, 2*n-1)/(2*n-1); } /// Machin's formula for pi /// pi/4 = 4 atan(1/5) - atan(1/239). pragma(msg, "PI = " ~ fcvt!(4.0 * (4*atan!(1/5.0) - atan!(1/239.0))) );
D
/Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/Objects-normal/x86_64/SocketLogger.o : /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManagerSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePollable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketParsable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngine.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePacketType.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientConfiguration.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientOption.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketStringReader.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketLogger.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketEventHandler.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckEmitter.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketTypes.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketExtensions.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOStatus.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketPacket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineWebsocket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketAnyEvent.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketRawView.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SSLSecurity.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Starscream/Starscream-umbrella.h /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-umbrella.h /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Headers/Starscream-Swift.h /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/unextended-module.modulemap /Users/Natalia/FunChatik/Pods/Starscream/zlib/module.modulemap /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Starscream.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/Objects-normal/x86_64/SocketLogger~partial.swiftmodule : /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManagerSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePollable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketParsable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngine.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePacketType.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientConfiguration.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientOption.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketStringReader.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketLogger.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketEventHandler.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckEmitter.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketTypes.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketExtensions.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOStatus.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketPacket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineWebsocket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketAnyEvent.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketRawView.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SSLSecurity.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Starscream/Starscream-umbrella.h /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-umbrella.h /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Headers/Starscream-Swift.h /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/unextended-module.modulemap /Users/Natalia/FunChatik/Pods/Starscream/zlib/module.modulemap /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Starscream.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/Objects-normal/x86_64/SocketLogger~partial.swiftdoc : /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManagerSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientSpec.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePollable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketParsable.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngine.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEnginePacketType.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientConfiguration.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClientOption.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketStringReader.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Manager/SocketManager.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketLogger.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketEventHandler.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Ack/SocketAckEmitter.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketTypes.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SocketExtensions.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOStatus.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Parse/SocketPacket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineWebsocket.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketIOClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Engine/SocketEngineClient.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketAnyEvent.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Client/SocketRawView.swift /Users/Natalia/FunChatik/Pods/Socket.IO-Client-Swift/Source/SocketIO/Util/SSLSecurity.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Starscream/Starscream-umbrella.h /Users/Natalia/FunChatik/Pods/Target\ Support\ Files/Socket.IO-Client-Swift/Socket.IO-Client-Swift-umbrella.h /Users/Natalia/FunChatik/Jenkins/build/Build/Products/Debug-iphonesimulator/Starscream/Starscream.framework/Headers/Starscream-Swift.h /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Socket.IO-Client-Swift.build/unextended-module.modulemap /Users/Natalia/FunChatik/Pods/Starscream/zlib/module.modulemap /Users/Natalia/FunChatik/Jenkins/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Starscream.build/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
/// Generate by tools module java.sql.SQLException; import java.lang.exceptions; public class SQLException { public this() { implMissing(); } }
D
/* * This file is part of gtkD. * * gtkD is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * gtkD is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with gtkD; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // generated automatically - do not change // find conversion definition on APILookup.txt // implement new conversion functionalities on the wrap.utils pakage /* * Conversion parameters: * inFile = glib-Strings.html * outPack = glib * outFile = StringG * strct = GString * realStrct= * ctorStrct= * clss = StringG * interf = * class Code: No * interface Code: No * template for: * extend = * implements: * prefixes: * - g_string_ * omit structs: * omit prefixes: * omit code: * omit signals: * imports: * - gtkD.glib.Str * structWrap: * - GString* -> StringG * module aliases: * local aliases: * overrides: */ module gtkD.glib.StringG; public import gtkD.gtkc.glibtypes; private import gtkD.gtkc.glib; private import gtkD.glib.ConstructionException; private import gtkD.glib.Str; /** * Description * A GString is similar to a standard C string, except that it grows * automatically as text is appended or inserted. Also, it stores the * length of the string, so can be used for binary data with embedded * nul bytes. */ public class StringG { /** the main Gtk struct */ protected GString* gString; public GString* getStringGStruct() { return gString; } /** the main Gtk struct as a void* */ protected void* getStruct() { return cast(void*)gString; } /** * Sets our main struct and passes it to the parent class */ public this (GString* gString) { if(gString is null) { this = null; return; } this.gString = gString; } /** */ /** * Creates a new GString, initialized with the given string. * Params: * init = the initial text to copy into the string * Throws: ConstructionException GTK+ fails to create the object. */ public this (string init) { // GString* g_string_new (const gchar *init); auto p = g_string_new(Str.toStringz(init)); if(p is null) { throw new ConstructionException("null returned by g_string_new(Str.toStringz(init))"); } this(cast(GString*) p); } /** * Creates a new GString with len bytes of the init buffer. * Because a length is provided, init need not be nul-terminated, * and can contain embedded nul bytes. * Since this function does not stop at nul bytes, it is the caller's * responsibility to ensure that init has at least len addressable * bytes. * Params: * init = initial contents of the string * len = length of init to use * Throws: ConstructionException GTK+ fails to create the object. */ public this (string init, int len) { // GString* g_string_new_len (const gchar *init, gssize len); auto p = g_string_new_len(Str.toStringz(init), len); if(p is null) { throw new ConstructionException("null returned by g_string_new_len(Str.toStringz(init), len)"); } this(cast(GString*) p); } /** * Creates a new GString, with enough space for dfl_size * bytes. This is useful if you are going to add a lot of * text to the string and don't want it to be reallocated * too often. * Params: * dflSize = the default size of the space allocated to * hold the string * Returns: the new GString */ public static StringG sizedNew(uint dflSize) { // GString* g_string_sized_new (gsize dfl_size); auto p = g_string_sized_new(dflSize); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Copies the bytes from a string into a GString, * destroying any previous contents. It is rather like * the standard strcpy() function, except that you do not * have to worry about having enough space to copy the string. * Params: * string = the destination GString. Its current contents * are destroyed. * rval = the string to copy into string * Returns: string */ public StringG assign(string rval) { // GString* g_string_assign (GString *string, const gchar *rval); auto p = g_string_assign(gString, Str.toStringz(rval)); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Writes a formatted string into a GString. * This function is similar to g_string_printf() except that * the arguments to the format string are passed as a va_list. * Since 2.14 * Params: * string = a GString * format = the string format. See the printf() documentation * args = the parameters to insert into the format string */ public void vprintf(string format, void* args) { // void g_string_vprintf (GString *string, const gchar *format, va_list args); g_string_vprintf(gString, Str.toStringz(format), args); } /** * Appends a formatted string onto the end of a GString. * This function is similar to g_string_append_printf() * except that the arguments to the format string are passed * as a va_list. * Since 2.14 * Params: * string = a GString * format = the string format. See the printf() documentation * args = the list of arguments to insert in the output */ public void appendVprintf(string format, void* args) { // void g_string_append_vprintf (GString *string, const gchar *format, va_list args); g_string_append_vprintf(gString, Str.toStringz(format), args); } /** * Adds a string onto the end of a GString, expanding * it if necessary. * Params: * string = a GString * val = the string to append onto the end of string * Returns: string */ public StringG append(string val) { // GString* g_string_append (GString *string, const gchar *val); auto p = g_string_append(gString, Str.toStringz(val)); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Adds a byte onto the end of a GString, expanding * it if necessary. * Params: * c = the byte to append onto the end of string * Returns: string */ public StringG appendC(char c) { // GString* g_string_append_c (GString *string, gchar c); auto p = g_string_append_c(gString, c); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Converts a Unicode character into UTF-8, and appends it * to the string. * Params: * wc = a Unicode character * Returns: string */ public StringG appendUnichar(gunichar wc) { // GString* g_string_append_unichar (GString *string, gunichar wc); auto p = g_string_append_unichar(gString, wc); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Appends len bytes of val to string. Because len is * provided, val may contain embedded nuls and need not * be nul-terminated. * Since this function does not stop at nul bytes, it is * the caller's responsibility to ensure that val has at * least len addressable bytes. * Params: * string = a GString * val = bytes to append * len = number of bytes of val to use * Returns: string */ public StringG appendLen(string val, int len) { // GString* g_string_append_len (GString *string, const gchar *val, gssize len); auto p = g_string_append_len(gString, Str.toStringz(val), len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Appends unescaped to string, escaped any characters that * are reserved in URIs using URI-style escape sequences. * Since 2.16 * Params: * string = a GString * unescaped = a string * reservedCharsAllowed = a string of reserved characters allowed to be used * allowUtf8 = set TRUE if the escaped string may include UTF8 characters * Returns: string */ public StringG appendUriEscaped(string unescaped, string reservedCharsAllowed, int allowUtf8) { // GString * g_string_append_uri_escaped (GString *string, const char *unescaped, const char *reserved_chars_allowed, gboolean allow_utf8); auto p = g_string_append_uri_escaped(gString, Str.toStringz(unescaped), Str.toStringz(reservedCharsAllowed), allowUtf8); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Adds a string on to the start of a GString, * expanding it if necessary. * Params: * string = a GString * val = the string to prepend on the start of string * Returns: string */ public StringG prepend(string val) { // GString* g_string_prepend (GString *string, const gchar *val); auto p = g_string_prepend(gString, Str.toStringz(val)); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Adds a byte onto the start of a GString, * expanding it if necessary. * Params: * c = the byte to prepend on the start of the GString * Returns: string */ public StringG prependC(char c) { // GString* g_string_prepend_c (GString *string, gchar c); auto p = g_string_prepend_c(gString, c); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Converts a Unicode character into UTF-8, and prepends it * to the string. * Params: * wc = a Unicode character * Returns: string */ public StringG prependUnichar(gunichar wc) { // GString* g_string_prepend_unichar (GString *string, gunichar wc); auto p = g_string_prepend_unichar(gString, wc); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Prepends len bytes of val to string. * Because len is provided, val may contain * embedded nuls and need not be nul-terminated. * Since this function does not stop at nul bytes, * it is the caller's responsibility to ensure that * val has at least len addressable bytes. * Params: * string = a GString * val = bytes to prepend * len = number of bytes in val to prepend * Returns: string */ public StringG prependLen(string val, int len) { // GString* g_string_prepend_len (GString *string, const gchar *val, gssize len); auto p = g_string_prepend_len(gString, Str.toStringz(val), len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Inserts a copy of a string into a GString, * expanding it if necessary. * Params: * string = a GString * pos = the position to insert the copy of the string * val = the string to insert * Returns: string */ public StringG insert(int pos, string val) { // GString* g_string_insert (GString *string, gssize pos, const gchar *val); auto p = g_string_insert(gString, pos, Str.toStringz(val)); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Inserts a byte into a GString, expanding it if necessary. * Params: * pos = the position to insert the byte * c = the byte to insert * Returns: string */ public StringG insertC(int pos, char c) { // GString* g_string_insert_c (GString *string, gssize pos, gchar c); auto p = g_string_insert_c(gString, pos, c); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Converts a Unicode character into UTF-8, and insert it * into the string at the given position. * Params: * pos = the position at which to insert character, or -1 to * append at the end of the string * wc = a Unicode character * Returns: string */ public StringG insertUnichar(int pos, gunichar wc) { // GString* g_string_insert_unichar (GString *string, gssize pos, gunichar wc); auto p = g_string_insert_unichar(gString, pos, wc); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Inserts len bytes of val into string at pos. * Because len is provided, val may contain embedded * nuls and need not be nul-terminated. If pos is -1, * bytes are inserted at the end of the string. * Since this function does not stop at nul bytes, it is * the caller's responsibility to ensure that val has at * least len addressable bytes. * Params: * string = a GString * pos = position in string where insertion should * happen, or -1 for at the end * val = bytes to insert * len = number of bytes of val to insert * Returns: string */ public StringG insertLen(int pos, string val, int len) { // GString* g_string_insert_len (GString *string, gssize pos, const gchar *val, gssize len); auto p = g_string_insert_len(gString, pos, Str.toStringz(val), len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Overwrites part of a string, lengthening it if necessary. * Since 2.14 * Params: * string = a GString * pos = the position at which to start overwriting * val = the string that will overwrite the string starting at pos * Returns: string */ public StringG overwrite(uint pos, string val) { // GString* g_string_overwrite (GString *string, gsize pos, const gchar *val); auto p = g_string_overwrite(gString, pos, Str.toStringz(val)); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Overwrites part of a string, lengthening it if necessary. * This function will work with embedded nuls. * Since 2.14 * Params: * string = a GString * pos = the position at which to start overwriting * val = the string that will overwrite the string starting at pos * len = the number of bytes to write from val * Returns: string */ public StringG overwriteLen(uint pos, string val, int len) { // GString* g_string_overwrite_len (GString *string, gsize pos, const gchar *val, gssize len); auto p = g_string_overwrite_len(gString, pos, Str.toStringz(val), len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Removes len bytes from a GString, starting at position pos. * The rest of the GString is shifted down to fill the gap. * Params: * pos = the position of the content to remove * len = the number of bytes to remove, or -1 to remove all * following bytes * Returns: string */ public StringG erase(int pos, int len) { // GString* g_string_erase (GString *string, gssize pos, gssize len); auto p = g_string_erase(gString, pos, len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Cuts off the end of the GString, leaving the first len bytes. * Params: * len = the new size of string * Returns: string */ public StringG truncate(uint len) { // GString* g_string_truncate (GString *string, gsize len); auto p = g_string_truncate(gString, len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Sets the length of a GString. If the length is less than * the current length, the string will be truncated. If the * length is greater than the current length, the contents * of the newly added area are undefined. (However, as * always, string->str[string->len] will be a nul byte.) * Params: * len = the new length * Returns: string */ public StringG setSize(uint len) { // GString* g_string_set_size (GString *string, gsize len); auto p = g_string_set_size(gString, len); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Frees the memory allocated for the GString. * If free_segment is TRUE it also frees the character data. * Params: * string = a GString * freeSegment = if TRUE the actual character data is freed as well * Returns: the character data of string (i.e. NULL if free_segment is TRUE) */ public string free(int freeSegment) { // gchar* g_string_free (GString *string, gboolean free_segment); return Str.toString(g_string_free(gString, freeSegment)); } /** * Warning * g_string_up has been deprecated since version 2.2 and should not be used in newly-written code. This function uses the locale-specific * toupper() function, which is almost never the right thing. * Use g_string_ascii_up() or g_utf8_strup() instead. * Converts a GString to uppercase. * Returns: string */ public StringG up() { // GString* g_string_up (GString *string); auto p = g_string_up(gString); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Warning * g_string_down has been deprecated since version 2.2 and should not be used in newly-written code. This function uses the locale-specific * tolower() function, which is almost never the right thing. * Use g_string_ascii_down() or g_utf8_strdown() instead. * Converts a GString to lowercase. * Returns: the GString. */ public StringG down() { // GString* g_string_down (GString *string); auto p = g_string_down(gString); if(p is null) { return null; } return new StringG(cast(GString*) p); } /** * Creates a hash code for str; for use with GHashTable. * Returns: hash code for str */ public uint hash() { // guint g_string_hash (const GString *str); return g_string_hash(gString); } /** * Compares two strings for equality, returning TRUE if they are equal. * For use with GHashTable. * Params: * v = a GString * v2 = another GString * Returns: TRUE if they strings are the same length and contain the same bytes */ public int equal(StringG v2) { // gboolean g_string_equal (const GString *v, const GString *v2); return g_string_equal(gString, (v2 is null) ? null : v2.getStringGStruct()); } }
D
instance VLK_411_GAERTNER(NPC_DEFAULT) { name[0] = "Садовник"; guild = GIL_VLK; id = 411; voice = 9; flags = 0; npctype = NPCTYPE_MAIN; b_setattributestochapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,itmw_1h_bau_axe); b_setnpcvisual(self,MALE,"Hum_Head_Psionic",FACE_N_NORMALBART_GRAHAM,BODYTEX_N,itar_bau_m); Mdl_SetModelFatness(self,0); Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds"); b_givenpctalents(self); b_setfightskills(self,30); daily_routine = rtn_start_411; }; func void rtn_start_411() { ta_rake_fp(6,30,8,30,"NW_CITY_CITYHALL_04"); ta_rake_fp(8,30,10,30,"NW_CITY_CITYHALL_10"); ta_rake_fp(10,30,12,30,"NW_CITY_CITYHALL_12"); ta_rake_fp(12,30,14,30,"NW_CITY_CITYHALL_07"); ta_rake_fp(14,30,16,30,"NW_CITY_CITYHALL_10"); ta_rake_fp(16,30,18,30,"NW_CITY_CITYHALL_12"); ta_rake_fp(18,30,20,30,"NW_CITY_CITYHALL_07"); ta_rake_fp(20,30,22,0,"NW_CITY_CITYHALL_04"); ta_sit_campfire(22,0,6,30,"NW_CITY_CITYHALL_04_B"); };
D
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/SQLite.build/SQLite+Result.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/StatusError.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Statement.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/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /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/checkouts/sqlite.git--8232814251736334455/Sources/CSQLite/include/sqlite3.h /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/SQLite.build/SQLite+Result~partial.swiftmodule : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/StatusError.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Statement.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/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /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/checkouts/sqlite.git--8232814251736334455/Sources/CSQLite/include/sqlite3.h /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/SQLite.build/SQLite+Result~partial.swiftdoc : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/StatusError.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Result.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/SQLite+Statement.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/Node.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /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/checkouts/sqlite.git--8232814251736334455/Sources/CSQLite/include/sqlite3.h /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
/Users/guillaume/Usine/AnimaChat/Build/Intermediates/AnimaChat.build/Debug-iphoneos/AnimaChat.build/Objects-normal/arm64/String.o : /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Blob.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCMessage.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCBundle.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Impulse.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/AppDelegate.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Timetag.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/String.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/OSCTypeProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCElementProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Bool.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddressPattern.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/GameViewController.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Timer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCServer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Extensions.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddress.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Float.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/yudpsocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/ysocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Int.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCClient.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ModelIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GameplayKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Users/guillaume/Usine/AnimaChat/Build/Intermediates/AnimaChat.build/Debug-iphoneos/AnimaChat.build/Objects-normal/arm64/String~partial.swiftmodule : /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Blob.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCMessage.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCBundle.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Impulse.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/AppDelegate.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Timetag.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/String.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/OSCTypeProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCElementProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Bool.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddressPattern.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/GameViewController.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Timer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCServer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Extensions.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddress.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Float.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/yudpsocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/ysocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Int.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCClient.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ModelIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GameplayKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Users/guillaume/Usine/AnimaChat/Build/Intermediates/AnimaChat.build/Debug-iphoneos/AnimaChat.build/Objects-normal/arm64/String~partial.swiftdoc : /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Blob.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCMessage.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCBundle.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Impulse.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/AppDelegate.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Timetag.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/String.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/OSCTypeProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Elements/OSCElementProtocol.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Bool.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddressPattern.swift /Users/guillaume/Usine/AnimaChat/AnimaChat/GameViewController.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Timer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCServer.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Helpers/Extensions.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Addresses/OSCAddress.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Float.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/yudpsocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/ysocket/ysocket.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Types/Int.swift /Users/guillaume/Usine/AnimaChat/SwiftOSC/Communication/OSCClient.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ModelIO.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/simd.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GLKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SceneKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SpriteKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/GameplayKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule
D
the act of having and controlling property anything owned or possessed being controlled by passion or the supernatural a mania restricted to one thing or idea a territory that is controlled by a ruling state the trait of resolutely controlling your own behavior (sport) the act of controlling the ball (or puck
D
module hunt.database.driver.mysql.impl.codec.DataType; // import io.netty.util.collection.IntObjectHashMap; // import io.netty.util.collection.IntObjectMap; // import io.vertx.core.buffer.Buffer; // import hunt.database.base.Numeric; // import java.time.Duration; // import java.time.LocalDate; // import java.time.LocalDateTime; enum DataType { INT1 = ColumnType.MYSQL_TYPE_TINY, INT2 = ColumnType.MYSQL_TYPE_SHORT, INT3 = ColumnType.MYSQL_TYPE_INT24, INT4 = ColumnType.MYSQL_TYPE_LONG, INT8 = ColumnType.MYSQL_TYPE_LONGLONG, DOUBLE = ColumnType.MYSQL_TYPE_DOUBLE, FLOAT = ColumnType.MYSQL_TYPE_FLOAT, NUMERIC = ColumnType.MYSQL_TYPE_NEWDECIMAL, STRING = ColumnType.MYSQL_TYPE_STRING, VARSTRING = ColumnType.MYSQL_TYPE_VAR_STRING, TINYBLOB = ColumnType.MYSQL_TYPE_TINY_BLOB, BLOB = ColumnType.MYSQL_TYPE_BLOB, MEDIUMBLOB = ColumnType.MYSQL_TYPE_MEDIUM_BLOB, LONGBLOB = ColumnType.MYSQL_TYPE_LONG_BLOB, DATE = ColumnType.MYSQL_TYPE_DATE, TIME = ColumnType.MYSQL_TYPE_TIME, DATETIME = ColumnType.MYSQL_TYPE_DATETIME, YEAR = ColumnType.MYSQL_TYPE_YEAR, TIMESTAMP = ColumnType.MYSQL_TYPE_TIMESTAMP, NULL = ColumnType.MYSQL_TYPE_NULL } /* Type of column definition https://dev.mysql.com/doc/dev/mysql-server/latest/binary__log__types_8h.html#aab0df4798e24c673e7686afce436aa85 */ enum ColumnType : int { MYSQL_TYPE_DECIMAL = 0x00, MYSQL_TYPE_TINY = 0x01, MYSQL_TYPE_SHORT = 0x02, MYSQL_TYPE_LONG = 0x03, MYSQL_TYPE_FLOAT = 0x04, MYSQL_TYPE_DOUBLE = 0x05, MYSQL_TYPE_NULL = 0x06, MYSQL_TYPE_TIMESTAMP = 0x07, MYSQL_TYPE_LONGLONG = 0x08, MYSQL_TYPE_INT24 = 0x09, MYSQL_TYPE_DATE = 0x0A, MYSQL_TYPE_TIME = 0x0B, MYSQL_TYPE_DATETIME = 0x0C, MYSQL_TYPE_YEAR = 0x0D, MYSQL_TYPE_VARCHAR = 0x0F, MYSQL_TYPE_BIT = 0x10, MYSQL_TYPE_JSON = 0xF5, MYSQL_TYPE_NEWDECIMAL = 0xF6, MYSQL_TYPE_ENUM = 0xF7, MYSQL_TYPE_SET = 0xF8, MYSQL_TYPE_TINY_BLOB = 0xF9, MYSQL_TYPE_MEDIUM_BLOB = 0xFA, MYSQL_TYPE_LONG_BLOB = 0xFB, MYSQL_TYPE_BLOB = 0xFC, MYSQL_TYPE_VAR_STRING = 0xFD, MYSQL_TYPE_STRING = 0xFE, MYSQL_TYPE_GEOMETRY = 0xFF, /* Internal to MySQL Server */ MYSQL_TYPE_NEWDATE = 0x0E, MYSQL_TYPE_TIMESTAMP2 = 0x11, MYSQL_TYPE_DATETIME2 = 0x12, MYSQL_TYPE_TIME2 = 0x13 }
D
instance BAU_906_Bauer(Npc_Default) { name[0] = NAME_Bauer; guild = GIL_BAU; id = 906; voice = 7; flags = 0; npcType = NPCTYPE_AMBIENT; B_SetAttributesToChapter(self,1); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1h_Bau_Mace); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_N_Normal19,BodyTex_N,ITAR_Bau_L); Mdl_SetModelFatness(self,0); Mdl_ApplyOverlayMds(self,"Humans_Relaxed.mds"); B_GiveNpcTalents(self); B_SetFightSkills(self,15); daily_routine = Rtn_Start_906; }; func void Rtn_Start_906() { };
D
import std.stdio, std.conv, std.exception; // A class for creating and operating on rectangles struct Rect { private double left, right, top, bottom; // Initializes the coordinates of rectangle this(double x_left, double x_right, double y_top, double y_bottom) { enforce(x_left <= x_right && y_top >= y_bottom, "Error: A valid rectangle was not entered"); left = x_left; right = x_right; top = y_top; bottom = y_bottom; } string toString() { auto left = to!string(left); auto right = to!string(right); auto top = to!string(top); auto bottom = to!string(bottom); return "[" ~ left ~ ", " ~ right ~ ", " ~ top ~ ", " ~ bottom ~ "]"; // [left, right, top, bottom] } /** if opCmp returns positive value a < b False a > b True a >= b True a <= b False neg value a < b True a > b False a >= b False a <= b True> 0 value a < b False a > b False a >= b True a <= b True **/ // Comparison Operators (==, !=, >, <, >=, <=) auto opCmp(Rect r) { if (right > r.right && left < r.left && top > r.top && bottom < r.bottom) return 1; // this > other else if (right < r.right && left > r.left && top < r.top && bottom > r.bottom) return -1; // this < other else return 0; } auto opEquals(Rect r) { return (right - left == r.right - r.left && top - bottom == r.top - r.bottom); } // Takes in x-coordinate and y-coordinate. Returns true if coordinate inside this instance of Rect. private bool inside(double x, double y) { if ((bottom < y && top > y ) && (left < x && right > x)) return true; else return false; } // Takes in a Rect object and returns true if overlap exists between current instance of Rect and passed in Rect private bool overlap(Rect r) { // Any one of these conditions guarantees an overlap doesn't exist if (r.left > right || r.right < left || r.top < bottom || r.bottom > top) return false; else return true; } // Takes in a Rect object and return a new Rect object that comprises this instance of Rect and Rect r. Rect opBinary(string op)(Rect r) if (op == "|") { double sum_left = 0; double sum_right = 0; double sum_top = 0; double sum_bottom = 0; if (left <= r.left) sum_left = left; else sum_left = r.left; if (right >= r.right) sum_right = right; else sum_right = r.right; if (top >= r.top) sum_top = top; else sum_top = r.top; if (bottom <= r.bottom) sum_bottom = bottom; else sum_bottom = r.bottom; return Rect(sum_left, sum_right, sum_top, sum_bottom); } // Takes in a Rect object and returns a new Rect object that us the largest rectangle inside this Rect instance and other Rect r Rect opBinary(string op)(Rect r) if (op == "&") { enforce(overlap(r), "Error: Rectangles do not overlap--cannot make type Rect out of intersection"); double sum_left = 0; double sum_right = 0; double sum_top = 0; double sum_bottom = 0; if (left <= r.left) sum_left = r.left; else sum_left = left; if (right >= r.right) sum_right = r.right; else sum_right = right; if (top >= r.top) sum_top = r.top; else sum_top = top; if (bottom <= r.bottom) sum_bottom = r.bottom; else sum_bottom = bottom; return Rect(sum_left, sum_right, sum_top, sum_bottom); } } // Uses private method overlap inside class Rect bool overlap( Rect r1, Rect r2) { return r1.overlap(r2); }
D
/Users/shimmennobuyoshi/Desktop/MailReader/Build/Intermediates/MailReader.build/Debug-iphonesimulator/MailReaderTests.build/Objects-normal/x86_64/MailReaderTests.o : /Users/shimmennobuyoshi/Desktop/MailReader/MailReaderTests/MailReaderTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/module.map /Users/shimmennobuyoshi/Desktop/MailReader/Build/Intermediates/MailReader.build/Debug-iphonesimulator/MailReaderTests.build/Objects-normal/x86_64/MailReaderTests~partial.swiftmodule : /Users/shimmennobuyoshi/Desktop/MailReader/MailReaderTests/MailReaderTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/module.map /Users/shimmennobuyoshi/Desktop/MailReader/Build/Intermediates/MailReader.build/Debug-iphonesimulator/MailReaderTests.build/Objects-normal/x86_64/MailReaderTests~partial.swiftdoc : /Users/shimmennobuyoshi/Desktop/MailReader/MailReaderTests/MailReaderTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/Security.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/module.map
D
Long: connect-to Arg: <HOST1:PORT1:HOST2:PORT2> Help: Connect to host Added: 7.49.0 See-also: resolve header Category: connection Example: --connect-to example.com:443:example.net:8443 $URL --- For a request to the given HOST1:PORT1 pair, connect to HOST2:PORT2 instead. This option is suitable to direct requests at a specific server, e.g. at a specific cluster node in a cluster of servers. This option is only used to establish the network connection. It does NOT affect the hostname/port that is used for TLS/SSL (e.g. SNI, certificate verification) or for the application protocols. "HOST1" and "PORT1" may be the empty string, meaning "any host/port". "HOST2" and "PORT2" may also be the empty string, meaning "use the request's original host/port". A "host" specified to this option is compared as a string, so it needs to match the name used in request URL. It can be either numerical such as "127.0.0.1" or the full host name such as "example.org". This option can be used many times to add many connect rules.
D
/** URL parsing routines. Copyright: © 2012 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 dub.internal.vibecompat.inet.url; public import dub.internal.vibecompat.inet.path; version (Have_vibe_d_core) public import vibe.inet.url; else: import std.algorithm; import std.array; import std.conv; import std.exception; import std.string; import std.uri; import std.meta : AliasSeq; /** Represents a URL decomposed into its components. */ struct URL { private { string m_schema; string m_pathString; NativePath m_path; string m_host; ushort m_port; string m_username; string m_password; string m_queryString; string m_anchor; alias m_schemes = AliasSeq!("http", "https", "ftp", "spdy", "file", "sftp"); } /// Constructs a new URL object from its components. this(string schema, string host, ushort port, NativePath path) { m_schema = schema; m_host = host; m_port = port; m_path = path; m_pathString = path.toString(); } /// ditto this(string schema, NativePath path) { this(schema, null, 0, path); } /** Constructs a URL from its string representation. TODO: additional validation required (e.g. valid host and user names and port) */ this(string url_string) { auto str = url_string; enforce(str.length > 0, "Empty URL."); if( str[0] != '/' ){ auto idx = str.countUntil(':'); enforce(idx > 0, "No schema in URL:"~str); m_schema = str[0 .. idx]; str = str[idx+1 .. $]; bool requires_host = false; auto schema_parts = m_schema.split("+"); if (!schema_parts.empty && schema_parts.back.canFind(m_schemes)) { // proto://server/path style enforce(str.startsWith("//"), "URL must start with proto://..."); requires_host = true; str = str[2 .. $]; } auto si = str.countUntil('/'); if( si < 0 ) si = str.length; auto ai = str[0 .. si].countUntil('@'); sizediff_t hs = 0; if( ai >= 0 ){ hs = ai+1; auto ci = str[0 .. ai].countUntil(':'); if( ci >= 0 ){ m_username = str[0 .. ci]; m_password = str[ci+1 .. ai]; } else m_username = str[0 .. ai]; enforce(m_username.length > 0, "Empty user name in URL."); } m_host = str[hs .. si]; auto pi = m_host.countUntil(':'); if(pi > 0) { enforce(pi < m_host.length-1, "Empty port in URL."); m_port = to!ushort(m_host[pi+1..$]); m_host = m_host[0 .. pi]; } enforce(!requires_host || m_schema == "file" || m_host.length > 0, "Empty server name in URL."); str = str[si .. $]; } this.localURI = (str == "") ? "/" : str; } /// ditto static URL parse(string url_string) { return URL(url_string); } /// The schema/protocol part of the URL @property string schema() const { return m_schema; } /// ditto @property void schema(string v) { m_schema = v; } /// The path part of the URL in the original string form @property string pathString() const { return m_pathString; } /// The path part of the URL @property NativePath path() const { return m_path; } /// ditto @property void path(NativePath p) { m_path = p; auto pstr = p.toString(); m_pathString = pstr; } /// The host part of the URL (depends on the schema) @property string host() const { return m_host; } /// ditto @property void host(string v) { m_host = v; } /// The port part of the URL (optional) @property ushort port() const { return m_port; } /// ditto @property port(ushort v) { m_port = v; } /// The user name part of the URL (optional) @property string username() const { return m_username; } /// ditto @property void username(string v) { m_username = v; } /// The password part of the URL (optional) @property string password() const { return m_password; } /// ditto @property void password(string v) { m_password = v; } /// The query string part of the URL (optional) @property string queryString() const { return m_queryString; } /// ditto @property void queryString(string v) { m_queryString = v; } /// The anchor part of the URL (optional) @property string anchor() const { return m_anchor; } /// The path part plus query string and anchor @property string localURI() const { auto str = appender!string(); str.reserve(m_pathString.length + 2 + queryString.length + anchor.length); str.put(encode(path.toString())); if( queryString.length ) { str.put("?"); str.put(queryString); } if( anchor.length ) { str.put("#"); str.put(anchor); } return str.data; } /// ditto @property void localURI(string str) { auto ai = str.countUntil('#'); if( ai >= 0 ){ m_anchor = str[ai+1 .. $]; str = str[0 .. ai]; } auto qi = str.countUntil('?'); if( qi >= 0 ){ m_queryString = str[qi+1 .. $]; str = str[0 .. qi]; } m_pathString = str; m_path = NativePath(decode(str)); } /// The URL to the parent path with query string and anchor stripped. @property URL parentURL() const { URL ret; ret.schema = schema; ret.host = host; ret.port = port; ret.username = username; ret.password = password; ret.path = path.parentPath; return ret; } /// Converts this URL object to its string representation. string toString() const { import std.format; auto dst = appender!string(); dst.put(schema); dst.put(":"); auto schema_parts = schema.split("+"); if (!schema_parts.empty && schema_parts.back.canFind(m_schemes)) { dst.put("//"); } dst.put(host); if( m_port > 0 ) formattedWrite(dst, ":%d", m_port); dst.put(localURI); return dst.data; } bool startsWith(const URL rhs) const { if( m_schema != rhs.m_schema ) return false; if( m_host != rhs.m_host ) return false; // FIXME: also consider user, port, querystring, anchor etc return path.startsWith(rhs.m_path); } URL opBinary(string OP)(NativePath rhs) const if( OP == "~" ) { return URL(m_schema, m_host, m_port, m_path ~ rhs); } URL opBinary(string OP)(PathEntry rhs) const if( OP == "~" ) { return URL(m_schema, m_host, m_port, m_path ~ rhs); } void opOpAssign(string OP)(NativePath rhs) if( OP == "~" ) { m_path ~= rhs; } void opOpAssign(string OP)(PathEntry rhs) if( OP == "~" ) { m_path ~= rhs; } /// Tests two URLs for equality using '=='. bool opEquals(ref const URL rhs) const { if( m_schema != rhs.m_schema ) return false; if( m_host != rhs.m_host ) return false; if( m_path != rhs.m_path ) return false; return true; } /// ditto bool opEquals(const URL other) const { return opEquals(other); } int opCmp(ref const URL rhs) const { if( m_schema != rhs.m_schema ) return m_schema.cmp(rhs.m_schema); if( m_host != rhs.m_host ) return m_host.cmp(rhs.m_host); if( m_path != rhs.m_path ) return m_path.opCmp(rhs.m_path); return true; } } unittest { auto url = URL.parse("https://www.example.net/index.html"); assert(url.schema == "https", url.schema); assert(url.host == "www.example.net", url.host); assert(url.path == NativePath("/index.html"), url.path.toString()); url = URL.parse("http://jo.doe:password@sub.www.example.net:4711/sub2/index.html?query#anchor"); assert(url.schema == "http", url.schema); assert(url.username == "jo.doe", url.username); assert(url.password == "password", url.password); assert(url.port == 4711, to!string(url.port)); assert(url.host == "sub.www.example.net", url.host); assert(url.path.toString() == "/sub2/index.html", url.path.toString()); assert(url.queryString == "query", url.queryString); assert(url.anchor == "anchor", url.anchor); url = URL("http://localhost")~NativePath("packages"); assert(url.toString() == "http://localhost/packages", url.toString()); url = URL("http://localhost/")~NativePath("packages"); assert(url.toString() == "http://localhost/packages", url.toString()); url = URL.parse("dub+https://code.dlang.org/"); assert(url.host == "code.dlang.org"); assert(url.toString() == "dub+https://code.dlang.org/"); assert(url.schema == "dub+https"); }
D
instance DIA_ENGROM_EXIT(C_INFO) { npc = vlk_4131_engrom; nr = 999; condition = dia_engrom_exit_condition; information = dia_engrom_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_engrom_exit_condition() { if(KAPITEL < 3) { return TRUE; }; }; func void dia_engrom_exit_info() { b_npcclearobsessionbydmt(self); }; instance DIA_ENGROM_HALLO(C_INFO) { npc = vlk_4131_engrom; nr = 5; condition = dia_engrom_hallo_condition; information = dia_engrom_hallo_info; description = "Как дела?"; }; func int dia_engrom_hallo_condition() { if(KAPITEL <= 3) { return TRUE; }; }; func void dia_engrom_hallo_info() { AI_Output(other,self,"DIA_Engrom_HALLO_15_00"); //Как дела? AI_Output(self,other,"DIA_Engrom_HALLO_12_01"); //Паршиво! AI_Output(other,self,"DIA_Engrom_HALLO_15_02"); //Ммм! AI_Output(self,other,"DIA_Engrom_HALLO_12_03"); //А что еще я могу сказать? Изо дня в день я вижу только эту чертову реку. AI_Output(self,other,"DIA_Engrom_HALLO_12_04"); //Орки шныряют на левом берегу, бандиты - на правом, и каждый день я ем только мясо луркеров. Я уже не могу выносить все это! }; instance DIA_ENGROM_WHATABOUTLEAVING(C_INFO) { npc = vlk_4131_engrom; nr = 6; condition = dia_engrom_whataboutleaving_condition; information = dia_engrom_whataboutleaving_info; description = "А ты не думал о том, чтобы выбраться отсюда?"; }; func int dia_engrom_whataboutleaving_condition() { if(Npc_KnowsInfo(other,dia_engrom_hallo) && (KAPITEL <= 3)) { return TRUE; }; }; func void dia_engrom_whataboutleaving_info() { AI_Output(other,self,"DIA_Engrom_WhatAboutLeaving_15_00"); //А ты не думал о том, чтобы выбраться отсюда? AI_Output(self,other,"DIA_Engrom_WhatAboutLeaving_12_01"); //Да, конечно. С этим нет никаких проблем. AI_Output(self,other,"DIA_Engrom_WhatAboutLeaving_12_02"); //Сначала мне нужно прорубить себе дорогу через орды орков, поприветствовать всех остальных монстров, которых там тоже немало, а затем прошмыгнуть через Проход! AI_Output(self,other,"DIA_Engrom_WhatAboutLeaving_12_03"); //Что может быть легче! AI_Output(other,self,"DIA_Engrom_WhatAboutLeaving_15_04"); //Я же пришел сюда. AI_Output(self,other,"DIA_Engrom_WhatAboutLeaving_12_05"); //Ты хочешь сказать мне, что ты только что прошел через Проход? AI_Output(other,self,"DIA_Engrom_WhatAboutLeaving_15_06"); //Ну, в общем да! AI_Output(self,other,"DIA_Engrom_WhatAboutLeaving_12_07"); //Значит, тебе повезло. Пока вокруг творится такой бардак, я с места не сдвинусь. }; instance DIA_ENGROM_JAGD(C_INFO) { npc = vlk_4131_engrom; nr = 6; condition = dia_engrom_jagd_condition; information = dia_engrom_jagd_info; permanent = TRUE; description = "Как охота?"; }; func int dia_engrom_jagd_condition() { if(Npc_KnowsInfo(other,dia_engrom_hallo) && (KAPITEL <= 3)) { return TRUE; }; }; func void dia_engrom_jagd_info() { b_wasmachtjagd(); AI_Output(self,other,"DIA_Engrom_Jagd_12_01"); //Охота - моя единственная отрада. Но мне бы хотелось хоть иногда видеть нормальную цель, а не этих отвратительных луркеров. }; instance DIA_ENGROM_KAP3_EXIT(C_INFO) { npc = vlk_4131_engrom; nr = 999; condition = dia_engrom_kap3_exit_condition; information = dia_engrom_kap3_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_engrom_kap3_exit_condition() { if(KAPITEL == 3) { return TRUE; }; }; func void dia_engrom_kap3_exit_info() { b_npcclearobsessionbydmt(self); }; instance DIA_ENGROM_KAP4_EXIT(C_INFO) { npc = vlk_4131_engrom; nr = 999; condition = dia_engrom_kap4_exit_condition; information = dia_engrom_kap4_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_engrom_kap4_exit_condition() { if(KAPITEL == 4) { return TRUE; }; }; func void dia_engrom_kap4_exit_info() { b_npcclearobsessionbydmt(self); }; instance DIA_ENGROM_B_NPCOBSESSEDBYDMT(C_INFO) { npc = vlk_4131_engrom; nr = 32; condition = dia_engrom_b_npcobsessedbydmt_condition; information = dia_engrom_b_npcobsessedbydmt_info; description = "Все в порядке?"; }; func int dia_engrom_b_npcobsessedbydmt_condition() { if((NPCOBSESSEDBYDMT_ENGROM == FALSE) && (KAPITEL >= 4)) { return TRUE; }; }; func void dia_engrom_b_npcobsessedbydmt_info() { MIS_TABIN_LOOKFORENGROM = LOG_SUCCESS; b_npcobsessedbydmt(self); }; instance DIA_ENGROM_BESSEN(C_INFO) { npc = vlk_4131_engrom; nr = 55; condition = dia_engrom_bessen_condition; information = dia_engrom_bessen_info; permanent = TRUE; description = "Ты одержим Злом."; }; func int dia_engrom_bessen_condition() { if((NPCOBSESSEDBYDMT_ENGROM == TRUE) && (NPCOBSESSEDBYDMT == FALSE) && (KAPITEL >= 4)) { return TRUE; }; }; func void dia_engrom_bessen_info() { AI_Output(other,self,"DIA_Engrom_BESSEN_15_00"); //Ты одержим Злом. AI_Output(other,self,"DIA_Engrom_BESSEN_15_01"); //Давай, я помогу тебе. AI_Output(self,other,"DIA_Engrom_BESSEN_12_02"); //(вопит) Не трогай меня! b_npcclearobsessionbydmt(self); Npc_SetTarget(self,other); self.aivar[AIV_INVINCIBLE] = FALSE; other.aivar[AIV_INVINCIBLE] = FALSE; AI_StartState(self,zs_flee,0,""); }; instance DIA_ENGROM_KAP5_EXIT(C_INFO) { npc = vlk_4131_engrom; nr = 999; condition = dia_engrom_kap5_exit_condition; information = dia_engrom_kap5_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_engrom_kap5_exit_condition() { if(KAPITEL == 5) { return TRUE; }; }; func void dia_engrom_kap5_exit_info() { b_npcclearobsessionbydmt(self); }; instance DIA_ENGROM_KAP6_EXIT(C_INFO) { npc = vlk_4131_engrom; nr = 999; condition = dia_engrom_kap6_exit_condition; information = dia_engrom_kap6_exit_info; permanent = TRUE; description = DIALOG_ENDE; }; func int dia_engrom_kap6_exit_condition() { if(KAPITEL == 6) { return TRUE; }; }; func void dia_engrom_kap6_exit_info() { b_npcclearobsessionbydmt(self); }; instance DIA_ENGROM_PICKPOCKET(C_INFO) { npc = vlk_4131_engrom; nr = 900; condition = dia_engrom_pickpocket_condition; information = dia_engrom_pickpocket_info; permanent = TRUE; description = PICKPOCKET_20; }; func int dia_engrom_pickpocket_condition() { return c_beklauen(10,5); }; func void dia_engrom_pickpocket_info() { Info_ClearChoices(dia_engrom_pickpocket); Info_AddChoice(dia_engrom_pickpocket,DIALOG_BACK,dia_engrom_pickpocket_back); Info_AddChoice(dia_engrom_pickpocket,DIALOG_PICKPOCKET,dia_engrom_pickpocket_doit); }; func void dia_engrom_pickpocket_doit() { b_beklauen(); Info_ClearChoices(dia_engrom_pickpocket); }; func void dia_engrom_pickpocket_back() { Info_ClearChoices(dia_engrom_pickpocket); };
D
/******************************************************************************* Dht client request notifier Copyright: Copyright (c) 2010-2017 dunnhumby Germany GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. *******************************************************************************/ module dhtproto.client.legacy.internal.request.notifier.RequestNotification; /******************************************************************************* Imports *******************************************************************************/ import swarm.client.request.notifier.IRequestNotification; import swarm.Const; import dhtproto.client.legacy.DhtConst; import ocean.core.Verify; /******************************************************************************* Request notification *******************************************************************************/ public class RequestNotification : IRequestNotification { /*************************************************************************** Constructor. Params: command = command of request to notify about context = context of request to notify about ***************************************************************************/ public this ( ICommandCodes.Value command, Context context ) { verify((command in DhtConst.Command()) !is null); super(DhtConst.Command(), DhtConst.Status(), command, context); } }
D
produce a literary work communicate or express by writing have (one's written work) issued for publication communicate (with) in writing communicate by letter write music mark or trace on a surface record data on a computer write or name the letters that comprise the conventionally accepted form of (a word or part of a word create code, write a computer program set down in writing in any of various ways systematically collected and written down written as for a film or play or broadcast
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 310.200012 40.5999985 4.69999981 120.900002 56 59 -33.2000008 151.100006 241 8.60000038 8.60000038 1 extrusives 306.399994 74.1999969 4.30000019 0 52 55 -31.8999996 151.300003 8785 5.9000001 5.9000001 1 extrusives, basalts 333.200012 64.6999969 6.5999999 0 52 55 -31.8999996 151.300003 8786 10.3000002 11.6999998 1 extrusives, basalts 320 63 9 15.5 34 65 -38 145.5 1854 16 16 0.483870968 extrusives 314 70 6 132 48 50 -33.2999992 151.199997 1844 9 10 1 intrusives, basalt 302.700012 66.8000031 6.80000019 35 34 65 -38 145.5 1819 10.8000002 12.1000004 0.483870968 extrusives 305.600006 70.5 3.5999999 48.5 52 54 -32 151.399994 1892 5.30000019 5.30000019 1 extrusives 298 58.7999992 2.4000001 0 35 65 -27 141.5 1972 3.79999995 3.79999995 0.5 sediments, weathered 314 66 5.5999999 161 48 50 -33.2999992 151.199997 1969 8.5 9.80000019 1 intrusives, basalt 310.899994 68.5 0 0 40 60 -35 150 1927 5.19999981 5.19999981 0.75 extrusives, basalts 278 66 2.0999999 333 48 50 -33.2999992 151.199997 1596 2.5999999 3.29999995 1 intrusives, basalt 318 37 6.80000019 41 56 59 -33.2000008 151.100006 1597 13.1999998 13.3999996 1 intrusives
D
/* Copyright (c) 2013 Andrey Penechko Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license the "Software" to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module anchovy.core.math; import anchovy.core.types; pure ivec2 max(ivec2 a, ivec2 b) { return ivec2(a.x > b.x ? a.x : b.x, a.y > b.y ? a.y : b.y); } pure int max(int a, int b) { return a > b ? a : b; }
D
/* Minyae - Auren */ //#1 CHAIN IF ~!StateCheck("QI#Mi",CD_STATE_NOTVALID) InParty("QI#Mi") CombatCounter(0) !See([ENEMY]) InParty("K#Auren") !Dead("K#Auren") See("K#Auren") !StateCheck("K#Auren",CD_STATE_NOTVALID) Global("K#AurenMinyae","GLOBAL",0)~ THEN QI#MIB MinyaeAuren1 @0 /*Must you always be so formal?*/ DO ~SetGlobal("K#AurenMinyae","GLOBAL",1)~ == K#AurenB @1 /*What do you mean, Miss Beaurin?*/ == QI#MIB @2 /*That. You just said it again.*/ == K#AurenB @3 /*I’m not sure I understand what you are getting at.*/ == QI#MIB @4 /*You referred to me as “Miss”. Why?*/ == K#AurenB @5 /*Not everything has a purpose behind it, but what’s so wrong with that? It could be my sign of respect to you.*/ == QI#MIB @6 /*Is it?*/ == K#AurenB @7 /*(winks) Who knows, Miss Beaurin.*/ EXIT //#2 CHAIN IF ~!StateCheck("QI#Mi",CD_STATE_NOTVALID) InParty("QI#Mi") CombatCounter(0) !See([ENEMY]) InParty("K#Auren") !Dead("K#Auren") See("QI#Mi") !StateCheck("K#Auren",CD_STATE_NOTVALID) Global("K#AurenMinyae","GLOBAL",1)~ THEN K#AurenB MinyaeAuren2 @8 /*I hear you used to steal from traveling merchant caravans.*/ DO ~SetGlobal("K#AurenMinyae","GLOBAL",2)~ == QI#MIB @9 /*And?*/ == K#AurenB @10 /*My father was a traveling merchant.*/ == QI#MIB @11 /*I don't see how this concerns me.*/ == K#AurenB @12 /*You know that merchants have families to feed too, right?*/ == QI#MIB @13 /*Again, I don’t see how this concerns me. */ == QI#MIB @14 /*But in case you were wondering, I never killed any of the merchants I robbed. Doing that would have exposed me and my location at some point.*/ == K#AurenB @15 /*Well, that’s good to hear...I think. It still doesn’t justify you stealing from then though.*/ == QI#MIB @16 /*What I had to do to survive shouldn’t matter to you, Auren.*/ == QI#MIB @17 /*You do what you have to do to survive, regardless of what others may think.*/ EXIT //#3 CHAIN IF ~!StateCheck("QI#Mi",CD_STATE_NOTVALID) InParty("QI#Mi") CombatCounter(0) !See([ENEMY]) InParty("K#Auren") !Dead("K#Auren") See("QI#Mi") !StateCheck("K#Auren",CD_STATE_NOTVALID) Global("K#AurenMinyae","GLOBAL",2)~ THEN K#AurenB MinyaeAuren3 @18 /*Going back to our previous question, if you remember it. I am not saying I agree with what you did but I can respect someone’s determination.*/ DO ~SetGlobal("K#AurenMinyae","GLOBAL",3)~ == QI#MIB @19 /*I don’t need your respect, but...thank you.*/ == K#AurenB @20 /*Oh wow, I didn’t realize you were capable of thanking anybody.*/ == K#AurenB @21 /*But I guess there’s a first for everyone!*/ EXIT //#4 CHAIN IF ~!StateCheck("QI#Mi",CD_STATE_NOTVALID) InParty("QI#Mi") InParty("Nalia") CombatCounter(0) !See([ENEMY]) InParty("K#Auren") !Dead("K#Auren") See("K#Auren") !StateCheck("K#Auren",CD_STATE_NOTVALID) GlobalGT("K#BanterO","GLOBAL",5) Global("K#AurenMinyaeRom","GLOBAL",0)~ THEN QI#MIB MinyaeAurenRom1 @22 /*I find you relationship with the whiny noble most peculiar.*/ DO ~SetGlobal("K#AurenMinyaeRom","GLOBAL",1)~ == K#AurenB @23 /*Hey, don’t refer to Miss De’Arnise like that. Be careful what you say about her.*/ == QI#MIB @24 /*Does the thought ever cross your mind that she is using you because she is an entitled brat and you are a lowly commoner?*/ == QI#MIB @25 /*Or perhaps it is the other way around? Maybe you are seducing her in order to make a name for yourself. That is the easy way to wealth these days, isn’t it?*/ == K#AurenB @26 /*You're joking, right?*/ == K#AurenB @27 /*You must be. I don’t think anyone in their right mind would come to a ridiculous conclusion like that.*/ == K#AurenB @28 /*You know, I was in a fairly good mood before you decided to talk, but I’ll let this conversation between us slide just this once.*/ == K#AurenB @29 /*If I hear it again, I swear you will regret it.*/ EXIT
D
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Multicast.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Reactive.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Errors.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Event.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Multicast~partial.swiftmodule : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Reactive.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Errors.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Event.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Multicast~partial.swiftdoc : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Deferred.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Deprecated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Enumerated.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Maybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debounce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Reduce.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Range.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Merge.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Take.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Cancelable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/GroupedObservable.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Single.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AsSingle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sample.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Throttle.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ConnectableObservableType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObserverType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Create.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Generate.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Queue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Reactive.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Materialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/AddRef.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DataStructures/Bag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Using.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Debug.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Catch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Switch.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/StartWith.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/Lock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/RecursiveLock.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Sink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Optional.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Scan.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Darwin.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Do.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Map.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Skip.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Producer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Buffer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timer.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DeprecationWarner.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Filter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Never.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/AnyObserver.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Error.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Disposables/Disposables.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Errors.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ElementAt.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Concat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Repeat.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Event.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/TakeLast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Multicast.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/First.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Just.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Timeout.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Window.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Rx.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/RxMutableBox.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/Platform/Platform.Linux.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/GroupBy.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Delay.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/ToArray.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Empty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Metal.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/Target\ Support\ Files/RxSwift/RxSwift-umbrella.h /Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.3.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes
D
module nanogui.popupbutton; /* nanogui/popupbutton.h -- Button which launches a popup widget NanoGUI was developed by Wenzel Jakob <wenzel.jakob@epfl.ch>. The widget drawing code is based on the NanoVG demo application by Mikko Mononen. All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE.txt file. */ import nanogui.button; import nanogui.popup; import nanogui.entypo; import nanogui.widget; import nanogui.window; import nanogui.common; /** * Button which launches a popup widget. * * Remark: * This class overrides `nanogui.Widget.mIconExtraScale`` to be `0.8f`, * which affects all subclasses of this Widget. Subclasses must explicitly * set a different value if needed (e.g., in their constructor). */ class PopupButton : Button { public: this(Widget parent, string caption = "Untitled", int buttonIcon = 0) { super(parent, caption, buttonIcon); mChevronIcon = dchar.max; flags(Flags.ToggleButton | Flags.PopupButton); Window parentWindow = window; mPopup = new Popup(parentWindow.parent, window); mPopup.size(Vector2i(320, 250)); mPopup.visible(false); mIconExtraScale = 0.8f;// widget override } final void chevronIcon(int icon) { mChevronIcon = icon; } final dchar chevronIcon() const { return mChevronIcon; } final void side(Popup.Side popupSide) { mPopup.side = popupSide; updateAnchor(); } final Popup.Side side() const { return mPopup.side(); } final Popup popup() { return mPopup; } final auto popup() const { return mPopup; } final void PopupOnHover(bool enable) { mPopupOnHover = enable; } final bool PopupOnHover() const { return mPopupOnHover; } override bool mouseEnterEvent(Vector2i p, bool enter) { if (mPopupOnHover) { mPushed = enter; } return false; } override void draw(NVGContext nvg) { if (!mEnabled && mPushed) mPushed = false; mPopup.visible(mPushed); Button.draw(nvg); if (mChevronIcon != dchar.init) { auto icon = mChevronIcon; auto textColor = mTextColor.w == 0 ? mTheme.mTextColor : mTextColor; nvg.fontSize((mFontSize < 0 ? mTheme.mButtonFontSize : mFontSize) * icon_scale()); nvg.fontFace("icons"); nvg.fillColor(mEnabled ? textColor : mTheme.mDisabledTextColor); auto algn = NVGTextAlign(); algn.left = true; algn.middle = true; nvg.textAlign(algn); if (icon == dchar.max) { final switch (mPopup.side) { case Popup.Side.Left: icon = mTheme.mPopupChevronLeftIcon; break; case Popup.Side.Right: icon = mTheme.mPopupChevronRightIcon; break; case Popup.Side.Top: icon = mTheme.mTextBoxUpIcon; break; case Popup.Side.Bottom: icon = mTheme.mTextBoxDownIcon; break; } } float iw = nvg.textBounds(0, 0, [icon], null); auto iconPos = Vector2f(0, mPos.y + mSize.y * 0.5f - 1); if (mPopup.side == Popup.Side.Left) iconPos[0] = mPos.x + 8; else iconPos[0] = mPos.x + mSize.x - iw - 8; nvg.text(iconPos.x, iconPos.y, [icon]); } } override Vector2i preferredSize(NVGContext nvg) const { return Button.preferredSize(nvg) + Vector2i(15, 0); } override void performLayout(NVGContext nvg) { Widget.performLayout(nvg); updateAnchor(); } protected void updateAnchor() { final switch (mPopup.side) { case Popup.Side.Left: mPopup.anchorPos(Vector2i(position.x - 15, position.y + mSize.y / 2)); break; case Popup.Side.Right: mPopup.anchorPos(Vector2i(position.x + width + 15, position.y + mSize.y / 2)); break; case Popup.Side.Top: mPopup.anchorPos(Vector2i(position.x + width / 2, position.y - 15)); break; case Popup.Side.Bottom: mPopup.anchorPos(Vector2i(position.x + width / 2, position.y + height + 15)); break; } } //virtual void save(Serializer &s) const override; //virtual bool load(Serializer &s) override; protected: Popup mPopup; dchar mChevronIcon; bool mPopupOnHover; }
D
module spine.util.init; import std.conv : to; @property auto init(Target, Source = Target)() { return Source.init.to!Target; } @property void init(Target, Source = Target)(out Target target) { target = init!(Target, Source); } unittest { int n = init!bool; assert(n == 0); long l; l.init!(long, uint); assert(l == uint.init); auto boolean = init!(string, bool); assert(is(typeof(boolean) == string)); assert(boolean == "false"); class Foo {} //test subject auto nullFoo = init!(string, Foo); assert(is(typeof(nullFoo) == string)); assert(nullFoo == "null"); }
D
module android.java.android.view.ViewParent; public import android.java.android.view.ViewParent_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ViewParent; import import2 = android.java.android.view.ViewParent; import import9 = android.java.java.lang.Class; import import5 = android.java.android.view.ActionMode;
D
void main() { runSolver(); } void problem() { auto N = scan!long; auto solve() { // divisors of n^^2 auto squareDivisors = new long[][](N + 1, 0); foreach(n; 1..N + 1) { squareDivisors[n] ~= 1; foreach(ps; n.primeFactoring.group) { foreach(add; squareDivisors[n]) { foreach(_; 0..ps[1]*2) { add *= ps[0]; if (add > N) break; else squareDivisors[n] ~= add; } } } } long ans; foreach(n, divisors; squareDivisors) { const sq = n^^2; ans += divisors.count!(d => sq / d <= N); } 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"]; // ----------------------------------------------- T[] primeFactoring(T)(T target) { T s = target.to!float.sqrt().floor.to!T; T num = target; T[] primes; for (T i = 2; i <= s; i++) { if (num % i != 0) continue; while (num%i == 0) { num /= i; primes ~= i; } } if (num > s) primes ~= num; return primes; }
D
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Error/Abort.swift.o : /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/FileIO.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionData.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Thread.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/URLEncoded.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Deprecated.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/ServeCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/RoutesCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/BootCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Method.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionCache.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ResponseCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/RequestCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/FileMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/DateMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Response.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/AnyResponse.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServerConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/HTTPMethod+String.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Path.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Request+Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Application.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/RouteCollection.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Function.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/VaporProvider.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Responder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/BasicResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ApplicationResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/PlaintextEncoder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/ParametersContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/QueryContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/EngineRouter.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/Server.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/RunningServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Error.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Logging/Logger+LogError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/AbortError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Sessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/MemorySessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentCoders.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Exports.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/HTTPStatus.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Redirect.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/SingleValueGet.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Config+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Services+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/Client.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/FoundationClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Abort.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/Request.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/View/Vapor+View.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOHTTP1.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOOpenSSL.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOTLS.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Command.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/URLEncodedForm.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Validation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/WebSocket.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOWebSocket.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/TemplateKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOSHA1/include/c_nio_sha1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/asn1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/tls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dtls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs12.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl23.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509v3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/md5.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs7.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509.h /usr/local/Cellar/libressl/2.7.4/include/openssl/sha.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rsa.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOZlib/include/c_nio_zlib.h /usr/local/Cellar/libressl/2.7.4/include/openssl/obj_mac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/hmac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ec.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/cpp_magic.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rand.h /usr/local/Cellar/libressl/2.7.4/include/openssl/conf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslconf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/lhash.h /usr/local/Cellar/libressl/2.7.4/include/openssl/stack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/safestack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl.h /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl.git-8502154137117992337/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bn.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIODarwin/include/c_nio_darwin.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bio.h /usr/local/Cellar/libressl/2.7.4/include/openssl/crypto.h /usr/local/Cellar/libressl/2.7.4/include/openssl/srtp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/evp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/2.7.4/include/openssl/buffer.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/2.7.4/include/openssl/err.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/c-atomics.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/2.7.4/include/openssl/objects.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslv.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOLinux/include/c_nio_linux.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509_vfy.h /Users/nice/HelloWord/.build/checkouts/swift-nio-zlib-support.git--6556802241718767980/module.modulemap /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl-support.git--3664958863524920767/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBase32/include/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBcrypt/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Abort~partial.swiftmodule : /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/FileIO.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionData.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Thread.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/URLEncoded.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Deprecated.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/ServeCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/RoutesCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/BootCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Method.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionCache.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ResponseCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/RequestCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/FileMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/DateMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Response.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/AnyResponse.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServerConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/HTTPMethod+String.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Path.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Request+Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Application.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/RouteCollection.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Function.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/VaporProvider.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Responder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/BasicResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ApplicationResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/PlaintextEncoder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/ParametersContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/QueryContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/EngineRouter.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/Server.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/RunningServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Error.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Logging/Logger+LogError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/AbortError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Sessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/MemorySessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentCoders.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Exports.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/HTTPStatus.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Redirect.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/SingleValueGet.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Config+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Services+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/Client.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/FoundationClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Abort.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/Request.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/View/Vapor+View.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOHTTP1.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOOpenSSL.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOTLS.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Command.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/URLEncodedForm.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Validation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/WebSocket.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOWebSocket.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/TemplateKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOSHA1/include/c_nio_sha1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/asn1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/tls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dtls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs12.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl23.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509v3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/md5.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs7.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509.h /usr/local/Cellar/libressl/2.7.4/include/openssl/sha.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rsa.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOZlib/include/c_nio_zlib.h /usr/local/Cellar/libressl/2.7.4/include/openssl/obj_mac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/hmac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ec.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/cpp_magic.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rand.h /usr/local/Cellar/libressl/2.7.4/include/openssl/conf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslconf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/lhash.h /usr/local/Cellar/libressl/2.7.4/include/openssl/stack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/safestack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl.h /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl.git-8502154137117992337/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bn.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIODarwin/include/c_nio_darwin.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bio.h /usr/local/Cellar/libressl/2.7.4/include/openssl/crypto.h /usr/local/Cellar/libressl/2.7.4/include/openssl/srtp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/evp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/2.7.4/include/openssl/buffer.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/2.7.4/include/openssl/err.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/c-atomics.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/2.7.4/include/openssl/objects.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslv.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOLinux/include/c_nio_linux.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509_vfy.h /Users/nice/HelloWord/.build/checkouts/swift-nio-zlib-support.git--6556802241718767980/module.modulemap /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl-support.git--3664958863524920767/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBase32/include/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBcrypt/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Abort~partial.swiftdoc : /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/FileIO.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionData.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Thread.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/URLEncoded.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Deprecated.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/ServeCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/RoutesCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/BootCommand.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Method.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionCache.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ResponseCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/RequestCodable.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/Middleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/CORSMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/FileMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/DateMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/ErrorMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+LazyMiddleware.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Response.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/AnyResponse.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Middleware/MiddlewareConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServerConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/SessionsConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentConfig.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/HTTPMethod+String.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Path.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/JSONCoder+Custom.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Request+Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Session.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Application.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/RouteCollection.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Function.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/VaporProvider.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Responder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/BasicResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/ApplicationResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketResponder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/PlaintextEncoder.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/HTTPMessageContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/ParametersContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/QueryContainer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/EngineRouter.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/Server.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/NIOServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Server/RunningServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketServer.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Error.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Logging/Logger+LogError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/AbortError.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/Sessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/KeyedCacheSessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Sessions/MemorySessions.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/ContentCoders.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Utilities/Exports.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/HTTPStatus.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Response/Redirect.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/SingleValueGet.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Config+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Commands/CommandConfig+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Services/Services+Default.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/Client.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Client/FoundationClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/WebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/WebSocket/NIOWebSocketClient.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Routing/Router+Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Content/Content.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Error/Abort.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/Request/Request.swift /Users/nice/HelloWord/.build/checkouts/vapor.git-950337452186757751/Sources/Vapor/View/Vapor+View.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOHTTP1.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOOpenSSL.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIO.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOTLS.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Async.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Command.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Service.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Logging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/COperatingSystem.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/URLEncodedForm.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Validation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOConcurrencyHelpers.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Bits.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOFoundationCompat.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/WebSocket.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/NIOWebSocket.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/TemplateKit.swiftmodule /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOSHA1/include/c_nio_sha1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/asn1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/tls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dtls1.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs12.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem2.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl23.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509v3.h /usr/local/Cellar/libressl/2.7.4/include/openssl/md5.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pkcs7.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509.h /usr/local/Cellar/libressl/2.7.4/include/openssl/sha.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdsa.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rsa.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOZlib/include/c_nio_zlib.h /usr/local/Cellar/libressl/2.7.4/include/openssl/obj_mac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/hmac.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ec.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/cpp_magic.h /usr/local/Cellar/libressl/2.7.4/include/openssl/rand.h /usr/local/Cellar/libressl/2.7.4/include/openssl/conf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslconf.h /usr/local/Cellar/libressl/2.7.4/include/openssl/dh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ecdh.h /usr/local/Cellar/libressl/2.7.4/include/openssl/lhash.h /usr/local/Cellar/libressl/2.7.4/include/openssl/stack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/safestack.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ssl.h /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl.git-8502154137117992337/Sources/CNIOOpenSSL/include/c_nio_openssl.h /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CCryptoOpenSSL/include/c_crypto_openssl.h /usr/local/Cellar/libressl/2.7.4/include/openssl/pem.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bn.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIODarwin/include/c_nio_darwin.h /usr/local/Cellar/libressl/2.7.4/include/openssl/bio.h /usr/local/Cellar/libressl/2.7.4/include/openssl/crypto.h /usr/local/Cellar/libressl/2.7.4/include/openssl/srtp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/evp.h /usr/local/Cellar/libressl/2.7.4/include/openssl/ossl_typ.h /usr/local/Cellar/libressl/2.7.4/include/openssl/buffer.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOHTTPParser/include/c_nio_http_parser.h /usr/local/Cellar/libressl/2.7.4/include/openssl/err.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOAtomics/include/c-atomics.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslfeatures.h /usr/local/Cellar/libressl/2.7.4/include/openssl/objects.h /usr/local/Cellar/libressl/2.7.4/include/openssl/opensslv.h /Users/nice/HelloWord/.build/checkouts/swift-nio.git-5005363973595484456/Sources/CNIOLinux/include/c_nio_linux.h /usr/local/Cellar/libressl/2.7.4/include/openssl/x509_vfy.h /Users/nice/HelloWord/.build/checkouts/swift-nio-zlib-support.git--6556802241718767980/module.modulemap /Users/nice/HelloWord/.build/checkouts/swift-nio-ssl-support.git--3664958863524920767/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOSHA1.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CCryptoOpenSSL.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOZlib.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIODarwin.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOHTTPParser.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOAtomics.build/module.modulemap /Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/CNIOLinux.build/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBase32/include/module.modulemap /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/CBcrypt/include/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module taggedunion; struct BorrowedRef(T) { this(T* val, int *cnt) { this.val = val; this.count = cnt; ++(*this.count); } private int *count; private T *val; @disable this(this); // disable copying ~this() { --(*count); } void opAssign(V)(auto ref V v) { *val = v; } // bug 16426 @property ref T _get() { return *val; } alias _get this; } struct Tagged(T1, T2) { private union Values { T1 t1; T2 t2; } private { Values values; bool tag; int borrowers; enum useT1 = false; enum useT2 = true; } this(this) { borrowers = 0;} @safe: this(T1 t1) { setTag(useT1); accessValue!useT1() = t1; } this(T2 t2) { setTag(useT2); accessValue!useT2() = t2; } @trusted private @property accessValue(bool expectedTag)() { import std.exception; enforce(tag == expectedTag, "attempt to get wrong type from tagged union of " ~ T1.stringof ~ ", " ~ T2.stringof); static if(expectedTag == useT2) return BorrowedRef!T2(&values.t2, &borrowers); else return BorrowedRef!T1(&values.t1, &borrowers); } private void setTag(bool newTag) { if(tag != newTag) { import std.exception; enforce(borrowers == 0, "Cannot change type when someone has a reference"); if(tag == useT2) destroy(accessValue!useT2._get); else destroy(accessValue!useT1._get); } () @trusted { tag = newTag; } (); } void opAssign(T1 t1) { setTag(useT1); accessValue!useT1() = t1; } void opAssign(T2 t2) { setTag(useT2); accessValue!useT2() = t2; } ~this() { setTag(!tag); } auto get(T)() if (is(T == T1) || is(T == T2)) { static if(is(T == T2)) return accessValue!useT2; else return accessValue!useT1; } } @safe unittest { import std.exception : assertThrown; alias TU = Tagged!(int, int *); auto tu = TU(1); assert(tu.get!int == 1); assertThrown(tu.get!(int *)); int *x = new int(1); tu = x; assert(tu.get!(int *) == x); assertThrown(tu.get!int); }
D
/Users/NMB12/Documents/caregiverapp/DerivedData/ReMindr/Build/Intermediates/ReMindr.build/Debug-iphoneos/ReMindr.build/Objects-normal/arm64/AddReminderViewController.o : /Users/NMB12/Documents/caregiverapp/ReMindr/CustomPointAnnotation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStationDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceWebDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCellCollectionViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionAddPhotoHandler.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouritesTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reminder.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeoSettingsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FastestRouteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AppDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContact.swift /Users/NMB12/Documents/caregiverapp/ReMindr/NotificationTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Photo.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddReminderViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddLocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Geofence.swift /Users/NMB12/Documents/caregiverapp/ReMindr/photoInfoViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddContactViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/LocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/DetailViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/MapViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ViewFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EditFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteOnlyViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContactsTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ZoomTransitioningDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reachability.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeofencingViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Favourite.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Panic.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicMapViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuthVersion.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUser.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthErrors.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/Firebase.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreData.swiftmodule /Users/NMB12/Documents/caregiverapp/DerivedData/ReMindr/Build/Intermediates/ReMindr.build/Debug-iphoneos/ReMindr.build/Objects-normal/arm64/AddReminderViewController~partial.swiftmodule : /Users/NMB12/Documents/caregiverapp/ReMindr/CustomPointAnnotation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStationDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceWebDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCellCollectionViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionAddPhotoHandler.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouritesTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reminder.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeoSettingsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FastestRouteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AppDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContact.swift /Users/NMB12/Documents/caregiverapp/ReMindr/NotificationTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Photo.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddReminderViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddLocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Geofence.swift /Users/NMB12/Documents/caregiverapp/ReMindr/photoInfoViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddContactViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/LocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/DetailViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/MapViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ViewFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EditFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteOnlyViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContactsTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ZoomTransitioningDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reachability.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeofencingViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Favourite.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Panic.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicMapViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuthVersion.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUser.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthErrors.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/Firebase.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreData.swiftmodule /Users/NMB12/Documents/caregiverapp/DerivedData/ReMindr/Build/Intermediates/ReMindr.build/Debug-iphoneos/ReMindr.build/Objects-normal/arm64/AddReminderViewController~partial.swiftdoc : /Users/NMB12/Documents/caregiverapp/ReMindr/CustomPointAnnotation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStationDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceWebDetailsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCellCollectionViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PhotoCollectionAddPhotoHandler.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouritesTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reminder.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeoSettingsViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FastestRouteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AppDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContact.swift /Users/NMB12/Documents/caregiverapp/ReMindr/NotificationTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Photo.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddReminderViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddLocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Geofence.swift /Users/NMB12/Documents/caregiverapp/ReMindr/photoInfoViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PoliceStation.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/AddContactViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/LocationViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/DetailViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/MapViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ViewFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EditFavouriteViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/FavouriteOnlyViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyContactsTableViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/ZoomTransitioningDelegate.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Reachability.swift /Users/NMB12/Documents/caregiverapp/ReMindr/GeofencingViewController.swift /Users/NMB12/Documents/caregiverapp/ReMindr/EmergencyTableViewCell.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Favourite.swift /Users/NMB12/Documents/caregiverapp/ReMindr/Panic.swift /Users/NMB12/Documents/caregiverapp/ReMindr/PanicMapViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/MapKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreLocation.swiftmodule /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRLoggerLevel.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Headers/FirebaseCore.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseCore/Frameworks/FirebaseCore.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRUserPropertyNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRParameterNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIREventNames.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalytics+AppDelegate.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIROptions.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRApp.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FIRAnalyticsConfiguration.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Headers/FirebaseAnalytics.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAnalytics/Frameworks/FirebaseAnalytics.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuthVersion.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUserInfo.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRUser.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthCredential.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuthErrors.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRTwitterAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGoogleAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRGitHubAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIRFacebookAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FIREmailPasswordAuthProvider.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Headers/FirebaseAuth.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseAuth/Frameworks/FirebaseAuth.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRServerValue.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRTransactionResult.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRMutableData.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDataEventType.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseQuery.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabaseReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FIRDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Headers/FirebaseDatabase.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseDatabase/Frameworks/FirebaseDatabase.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FIRInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseInstanceID/Frameworks/FirebaseInstanceID.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTaskSnapshot.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageUploadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageReference.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageMetadata.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageObservableTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageDownloadTask.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorageConstants.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FIRStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Headers/FirebaseStorage.h /Users/NMB12/Documents/caregiverapp/Pods/FirebaseStorage/Frameworks/FirebaseStorage.framework/Modules/module.modulemap /Users/NMB12/Documents/caregiverapp/Pods/Firebase/Core/Sources/Firebase.h /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/AVFoundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreMedia.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreAudio.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreData.swiftmodule
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: Copyright (c) 2017-2018 sel-project * License: MIT * Authors: Kripth * Source: $(HTTP github.com/sel-project/selery/source/selery/world/plugin.d, selery/world/plugin.d) */ module selery.world.plugin; import std.algorithm : canFind; import std.conv : to; import std.datetime : Duration; import std.traits : hasUDA, getUDAs, Parameters; import selery.about : tick_t; import selery.event.event : CancellableOf; import selery.plugin : event, cancel, command, op, hidden, permissionLevel, permission, unimplemented; import selery.world.world : World; void loadWorld(T:World)(T world, int oldState, uint newState) { // oldState is -1 and newState is 0 when the world is loaded for the first time foreach_reverse(member ; __traits(allMembers, T)) { static if(is(typeof(__traits(getMember, T, member)) == function)) { mixin("alias F = T." ~ member ~ ";"); static if(hasUDA!(F, task)) { static assert(getUDAs!(F, task).length == 1); auto del = mixin("&world." ~ member); updateSymbols!(getStates!F)(getStates!F, oldState, newState, { world.addTask(del, getUDAs!(F, task)[0].ticks); }, { world.removeTask(del); }); } static if(hasUDA!(F, command)) { static assert(getUDAs!(F, command).length == 1); auto del = mixin("&world." ~ member); enum c = getUDAs!(F, command)[0]; static if(hasUDA!(F, permissionLevel)) enum pl = getUDAs!(F, permissionLevel)[0].permissionLevel; else enum ubyte pl = 0; static if(hasUDA!(F, permission)) enum p = getUDAs!(F, permission)[0].permissions; else enum string[] p = []; updateSymbols!(getStates!F)(getStates!F, oldState, newState, { world.registerCommand!F(del, c.command, c.description, c.aliases, pl, p, hasUDA!(F, hidden), !hasUDA!(F, unimplemented)); }, { world.unregisterCommand(c.command); }); } static if(hasUDA!(F, event)) { static assert(Parameters!F.length == 1); static if(hasUDA!(F, cancel)) { auto del = &CancellableOf.instance.createCancellable!(Parameters!F[0]); } else { auto del = mixin("&world." ~ member); } updateSymbols!(getStates!F)(getStates!F, oldState, newState, { world.addEventListener(del); }, { world.removeEventListener(del); }); } } } } template updateSymbols(uint[] states) { static if(states.length) alias updateSymbols = updateSymbolsWithStates; else alias updateSymbols = updateSymbolsWithoutStates; } void updateSymbolsWithStates(uint[] states, int oldState, uint newState, lazy void delegate() add, lazy void delegate() remove) { immutable bool registered = states.canFind(oldState); immutable bool needed = states.canFind(newState); if(registered && !needed) remove()(); else if(needed && !registered) add()(); } void updateSymbolsWithoutStates(uint[] states, int oldState, uint newState, lazy void delegate() add, lazy void delegate() remove) { if(oldState == -1) add()(); } uint[] getStates(alias fun)() { uint[] states; foreach(s ; getUDAs!(fun, state)) { states ~= s.states; } return states; } struct task { tick_t ticks; public this(tick_t ticks) { assert(ticks != 0); this.ticks = ticks; } public this(Duration duration) { assert(duration.total!"msecs"() % 50 == 0); this(to!tick_t(duration.total!"msecs"() / 50)); } } struct state { private uint[] states; public this(uint[] states...) { this.states = states; } }
D
module frontend.users; import vibe.d; import backend.iusers; import std.conv; import util; package struct User { string login; string username; string id; string email; string firstname; string lastname; static User fromID(string id, IUsersProvider usersProvider) { User ret; ret.id = id; // DEBUG ME Bson res = usersProvider.queryUserInfoFromID(BsonObjectID.fromString(id)); foreach(string k, v; res) { if (k == "login") { ret.login = v.get!string; } else if (k == "username") { ret.username = v.get!string; } else if (k == "email") { ret.email = v.get!string; } else if (k == "firstname") { ret.firstname = v.get!string; } else if (k == "lastname") { ret.lastname = v.get!string; } } return ret; } static User fromLogin(string login, IUsersProvider usersProvider) { User ret; Bson res = usersProvider.queryUserInfo(login); foreach(string k, v; res) { if (k == "login") { ret.login = v.get!string; } else if (k == "_id") { auto id = v.get!BsonObjectID; ret.id = id.toString(); } else if (k == "username") { ret.username = v.get!string; } else if (k == "email") { ret.email = v.get!string; } else if (k == "firstname") { ret.firstname = v.get!string; } else if (k == "lastname") { ret.lastname = v.get!string; } } return ret; } string name() @property { if ( username is null) { return login; } else { return username; } } } package enum t_session = " import core.time:dur; enum TIMEOUT = 5;//mins bool isOnline(out string login) { void setRedirect(string addr) { auto redirect = new Cookie(); redirect.value = addr; redirect.maxAge = 10; res.cookies[\"redirect\"] = redirect; return; } if (req.session.id !is null) { auto logon_time = SysTime.fromISOExtString(req.session[\"logon_time\"]); if ((Clock.currTime() - logon_time) > dur!\"minutes\"(TIMEOUT)) { setRedirect(req.fullURL.localURI); res.redirect(\"/login\"); return false; } else { login = req.session[\"login\"]; return true; } } else { setRedirect(req.fullURL.localURI); res.redirect(\"/login\"); } return false; } bool hasRedirect(out string addr) { try { addr = req.cookies.get(\"redirect\"); res.setCookie(\"redirect\", null); //TODO: Why no effect? if (addr is null) return false; return true; } catch(Exception ex) { } return false; } void activate(string login) { if (req.session.id !is null) { res.terminateSession(); } auto session = res.startSession(); session[\"login\"] = login; session[\"logon_time\"] = Clock.currTime().toISOExtString(); session[\"ip\"]= req.host(); } "; package mixin template t_login() { enum LOGIN_STATUS:string { OK = "Authorization was successful", INVALID = "Login or password has incorrect format" } struct LoginData { string login; string password; mixin usersValidator; LOGIN_STATUS status() @property { if ((!isValidLogin(login))||(!isValidPassword(login))) return LOGIN_STATUS.INVALID; return LOGIN_STATUS.OK; } } void login(HTTPServerRequest req, HTTPServerResponse res) { res.renderCompat!("ddust.login.dt", HTTPServerRequest,"req", MSG, "message")(req, MSG()); } void postLogin(HTTPServerRequest req, HTTPServerResponse res) { mixin(t_session); LoginData loginData; loadFormData(req, loginData, "auth"); if (loginData.status == LOGIN_STATUS.OK) { auto msg = usersProvider.queryAuthorization(loginData.login, loginData.password); if (msg) { string addr; activate(loginData.login); if (hasRedirect(addr)) { res.redirect(addr); } else { res.redirect("/"); } } else { res.renderCompat!("ddust.login.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(true,"Authorization failed")); } } else { res.renderCompat!("ddust.login.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(true, loginData.status)); } } } package mixin template t_register() { enum REG_DATA_STATUS:string { OK = "Login and Password is OK", INVALID_PASSWORD = "Password is invalid", INVALID_LOGIN = "Login is invalid", DONOT_MATCH_PASSWORDS = "Passwords don't match", USER_ALREADY_REGISTERED = "Login already registered" } struct RegisterData { mixin usersValidator; string login; string password; string repassword; REG_DATA_STATUS status() @property { if (!isValidLogin(login)) return REG_DATA_STATUS.INVALID_LOGIN; if (password != repassword) return REG_DATA_STATUS.DONOT_MATCH_PASSWORDS; if (!isValidPassword(password)) return REG_DATA_STATUS.INVALID_PASSWORD; return REG_DATA_STATUS.OK; } } void register(HTTPServerRequest req, HTTPServerResponse res) { res.renderCompat!("ddust.register.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(false, "")); } void postRegister(HTTPServerRequest req, HTTPServerResponse res) { RegisterData regData; loadFormData(req, regData, "reg"); string reason; void onError(Exception ex) { if (cast(UserAlreadyRegistered) ex) { reason = REG_DATA_STATUS.USER_ALREADY_REGISTERED; } else { reason = ex.msg; } } if (regData.status == REG_DATA_STATUS.OK) { auto msg = usersProvider.registerUser(regData.login, regData.password, &onError); if(msg) { res.renderCompat!("ddust.register.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(false,"")); } else { res.renderCompat!("ddust.register.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(true, reason)); } } else { res.renderCompat!("ddust.register.dt", HTTPServerRequest, "req", MSG, "message")(req, MSG(true, regData.status)); } } } package mixin template t_profile() { enum PROFILE_DATA_STATUS:string { OK = "OK", INVALID_LOGIN = "Login is incorrect", INVALID_FIRSTNAME = "Firstname is incorrect", INVALID_LASTNAME = "Lastname is incorrect", INVALID_EMAIL = "Email is incorrect", INVALID_USERNAME = "Username is incorrect" } struct ProfileData { mixin usersValidator; string login; string username; string firstname; string lastname; string email; string gravatarUrl() @property { return format("%s%s?s=200&d=identicon","http://www.gravatar.com/avatar/",toLower(md5str(email))); } static ProfileData fromBson(in Bson bson) { ProfileData ret; foreach(string k,v; bson) { if (k=="login") { ret.login = v.get!string; } else if (k=="username") { ret.username = v.get!string; } else if (k=="firstname") { ret.firstname = v.get!string; } else if(k=="lastname") { ret.lastname = v.get!string; } else if(k=="email") { ret.email = v.get!string; } } return ret; } PROFILE_DATA_STATUS status() { if (!isValidLogin(login)) { return PROFILE_DATA_STATUS.INVALID_LOGIN; } else if (!isValidFirstname(firstname)) { return PROFILE_DATA_STATUS.INVALID_FIRSTNAME; } else if (!isValidLastname(lastname)) { return PROFILE_DATA_STATUS.INVALID_LASTNAME; } else if (!isValidUsername(username)) { return PROFILE_DATA_STATUS.INVALID_USERNAME; } else if (!isValidEmail(email)) { return PROFILE_DATA_STATUS.INVALID_EMAIL; } return PROFILE_DATA_STATUS.OK; } Bson toBson() { Bson bson = Bson.EmptyObject(); bson["login"] = login; bson["username"] = username; bson["firstname"] = firstname; bson["email"] = email; bson["lastname"] = lastname; return bson; } } void profile(HTTPServerRequest req, HTTPServerResponse res) { mixin(t_session); string login; if (isOnline(login)) { auto userInfo = usersProvider.queryUserInfo(login); ProfileData data = ProfileData.fromBson(userInfo); res.renderCompat!("ddust.profile.dt", HTTPServerRequest, "req", ProfileData, "profile_data", MSG, "message")(req, data, MSG()); } } void postProfile(HTTPServerRequest req, HTTPServerResponse res) { mixin(t_session); ProfileData profileData; loadFormData(req, profileData, "profile"); string login; if (!isOnline(profileData.login)) { return; } if (profileData.status != PROFILE_DATA_STATUS.OK) { res.renderCompat!("ddust.profile.dt", HTTPServerRequest, "req", ProfileData, "profile_data", MSG, "message")(req, profileData, MSG(true, profileData.status)); } else { string reason; void onError(Exception ex) { reason = ex.msg; } auto msg = usersProvider.updateProfile(profileData.login, profileData.toBson(), &onError); if (msg) { res.renderCompat!("ddust.profile.dt", HTTPServerRequest, "req", ProfileData, "profile_data", MSG, "message")(req, profileData, MSG(false, "Updated")); } else { res.renderCompat!("ddust.profile.dt", HTTPServerRequest, "req", ProfileData, "profile_data", MSG, "message")(req, profileData, MSG(true, reason)); } } } } package mixin template usersPages() { import util; import backend.iusers; mixin t_login; mixin t_profile; mixin t_register; void setupUsersPages() { router.get("/login", &login); router.post("/login", &postLogin); router.get("/register", &register); router.post("/register", &postRegister); router.get("/profile", &profile); router.post("/profile", &postProfile); } }
D
instance DMT_12170_FARION_EXIT(C_Info) { npc = dmt_12170_farion; nr = 999; condition = dmt_12170_farion_exit_condition; information = dmt_12170_farion_exit_info; important = FALSE; permanent = TRUE; description = Dialog_Ende; }; func int dmt_12170_farion_exit_condition() { return TRUE; }; func void dmt_12170_farion_exit_info() { AI_StopProcessInfos(self); }; instance DMT_12170_FARION_HELLO(C_Info) { npc = dmt_12170_farion; condition = dmt_12170_farion_hello_condition; information = dmt_12170_farion_hello_info; important = TRUE; permanent = TRUE; }; func int dmt_12170_farion_hello_condition() { if(Npc_IsInState(self,ZS_Talk) && (CHOOSENATUREISDONE == TRUE)) { return TRUE; }; }; func void dmt_12170_farion_hello_info() { if(TELLWHATDONE == FALSE) { TELLWHATDONE = TRUE; if(CHOOSEDARK == TRUE) { AI_Output(self,other,"DMT_12170_Farion_Hello_01"); //Тебе следует обратится к Хранителю Даготу, адепт! AI_Output(self,other,"DMT_12170_Farion_Hello_02"); //Теперь он будет твоим наставником. AI_Output(self,other,"DMT_12170_Farion_Hello_03"); //Я же ничем тебе более не могу помочь. AI_Output(self,other,"DMT_12170_Farion_Hello_04"); //Теперь ступай! AI_StopProcessInfos(self); } else if(CHOOSESTONE == TRUE) { AI_Output(self,other,"DMT_12170_Farion_Hello_05"); //Тебе следует обратится к Хранителю Стонносу, адепт! AI_Output(self,other,"DMT_12170_Farion_Hello_02"); //Теперь он будет твоим наставником. AI_Output(self,other,"DMT_12170_Farion_Hello_03"); //Я же ничем тебе более не могу помочь. AI_Output(self,other,"DMT_12170_Farion_Hello_04"); //Теперь ступай! AI_StopProcessInfos(self); } else if(CHOOSEWATER == TRUE) { AI_Output(self,other,"DMT_12170_Farion_Hello_09"); //Тебе следует обратится к Хранителю Вакону, адепт! AI_Output(self,other,"DMT_12170_Farion_Hello_02"); //Теперь он будет твоим наставником. AI_Output(self,other,"DMT_12170_Farion_Hello_03"); //Я же ничем тебе более не могу помочь. AI_Output(self,other,"DMT_12170_Farion_Hello_04"); //Теперь ступай! AI_StopProcessInfos(self); } else if(CHOOSEFIRE == TRUE) { AI_Output(self,other,"DMT_12170_Farion_Hello_13"); //Тебе следует обратится к Хранителю Келиосу, адепт! AI_Output(self,other,"DMT_12170_Farion_Hello_02"); //Теперь он будет твоим наставником. AI_Output(self,other,"DMT_12170_Farion_Hello_03"); //Я же ничем тебе более не могу помочь. AI_Output(self,other,"DMT_12170_Farion_Hello_04"); //Теперь ступай! AI_StopProcessInfos(self); }; } else { AI_Output(self,other,"DMT_12170_Farion_Hello_17"); //Ты уже знаешь, что тебе следует делать. AI_Output(self,other,"DMT_12170_Farion_Hello_04"); //Теперь ступай! AI_StopProcessInfos(self); }; };
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_29_agm-8322787511.notation#_copSALmGEeKQQp7P9cQvNQ"/> </availablePage> </pageList> <sashModel currentSelection="//@sashModel/@windows.0/@children.0"> <windows> <children xsi:type="di:TabFolder"> <children> <emfPageIdentifier href="VAR_29_agm-8322787511.notation#_copSALmGEeKQQp7P9cQvNQ"/> </children> </children> </windows> </sashModel> </di:SashWindowsMngr>
D
/home/hustccc/OS_Tutorial_Summer_of_Code/Shell_Tools/minicat/target/debug/deps/proc_macro2-c7c8afa90731c030.rmeta: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/strnom.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/fallback.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/wrapper.rs /home/hustccc/OS_Tutorial_Summer_of_Code/Shell_Tools/minicat/target/debug/deps/libproc_macro2-c7c8afa90731c030.rlib: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/strnom.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/fallback.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/wrapper.rs /home/hustccc/OS_Tutorial_Summer_of_Code/Shell_Tools/minicat/target/debug/deps/proc_macro2-c7c8afa90731c030.d: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/lib.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/strnom.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/fallback.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/wrapper.rs /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/lib.rs: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/strnom.rs: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/fallback.rs: /home/hustccc/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/proc-macro2-0.4.30/src/wrapper.rs:
D
module checkedinheritance; import superlist; import interfacelist; template CheckedInheritance(Base) { alias CheckedImpl!(Base).Result CheckedInheritance; } template CheckedImpl(Base) { /* Rewrite the } // It works! class NoError : CheckedInheritance!(MyClass) { /*...*/ }
D
module util.visitor; // XXX: is @trusted if visitor.visit is @safe . auto dispatch( alias unhandled = function void(t) { throw new Exception(typeid(t).toString() ~ " is not supported."); // XXX: Bugguy for some reason. // throw new Exception(typeid(t).toString() ~ " is not supported by visitor " ~ typeid(V).toString() ~ " ."); }, V, T, Args... )(ref V visitor, Args args, T t) if(is(T == class) || is(T == interface)) in { assert(t, "You can't dispatch null"); } body { static if(is(T == class)) { alias o = t; } else { auto o = cast(Object) t; } auto tid = typeid(o); import std.traits; static if(is(V == struct)) { import std.typetuple; alias Members = TypeTuple!(__traits(getOverloads, V, "visit")); } else { alias Members = MemberFunctionsTuple!(V, "visit"); } foreach(visit; Members) { alias parameters = ParameterTypeTuple!visit; static if(parameters.length == args.length + 1) { alias parameter = parameters[args.length]; // FIXME: ensure call is correctly done when args exists. static if(is(parameter == class) && !__traits(isAbstractClass, parameter) && is(parameter : T)) { if(tid is typeid(parameter)) { return visitor.visit(args, () @trusted { // Fast cast can be trusted in this case, we already did the check. import util.fastcast; return fastCast!parameter(o); } ()); } } } } // Dispatch isn't possible. enum returnVoid = is(typeof(return) == void); static if(returnVoid || is(typeof(unhandled(t)) == void)) { unhandled(t); assert(returnVoid); } else { return unhandled(t); } } auto accept(T, V)(T t, ref V visitor) if(is(T == class) || is(T == interface)) { static if(is(typeof(visitor.visit(t)))) { return visitor.visit(t); } else { visitor.dispatch(t); } }
D
// Eine Hashtable ist eigentlich bloß zCArray<zCArray<_HT_Obj>*>, also ein zweidimensionales Array. class _HT_Obj { var int key; var int val; }; const int HT_SIZE = 71; // Primzahl func int _HT_CreatePtr(var int size) { var int ptr; ptr = MEM_ArrayCreate(); var zCArray arr; arr = _^(ptr); arr.array = MEM_Alloc(size*4); arr.numAlloc = size*4; arr.numInArray = 0; return +ptr; }; func int _HT_Create() { return +_HT_CreatePtr(HT_SIZE); }; func int hash(var int val) { var int hash; hash = MEM_GetBufferCRC32(_@(val), 4); return hash & 2147483647; // No negative values }; func void _HT_Insert(var int ptr, var int val, var int key) { var zCArray arr; arr = _^(ptr); var int h; h = hash(key) % (arr.numAlloc/4); var int bucket; bucket = MEM_ReadIntArray(arr.array, h); if (!bucket) { MEM_WriteIntArray(arr.array, h, MEM_ArrayCreate()); bucket = MEM_ReadIntArray(arr.array, h); }; /* Check whether an entry with the same key already exists */ var zCArray buck; buck = _^(bucket); var int i; repeat(i, buck.numInArray/2); if (MEM_ArrayRead(bucket, i*2) == key) { MEM_Error("HT: A key has been assigned with two values!"); }; end; MEM_ArrayInsert(bucket, key); MEM_ArrayInsert(bucket, val); arr.numInArray += 1; /* resize if needed */ if (arr.numInArray == arr.numAlloc) { var int am; am = arr.numInArray*2; ptr; am; MEM_Call(_HT_Resize); }; }; func void _HT_Resize(var int ptr, var int size) { var zCArray arr; arr = _^(ptr); var zCArray buck; var int htbl; htbl = _HT_CreatePtr(size); var zCArray hArr; hArr = _^(htbl); var int i; var int j; var int bucket; i = 0; j = 0; repeat(i, arr.numAlloc/4); bucket = MEM_ReadIntArray(arr.array, i); if (bucket) { buck = _^(bucket); repeat(j, buck.numInArray/2); _HT_Insert(htbl, MEM_ReadIntArray(buck.array, 2*j+1), MEM_ReadIntArray(buck.array, 2*j)); end; MEM_Free(bucket); }; end; MEM_Free(arr.array); arr.array = hArr.array; arr.numAlloc = size*4; arr.numInArray = hArr.numInArray; }; func int _HT_Get(var int ptr, var int key) { var zCArray arr; arr = _^(ptr); var int h; h = hash(key) % (arr.numAlloc/4); var int bucket; bucket = MEM_ReadIntArray(arr.array, h); if (!bucket) { return false; }; var zCArray buck; buck = _^(bucket); var int i; repeat(i, buck.numInArray/2); if (MEM_ArrayRead(bucket, i*2) == key) { return (MEM_ArrayRead(bucket, i*2+1)); }; end; return false; }; func int _HT_Has(var int ptr, var int key) { var zCArray arr; arr = _^(ptr); var int h; h = hash(key) % (arr.numAlloc/4); var int bucket; bucket = MEM_ReadIntArray(arr.array, h); if (!bucket) { return false; }; var zCArray buck; buck = _^(bucket); var int i; repeat(i, buck.numInArray/2); if (MEM_ArrayRead(bucket, i*2) == key) { return true; }; end; return false; }; func void _HT_Remove(var int ptr, var int key) { var zCArray arr; arr = _^(ptr); var int h; h = hash(key) % (arr.numAlloc/4); var int bucket; bucket = MEM_ReadIntArray(arr.array, h); if (!bucket) { MEM_Error("HT: Key not found"); return; }; var zCArray buck; buck = _^(bucket); var int i; repeat(i, buck.numInArray/2); if (MEM_ArrayRead(bucket, i*2) == key) { MEM_ArrayRemoveIndex(bucket, i*2+1); MEM_ArrayRemoveIndex(bucket, i*2); arr.numInArray -= 1; return; }; end; MEM_Error("HT: Key not found"); }; func void _HT_Change(var int ptr, var int val, var int key) { /* A very lazy implementation but I doubt this will be used much */ _HT_Remove(ptr, key); _HT_Insert(ptr, val, key); }; func void _HT_InsertOrChange(var int ptr, var int val, var int key) { if (_HT_Has(ptr, key)) { _HT_Change(ptr, val, key); } else { _HT_Insert(ptr, val, key); }; }; func int _HT_GetNumber(var int ptr) { var zCArray arr; arr = _^(ptr); return arr.numInArray; }; func void _HT_ForEach(var int ptr, var func fnc) { // fnc(int key, int val) var zCArray arr; arr = _^(ptr); var zCArray buck; var int i; var int j; var int bucket; i = 0; j = 0; repeat(i, arr.numAlloc/4); bucket = MEM_ReadIntArray(arr.array, i); if (bucket) { buck = _^(bucket); repeat(j, buck.numInArray/2); MEM_ReadIntArray(buck.array, j*2 ); MEM_ReadIntArray(buck.array, j*2+1); MEM_Call(fnc); end; }; end; }; func void _HT_Destroy(var int ptr) { var zCArray arr; arr = _^(ptr); var zCArray buck; var int i; var int j; var int bucket; i = 0; j = 0; repeat(i, arr.numAlloc/4); bucket = MEM_ReadIntArray(arr.array, i); if (bucket) { buck = _^(bucket); MEM_Free(buck.array); MEM_Free(bucket); }; end; MEM_Free(arr.array); MEM_Free(ptr); };
D
/Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/MVP.build/Debug-iphonesimulator/MVP.build/Objects-normal/x86_64/LoginModel.o : /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginVC.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/BaseURL.swift /Users/hanykaram/Desktop/MVP/MVP/StoaryBoard.swift /Users/hanykaram/Desktop/MVP/MVP/SceneDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/AppDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/Model/LoginModel.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/Extenstion.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CutsomeButton.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/NetworkManager.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginPresnter.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/ActivityIndector.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CustomeView.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/PKHUD.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/NVActivityIndicatorView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/MVP.build/Debug-iphonesimulator/MVP.build/Objects-normal/x86_64/LoginModel~partial.swiftmodule : /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginVC.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/BaseURL.swift /Users/hanykaram/Desktop/MVP/MVP/StoaryBoard.swift /Users/hanykaram/Desktop/MVP/MVP/SceneDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/AppDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/Model/LoginModel.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/Extenstion.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CutsomeButton.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/NetworkManager.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginPresnter.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/ActivityIndector.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CustomeView.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/PKHUD.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/NVActivityIndicatorView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/MVP.build/Debug-iphonesimulator/MVP.build/Objects-normal/x86_64/LoginModel~partial.swiftdoc : /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginVC.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/BaseURL.swift /Users/hanykaram/Desktop/MVP/MVP/StoaryBoard.swift /Users/hanykaram/Desktop/MVP/MVP/SceneDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/AppDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/Model/LoginModel.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/Extenstion.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CutsomeButton.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/NetworkManager.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginPresnter.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/ActivityIndector.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CustomeView.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/PKHUD.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/NVActivityIndicatorView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/MVP.build/Debug-iphonesimulator/MVP.build/Objects-normal/x86_64/LoginModel~partial.swiftsourceinfo : /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginVC.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/BaseURL.swift /Users/hanykaram/Desktop/MVP/MVP/StoaryBoard.swift /Users/hanykaram/Desktop/MVP/MVP/SceneDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/AppDelegate.swift /Users/hanykaram/Desktop/MVP/MVP/Model/LoginModel.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/Extenstion.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CutsomeButton.swift /Users/hanykaram/Desktop/MVP/MVP/Model/Network/NetworkManager.swift /Users/hanykaram/Desktop/MVP/MVP/Controller/LoginPresnter.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/ActivityIndector.swift /Users/hanykaram/Desktop/MVP/MVP/Custome\ +\ Extenstion/CustomeView.swift /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/ObjectiveC.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreData.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreImage.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/QuartzCore.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Dispatch.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Metal.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Darwin.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Foundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreFoundation.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/CoreGraphics.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Swift.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/UIKit.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/SwiftOnoneSupport.swiftmodule/x86_64.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/PKHUD.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/NVActivityIndicatorView.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-umbrella.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Headers/PKHUD-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Headers/Alamofire-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Headers/NVActivityIndicatorView-Swift.h /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/PKHUD/PKHUD.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/module.modulemap /Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Products/Debug-iphonesimulator/NVActivityIndicatorView/NVActivityIndicatorView.framework/Modules/module.modulemap /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/objc/ObjectiveC.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreData.framework/Headers/CoreData.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/QuartzCore.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/apinotes/Dispatch.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/usr/include/Darwin.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Users/hanykaram/Desktop/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator13.4.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
module hunt.cache.mapcache; import hunt.cache.base; import std.experimental.logger; import std.string; import core.sync.rwmutex; class MapCache : Cache { static @property defaultCahe() { if(_storage is null) { _storage = new MapCache(); } return _storage; } this() { _mutex = new ReadWriteMutex(); } ~this(){_mutex.destroy;} override string getByKey(string master_key,string key, lazy string v= string.init) { string pk = master_key ~ key; _mutex.reader.lock(); scope(exit) _mutex.reader.unlock(); return _map.get(pk,v); } ///add a cache expired after expires seconeds /// NOTES : expires is not used override bool setByKey(string master_key,string key, string value, int expires) { string pk = master_key ~ key; _mutex.writer.lock(); scope(exit) _mutex.writer.unlock(); _map[pk] = value; return true; } ///remove a cache by cache key override bool removeByKey(string master_key,string key) { string pk = master_key ~ key; _mutex.writer.lock(); scope(exit) _mutex.writer.unlock(); _map.remove(pk); return true; } private: static MapCache _storage; string[string] _map; ReadWriteMutex _mutex; }
D
import std.stdio; int answer() { return 6 * 9; } unittest { assert(answer() == 42, "answer() == 42"); } void main() { writeln("All tests passed"); }
D
/* * sha256.d * * This module implements the SHA256 digest * * Author: Dave Wilkinson * Originated: January 19th, 2009 * */ module hashes.sha256; import core.stream; import core.string; import core.endian; import core.definitions; import hashes.digest; // --------------------------------- class HashSHA256 { static: private: uint k[64] = [ 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da, 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13, 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070, 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 ]; public: Digest hash(ubyte[] message) { //Note 1: All variables are unsigned 32 bits and wrap modulo 2^32 when calculating //Note 2: All constants in this pseudo code are in big endian. //Within each word, the most significant bit is stored in the leftmost bit position //Initialize variables: uint h0 = 0x6a09e667; uint h1 = 0xbb67ae85; uint h2 = 0x3c6ef372; uint h3 = 0xa54ff53a; uint h4 = 0x510e527f; uint h5 = 0x9b05688c; uint h6 = 0x1f83d9ab; uint h7 = 0x5be0cd19; //Pre-processing //append the bit '1' to the message //append k bits '0', where k is the minimum number ? 0 such that the resulting message // length (in bits) is congruent to 448 (mod 512) //append length of message (before pre-processing), in bits, as 64-bit big-endian integer int padBytes; uint bufferLen = message.length + 9; // minimum increase of 9, after that the message must be padded if ((bufferLen % 64)) { padBytes = 64 - (cast(int)bufferLen % 64); if (padBytes < 0) { padBytes += 64; } bufferLen += padBytes; } ubyte[] buffer = new ubyte[bufferLen]; buffer[0..message.length] = message[0..$]; buffer[message.length] = 0x80; *(cast(ulong*)&buffer[$-8]) = FromBigEndian64(message.length * 8); uint* bufferPtr = cast(uint*)&buffer[0]; uint* bufferEnd = bufferPtr + (buffer.length / 8); uint[64] words; uint s0; uint s1; uint t1; uint t2; uint ch; uint maj; uint a,b,c,d,e,f,g,h; //Process the message in successive 512-bit chunks: while (bufferPtr < bufferEnd) { //Extend the sixteen 32-bit words into sixty-four 32-bit words: int i; for (; i < 16; i++) { words[i] = FromBigEndian32(bufferPtr[i]); } for (i=0; i < 48; i++) { s0 = ((words[i+1] >>> 7) | (words[i+1] << 25)) ^ ((words[i+1] >>> 18) | (words[i+1] << 14)) ^ ((words[i+1] >>> 3)); s1 = ((words[i+14] >>> 17) | (words[i+14] << 15)) ^ ((words[i+14] >>> 19) | (words[i+14] << 13)) ^ ((words[i+14] >>> 10)); words[i+16] = words[i] + s0 + words[i+9] + s1; } //Initialize hash value for this chunk: a = h0; b = h1; c = h2; d = h3; e = h4; f = h5; g = h6; h = h7; for (i=0; i<64; i++) { s0 = ((a >>> 2) | (a << 30)) ^ ((a >>> 13) | (a << 19)) ^ ((a >>> 22) | (a << 10)); maj = (a & b) ^ (a & c) ^ (b & c); t2 = s0 + maj; s1 = ((e >>> 6) | (e << 26)) ^ ((e >>> 11) | (e << 21)) ^ ((e >>> 25) | (e << 7)); ch = (e & f) ^ ((~e) & g); t1 = h + s1 + ch + k[i] + words[i]; h = g; g = f; f = e; e = d + t1; d = c; c = b; b = a; a = t1 + t2; } //Add this chunk's hash to result so far: h0 += a; h1 += b; h2 += c; h3 += d; h4 += e; h5 += f; h6 += g; h7 += h; bufferPtr += 16; } /*h0 = NativeToBE32(h0); h1 = NativeToBE32(h1); h2 = NativeToBE32(h2); h3 = NativeToBE32(h3); h4 = NativeToBE32(h4);*/ //Produce the final hash value (big-endian): //digest = hash = h0 append h1 append h2 append h3 append h4 return new Digest(h0,h1,h2,h3,h4,h5,h6,h7); } // Description: This function will calculate the SHA-1 hash of a UTF8 encoded string. // utf8Message: The string to hash. // Returns: A string representing the SHA-1 hash. Digest hash(string utf8Message) { return hash(cast(ubyte[])utf8Message); } alias hash opCall; }
D
import std.stdio, std.file, std.conv, std.getopt, std.string; import bio.gff3.file, bio.gff3.validation, bio.gff3.filtering, bio.gff3.record_range, bio.gff3.selection, bio.gff3.record, bio.gff3.conv.json, bio.gff3.conv.table, bio.gff3.conv.gff3, bio.gff3.conv.gtf, bio.gff3.conv.fasta, bio.fasta; import util.split_file, util.version_helper, util.read_file, util.split_into_lines; /** * A utility for fetching sequences from GFF3 and FASTA files files. * * gff3-ffetch cds path-to-file.fa path-to-file.gff3 * * See package README for more information. */ int main(string[] args) { // Parse command line arguments string parent_feature_type = null; string output_filename = null; bool translate = false; bool validate = false; bool fix = false; bool fix_wormbase = false; bool no_assemble = false; bool phase = false; bool frame = false; bool trim_end = false; bool show_version = false; bool help = false; try { getopt(args, std.getopt.config.passThrough, "parent-type", &parent_feature_type, "output|o", &output_filename, "translate", &translate, "validate", &validate, "fix", &fix, "no-assemble", &no_assemble, "phase", &phase, "frame", &frame, "trim-end", &trim_end, "version", &show_version, "help", &help); } catch (Exception e) { writeln(e.msg); writeln(); print_usage(); return 1; // Exit the application } if (help) { print_usage(); return 0; } if (show_version) { writeln("gff3-ffetch (gff3-pltools) " ~ fetch_version()); return 0; } if (fix) { phase = true; frame = true; trim_end = true; } // The first argument left should be the feature type auto feature_type = toLower(args[1]); if ((feature_type != "cds") && (feature_type != "mrna")) { writeln("Only CDS and mRNA features are supported at the moment."); return 5; } // The second argument left should be either a FASTA or a GFF3 file string fasta_filename; string fasta_data; string[string] fasta_map; // Prepare File object for output File output = stdout; if (output_filename !is null) { output = File(output_filename, "w"); } // Increase output buffer size output.setvbuf(1048576); foreach(filename; args[2..$]) { // Check if files exist alias char[] array; if (!(to!array(filename).exists)) { writeln("Could not find file: " ~ filename ~ "\n"); print_usage(); return 3; } if (filename.endsWith(".fa") || filename.endsWith(".fas") || filename.endsWith(".fas")) { if (fasta_filename.length == 0) { fasta_filename = filename; continue; } else { writeln("Only one FASTA file allowed per GFF3"); print_usage(); return 6; } } if (fasta_data is null) { if (fasta_filename !is null) { fasta_data = read(File(fasta_filename, "r")); fasta_map = (new FastaRange!SplitIntoLines(new SplitIntoLines(fasta_data))).all; } } auto records = GFF3File.parse_by_records(filename); records.set_validate(NO_VALIDATION) .set_replace_esc_chars(false) .set_keep_comments(false) .set_keep_pragmas(false); records.to_fasta(feature_type, parent_feature_type, fasta_map, no_assemble, phase, frame, trim_end, translate, output); } return 0; } void print_usage() { writeln("Usage: gff3-ffetch [OPTIONS] [FILE1.fa] FILE2.gff3..."); writeln("Fetch sequences form GFF3 and FASTA files"); writeln(); writeln("Options:"); writeln(" --parent-type Use parent features for grouping instead of ID attr"); writeln(" --translate Output as amino acid sequence."); writeln(" --validate Validate GFF3 file by translating."); writeln(" --fix Same as phase, frame and trim-end options together."); writeln(" --no-assemble Output each record as a sequence."); writeln(" --phase Take into account the phase field of a GFF3 record and adjust"); writeln(" the sequence."); writeln(" --frame Try to guess the best reading frame, by optimising the"); writeln(" sequence for the least possible number of stop codons."); writeln(" --trim-end Trim the end of each sequence to make sure it's"); writeln(" length modulo 3 is 0"); writeln(" -o, --output Instead of writing results to stdout, write them to"); writeln(" this file."); writeln(" --version Output version information and exit."); writeln(" --help Print this information and exit."); writeln(); }
D
// PERMUTE_ARGS: module traits; import std.stdio; alias int myint; struct S { void bar() { } int x = 4; static int z = 5; } class C { void bar() { } final void foo() { } static void abc() { } } abstract class AC { } class AC2 { abstract void foo(); } class AC3 : AC2 { } final class FC { void foo() { } } enum E { EMEM } struct D1 { @disable void true_(); void false_(){} } /********************************************************/ void test1() { auto t = __traits(isArithmetic, int); writeln(t); assert(t == true); assert(__traits(isArithmetic) == false); assert(__traits(isArithmetic, myint) == true); assert(__traits(isArithmetic, S) == false); assert(__traits(isArithmetic, C) == false); assert(__traits(isArithmetic, E) == true); assert(__traits(isArithmetic, void*) == false); assert(__traits(isArithmetic, void[]) == false); assert(__traits(isArithmetic, void[3]) == false); assert(__traits(isArithmetic, int[char]) == false); assert(__traits(isArithmetic, int, int) == true); assert(__traits(isArithmetic, int, S) == false); assert(__traits(isArithmetic, void) == false); assert(__traits(isArithmetic, byte) == true); assert(__traits(isArithmetic, ubyte) == true); assert(__traits(isArithmetic, short) == true); assert(__traits(isArithmetic, ushort) == true); assert(__traits(isArithmetic, int) == true); assert(__traits(isArithmetic, uint) == true); assert(__traits(isArithmetic, long) == true); assert(__traits(isArithmetic, ulong) == true); assert(__traits(isArithmetic, float) == true); assert(__traits(isArithmetic, double) == true); assert(__traits(isArithmetic, real) == true); assert(__traits(isArithmetic, ifloat) == true); assert(__traits(isArithmetic, idouble) == true); assert(__traits(isArithmetic, ireal) == true); assert(__traits(isArithmetic, cfloat) == true); assert(__traits(isArithmetic, cdouble) == true); assert(__traits(isArithmetic, creal) == true); assert(__traits(isArithmetic, char) == true); assert(__traits(isArithmetic, wchar) == true); assert(__traits(isArithmetic, dchar) == true); int i; assert(__traits(isArithmetic, i, i+1, int) == true); assert(__traits(isArithmetic) == false); } /********************************************************/ void test2() { auto t = __traits(isScalar, int); writeln(t); assert(t == true); assert(__traits(isScalar) == false); assert(__traits(isScalar, myint) == true); assert(__traits(isScalar, S) == false); assert(__traits(isScalar, C) == false); assert(__traits(isScalar, E) == true); assert(__traits(isScalar, void*) == true); assert(__traits(isScalar, void[]) == false); assert(__traits(isScalar, void[3]) == false); assert(__traits(isScalar, int[char]) == false); assert(__traits(isScalar, int, int) == true); assert(__traits(isScalar, int, S) == false); assert(__traits(isScalar, void) == false); assert(__traits(isScalar, byte) == true); assert(__traits(isScalar, ubyte) == true); assert(__traits(isScalar, short) == true); assert(__traits(isScalar, ushort) == true); assert(__traits(isScalar, int) == true); assert(__traits(isScalar, uint) == true); assert(__traits(isScalar, long) == true); assert(__traits(isScalar, ulong) == true); assert(__traits(isScalar, float) == true); assert(__traits(isScalar, double) == true); assert(__traits(isScalar, real) == true); assert(__traits(isScalar, ifloat) == true); assert(__traits(isScalar, idouble) == true); assert(__traits(isScalar, ireal) == true); assert(__traits(isScalar, cfloat) == true); assert(__traits(isScalar, cdouble) == true); assert(__traits(isScalar, creal) == true); assert(__traits(isScalar, char) == true); assert(__traits(isScalar, wchar) == true); assert(__traits(isScalar, dchar) == true); } /********************************************************/ void test3() { assert(__traits(isIntegral) == false); assert(__traits(isIntegral, myint) == true); assert(__traits(isIntegral, S) == false); assert(__traits(isIntegral, C) == false); assert(__traits(isIntegral, E) == true); assert(__traits(isIntegral, void*) == false); assert(__traits(isIntegral, void[]) == false); assert(__traits(isIntegral, void[3]) == false); assert(__traits(isIntegral, int[char]) == false); assert(__traits(isIntegral, int, int) == true); assert(__traits(isIntegral, int, S) == false); assert(__traits(isIntegral, void) == false); assert(__traits(isIntegral, byte) == true); assert(__traits(isIntegral, ubyte) == true); assert(__traits(isIntegral, short) == true); assert(__traits(isIntegral, ushort) == true); assert(__traits(isIntegral, int) == true); assert(__traits(isIntegral, uint) == true); assert(__traits(isIntegral, long) == true); assert(__traits(isIntegral, ulong) == true); assert(__traits(isIntegral, float) == false); assert(__traits(isIntegral, double) == false); assert(__traits(isIntegral, real) == false); assert(__traits(isIntegral, ifloat) == false); assert(__traits(isIntegral, idouble) == false); assert(__traits(isIntegral, ireal) == false); assert(__traits(isIntegral, cfloat) == false); assert(__traits(isIntegral, cdouble) == false); assert(__traits(isIntegral, creal) == false); assert(__traits(isIntegral, char) == true); assert(__traits(isIntegral, wchar) == true); assert(__traits(isIntegral, dchar) == true); } /********************************************************/ void test4() { assert(__traits(isFloating) == false); assert(__traits(isFloating, S) == false); assert(__traits(isFloating, C) == false); assert(__traits(isFloating, E) == false); assert(__traits(isFloating, void*) == false); assert(__traits(isFloating, void[]) == false); assert(__traits(isFloating, void[3]) == false); assert(__traits(isFloating, int[char]) == false); assert(__traits(isFloating, float, float) == true); assert(__traits(isFloating, float, S) == false); assert(__traits(isFloating, void) == false); assert(__traits(isFloating, byte) == false); assert(__traits(isFloating, ubyte) == false); assert(__traits(isFloating, short) == false); assert(__traits(isFloating, ushort) == false); assert(__traits(isFloating, int) == false); assert(__traits(isFloating, uint) == false); assert(__traits(isFloating, long) == false); assert(__traits(isFloating, ulong) == false); assert(__traits(isFloating, float) == true); assert(__traits(isFloating, double) == true); assert(__traits(isFloating, real) == true); assert(__traits(isFloating, ifloat) == true); assert(__traits(isFloating, idouble) == true); assert(__traits(isFloating, ireal) == true); assert(__traits(isFloating, cfloat) == true); assert(__traits(isFloating, cdouble) == true); assert(__traits(isFloating, creal) == true); assert(__traits(isFloating, char) == false); assert(__traits(isFloating, wchar) == false); assert(__traits(isFloating, dchar) == false); } /********************************************************/ void test5() { assert(__traits(isUnsigned) == false); assert(__traits(isUnsigned, S) == false); assert(__traits(isUnsigned, C) == false); assert(__traits(isUnsigned, E) == false); assert(__traits(isUnsigned, void*) == false); assert(__traits(isUnsigned, void[]) == false); assert(__traits(isUnsigned, void[3]) == false); assert(__traits(isUnsigned, int[char]) == false); assert(__traits(isUnsigned, float, float) == false); assert(__traits(isUnsigned, float, S) == false); assert(__traits(isUnsigned, void) == false); assert(__traits(isUnsigned, byte) == false); assert(__traits(isUnsigned, ubyte) == true); assert(__traits(isUnsigned, short) == false); assert(__traits(isUnsigned, ushort) == true); assert(__traits(isUnsigned, int) == false); assert(__traits(isUnsigned, uint) == true); assert(__traits(isUnsigned, long) == false); assert(__traits(isUnsigned, ulong) == true); assert(__traits(isUnsigned, float) == false); assert(__traits(isUnsigned, double) == false); assert(__traits(isUnsigned, real) == false); assert(__traits(isUnsigned, ifloat) == false); assert(__traits(isUnsigned, idouble) == false); assert(__traits(isUnsigned, ireal) == false); assert(__traits(isUnsigned, cfloat) == false); assert(__traits(isUnsigned, cdouble) == false); assert(__traits(isUnsigned, creal) == false); assert(__traits(isUnsigned, char) == true); assert(__traits(isUnsigned, wchar) == true); assert(__traits(isUnsigned, dchar) == true); } /********************************************************/ void test6() { assert(__traits(isAssociativeArray) == false); assert(__traits(isAssociativeArray, S) == false); assert(__traits(isAssociativeArray, C) == false); assert(__traits(isAssociativeArray, E) == false); assert(__traits(isAssociativeArray, void*) == false); assert(__traits(isAssociativeArray, void[]) == false); assert(__traits(isAssociativeArray, void[3]) == false); assert(__traits(isAssociativeArray, int[char]) == true); assert(__traits(isAssociativeArray, float, float) == false); assert(__traits(isAssociativeArray, float, S) == false); assert(__traits(isAssociativeArray, void) == false); assert(__traits(isAssociativeArray, byte) == false); assert(__traits(isAssociativeArray, ubyte) == false); assert(__traits(isAssociativeArray, short) == false); assert(__traits(isAssociativeArray, ushort) == false); assert(__traits(isAssociativeArray, int) == false); assert(__traits(isAssociativeArray, uint) == false); assert(__traits(isAssociativeArray, long) == false); assert(__traits(isAssociativeArray, ulong) == false); assert(__traits(isAssociativeArray, float) == false); assert(__traits(isAssociativeArray, double) == false); assert(__traits(isAssociativeArray, real) == false); assert(__traits(isAssociativeArray, ifloat) == false); assert(__traits(isAssociativeArray, idouble) == false); assert(__traits(isAssociativeArray, ireal) == false); assert(__traits(isAssociativeArray, cfloat) == false); assert(__traits(isAssociativeArray, cdouble) == false); assert(__traits(isAssociativeArray, creal) == false); assert(__traits(isAssociativeArray, char) == false); assert(__traits(isAssociativeArray, wchar) == false); assert(__traits(isAssociativeArray, dchar) == false); } /********************************************************/ void test7() { assert(__traits(isStaticArray) == false); assert(__traits(isStaticArray, S) == false); assert(__traits(isStaticArray, C) == false); assert(__traits(isStaticArray, E) == false); assert(__traits(isStaticArray, void*) == false); assert(__traits(isStaticArray, void[]) == false); assert(__traits(isStaticArray, void[3]) == true); assert(__traits(isStaticArray, int[char]) == false); assert(__traits(isStaticArray, float, float) == false); assert(__traits(isStaticArray, float, S) == false); assert(__traits(isStaticArray, void) == false); assert(__traits(isStaticArray, byte) == false); assert(__traits(isStaticArray, ubyte) == false); assert(__traits(isStaticArray, short) == false); assert(__traits(isStaticArray, ushort) == false); assert(__traits(isStaticArray, int) == false); assert(__traits(isStaticArray, uint) == false); assert(__traits(isStaticArray, long) == false); assert(__traits(isStaticArray, ulong) == false); assert(__traits(isStaticArray, float) == false); assert(__traits(isStaticArray, double) == false); assert(__traits(isStaticArray, real) == false); assert(__traits(isStaticArray, ifloat) == false); assert(__traits(isStaticArray, idouble) == false); assert(__traits(isStaticArray, ireal) == false); assert(__traits(isStaticArray, cfloat) == false); assert(__traits(isStaticArray, cdouble) == false); assert(__traits(isStaticArray, creal) == false); assert(__traits(isStaticArray, char) == false); assert(__traits(isStaticArray, wchar) == false); assert(__traits(isStaticArray, dchar) == false); } /********************************************************/ void test8() { assert(__traits(isAbstractClass) == false); assert(__traits(isAbstractClass, S) == false); assert(__traits(isAbstractClass, C) == false); assert(__traits(isAbstractClass, AC) == true); assert(__traits(isAbstractClass, E) == false); assert(__traits(isAbstractClass, void*) == false); assert(__traits(isAbstractClass, void[]) == false); assert(__traits(isAbstractClass, void[3]) == false); assert(__traits(isAbstractClass, int[char]) == false); assert(__traits(isAbstractClass, float, float) == false); assert(__traits(isAbstractClass, float, S) == false); assert(__traits(isAbstractClass, void) == false); assert(__traits(isAbstractClass, byte) == false); assert(__traits(isAbstractClass, ubyte) == false); assert(__traits(isAbstractClass, short) == false); assert(__traits(isAbstractClass, ushort) == false); assert(__traits(isAbstractClass, int) == false); assert(__traits(isAbstractClass, uint) == false); assert(__traits(isAbstractClass, long) == false); assert(__traits(isAbstractClass, ulong) == false); assert(__traits(isAbstractClass, float) == false); assert(__traits(isAbstractClass, double) == false); assert(__traits(isAbstractClass, real) == false); assert(__traits(isAbstractClass, ifloat) == false); assert(__traits(isAbstractClass, idouble) == false); assert(__traits(isAbstractClass, ireal) == false); assert(__traits(isAbstractClass, cfloat) == false); assert(__traits(isAbstractClass, cdouble) == false); assert(__traits(isAbstractClass, creal) == false); assert(__traits(isAbstractClass, char) == false); assert(__traits(isAbstractClass, wchar) == false); assert(__traits(isAbstractClass, dchar) == false); assert(__traits(isAbstractClass, AC2) == true); assert(__traits(isAbstractClass, AC3) == true); } /********************************************************/ void test9() { assert(__traits(isFinalClass) == false); assert(__traits(isFinalClass, C) == false); assert(__traits(isFinalClass, FC) == true); } /********************************************************/ void test10() { assert(__traits(isVirtualFunction, C.bar) == true); assert(__traits(isVirtualFunction, S.bar) == false); } /********************************************************/ void test11() { assert(__traits(isAbstractFunction, C.bar) == false); assert(__traits(isAbstractFunction, S.bar) == false); assert(__traits(isAbstractFunction, AC2.foo) == true); } /********************************************************/ void test12() { assert(__traits(isFinalFunction, C.bar) == false); assert(__traits(isFinalFunction, S.bar) == false); assert(__traits(isFinalFunction, AC2.foo) == false); assert(__traits(isFinalFunction, FC.foo) == true); assert(__traits(isFinalFunction, C.foo) == true); } /********************************************************/ void test13() { S s; __traits(getMember, s, "x") = 7; auto i = __traits(getMember, s, "x"); assert(i == 7); auto j = __traits(getMember, S, "z"); assert(j == 5); writeln(__traits(hasMember, s, "x")); assert(__traits(hasMember, s, "x") == true); assert(__traits(hasMember, S, "z") == true); assert(__traits(hasMember, S, "aaa") == false); auto k = __traits(classInstanceSize, C); writeln(k); assert(k == C.classinfo.initializer.length); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=7123 private struct DelegateFaker7123(F) { template GeneratingPolicy() {} enum WITH_BASE_CLASS = __traits(hasMember, GeneratingPolicy!(), "x"); } auto toDelegate7123(F)(F fp) { alias DelegateFaker7123!F Faker; } void test7123() { static assert(is(typeof(toDelegate7123(&main)))); } /********************************************************/ class D14 { this() { } ~this() { } void foo() { } int foo(int) { return 0; } } void test14() { auto a = [__traits(derivedMembers, D14)]; writeln(a); assert(a == ["__ctor","__dtor","foo", "__xdtor"]); } /********************************************************/ class D15 { this() { } ~this() { } void foo() { } int foo(int) { return 2; } } void test15() { D15 d = new D15(); foreach (t; __traits(getVirtualFunctions, D15, "foo")) writeln(typeid(typeof(t))); alias typeof(__traits(getVirtualFunctions, D15, "foo")) b; foreach (t; b) writeln(typeid(t)); auto i = __traits(getVirtualFunctions, d, "foo")[1](1); assert(i == 2); } /********************************************************/ struct S16 { } int foo16(); int bar16(); void test16() { assert(__traits(isSame, foo16, foo16) == true); assert(__traits(isSame, foo16, bar16) == false); assert(__traits(isSame, foo16, S16) == false); assert(__traits(isSame, S16, S16) == true); assert(__traits(isSame, std, S16) == false); assert(__traits(isSame, std, std) == true); } /********************************************************/ struct S17 { static int s1; int s2; } int foo17(); void test17() { assert(__traits(compiles) == false); assert(__traits(compiles, foo17) == true); assert(__traits(compiles, foo17 + 1) == true); assert(__traits(compiles, &foo17 + 1) == false); assert(__traits(compiles, typeof(1)) == true); assert(__traits(compiles, S17.s1) == true); assert(__traits(compiles, S17.s3) == false); assert(__traits(compiles, 1,2,3,int,long,std) == true); assert(__traits(compiles, 3[1]) == false); assert(__traits(compiles, 1,2,3,int,long,3[1]) == false); } /********************************************************/ interface D18 { extern(Windows): void foo(); int foo(int); } void test18() { auto a = __traits(allMembers, D18); writeln(a); assert(a.length == 1); } /********************************************************/ class C19 { void mutating_method(){} const void const_method(){} void bastard_method(){} const void bastard_method(int){} } void test19() { auto a = __traits(allMembers, C19); writeln(a); assert(a.length == 9); foreach( m; __traits(allMembers, C19) ) writeln(m); } /********************************************************/ void test20() { void fooref(ref int x) { static assert(__traits(isRef, x)); static assert(!__traits(isOut, x)); static assert(!__traits(isLazy, x)); } void fooout(out int x) { static assert(!__traits(isRef, x)); static assert(__traits(isOut, x)); static assert(!__traits(isLazy, x)); } void foolazy(lazy int x) { static assert(!__traits(isRef, x)); static assert(!__traits(isOut, x)); static assert(__traits(isLazy, x)); } } /********************************************************/ void test21() { assert(__traits(isStaticFunction, C.bar) == false); assert(__traits(isStaticFunction, C.abc) == true); assert(__traits(isStaticFunction, S.bar) == false); } /********************************************************/ class D22 { this() { } ~this() { } void foo() { } int foo(int) { return 2; } } void test22() { D22 d = new D22(); foreach (t; __traits(getOverloads, D22, "foo")) writeln(typeid(typeof(t))); alias typeof(__traits(getOverloads, D22, "foo")) b; foreach (t; b) writeln(typeid(t)); auto i = __traits(getOverloads, d, "foo")[1](1); assert(i == 2); } /********************************************************/ string toString23(E)(E value) if (is(E == enum)) { foreach (s; __traits(allMembers, E)) { if (value == mixin("E." ~ s)) return s; } return null; } enum OddWord { acini, alembicated, prolegomena, aprosexia } void test23() { auto w = OddWord.alembicated; assert(toString23(w) == "alembicated"); } /********************************************************/ struct Test24 { public void test24(int){} private void test24(int, int){} } static assert(__traits(getProtection, __traits(getOverloads, Test24, "test24")[1]) == "private"); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=1369 void test1369() { class C1 { static int count; void func() { count++; } } // variable symbol C1 c1 = new C1; __traits(getMember, c1, "func")(); // TypeIdentifier -> VarExp __traits(getMember, mixin("c1"), "func")(); // Expression -> VarExp assert(C1.count == 2); // nested function symbol @property C1 get() { return c1; } __traits(getMember, get, "func")(); __traits(getMember, mixin("get"), "func")(); assert(C1.count == 4); class C2 { C1 c1; this() { c1 = new C1; } void test() { // variable symbol (this.outer.c1) __traits(getMember, c1, "func")(); // TypeIdentifier -> VarExp -> DotVarExp __traits(getMember, mixin("c1"), "func")(); // Expression -> VarExp -> DotVarExp assert(C1.count == 6); // nested function symbol (this.outer.get) __traits(getMember, get, "func")(); __traits(getMember, mixin("get"), "func")(); assert(C1.count == 8); } } C2 c2 = new C2; c2.test(); } /********************************************************/ template Foo2234(){ int x; } struct S2234a{ mixin Foo2234; } struct S2234b{ mixin Foo2234; mixin Foo2234; } struct S2234c{ alias Foo2234!() foo; } static assert([__traits(allMembers, S2234a)] == ["x"]); static assert([__traits(allMembers, S2234b)] == ["x"]); static assert([__traits(allMembers, S2234c)] == ["foo"]); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=5878 template J5878(A) { static if (is(A P == super)) alias P J5878; } alias J5878!(A5878) Z5878; class X5878 {} class A5878 : X5878 {} /********************************************************/ mixin template Members6674() { static int i1; static int i2; static int i3; //comment out to make func2 visible static int i4; //comment out to make func1 visible } class Test6674 { mixin Members6674; alias void function() func1; alias bool function() func2; } static assert([__traits(allMembers,Test6674)] == [ "i1","i2","i3","i4", "func1","func2", "toString","toHash","opCmp","opEquals","Monitor","factory"]); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=6073 struct S6073 {} template T6073(M...) { //alias int T; } alias T6073!traits V6073; // ok alias T6073!(__traits(parent, S6073)) U6073; // error static assert(__traits(isSame, V6073, U6073)); // same instantiation == same arguemnts /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=7027 struct Foo7027 { int a; } static assert(!__traits(compiles, { return Foo7027.a; })); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=9213 class Foo9213 { int a; } static assert(!__traits(compiles, { return Foo9213.a; })); /********************************************************/ interface AA { int YYY(); } class CC : AA { final int YYY() { return 4; } } static assert(__traits(isVirtualMethod, CC.YYY)); static assert(__traits(getVirtualMethods, CC, "YYY").length == 1); class DD { final int YYY() { return 4; } } static assert(__traits(isVirtualMethod, DD.YYY) == false); static assert(__traits(getVirtualMethods, DD, "YYY").length == 0); class EE { int YYY() { return 0; } } class FF : EE { final override int YYY() { return 4; } } static assert(__traits(isVirtualMethod, FF.YYY)); static assert(__traits(getVirtualMethods, FF, "YYY").length == 1); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=7608 struct S7608a(bool T) { static if (T) { int x; } int y; } struct S7608b { version(none) { int x; } int y; } template TypeTuple7608(T...){ alias T TypeTuple7608; } void test7608() { alias TypeTuple7608!(__traits(allMembers, S7608a!false)) MembersA; static assert(MembersA.length == 1); static assert(MembersA[0] == "y"); alias TypeTuple7608!(__traits(allMembers, S7608b)) MembersB; static assert(MembersB.length == 1); static assert(MembersB[0] == "y"); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=7858 void test7858() { class C { final void ffunc(){} final void ffunc(int){} void vfunc(){} void vfunc(int){} abstract void afunc(); abstract void afunc(int); static void sfunc(){} static void sfunc(int){} } static assert(__traits(isFinalFunction, C.ffunc) == __traits(isFinalFunction, __traits(getOverloads, C, "ffunc")[0])); // NG static assert(__traits(isVirtualFunction, C.vfunc) == __traits(isVirtualFunction, __traits(getOverloads, C, "vfunc")[0])); // NG static assert(__traits(isVirtualMethod, C.vfunc) == __traits(isVirtualMethod, __traits(getOverloads, C, "vfunc")[0])); // NG static assert(__traits(isAbstractFunction, C.afunc) == __traits(isAbstractFunction, __traits(getOverloads, C, "afunc")[0])); // OK static assert(__traits(isStaticFunction, C.sfunc) == __traits(isStaticFunction, __traits(getOverloads, C, "sfunc")[0])); // OK static assert(__traits(isSame, C.ffunc, __traits(getOverloads, C, "ffunc")[0])); // NG static assert(__traits(isSame, C.vfunc, __traits(getOverloads, C, "vfunc")[0])); // NG static assert(__traits(isSame, C.afunc, __traits(getOverloads, C, "afunc")[0])); // NG static assert(__traits(isSame, C.sfunc, __traits(getOverloads, C, "sfunc")[0])); // NG } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=8971 template Tuple8971(TL...){ alias TL Tuple8971; } class A8971 { void bar() {} void connect() { alias Tuple8971!(__traits(getOverloads, typeof(this), "bar")) overloads; static assert(__traits(isSame, overloads[0], bar)); } } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=8972 struct A8972 { void foo() {} void connect() { alias Tuple8971!(__traits(getOverloads, typeof(this), "foo")) overloads; static assert(__traits(isSame, overloads[0], foo)); } } /********************************************************/ private struct TestProt1 {} package struct TestProt2 {} protected struct TestProt3 {} public struct TestProt4 {} export struct TestProt5 {} void getProtection() { class Test { private { int va; void fa(){} } package { int vb; void fb(){} } protected { int vc; void fc(){} } public { int vd; void fd(){} } export { int ve; void fe(){} } } Test t; // TOKvar and VarDeclaration static assert(__traits(getProtection, Test.va) == "private"); static assert(__traits(getProtection, Test.vb) == "package"); static assert(__traits(getProtection, Test.vc) == "protected"); static assert(__traits(getProtection, Test.vd) == "public"); static assert(__traits(getProtection, Test.ve) == "export"); // TOKdotvar and VarDeclaration static assert(__traits(getProtection, t.va) == "private"); static assert(__traits(getProtection, t.vb) == "package"); static assert(__traits(getProtection, t.vc) == "protected"); static assert(__traits(getProtection, t.vd) == "public"); static assert(__traits(getProtection, t.ve) == "export"); // TOKvar and FuncDeclaration static assert(__traits(getProtection, Test.fa) == "private"); static assert(__traits(getProtection, Test.fb) == "package"); static assert(__traits(getProtection, Test.fc) == "protected"); static assert(__traits(getProtection, Test.fd) == "public"); static assert(__traits(getProtection, Test.fe) == "export"); // TOKdotvar and FuncDeclaration static assert(__traits(getProtection, t.fa) == "private"); static assert(__traits(getProtection, t.fb) == "package"); static assert(__traits(getProtection, t.fc) == "protected"); static assert(__traits(getProtection, t.fd) == "public"); static assert(__traits(getProtection, t.fe) == "export"); // TOKtype static assert(__traits(getProtection, TestProt1) == "private"); static assert(__traits(getProtection, TestProt2) == "package"); static assert(__traits(getProtection, TestProt3) == "protected"); static assert(__traits(getProtection, TestProt4) == "public"); static assert(__traits(getProtection, TestProt5) == "export"); // This specific pattern is important to ensure it always works // through reflection, however that becomes implemented static assert(__traits(getProtection, __traits(getMember, t, "va")) == "private"); static assert(__traits(getProtection, __traits(getMember, t, "vb")) == "package"); static assert(__traits(getProtection, __traits(getMember, t, "vc")) == "protected"); static assert(__traits(getProtection, __traits(getMember, t, "vd")) == "public"); static assert(__traits(getProtection, __traits(getMember, t, "ve")) == "export"); static assert(__traits(getProtection, __traits(getMember, t, "fa")) == "private"); static assert(__traits(getProtection, __traits(getMember, t, "fb")) == "package"); static assert(__traits(getProtection, __traits(getMember, t, "fc")) == "protected"); static assert(__traits(getProtection, __traits(getMember, t, "fd")) == "public"); static assert(__traits(getProtection, __traits(getMember, t, "fe")) == "export"); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=9546 void test9546() { import imports.a9546 : S; S s; static assert(__traits(getProtection, s.privA) == "private"); static assert(__traits(getProtection, s.protA) == "protected"); static assert(__traits(getProtection, s.packA) == "package"); static assert(__traits(getProtection, S.privA) == "private"); static assert(__traits(getProtection, S.protA) == "protected"); static assert(__traits(getProtection, S.packA) == "package"); static assert(__traits(getProtection, mixin("s.privA")) == "private"); static assert(__traits(getProtection, mixin("s.protA")) == "protected"); static assert(__traits(getProtection, mixin("s.packA")) == "package"); static assert(__traits(getProtection, mixin("S.privA")) == "private"); static assert(__traits(getProtection, mixin("S.protA")) == "protected"); static assert(__traits(getProtection, mixin("S.packA")) == "package"); static assert(__traits(getProtection, __traits(getMember, s, "privA")) == "private"); static assert(__traits(getProtection, __traits(getMember, s, "protA")) == "protected"); static assert(__traits(getProtection, __traits(getMember, s, "packA")) == "package"); static assert(__traits(getProtection, __traits(getMember, S, "privA")) == "private"); static assert(__traits(getProtection, __traits(getMember, S, "protA")) == "protected"); static assert(__traits(getProtection, __traits(getMember, S, "packA")) == "package"); static assert(__traits(getProtection, s.privF) == "private"); static assert(__traits(getProtection, s.protF) == "protected"); static assert(__traits(getProtection, s.packF) == "package"); static assert(__traits(getProtection, S.privF) == "private"); static assert(__traits(getProtection, S.protF) == "protected"); static assert(__traits(getProtection, S.packF) == "package"); static assert(__traits(getProtection, mixin("s.privF")) == "private"); static assert(__traits(getProtection, mixin("s.protF")) == "protected"); static assert(__traits(getProtection, mixin("s.packF")) == "package"); static assert(__traits(getProtection, mixin("S.privF")) == "private"); static assert(__traits(getProtection, mixin("S.protF")) == "protected"); static assert(__traits(getProtection, mixin("S.packF")) == "package"); static assert(__traits(getProtection, __traits(getMember, s, "privF")) == "private"); static assert(__traits(getProtection, __traits(getMember, s, "protF")) == "protected"); static assert(__traits(getProtection, __traits(getMember, s, "packF")) == "package"); static assert(__traits(getProtection, __traits(getMember, S, "privF")) == "private"); static assert(__traits(getProtection, __traits(getMember, S, "protF")) == "protected"); static assert(__traits(getProtection, __traits(getMember, S, "packF")) == "package"); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=9091 template isVariable9091(X...) if (X.length == 1) { enum isVariable9091 = true; } class C9091 { int x; // some class members void func(int n){ this.x = n; } void test() { alias T = C9091; enum is_x = isVariable9091!(__traits(getMember, T, "x")); foreach (i, m; __traits(allMembers, T)) { enum x = isVariable9091!(__traits(getMember, T, m)); static if (i == 0) // x { __traits(getMember, T, m) = 10; assert(this.x == 10); } static if (i == 1) // func { __traits(getMember, T, m)(20); assert(this.x == 20); } } } } struct S9091 { int x; // some struct members void func(int n){ this.x = n; } void test() { alias T = S9091; enum is_x = isVariable9091!(__traits(getMember, T, "x")); foreach (i, m; __traits(allMembers, T)) { enum x = isVariable9091!(__traits(getMember, T, m)); static if (i == 0) // x { __traits(getMember, T, m) = 10; assert(this.x == 10); } static if (i == 1) // func { __traits(getMember, T, m)(20); assert(this.x == 20); } } } } void test9091() { auto c = new C9091(); c.test(); auto s = S9091(); s.test(); } /********************************************************/ struct CtorS_9237 { this(int x) { } } // ctor -> POD struct DtorS_9237 { ~this() { } } // dtor -> nonPOD struct PostblitS_9237 { this(this) { } } // cpctor -> nonPOD struct NonPOD1_9237 { DtorS_9237 field; // nonPOD -> ng } struct NonPOD2_9237 { DtorS_9237[2] field; // static array of nonPOD -> ng } struct POD1_9237 { DtorS_9237* field; // pointer to nonPOD -> ok } struct POD2_9237 { DtorS_9237[] field; // dynamic array of nonPOD -> ok } struct POD3_9237 { int x = 123; } class C_9273 { } void test9237() { int x; struct NS_9237 // acceses .outer -> nested { void foo() { x++; } } struct NonNS_9237 { } // doesn't access .outer -> non-nested static struct StatNS_9237 { } // can't access .outer -> non-nested static assert(!__traits(isPOD, NS_9237)); static assert(__traits(isPOD, NonNS_9237)); static assert(__traits(isPOD, StatNS_9237)); static assert(__traits(isPOD, CtorS_9237)); static assert(!__traits(isPOD, DtorS_9237)); static assert(!__traits(isPOD, PostblitS_9237)); static assert(!__traits(isPOD, NonPOD1_9237)); static assert(!__traits(isPOD, NonPOD2_9237)); static assert(__traits(isPOD, POD1_9237)); static assert(__traits(isPOD, POD2_9237)); static assert(__traits(isPOD, POD3_9237)); // static array of POD/non-POD types static assert(!__traits(isPOD, NS_9237[2])); static assert(__traits(isPOD, NonNS_9237[2])); static assert(__traits(isPOD, StatNS_9237[2])); static assert(__traits(isPOD, CtorS_9237[2])); static assert(!__traits(isPOD, DtorS_9237[2])); static assert(!__traits(isPOD, PostblitS_9237[2])); static assert(!__traits(isPOD, NonPOD1_9237[2])); static assert(!__traits(isPOD, NonPOD2_9237[2])); static assert(__traits(isPOD, POD1_9237[2])); static assert(__traits(isPOD, POD2_9237[2])); static assert(__traits(isPOD, POD3_9237[2])); // non-structs are POD types static assert(__traits(isPOD, C_9273)); static assert(__traits(isPOD, int)); static assert(__traits(isPOD, int*)); static assert(__traits(isPOD, int[])); static assert(!__traits(compiles, __traits(isPOD, 123) )); } /*************************************************************/ // https://issues.dlang.org/show_bug.cgi?id=5978 void test5978() { () { int x; pragma(msg, __traits(identifier, __traits(parent, x))); } (); } /*************************************************************/ template T7408() { } void test7408() { auto x = T7408!().stringof; auto y = T7408!().mangleof; static assert(__traits(compiles, T7408!().stringof)); static assert(__traits(compiles, T7408!().mangleof)); static assert(!__traits(compiles, T7408!().init)); static assert(!__traits(compiles, T7408!().offsetof)); } /*************************************************************/ // https://issues.dlang.org/show_bug.cgi?id=9552 class C9552 { int f() { return 10; } int f(int n) { return n * 2; } } void test9552() { auto c = new C9552; auto dg1 = &(__traits(getOverloads, c, "f")[0]); // DMD crashes assert(dg1() == 10); auto dg2 = &(__traits(getOverloads, c, "f")[1]); assert(dg2(10) == 20); } /*************************************************************/ void test9136() { int x; struct S1 { void f() { x++; } } struct U1 { void f() { x++; } } static struct S2 { } static struct S3 { S1 s; } static struct U2 { } void f1() { x++; } static void f2() { } static assert(__traits(isNested, S1)); static assert(__traits(isNested, U1)); static assert(!__traits(isNested, S2)); static assert(!__traits(isNested, S3)); static assert(!__traits(isNested, U2)); static assert(!__traits(compiles, __traits(isNested, int) )); static assert(!__traits(compiles, __traits(isNested, f1, f2) )); static assert(__traits(isNested, f1)); static assert(!__traits(isNested, f2)); static class A { static class SC { } class NC { } } static assert(!__traits(isNested, A)); static assert(!__traits(isNested, A.SC)); static assert(__traits(isNested, A.NC)); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=9939 struct Test9939 { int f; enum /*Anonymous enum*/ { A, B } enum NamedEnum { C, D } } static assert([__traits(allMembers, Test9939)] == ["f", "A", "B", "NamedEnum"]); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=10043 void test10043() { struct X {} X d1; static assert(!__traits(compiles, d1.structuralCast!Refleshable)); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=10096 struct S10096X { string str; invariant() {} invariant() {} unittest {} unittest {} this(int) {} this(this) {} ~this() {} string getStr() in(str) out(r; r == str) { return str; } } static assert( [__traits(allMembers, S10096X)] == ["str", "__ctor", "__postblit", "__dtor", "getStr", "__xdtor", "__xpostblit", "opAssign"]); class C10096X { string str; invariant() {} invariant() {} unittest {} unittest {} this(int) {} ~this() {} string getStr() in(str) out(r; r == str) { return str; } } static assert( [__traits(allMembers, C10096X)] == ["str", "__ctor", "__dtor", "getStr", "__xdtor", "toString", "toHash", "opCmp", "opEquals", "Monitor", "factory"]); // -------- string foo10096(alias var, T = typeof(var))() { foreach (idx, member; __traits(allMembers, T)) { auto x = var.tupleof[idx]; } return ""; } string foo10096(T)(T var) { return ""; } struct S10096 { int i; string s; } void test10096() { S10096 s = S10096(1, ""); auto x = foo10096!s; } /********************************************************/ unittest { } struct GetUnitTests { unittest { } } void test_getUnitTests () { // Always returns empty tuple if the -unittest flag isn't used static assert(__traits(getUnitTests, mixin(__MODULE__)).length == 0); static assert(__traits(getUnitTests, GetUnitTests).length == 0); } /********************************************************/ void test_getFunctionAttributes() { alias tuple(T...) = T; struct S { int noF() { return 0; } int constF() const { return 0; } int immutableF() immutable { return 0; } int inoutF() inout { return 0; } int sharedF() shared { return 0; } int x; ref int refF() return { return x; } int propertyF() @property { return 0; } int nothrowF() nothrow { return 0; } int nogcF() @nogc { return 0; } int systemF() @system { return 0; } int trustedF() @trusted { return 0; } int safeF() @safe { return 0; } int pureF() pure { return 0; } } static assert(__traits(getFunctionAttributes, S.noF) == tuple!("@system")); static assert(__traits(getFunctionAttributes, typeof(S.noF)) == tuple!("@system")); static assert(__traits(getFunctionAttributes, S.constF) == tuple!("const", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.constF)) == tuple!("const", "@system")); static assert(__traits(getFunctionAttributes, S.immutableF) == tuple!("immutable", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.immutableF)) == tuple!("immutable", "@system")); static assert(__traits(getFunctionAttributes, S.inoutF) == tuple!("inout", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.inoutF)) == tuple!("inout", "@system")); static assert(__traits(getFunctionAttributes, S.sharedF) == tuple!("shared", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.sharedF)) == tuple!("shared", "@system")); static assert(__traits(getFunctionAttributes, S.refF) == tuple!("ref", "return", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.refF)) == tuple!("ref", "return", "@system")); static assert(__traits(getFunctionAttributes, S.propertyF) == tuple!("@property", "@system")); static assert(__traits(getFunctionAttributes, typeof(&S.propertyF)) == tuple!("@property", "@system")); static assert(__traits(getFunctionAttributes, S.nothrowF) == tuple!("nothrow", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.nothrowF)) == tuple!("nothrow", "@system")); static assert(__traits(getFunctionAttributes, S.nogcF) == tuple!("@nogc", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.nogcF)) == tuple!("@nogc", "@system")); static assert(__traits(getFunctionAttributes, S.systemF) == tuple!("@system")); static assert(__traits(getFunctionAttributes, typeof(S.systemF)) == tuple!("@system")); static assert(__traits(getFunctionAttributes, S.trustedF) == tuple!("@trusted")); static assert(__traits(getFunctionAttributes, typeof(S.trustedF)) == tuple!("@trusted")); static assert(__traits(getFunctionAttributes, S.safeF) == tuple!("@safe")); static assert(__traits(getFunctionAttributes, typeof(S.safeF)) == tuple!("@safe")); static assert(__traits(getFunctionAttributes, S.pureF) == tuple!("pure", "@system")); static assert(__traits(getFunctionAttributes, typeof(S.pureF)) == tuple!("pure", "@system")); int pure_nothrow() nothrow pure { return 0; } static ref int static_ref_property() @property { return *(new int); } ref int ref_property() @property { return *(new int); } void safe_nothrow() @safe nothrow { } static assert(__traits(getFunctionAttributes, pure_nothrow) == tuple!("pure", "nothrow", "@nogc", "@safe")); static assert(__traits(getFunctionAttributes, typeof(pure_nothrow)) == tuple!("pure", "nothrow", "@nogc", "@safe")); static assert(__traits(getFunctionAttributes, static_ref_property) == tuple!("pure", "nothrow", "@property", "ref", "@safe")); static assert(__traits(getFunctionAttributes, typeof(&static_ref_property)) == tuple!("pure", "nothrow", "@property", "ref", "@safe")); static assert(__traits(getFunctionAttributes, ref_property) == tuple!("pure", "nothrow", "@property", "ref", "@safe")); static assert(__traits(getFunctionAttributes, typeof(&ref_property)) == tuple!("pure", "nothrow", "@property", "ref", "@safe")); static assert(__traits(getFunctionAttributes, safe_nothrow) == tuple!("pure", "nothrow", "@nogc", "@safe")); static assert(__traits(getFunctionAttributes, typeof(safe_nothrow)) == tuple!("pure", "nothrow", "@nogc", "@safe")); struct S2 { int pure_const() const pure { return 0; } int pure_sharedconst() const shared pure { return 0; } } static assert(__traits(getFunctionAttributes, S2.pure_const) == tuple!("const", "pure", "@system")); static assert(__traits(getFunctionAttributes, typeof(S2.pure_const)) == tuple!("const", "pure", "@system")); static assert(__traits(getFunctionAttributes, S2.pure_sharedconst) == tuple!("const", "shared", "pure", "@system")); static assert(__traits(getFunctionAttributes, typeof(S2.pure_sharedconst)) == tuple!("const", "shared", "pure", "@system")); static assert(__traits(getFunctionAttributes, (int a) { }) == tuple!("pure", "nothrow", "@nogc", "@safe")); static assert(__traits(getFunctionAttributes, typeof((int a) { })) == tuple!("pure", "nothrow", "@nogc", "@safe")); auto safeDel = delegate() @safe { }; static assert(__traits(getFunctionAttributes, safeDel) == tuple!("pure", "nothrow", "@nogc", "@safe")); static assert(__traits(getFunctionAttributes, typeof(safeDel)) == tuple!("pure", "nothrow", "@nogc", "@safe")); auto trustedDel = delegate() @trusted { }; static assert(__traits(getFunctionAttributes, trustedDel) == tuple!("pure", "nothrow", "@nogc", "@trusted")); static assert(__traits(getFunctionAttributes, typeof(trustedDel)) == tuple!("pure", "nothrow", "@nogc", "@trusted")); auto systemDel = delegate() @system { }; static assert(__traits(getFunctionAttributes, systemDel) == tuple!("pure", "nothrow", "@nogc", "@system")); static assert(__traits(getFunctionAttributes, typeof(systemDel)) == tuple!("pure", "nothrow", "@nogc", "@system")); } /********************************************************/ class TestIsOverrideFunctionBase { void bar () {} } class TestIsOverrideFunctionPass : TestIsOverrideFunctionBase { override void bar () {} } void test_isOverrideFunction () { assert(__traits(isOverrideFunction, TestIsOverrideFunctionPass.bar) == true); assert(__traits(isOverrideFunction, TestIsOverrideFunctionBase.bar) == false); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=11711 // Add __traits(getAliasThis) alias TypeTuple(T...) = T; void test11711() { struct S1 { string var; alias var this; } static assert(__traits(getAliasThis, S1) == TypeTuple!("var")); static assert(is(typeof(__traits(getMember, S1.init, __traits(getAliasThis, S1)[0])) == string)); struct S2 { TypeTuple!(int, string) var; alias var this; } static assert(__traits(getAliasThis, S2) == TypeTuple!("var")); static assert(is(typeof(__traits(getMember, S2.init, __traits(getAliasThis, S2)[0])) == TypeTuple!(int, string))); // https://issues.dlang.org/show_bug.cgi?id=19439 // Return empty tuple for non-aggregate types. static assert(__traits(getAliasThis, int).length == 0); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=12278 class Foo12278 { InPlace12278!Bar12278 inside; } class Bar12278 { } struct InPlace12278(T) { static assert(__traits(classInstanceSize, T) != 0); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=12571 mixin template getScopeName12571() { enum string scopeName = __traits(identifier, __traits(parent, scopeName)); } void test12571() { mixin getScopeName12571; static assert(scopeName == "test12571"); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=12237 auto f12237(T)(T a) { static if (is(typeof(a) == int)) return f12237(""); else return 10; } void test12237() { assert(f12237(1) == 10); assert((a){ static if (is(typeof(a) == int)) { int x; return __traits(parent, x)(""); } else return 10; }(1) == 10); } /********************************************************/ void async(ARGS...)(ARGS) { static void compute(ARGS) { } auto x = __traits(getParameterStorageClasses, compute, 1); } alias test17495 = async!(int, int); /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=15094 void test15094() { static struct Foo { int i; } static struct Bar { Foo foo; } Bar bar; auto n = __traits(getMember, bar.foo, "i"); assert(n == bar.foo.i); } /********************************************************/ void testIsDisabled() { static assert(__traits(isDisabled, D1.true_)); static assert(!__traits(isDisabled, D1.false_)); static assert(!__traits(isDisabled, D1)); } /********************************************************/ // https://issues.dlang.org/show_bug.cgi?id=10100 enum E10100 { value, _value, __value, ___value, ____value, } static assert( [__traits(allMembers, E10100)] == ["value", "_value", "__value", "___value", "____value"]); /********************************************************/ int main() { test1(); test2(); test3(); test4(); test5(); test6(); test7(); test8(); test9(); test10(); test11(); test12(); test13(); test7123(); test14(); test15(); test16(); test17(); test18(); test19(); test20(); test21(); test22(); test23(); test1369(); test7608(); test7858(); test9091(); test5978(); test7408(); test9552(); test9136(); test10096(); test_getUnitTests(); test_getFunctionAttributes(); test_isOverrideFunction(); test12237(); test15094(); writeln("Success"); return 0; }
D
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Jay.build/Objects-normal/x86_64/ObjectParser.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Jay.build/Objects-normal/x86_64/ObjectParser~partial.swiftmodule : /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Jay.build/Objects-normal/x86_64/ObjectParser~partial.swiftdoc : /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ArrayParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/BooleanParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ByteReader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/CommentParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Consts.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Error.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Extensions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Formatter.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Jay.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NativeTypeConversions.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NullParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/NumberParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ObjectParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/OutputStream.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Parser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Reader.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/RootParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/StringParser.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/Types.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Jay-1.0.0/Sources/Jay/ValueParser.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule
D
import std.stdio; import ae.sys.benchmark; import common; version(DOS) enum N = 100; else debug enum N = 1; else enum N = 10_000; // ************************************************************************************** void bench(string name)() { benchStart(); foreach (i; 0..N) { mixin("test" ~ name ~ "();"); } auto time = benchEnd(); writefln("%12s - %s", time, name); } void main() { foreach (n; 0..3) { writeln("* Pass ", n+1); // bench!"Append"; // bench!"Appender"; // bench!"Appender2Single"; // bench!"Appender2Multi"; // bench!"AppenderConcat"; // bench!"AppenderFastJoin"; // bench!"FastAppenderSingle"; // bench!"FastAppenderMulti"; // bench!"AppendConcat"; // bench!"AppendFastJoin"; // bench!"AppendFastJoinArrInit"; // bench!"AppendFastJoinArrAssign"; // bench!"StringBuilder2Single"; // bench!"StringBuilder2SingleX"; bench!"StringBuilder2Multi"; // bench!"StringBuilder2MultiX"; // bench!"StringBuilder3Multi"; // bench!"StringBuilder4Multi"; // bench!"StringBuilder4MultiX"; // bench!"StringBuilder5Multi"; // bench!"StringBuilder6Multi"; bench!"StringBuilder7Multi"; } }
D
import std.stdio, std.experimental.logger; import jarena.core, jarena.graphics, jarena.gameplay, jarena.data.loaders, jaster.serialise, jarena.gameplay.scenes; version(unittest){} else { void main() { sharedLog = new ConsoleLogger(LogLevel.all); // Setup the engine. auto engine = new Engine(); engine.onInitLibraries(); engine.onInit(); // Register all the scenes, swap to the main one, then start the main game loop. engine.scenes.register(new Test()); engine.scenes.register(new MenuScene()); engine.scenes.register(new DebugMenuScene()); engine.scenes.register(new JoshyClickerScene()); engine.scenes.register(new AnimationViewerScene()); //engine.scenes.register(new StressTest_Render1Scene()); engine.scenes.register(new StressTest_Render2Scene()); engine.scenes.swap!MenuScene; //engine.scenes.swap!AnimationViewerScene; engine.doLoop(); } }
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarChartDataSet.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarChartDataSet~partial.swiftmodule : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/LineScatterCandleRadarChartDataSet~partial.swiftdoc : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/TransformerHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CombinedChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/LineChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/RadarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ICandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/AxisBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/MoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedMoveViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/ChartHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/LineChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerImage.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IPieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Transformer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/IHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Description.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/RadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/YAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieRadarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ViewPortHandler.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/RadarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/ChartAnimationEasing.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ScatterChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntryBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/MarkerView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronDownShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ScatterChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/Legend.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/CandleStickChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/XShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/ChevronUpShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/XAxis.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ChartDataRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ScatterChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ChartLimitLine.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CircleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Animation/Animator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Renderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultFillFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/HorizontalBarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/ChartBaseDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BubbleChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererHorizontalBarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/IShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/TriangleShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CandleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartUtils.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarLineChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CandleStickChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/ChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/IMarker.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/YAxisRendererRadarChart.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IBarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarLineScatterCandleBubbleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Highlight.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/IScatterChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BarLineScatterCandleBubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/CombinedChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/ChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/HorizontalBarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/BarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/CombinedHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/PieRadarChartViewBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/PieHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/LegendEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/ChartColorTemplates.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/SquareShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/PieChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineScatterCandleRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/PieChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CombinedChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/IndexAxisValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Platform.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Interfaces/ILineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Filters/DataApproximator.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Charts/BarChartView.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Formatters/DefaultValueFormatter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/ViewPortJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Utils/Fill.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BarChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/BubbleChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BubbleChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/ScatterChartRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/RadarChartDataEntry.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/XAxisRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/CandleChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LegendRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/Scatter/CrossShapeRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/Range.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/AxisRendererBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Highlight/HorizontalBarHighlighter.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/LineRadarChartDataSet.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/BarLineScatterCandleBubbleRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Components/ComponentBase.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Interfaces/CombinedChartDataProvider.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Jobs/AnimatedZoomViewJob.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Data/Implementations/Standard/BubbleChartDataEntry.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreText.apinotesc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.apinotesc /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Supporting\ Files/Charts.h /Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/QuartzCore.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule
D
/* * Copyright (c) 2004-2008 Derelict Developers * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the names 'Derelict', 'DerelictGL', nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ module derelict.opengl.extension.ext.scene_marker; private { import derelict.opengl.gltypes; import derelict.opengl.gl; import derelict.opengl.extension.loader; import derelict.util.wrapper; } private bool enabled = false; struct EXTSceneMarker { static bool load(char[] extString) { if(extString.findStr("GL_EXT_scene_marker") == -1) return false; if(!glBindExtFunc(cast(void**)&glBeginSceneEXT, "glBeginSceneEXT")) return false; if(!glBindExtFunc(cast(void**)&glEndSceneEXT, "glEndSceneEXT")) return false; enabled = true; return true; } static bool isEnabled() { return enabled; } } version(DerelictGL_NoExtensionLoaders) { } else { static this() { DerelictGL.registerExtensionLoader(&EXTSceneMarker.load); } } extern(System): typedef void function() pfglBeginSceneEXT; typedef void function() pfglEndSceneEXT; pfglBeginSceneEXT glBeginSceneEXT; pfglEndSceneEXT glEndSceneEXT;
D
/** * Describes a back-end compiler and implements compiler-specific actions. * * Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/compiler.d, _compiler.d) * Documentation: https://dlang.org/phobos/dmd_compiler.html * Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/compiler.d */ module dmd.compiler; import dmd.astcodegen; import dmd.astenums; import dmd.arraytypes; import dmd.dmodule; import dmd.dscope; import dmd.dsymbolsem; import dmd.errors; import dmd.expression; import dmd.globals; import dmd.id; import dmd.identifier; import dmd.mtype; import dmd.parse; import dmd.root.array; import dmd.root.ctfloat; import dmd.semantic2; import dmd.semantic3; import dmd.tokens; import dmd.statement; version (DMDLIB) { version = CallbackAPI; } extern (C++) __gshared { bool includeImports = false; // array of module patterns used to include/exclude imported modules Array!(const(char)*) includeModulePatterns; Modules compiledImports; } /** * A data structure that describes a back-end compiler and implements * compiler-specific actions. */ extern (C++) struct Compiler { /****************************** * Encode the given expression, which is assumed to be an rvalue literal * as another type for use in CTFE. * This corresponds roughly to the idiom *(Type *)&e. */ extern (C++) static Expression paintAsType(UnionExp* pue, Expression e, Type type) { union U { d_int32 int32value; d_int64 int64value; float float32value; double float64value; } U u = void; assert(e.type.size() == type.size()); switch (e.type.ty) { case Tint32: case Tuns32: u.int32value = cast(d_int32) e.toInteger(); break; case Tint64: case Tuns64: u.int64value = cast(d_int64) e.toInteger(); break; case Tfloat32: u.float32value = cast(float) e.toReal(); break; case Tfloat64: u.float64value = cast(double) e.toReal(); break; case Tfloat80: assert(e.type.size() == 8); // 64-bit target `real` goto case Tfloat64; default: assert(0, "Unsupported source type"); } real_t r = void; switch (type.ty) { case Tint32: case Tuns32: emplaceExp!(IntegerExp)(pue, e.loc, u.int32value, type); break; case Tint64: case Tuns64: emplaceExp!(IntegerExp)(pue, e.loc, u.int64value, type); break; case Tfloat32: r = u.float32value; emplaceExp!(RealExp)(pue, e.loc, r, type); break; case Tfloat64: r = u.float64value; emplaceExp!(RealExp)(pue, e.loc, r, type); break; case Tfloat80: assert(type.size() == 8); // 64-bit target `real` goto case Tfloat64; default: assert(0, "Unsupported target type"); } return pue.exp(); } /****************************** * For the given module, perform any post parsing analysis. * Certain compiler backends (ie: GDC) have special placeholder * modules whose source are empty, but code gets injected * immediately after loading. */ extern (C++) static void onParseModule(Module m) { } /** * A callback function that is called once an imported module is * parsed. If the callback returns true, then it tells the * frontend that the driver intends on compiling the import. */ extern(C++) static bool onImport(Module m) { if (includeImports) { if (includeImportedModuleCheck(ModuleComponentRange( m.md ? m.md.packages : [], m.ident, m.isPackageFile))) { if (global.params.verbose) message("compileimport (%s)", m.srcfile.toChars); compiledImports.push(m); return true; // this import will be compiled } } return false; // this import will not be compiled } version (CallbackAPI) { alias OnStatementSemanticStart = void function(Statement, Scope*); alias OnStatementSemanticDone = void function(Statement, Scope*); /** * Used to insert functionality before the start of the * semantic analysis of a statement when importing DMD as a library */ __gshared OnStatementSemanticStart onStatementSemanticStart = function void(Statement s, Scope *sc) {}; /** * Used to insert functionality after the end of the * semantic analysis of a statement when importing DMD as a library */ __gshared OnStatementSemanticDone onStatementSemanticDone = function void(Statement s, Scope *sc) {}; } } /****************************** * Private helpers for Compiler::onImport. */ // A range of component identifiers for a module private struct ModuleComponentRange { Identifier[] packages; Identifier name; bool isPackageFile; size_t index; @property auto totalLength() const { return packages.length + 1 + (isPackageFile ? 1 : 0); } @property auto empty() { return index >= totalLength(); } @property auto front() const { if (index < packages.length) return packages[index]; if (index == packages.length) return name; else return Identifier.idPool("package"); } void popFront() { index++; } } /* * Determines if the given module should be included in the compilation. * Returns: * True if the given module should be included in the compilation. */ private bool includeImportedModuleCheck(ModuleComponentRange components) in { assert(includeImports); } do { createMatchNodes(); size_t nodeIndex = 0; while (nodeIndex < matchNodes.dim) { //printf("matcher ");printMatcher(nodeIndex);printf("\n"); auto info = matchNodes[nodeIndex++]; if (info.depth <= components.totalLength()) { size_t nodeOffset = 0; for (auto range = components;;range.popFront()) { if (range.empty || nodeOffset >= info.depth) { // MATCH return !info.isExclude; } if (!(range.front is matchNodes[nodeIndex + nodeOffset].id)) { break; } nodeOffset++; } } nodeIndex += info.depth; } assert(nodeIndex == matchNodes.dim, "code bug"); return includeByDefault; } // Matching module names is done with an array of matcher nodes. // The nodes are sorted by "component depth" from largest to smallest // so that the first match is always the longest (best) match. private struct MatcherNode { union { struct { ushort depth; bool isExclude; } Identifier id; } this(Identifier id) { this.id = id; } this(bool isExclude, ushort depth) { this.depth = depth; this.isExclude = isExclude; } } /* * $(D includeByDefault) determines whether to include/exclude modules when they don't * match any pattern. This setting changes depending on if the user provided any "inclusive" module * patterns. When a single "inclusive" module pattern is given, it likely means the user only * intends to include modules they've "included", however, if no module patterns are given or they * are all "exclusive", then it is likely they intend to include everything except modules * that have been excluded. i.e. * --- * -i=-foo // include everything except modules that match "foo*" * -i=foo // only include modules that match "foo*" (exclude everything else) * --- * Note that this default behavior can be overriden using the '.' module pattern. i.e. * --- * -i=-foo,-. // this excludes everything * -i=foo,. // this includes everything except the default exclusions (-std,-core,-etc.-object) * --- */ private __gshared bool includeByDefault = true; private __gshared Array!MatcherNode matchNodes; /* * Creates the global list of match nodes used to match module names * given strings provided by the -i commmand line option. */ private void createMatchNodes() { static size_t findSortedIndexToAddForDepth(size_t depth) { size_t index = 0; while (index < matchNodes.dim) { auto info = matchNodes[index]; if (depth > info.depth) break; index += 1 + info.depth; } return index; } if (matchNodes.dim == 0) { foreach (modulePattern; includeModulePatterns) { auto depth = parseModulePatternDepth(modulePattern); auto entryIndex = findSortedIndexToAddForDepth(depth); matchNodes.split(entryIndex, depth + 1); parseModulePattern(modulePattern, &matchNodes[entryIndex], depth); // if at least 1 "include pattern" is given, then it is assumed the // user only wants to include modules that were explicitly given, which // changes the default behavior from inclusion to exclusion. if (includeByDefault && !matchNodes[entryIndex].isExclude) { //printf("Matcher: found 'include pattern', switching default behavior to exclusion\n"); includeByDefault = false; } } // Add the default 1 depth matchers MatcherNode[8] defaultDepth1MatchNodes = [ MatcherNode(true, 1), MatcherNode(Id.std), MatcherNode(true, 1), MatcherNode(Id.core), MatcherNode(true, 1), MatcherNode(Id.etc), MatcherNode(true, 1), MatcherNode(Id.object), ]; { auto index = findSortedIndexToAddForDepth(1); matchNodes.split(index, defaultDepth1MatchNodes.length); auto slice = matchNodes[]; slice[index .. index + defaultDepth1MatchNodes.length] = defaultDepth1MatchNodes[]; } } } /* * Determines the depth of the given module pattern. * Params: * modulePattern = The module pattern to determine the depth of. * Returns: * The component depth of the given module pattern. */ private ushort parseModulePatternDepth(const(char)* modulePattern) { if (modulePattern[0] == '-') modulePattern++; // handle special case if (modulePattern[0] == '.' && modulePattern[1] == '\0') return 0; ushort depth = 1; for (;; modulePattern++) { auto c = *modulePattern; if (c == '.') depth++; if (c == '\0') return depth; } } unittest { assert(".".parseModulePatternDepth == 0); assert("-.".parseModulePatternDepth == 0); assert("abc".parseModulePatternDepth == 1); assert("-abc".parseModulePatternDepth == 1); assert("abc.foo".parseModulePatternDepth == 2); assert("-abc.foo".parseModulePatternDepth == 2); } /* * Parses a 'module pattern', which is the "include import" components * given on the command line, i.e. "-i=<module_pattern>,<module_pattern>,...". * Params: * modulePattern = The module pattern to parse. * dst = the data structure to save the parsed module pattern to. * depth = the depth of the module pattern previously retrieved from $(D parseModulePatternDepth). */ private void parseModulePattern(const(char)* modulePattern, MatcherNode* dst, ushort depth) { bool isExclude = false; if (modulePattern[0] == '-') { isExclude = true; modulePattern++; } *dst = MatcherNode(isExclude, depth); dst++; // Create and add identifiers for each component in the modulePattern if (depth > 0) { auto idStart = modulePattern; auto lastNode = dst + depth - 1; for (; dst < lastNode; dst++) { for (;; modulePattern++) { if (*modulePattern == '.') { assert(modulePattern > idStart, "empty module pattern"); *dst = MatcherNode(Identifier.idPool(idStart, cast(uint)(modulePattern - idStart))); modulePattern++; idStart = modulePattern; break; } } } for (;; modulePattern++) { if (*modulePattern == '\0') { assert(modulePattern > idStart, "empty module pattern"); *lastNode = MatcherNode(Identifier.idPool(idStart, cast(uint)(modulePattern - idStart))); break; } } } }
D
func void B_Respawn(var C_Npc slf) { };
D
/* Copyright (c) 2011-2017 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ module dlib.image.filters.boxblur; private { import dlib.image.color; import dlib.image.image; } SuperImage boxBlur(SuperImage img, int radius) { return boxBlur(img, null, radius); } SuperImage boxBlur(SuperImage img, SuperImage outp, int radius) { SuperImage res; if (outp) res = outp; else res = img.dup; immutable int boxSide = radius * 2 + 1; immutable int boxSide2 = boxSide * boxSide; foreach(y; 0..img.height) foreach(x; 0..img.width) { float alpha = Color4f(img[x, y]).a; Color4f total = Color4f(0, 0, 0); foreach(ky; 0..boxSide) foreach(kx; 0..boxSide) { int iy = y + (ky - radius); int ix = x + (kx - radius); total += img[ix, iy]; } total /= boxSide2; total.a = alpha; res[x,y] = total; //img.updateProgress(); } //img.resetProgress(); return res; }
D
module tvm.vm; import tvm.parser, tvm.value, tvm.util, tvm.opcode; import std.typecons, std.algorithm, std.format, std.conv; import std.stdio; alias HasPtrResult = Tuple!(IValue*, "iv", VariableStore, "that"); class VariableStore { private VariableStore superStore; private bool hasSuper; private string[] protecteds; private IValue[string] store; this() { } this(VariableStore vs) { this.superStore = vs; this.hasSuper = true; } /* -親が存在する - 書き換えて良い場合→親のstoreを書き換える - 書き換えては行けない場合→子のstoreを書き換える - 親が存在しない - 子のstoreを操作する */ /** * superクラスのstoreにkeyに対応するIValueが存在するかを判定する */ bool superHas(string key) { if (this.hasSuper) { return this.superStore.has(key); } else { return false; } } /** * 現在のインスタンス,もしくは親に,keyに対応するIValueが存在するかを判定する */ bool has(string key) { bool ret = key in this.store ? true : false; if (this.hasSuper) { ret |= this.superStore.has(key); } return ret; } /** * superクラスのstoreにkeyに対応するIValueが存在するかを判定する */ HasPtrResult superHas_ptr(string key) { if (this.hasSuper) { return this.superStore.has_ptr(key); } else { return HasPtrResult.init; } } /** * 現在のインスタンス,もしくは親に,keyに対応するIValueが存在するかを判定する */ HasPtrResult has_ptr(string key) { HasPtrResult ret = tuple(key in this.store, this); if (ret.iv is null && this.hasSuper) { ret = this.superStore.has_ptr(key); } return ret; } enum HIGH_PERFORMANCE = true; static if (HIGH_PERFORMANCE) { /** * keyに対応するIValueを返す. */ IValue get(string key) { // 親が存在するかを判定する if (this.hasSuper) { // 保護されている場合,このインスタンスのstoreから参照する if (this.protecteds.canFind(key)) { return this.store[key]; } else { // 親がkeyを持っているかみる auto ptr = this.superHas_ptr(key); if (ptr.iv !is null) { // 持っている場合,親から参照する return *ptr.iv; } else { // 持っていない場合,現在のインスタンスから参照する. return this.store[key]; } } } else { // 親が存在しないので,現在のインスタンスから参照する. return this.store[key]; } } } else { /** * keyに対応するIValueを返す. */ IValue get(string key) { // 親が存在するかを判定する if (this.hasSuper) { // 保護されている場合,このインスタンスのstoreから参照する if (this.protecteds.canFind(key)) { return this.store[key]; } else { // 親がkeyを持っているかみる if (this.superHas(key)) { // 持っている場合,親から参照する return this.superStore.get(key); } else { // 持っていない場合,現在のインスタンスから参照する. return this.store[key]; } } } else { // 親が存在しないので,現在のインスタンスから参照する. return this.store[key]; } } } /** * 変数を定義する. * 定義したスコープで保護するようにする.(親の変数を触らなくする) */ void def(string key, IValue value) { // 親がいるか判定する. if (this.hasSuper) { // 親がいる場合,親がkeyを持っているかを判定する if (this.superHas(key)) { // 持っている場合,保護対象として,protectedsに追加し,保存する. this.protecteds ~= key; this.store[key] = value; } else { // 持っていない場合,何もせずに現在のインスタンスに保存する this.store[key] = value; } } else { // 親がいない場合は現在のインスタンスのstoreに保存する. this.store[key] = value; } } static if (HIGH_PERFORMANCE) { /** * 変数に値を代入する */ void set(string key, IValue value) { // 親が存在するかの確認 if (this.hasSuper) { //存在する // 保護されている(つまり,現在のスコープで定義されている場合)場合は親を書き換えてはいけないので // このインスタンスのstoreを書き換える. if (this.protecteds.canFind(key)) { this.store[key] = value; } else { // 保護されていない場合,親がkeyを持っているかをみる. auto ptr = this.superHas_ptr(key); if (ptr.iv !is null) { // 親がkeyを持っている場合,親にsetさせる. ptr.that.set(key, value); } else { // 親がkeyを持っていない場合,自分のstoreを書き換える. this.store[key] = value; } } } else { // 存在しないなら現在のstoreを変更して良い this.store[key] = value; } } } else { /** * 変数に値を代入する */ void set(string key, IValue value) { // 親が存在するかの確認 if (this.hasSuper) { //存在する // 保護されている(つまり,現在のスコープで定義されている場合)場合は親を書き換えてはいけないので // このインスタンスのstoreを書き換える. if (this.protecteds.canFind(key)) { this.store[key] = value; } else { // 保護されていない場合,親がkeyを持っているかをみる. if (this.superHas(key)) { // 親がkeyを持っている場合,親にsetさせる. this.superStore.set(key, value); } else { // 親がkeyを持っていない場合,自分のstoreを書き換える. this.store[key] = value; } } } else { // 存在しないなら現在のstoreを変更して良い this.store[key] = value; } } } } class Env { VariableStore vs; this() { this.vs = new VariableStore; } this(VariableStore vs) { this.vs = new VariableStore(vs); } Env dup() { return new Env(this.vs); } /** * Proxy of this.vs.get */ IValue get(string key) { return this.vs.get(key); } /** * Proxy of this.vs.def */ void def(string key, IValue value) { this.vs.def(key, value); } /** * Proxy of this.vs.set */ void set(string key, IValue value) { this.vs.set(key, value); } /** * Proxy of this.vs.has */ bool has(string key) { return this.vs.has_ptr(key).iv !is null; } /** * Proxy of this.vs.has */ HasPtrResult has_ptr(string key) { return this.vs.has_ptr(key); } } class VMException : Exception { this(string msg) { super("VMException - " ~ msg); } } class VM { Env env; Stack!IValue stack; this() { this.env = new Env; this.stack = new Stack!IValue; this.env.def("print", new IValue(new VMFunction("print", [opPrint], env))); this.env.def("println", new IValue(new VMFunction("println", [opPrintln], env))); } IValue execute(Opcode[] code) { IValue stackPeekTop() { if (!stack.empty) { return stack.front; } else { return null; } } for (size_t pc; pc < code.length; pc++) { Opcode op = code[pc]; //writeln("op : ", op.type); final switch (op.type) with (OpcodeType) { case tOpVariableDeclareOnlySymbol: auto symbol = cast(IValue)code[pc++ + 1]; this.env.def(symbol.getString, new IValue); break; case tOpVariableDeclareWithAssign: auto symbol = cast(IValue)code[pc++ + 1]; auto v = stack.pop; this.env.def(symbol.getString, v); break; case tOpAssignExpression: auto symbol = cast(IValue)code[pc++ + 1]; auto v = stack.pop; this.env.set(symbol.getString, v); break; case tOpPush: auto v = cast(IValue)code[pc++ + 1]; assert(v !is null, "Execute Error on tOpPush"); stack.push(v); break; case tOpPop: stack.pop; break; case tOpAdd: IValue a = stack.pop, b = stack.pop; stack.push(a + b); break; case tOpSub: IValue a = stack.pop, b = stack.pop; stack.push(a - b); break; case tOpMul: IValue a = stack.pop, b = stack.pop; stack.push(a * b); break; case tOpDiv: IValue a = stack.pop, b = stack.pop; stack.push(a / b); break; case tOpMod: IValue a = stack.pop, b = stack.pop; stack.push(a % b); break; case tOpReturn: return stackPeekTop; case tOpGetVariable: auto v = cast(IValue)code[pc++ + 1]; assert(v !is null, "Execute Error on tOpGetVariable"); auto ptr = this.env.has_ptr(v.getString); if (ptr.iv !is null) { stack.push(*ptr.iv); } else { throw new Exception("No such a variable %s".format(v.getString)); } break; case tOpSetVariablePop: auto dst = cast(IValue)code[pc++ + 1]; auto v = stack.pop; this.env.set(dst.getString, v); break; case tOpCall: auto func = cast(IValue)code[pc++ + 1]; string fname = func.getString; Env cpyEnv = this.env; this.env = this.env.get(fname).getFunction.func_env.dup; this.execute(cpyEnv.get(fname).getFunction.func_body); this.env = cpyEnv; break; case tOpNop: break; case tOpFunctionDeclare: auto symbol = cast(IValue)code[pc++ + 1]; string func_name = symbol.getString; auto op_blocks_length = cast(IValue)code[pc++ + 1]; Opcode[] func_body; foreach (_; 0 .. op_blocks_length.getLong) { func_body ~= code[pc++ + 1]; } this.env.def(func_name, new IValue(new VMFunction(func_name, func_body, env.dup))); break; case tOpEqualExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a == b)); break; case tOpNotEqualExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a != b)); break; case tOpLtExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a < b)); break; case tOpLteExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a <= b)); break; case tOpGtExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a > b)); break; case tOpGteExpression: IValue a = stack.pop, b = stack.pop; stack.push(new IValue(a >= b)); break; case tOpAndExpression: bool a = stack.pop.getBool, b = stack.pop.getBool; stack.push(new IValue(a && b)); break; case tOpOrExpression: bool a = stack.pop.getBool, b = stack.pop.getBool; stack.push(new IValue(a || b)); break; case tOpXorExpression: throw new Error("Not implemented <%s>".format(op.type)); case tOpPrint: auto v = stack.pop; if (v.vtype == ValueType.String) { write(v.getString); } else { write(v); } break; case tOpPrintln: auto v = stack.pop; if (v.vtype == ValueType.String) { writeln(v.getString); } else { writeln(v); } break; case tOpJumpRel: auto v = cast(IValue)code[pc++ + 1]; pc += v.getLong; break; case tOpJumpAbs: auto v = cast(IValue)code[pc++ + 1]; pc = v.getLong; break; case tOpIFStatement: auto cond = stack.pop; bool condResult; final switch (cond.vtype) with (ValueType) { case Long: condResult = cond.getLong != 0; break; case Bool: condResult = cond.getBool; break; case String: throw new Exception("Execute Error Invalid Condition <string>"); case Array: throw new Exception("Execute Error Invalid Condition <array>"); case Function: throw new Exception("Execute Error Invalid Condition <function>"); case Null: condResult = false; break; } auto trueBlockLength = (cast(IValue)code[pc++ + 1]).getLong; if (condResult) { break; } else { pc += trueBlockLength; } break; case tOpSetArrayElement: auto variable = (cast(IValue)code[pc++ + 1]).getString; auto idx = stack.pop().getLong; auto val = stack.pop; env.get(variable).setArrayElement(idx, val); break; case tOpGetArrayElement: auto variable = (cast(IValue)code[pc++ + 1]).getString; auto idx = stack.pop().getLong; stack.push(env.get(variable)[idx]); break; case tOpMakeArray: long array_size = (cast(IValue)code[pc++ + 1]).getLong; IValue[] array; array.length = array_size; foreach_reverse (i; 0 .. array_size) { array[i] = stack.pop(); } stack.push(new IValue(array)); break; case tIValue: throw new Error("IValue should not peek directly"); case tOpAssert: auto msg = stack.pop().getString; auto result = stack.pop().getBool; if (!result) { throw new VMException(msg); } } } return stackPeekTop(); } }
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 225.800003 43.9000015 7.5999999 145.5 71 89 -9.69999981 119.599998 7799 4.9000001 8.69999981 0.0555555556 sediments 321.100006 59.7999992 1.29999995 137.5 65 90 -43.5 146.800003 1350 2.4000001 2.5 0.08 sediments, limestones 221.899994 42 8.80000019 0 63 75 -9.69999981 119.5 1211 5.30000019 9.69999981 0.166666667 intrusives, granodiorite, andesite dykes 346 61 9 41.2000008 35 100 -31.3999996 138.600006 1170 13 15 0.0307692308 sediments 333 45 9 16.5 35 100 -30.3999996 139.399994 1161 17 18 0.0307692308 sediments, tillite 317 57 5 200 35 100 -30.5 139.300003 1165 9 10 0.0307692308 sediments, redbeds 329 58 25 4.0999999 35 100 -30.2000008 139 1166 41.5999985 45.5999985 0.0307692308 sediments, sandstone, tillite 223 26 13 14.8000002 35 100 -30.2999992 139.5 1157 26 26 0.0307692308 extrusives 269 40 0 0 50 300 -32.5999985 151.5 1868 0 0 0.008 extrusives, andesites 102 19.8999996 21.7000008 18.7999992 65 245 -32 116 1944 28.1000004 28.1000004 0.0111111111 intrusives 271 63 2.9000001 352 50 80 -34 151 1595 3.5 4.5 0.0666666667 intrusives 324 51 3.29999995 960 65 100 -34 151 1591 6.0999999 6.4000001 0.0571428571 intrusives 272 66 4.80000019 191 60 100 -33.7000008 151.100006 1592 5.80000019 7.4000001 0.05 intrusives
D
/************************************************************************** П'ИСАТЬ Только для мужиков и только в специально отведенных местах. Если туалета на горизонте нет, будем терпеть. Набор восприятий - обычный. Режим перемещения - ходьба. AIV_TAPOSITION: ISINPOS - еще не в процессе NOTINPOS - процесс пошел ***************************************************************************/ func void ZS_Pee() { Perception_Set_Normal(); B_ResetAll(self); AI_SetWalkMode(self,NPC_WALK); NS_GoToMyWP(self); self.aivar[AIV_TAPOSITION] = NOTINPOS; }; func int ZS_Pee_loop() { if(Npc_IsOnFP(self,"PEE")) { AI_AlignToFP(self); if(self.aivar[AIV_TAPOSITION] == NOTINPOS_WALK) { self.aivar[AIV_TAPOSITION] = NOTINPOS; }; } else if(Wld_IsFPAvailable(self,"PEE")) { AI_GotoFP(self,"PEE"); AI_Standup(self); AI_AlignToFP(self); self.aivar[AIV_TAPOSITION] = NOTINPOS_WALK; } else { AI_AlignToWP(self); if(self.aivar[AIV_TAPOSITION] == NOTINPOS_WALK) { self.aivar[AIV_TAPOSITION] = NOTINPOS; }; }; if((self.aivar[AIV_TAPOSITION] == NOTINPOS) && Npc_IsOnFP(self,"PEE")) { AI_AlignToFP(self); AI_Standup(self); AI_PlayAni(self,"T_STAND_2_PEE"); self.aivar[AIV_TAPOSITION] = ISINPOS; }; return LOOP_CONTINUE; }; func void ZS_Pee_end() { AI_PlayAni(self,"T_PEE_2_STAND"); };
D
/Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/TemplateKit.build/Objects-normal/x86_64/Uppercase.o : /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateData.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Deprecated.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSource.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Uppercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Lowercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Capitalize.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateTag.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConditional.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateCustom.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateExpression.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Var.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/ViewRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/TemplateError.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIterator.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Contains.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/Exports.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/DateFormat.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConstant.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Comment.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Print.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Count.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Raw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateRaw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/View.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntax.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Service.framework/Modules/Service.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/cpp_magic.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIODarwin/include/c_nio_darwin.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/c-atomics.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOLinux/include/c_nio_linux.h /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio-zlib-support.git-4597058737275259177/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/TemplateKit.build/Objects-normal/x86_64/Uppercase~partial.swiftmodule : /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateData.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Deprecated.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSource.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Uppercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Lowercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Capitalize.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateTag.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConditional.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateCustom.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateExpression.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Var.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/ViewRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/TemplateError.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIterator.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Contains.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/Exports.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/DateFormat.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConstant.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Comment.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Print.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Count.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Raw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateRaw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/View.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntax.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Service.framework/Modules/Service.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/cpp_magic.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIODarwin/include/c_nio_darwin.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/c-atomics.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOLinux/include/c_nio_linux.h /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio-zlib-support.git-4597058737275259177/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/TemplateKit.build/Objects-normal/x86_64/Uppercase~partial.swiftdoc : /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateData.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Deprecated.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSource.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataStorage.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/ASTCache.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataRepresentable.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/HTMLEscape.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntaxType.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Uppercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Lowercase.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Capitalize.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateTag.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConditional.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateCustom.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateExpression.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Var.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Data/TemplateDataEncoder.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIdentifier.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateByteScanner.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/PlaintextRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/ViewRenderer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateParser.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Pipeline/TemplateSerializer.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/TemplateError.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateIterator.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Contains.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Utilities/Exports.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/DateFormat.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateConstant.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Comment.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Print.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Count.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateDataContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/TagContext.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/Tag/Raw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateRaw.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/View.swift /Users/brunodaluz/Desktop/project/.build/checkouts/template-kit.git-4631460999338977621/Sources/TemplateKit/AST/TemplateSyntax.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Async.framework/Modules/Async.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Service.framework/Modules/Service.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Core.framework/Modules/Core.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Debugging.framework/Modules/Debugging.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/COperatingSystem.framework/Modules/COperatingSystem.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/Bits.framework/Modules/Bits.swiftmodule/x86_64.swiftmodule /Users/brunodaluz/Desktop/project/Build/Products/Debug/NIOFoundationCompat.framework/Modules/NIOFoundationCompat.swiftmodule/x86_64.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/IOKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/cpp_magic.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIODarwin/include/c_nio_darwin.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOAtomics/include/c-atomics.h /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio.git--325538877768392360/Sources/CNIOLinux/include/c_nio_linux.h /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/brunodaluz/Desktop/project/.build/checkouts/swift-nio-zlib-support.git-4597058737275259177/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/brunodaluz/Desktop/project/project.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/ApplicationServices.framework/Headers/ApplicationServices.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/SQLite.build/Query/SQLiteQuery+Join.swift.o : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+0.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteData.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStorage.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TypeName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Compare.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteDatabase.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Update.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Delete.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+With.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Literal.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Join.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Column.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+IndexedColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteConnection.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Direction.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnDefinition.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ConflictResolution.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+UpdateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DeleteBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SelectBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+InsertBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryExpressionEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuerySerializer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/SQLiteError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+UnaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+BinaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SetValues.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Select.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStatement.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Insert.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ForeignKey.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableOrSubquery.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/Service.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 /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.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/SQLite.build/SQLiteQuery+Join~partial.swiftmodule : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+0.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteData.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStorage.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TypeName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Compare.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteDatabase.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Update.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Delete.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+With.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Literal.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Join.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Column.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+IndexedColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteConnection.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Direction.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnDefinition.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ConflictResolution.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+UpdateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DeleteBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SelectBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+InsertBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryExpressionEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuerySerializer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/SQLiteError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+UnaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+BinaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SetValues.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Select.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStatement.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Insert.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ForeignKey.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableOrSubquery.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/Service.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 /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.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/SQLite.build/SQLiteQuery+Join~partial.swiftdoc : /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+0.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteData.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Deprecated.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStorage.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTable.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataConvertible.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TypeName.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteDataType.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Compare.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteDatabase.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Update.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Delete.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+With.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+Literal.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Join.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Column.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+IndexedColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Row/SQLiteColumn.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteConnection.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Direction.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnDefinition.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ConflictResolution.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DropTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+AlterTableBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+UpdateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+CreateBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+DeleteBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SelectBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+InsertBuilder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteDataDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteRowDecoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryExpressionEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Codable/SQLiteQueryEncoder.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuerySerializer.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/SQLiteError.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+UnaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Expression+BinaryOperator.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+SetValues.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Utilities/Exports.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Select.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Database/SQLiteStatement.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ColumnConstraint.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+Insert.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+ForeignKey.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery.swift /Users/user/Documents/RiseTimeAssets/server/.build/checkouts/sqlite.git--8232814251736334455/Sources/SQLite/Query/SQLiteQuery+TableOrSubquery.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/Service.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 /Users/user/Documents/RiseTimeAssets/server/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.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
(theology) the origination of the Holy Spirit at Pentecost the group action of a collection of people or animals or vehicles moving ahead in more or less regular formation the act of moving forward (as toward a goal)
D
/run/media/sacha/stocky/isousb/isousb/target/debug/deps/lazy_static-5fa5bc44b10bdd8d.rmeta: /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs /run/media/sacha/stocky/isousb/isousb/target/debug/deps/liblazy_static-5fa5bc44b10bdd8d.rlib: /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs /run/media/sacha/stocky/isousb/isousb/target/debug/deps/lazy_static-5fa5bc44b10bdd8d.d: /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs: /home/sacha/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs:
D
/home/runner/work/econ/econ/server/target/x86_64-unknown-linux-gnu/release/deps/uname-2b0a0037c78a1341.rmeta: /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uname-0.1.1/src/lib.rs /home/runner/work/econ/econ/server/target/x86_64-unknown-linux-gnu/release/deps/libuname-2b0a0037c78a1341.rlib: /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uname-0.1.1/src/lib.rs /home/runner/work/econ/econ/server/target/x86_64-unknown-linux-gnu/release/deps/uname-2b0a0037c78a1341.d: /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uname-0.1.1/src/lib.rs /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/uname-0.1.1/src/lib.rs:
D
// Written in the D programming language. /** $(SCRIPT inhibitQuickIndex = 1;) This module defines facilities for efficient checking of integral operations against overflow, casting with loss of precision, unexpected change of sign, etc. The checking (and possibly correction) can be done at operation level, for example $(LREF opChecked)$(D !"+"(x, y, overflow)) adds two integrals `x` and `y` and sets `overflow` to `true` if an overflow occurred. The flag `overflow` (a `bool` passed by reference) is not touched if the operation succeeded, so the same flag can be reused for a sequence of operations and tested at the end. Issuing individual checked operations is flexible and efficient but often tedious. The $(LREF Checked) facility offers encapsulated integral wrappers that do all checking internally and have configurable behavior upon erroneous results. For example, `Checked!int` is a type that behaves like `int` but aborts execution immediately whenever involved in an operation that produces the arithmetically wrong result. The accompanying convenience function $(LREF checked) uses type deduction to convert a value `x` of integral type `T` to `Checked!T` by means of `checked(x)`. For example: --- void main() { import std.experimental.checkedint, std.stdio; writeln((checked(5) + 7).get); // 12 writeln((checked(10) * 1000 * 1000 * 1000).get); // Overflow } --- Similarly, $(D checked(-1) > uint(0)) aborts execution (even though the built-in comparison $(D int(-1) > uint(0)) is surprisingly true due to language's conversion rules modeled after C). Thus, `Checked!int` is a virtually drop-in replacement for `int` useable in debug builds, to be replaced by `int` in release mode if efficiency demands it. `Checked` has customizable behavior with the help of a second type parameter, `Hook`. Depending on what methods `Hook` defines, core operations on the underlying integral may be verified for overflow or completely redefined. If `Hook` defines no method at all and carries no state, there is no change in behavior, i.e. $(D Checked!(int, void)) is a wrapper around `int` that adds no customization at all. This module provides a few predefined hooks (below) that add useful behavior to `Checked`: $(BOOKTABLE , $(TR $(TD $(LREF Abort)) $(TD fails every incorrect operation with a message to $(REF stderr, std, stdio) followed by a call to `assert(0)`. It is the default second parameter, i.e. `Checked!short` is the same as $(D Checked!(short, Abort)). )) $(TR $(TD $(LREF Throw)) $(TD fails every incorrect operation by throwing an exception. )) $(TR $(TD $(LREF Warn)) $(TD prints incorrect operations to $(REF stderr, std, stdio) but otherwise preserves the built-in behavior. )) $(TR $(TD $(LREF ProperCompare)) $(TD fixes the comparison operators `==`, `!=`, `<`, `<=`, `>`, and `>=` to return correct results in all circumstances, at a slight cost in efficiency. For example, $(D Checked!(uint, ProperCompare)(1) > -1) is `true`, which is not the case for the built-in comparison. Also, comparing numbers for equality with floating-point numbers only passes if the integral can be converted to the floating-point number precisely, so as to preserve transitivity of equality. )) $(TR $(TD $(LREF WithNaN)) $(TD reserves a special "Not a Number" (NaN) value akin to the homonym value reserved for floating-point values. Once a $(D Checked!(X, WithNaN)) gets this special value, it preserves and propagates it until reassigned. $(LREF isNaN) can be used to query whether the object is not a number. )) $(TR $(TD $(LREF Saturate)) $(TD implements saturating arithmetic, i.e. $(D Checked!(int, Saturate)) "stops" at `int.max` for all operations that would cause an `int` to overflow toward infinity, and at `int.min` for all operations that would correspondingly overflow toward negative infinity. )) ) These policies may be used alone, e.g. $(D Checked!(uint, WithNaN)) defines a `uint`-like type that reaches a stable NaN state for all erroneous operations. They may also be "stacked" on top of each other, owing to the property that a checked integral emulates an actual integral, which means another checked integral can be built on top of it. Some combinations of interest include: $(BOOKTABLE , $(TR $(TD $(D Checked!(Checked!int, ProperCompare)))) $(TR $(TD defines an `int` with fixed comparison operators that will fail with `assert(0)` upon overflow. (Recall that `Abort` is the default policy.) The order in which policies are combined is important because the outermost policy (`ProperCompare` in this case) has the first crack at intercepting an operator. The converse combination $(D Checked!(Checked!(int, ProperCompare))) is meaningless because `Abort` will intercept comparison and will fail without giving `ProperCompare` a chance to intervene. )) $(TR $(TD)) $(TR $(TDNW $(D Checked!(Checked!(int, ProperCompare), WithNaN)))) $(TR $(TD defines an `int`-like type that supports a NaN value. For values that are not NaN, comparison works properly. Again the composition order is important; $(D Checked!(Checked!(int, WithNaN), ProperCompare)) does not have good semantics because `ProperCompare` intercepts comparisons before the numbers involved are tested for NaN. )) ) The hook's members are looked up statically in a Design by Introspection manner and are all optional. The table below illustrates the members that a hook type may define and their influence over the behavior of the `Checked` type using it. In the table, `hook` is an alias for `Hook` if the type `Hook` does not introduce any state, or an object of type `Hook` otherwise. $(TABLE , $(TR $(TH `Hook` member) $(TH Semantics in $(D Checked!(T, Hook))) ) $(TR $(TD `defaultValue`) $(TD If defined, `Hook.defaultValue!T` is used as the default initializer of the payload.) ) $(TR $(TD `min`) $(TD If defined, `Hook.min!T` is used as the minimum value of the payload.) ) $(TR $(TD `max`) $(TD If defined, `Hook.max!T` is used as the maximum value of the payload.) ) $(TR $(TD `hookOpCast`) $(TD If defined, `hook.hookOpCast!U(get)` is forwarded to unconditionally when the payload is to be cast to type `U`.) ) $(TR $(TD `onBadCast`) $(TD If defined and `hookOpCast` is $(I not) defined, `onBadCast!U(get)` is forwarded to when the payload is to be cast to type `U` and the cast would lose information or force a change of sign.) ) $(TR $(TD `hookOpEquals`) $(TD If defined, $(D hook.hookOpEquals(get, rhs)) is forwarded to unconditionally when the payload is compared for equality against value `rhs` of integral, floating point, or Boolean type.) ) $(TR $(TD `hookOpCmp`) $(TD If defined, $(D hook.hookOpCmp(get, rhs)) is forwarded to unconditionally when the payload is compared for ordering against value `rhs` of integral, floating point, or Boolean type.) ) $(TR $(TD `hookOpUnary`) $(TD If defined, `hook.hookOpUnary!op(get)` (where `op` is the operator symbol) is forwarded to for unary operators `-` and `~`. In addition, for unary operators `++` and `--`, `hook.hookOpUnary!op(payload)` is called, where `payload` is a reference to the value wrapped by `Checked` so the hook can change it.) ) $(TR $(TD `hookOpBinary`) $(TD If defined, $(D hook.hookOpBinary!op(get, rhs)) (where `op` is the operator symbol and `rhs` is the right-hand side operand) is forwarded to unconditionally for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`.) ) $(TR $(TD `hookOpBinaryRight`) $(TD If defined, $(D hook.hookOpBinaryRight!op(lhs, get)) (where `op` is the operator symbol and `lhs` is the left-hand side operand) is forwarded to unconditionally for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`.) ) $(TR $(TD `onOverflow`) $(TD If defined, `hook.onOverflow!op(get)` is forwarded to for unary operators that overflow but only if `hookOpUnary` is not defined. Unary `~` does not overflow; unary `-` overflows only when the most negative value of a signed type is negated, and the result of the hook call is returned. When the increment or decrement operators overflow, the payload is assigned the result of `hook.onOverflow!op(get)`. When a binary operator overflows, the result of $(D hook.onOverflow!op(get, rhs)) is returned, but only if `Hook` does not define `hookOpBinary`.) ) $(TR $(TD `hookOpOpAssign`) $(TD If defined, $(D hook.hookOpOpAssign!op(payload, rhs)) (where `op` is the operator symbol and `rhs` is the right-hand side operand) is forwarded to unconditionally for binary operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=`.) ) $(TR $(TD `onLowerBound`) $(TD If defined, $(D hook.onLowerBound(value, bound)) (where `value` is the value being assigned) is forwarded to when the result of binary operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=` is smaller than the smallest value representable by `T`.) ) $(TR $(TD `onUpperBound`) $(TD If defined, $(D hook.onUpperBound(value, bound)) (where `value` is the value being assigned) is forwarded to when the result of binary operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=` is larger than the largest value representable by `T`.) ) $(TR $(TD `hookToHash`) $(TD If defined, $(D hook.hookToHash(payload)) (where `payload` is a reference to the value wrapped by Checked) is forwarded to when `toHash` is called on a Checked type. Custom hashing can be implemented in a `Hook`, otherwise the built-in hashing is used.) ) ) Source: $(PHOBOSSRC std/experimental/checkedint.d) */ module std.experimental.checkedint; import std.traits : isFloatingPoint, isIntegral, isNumeric, isUnsigned, Unqual; /// @system unittest { int[] concatAndAdd(int[] a, int[] b, int offset) { // Aborts on overflow on size computation auto r = new int[(checked(a.length) + b.length).get]; // Aborts on overflow on element computation foreach (i; 0 .. a.length) r[i] = (a[i] + checked(offset)).get; foreach (i; 0 .. b.length) r[i + a.length] = (b[i] + checked(offset)).get; return r; } assert(concatAndAdd([1, 2, 3], [4, 5], -1) == [0, 1, 2, 3, 4]); } /// `Saturate` stops at an overflow @safe unittest { auto x = (cast(byte) 127).checked!Saturate; assert(x == 127); x++; assert(x == 127); } /// `WithNaN` has a special "Not a Number" (NaN) value akin to the homonym value reserved for floating-point values @safe unittest { auto x = 100.checked!WithNaN; assert(x == 100); x /= 0; assert(x.isNaN); } /// `ProperCompare` fixes the comparison operators ==, !=, <, <=, >, and >= to return correct results @safe unittest { uint x = 1; auto y = x.checked!ProperCompare; assert(x < -1); // built-in comparison assert(y > -1); // ProperCompare } /// `Throw` fails every incorrect operation by throwing an exception @safe unittest { import std.exception : assertThrown; auto x = -1.checked!Throw; assertThrown(x / 0); assertThrown(x + int.min); assertThrown(x == uint.max); } /** Checked integral type wraps an integral `T` and customizes its behavior with the help of a `Hook` type. The type wrapped must be one of the predefined integrals (unqualified), or another instance of `Checked`. */ struct Checked(T, Hook = Abort) if (isIntegral!T || is(T == Checked!(U, H), U, H)) { import std.algorithm.comparison : among; import std.experimental.allocator.common : stateSize; import std.traits : hasMember; /** The type of the integral subject to checking. */ alias Representation = T; // state { static if (hasMember!(Hook, "defaultValue")) private T payload = Hook.defaultValue!T; else private T payload; /** `hook` is a member variable if it has state, or an alias for `Hook` otherwise. */ static if (stateSize!Hook > 0) Hook hook; else alias hook = Hook; // } state // get /** Returns a copy of the underlying value. */ auto get() inout { return payload; } /// @safe unittest { auto x = checked(ubyte(42)); static assert(is(typeof(x.get()) == ubyte)); assert(x.get == 42); const y = checked(ubyte(42)); static assert(is(typeof(y.get()) == const ubyte)); assert(y.get == 42); } /** Defines the minimum and maximum. These values are hookable by defining `Hook.min` and/or `Hook.max`. */ static if (hasMember!(Hook, "min")) { enum Checked!(T, Hook) min = Checked!(T, Hook)(Hook.min!T); /// @system unittest { assert(Checked!short.min == -32768); assert(Checked!(short, WithNaN).min == -32767); assert(Checked!(uint, WithNaN).max == uint.max - 1); } } else enum Checked!(T, Hook) min = Checked(T.min); /// ditto static if (hasMember!(Hook, "max")) enum Checked!(T, Hook) max = Checked(Hook.max!T); else enum Checked!(T, Hook) max = Checked(T.max); /** Constructor taking a value properly convertible to the underlying type. `U` may be either an integral that can be converted to `T` without a loss, or another `Checked` instance whose representation may be in turn converted to `T` without a loss. */ this(U)(U rhs) if (valueConvertible!(U, T) || !isIntegral!T && is(typeof(T(rhs))) || is(U == Checked!(V, W), V, W) && is(typeof(Checked!(T, Hook)(rhs.get)))) { static if (isIntegral!U) payload = rhs; else payload = rhs.payload; } /// @system unittest { auto a = checked(42L); assert(a == 42); auto b = Checked!long(4242); // convert 4242 to long assert(b == 4242); } /** Assignment operator. Has the same constraints as the constructor. */ ref Checked opAssign(U)(U rhs) return if (is(typeof(Checked!(T, Hook)(rhs)))) { static if (isIntegral!U) payload = rhs; else payload = rhs.payload; return this; } /// @system unittest { Checked!long a; a = 42L; assert(a == 42); a = 4242; assert(a == 4242); } /// @system unittest { Checked!long a, b; a = b = 3; assert(a == 3 && b == 3); } // opCast /** Casting operator to integral, `bool`, or floating point type. If `Hook` defines `hookOpCast`, the call immediately returns `hook.hookOpCast!U(get)`. Otherwise, casting to `bool` yields $(D get != 0) and casting to another integral that can represent all values of `T` returns `get` promoted to `U`. If a cast to a floating-point type is requested and `Hook` defines `onBadCast`, the cast is verified by ensuring $(D get == cast(T) U(get)). If that is not `true`, `hook.onBadCast!U(get)` is returned. If a cast to an integral type is requested and `Hook` defines `onBadCast`, the cast is verified by ensuring `get` and $(D cast(U) get) are the same arithmetic number. (Note that `int(-1)` and `uint(1)` are different values arithmetically although they have the same bitwise representation and compare equal by language rules.) If the numbers are not arithmetically equal, `hook.onBadCast!U(get)` is returned. */ U opCast(U, this _)() if (isIntegral!U || isFloatingPoint!U || is(U == bool)) { static if (hasMember!(Hook, "hookOpCast")) { return hook.hookOpCast!U(payload); } else static if (is(U == bool)) { return payload != 0; } else static if (valueConvertible!(T, U)) { return payload; } // may lose bits or precision else static if (!hasMember!(Hook, "onBadCast")) { return cast(U) payload; } else { if (isUnsigned!T || !isUnsigned!U || T.sizeof > U.sizeof || payload >= 0) { auto result = cast(U) payload; // If signedness is different, we need additional checks if (result == payload && (!isUnsigned!T || isUnsigned!U || result >= 0)) return result; } return hook.onBadCast!U(payload); } } /// @system unittest { assert(cast(uint) checked(42) == 42); assert(cast(uint) checked!WithNaN(-42) == uint.max); } // opEquals /** Compares `this` against `rhs` for equality. If `Hook` defines `hookOpEquals`, the function forwards to $(D hook.hookOpEquals(get, rhs)). Otherwise, the result of the built-in operation $(D get == rhs) is returned. If `U` is also an instance of `Checked`, both hooks (left- and right-hand side) are introspected for the method `hookOpEquals`. If both define it, priority is given to the left-hand side. */ bool opEquals(U, this _)(U rhs) if (isIntegral!U || isFloatingPoint!U || is(U == bool) || is(U == Checked!(V, W), V, W) && is(typeof(this == rhs.payload))) { static if (is(U == Checked!(V, W), V, W)) { alias R = typeof(payload + rhs.payload); static if (is(Hook == W)) { // Use the lhs hook if there return this == rhs.payload; } else static if (valueConvertible!(T, R) && valueConvertible!(V, R)) { return payload == rhs.payload; } else static if (hasMember!(Hook, "hookOpEquals")) { return hook.hookOpEquals(payload, rhs.payload); } else static if (hasMember!(W, "hookOpEquals")) { return rhs.hook.hookOpEquals(rhs.payload, payload); } else { return payload == rhs.payload; } } else static if (hasMember!(Hook, "hookOpEquals")) return hook.hookOpEquals(payload, rhs); else static if (isIntegral!U || isFloatingPoint!U || is(U == bool)) return payload == rhs; } /// static if (is(T == int) && is(Hook == void)) @safe unittest { import std.traits : isUnsigned; static struct MyHook { static bool thereWereErrors; static bool hookOpEquals(L, R)(L lhs, R rhs) { if (lhs != rhs) return false; static if (isUnsigned!L && !isUnsigned!R) { if (lhs > 0 && rhs < 0) thereWereErrors = true; } else static if (isUnsigned!R && !isUnsigned!L) if (lhs < 0 && rhs > 0) thereWereErrors = true; // Preserve built-in behavior. return true; } } auto a = checked!MyHook(-42); assert(a == uint(-42)); assert(MyHook.thereWereErrors); MyHook.thereWereErrors = false; assert(checked!MyHook(uint(-42)) == -42); assert(MyHook.thereWereErrors); static struct MyHook2 { static bool hookOpEquals(L, R)(L lhs, R rhs) { return lhs == rhs; } } MyHook.thereWereErrors = false; assert(checked!MyHook2(uint(-42)) == a); // Hook on left hand side takes precedence, so no errors assert(!MyHook.thereWereErrors); } // toHash /** Generates a hash for `this`. If `Hook` defines `hookToHash`, the call immediately returns `hook.hookToHash(payload)`. If `Hook` does not implement `hookToHash`, but it has state, a hash will be generated for the `Hook` using the built-in function and it will be xored with the hash of the `payload`. */ size_t toHash() const nothrow @safe { static if (hasMember!(Hook, "hookToHash")) { return hook.hookToHash(payload); } else static if (stateSize!Hook > 0) { static if (hasMember!(typeof(payload), "toHash")) { return payload.toHash() ^ hashOf(hook); } else { return hashOf(payload) ^ hashOf(hook); } } else static if (hasMember!(typeof(payload), "toHash")) { return payload.toHash(); } else { return .hashOf(payload); } } // opCmp /** Compares `this` against `rhs` for ordering. If `Hook` defines `hookOpCmp`, the function forwards to $(D hook.hookOpCmp(get, rhs)). Otherwise, the result of the built-in comparison operation is returned. If `U` is also an instance of `Checked`, both hooks (left- and right-hand side) are introspected for the method `hookOpCmp`. If both define it, priority is given to the left-hand side. */ auto opCmp(U, this _)(const U rhs) //const pure @safe nothrow @nogc if (isIntegral!U || isFloatingPoint!U || is(U == bool)) { static if (hasMember!(Hook, "hookOpCmp")) { return hook.hookOpCmp(payload, rhs); } else static if (valueConvertible!(T, U) || valueConvertible!(U, T)) { return payload < rhs ? -1 : payload > rhs; } else static if (isFloatingPoint!U) { U lhs = payload; return lhs < rhs ? U(-1.0) : lhs > rhs ? U(1.0) : lhs == rhs ? U(0.0) : U.init; } else { return payload < rhs ? -1 : payload > rhs; } } /// ditto auto opCmp(U, Hook1, this _)(Checked!(U, Hook1) rhs) { alias R = typeof(payload + rhs.payload); static if (valueConvertible!(T, R) && valueConvertible!(U, R)) { return payload < rhs.payload ? -1 : payload > rhs.payload; } else static if (is(Hook == Hook1)) { // Use the lhs hook return this.opCmp(rhs.payload); } else static if (hasMember!(Hook, "hookOpCmp")) { return hook.hookOpCmp(get, rhs.get); } else static if (hasMember!(Hook1, "hookOpCmp")) { return -rhs.hook.hookOpCmp(rhs.payload, get); } else { return payload < rhs.payload ? -1 : payload > rhs.payload; } } /// static if (is(T == int) && is(Hook == void)) @safe unittest { import std.traits : isUnsigned; static struct MyHook { static bool thereWereErrors; static int hookOpCmp(L, R)(L lhs, R rhs) { static if (isUnsigned!L && !isUnsigned!R) { if (rhs < 0 && rhs >= lhs) thereWereErrors = true; } else static if (isUnsigned!R && !isUnsigned!L) { if (lhs < 0 && lhs >= rhs) thereWereErrors = true; } // Preserve built-in behavior. return lhs < rhs ? -1 : lhs > rhs; } } auto a = checked!MyHook(-42); assert(a > uint(42)); assert(MyHook.thereWereErrors); static struct MyHook2 { static int hookOpCmp(L, R)(L lhs, R rhs) { // Default behavior return lhs < rhs ? -1 : lhs > rhs; } } MyHook.thereWereErrors = false; assert(Checked!(uint, MyHook2)(uint(-42)) <= a); //assert(Checked!(uint, MyHook2)(uint(-42)) >= a); // Hook on left hand side takes precedence, so no errors assert(!MyHook.thereWereErrors); assert(a <= Checked!(uint, MyHook2)(uint(-42))); assert(MyHook.thereWereErrors); } // For coverage static if (is(T == int) && is(Hook == void)) @system unittest { assert(checked(42) <= checked!void(42)); assert(checked!void(42) <= checked(42u)); assert(checked!void(42) <= checked!(void*)(42u)); } // opUnary /** Defines unary operators `+`, `-`, `~`, `++`, and `--`. Unary `+` is not overridable and always has built-in behavior (returns `this`). For the others, if `Hook` defines `hookOpUnary`, `opUnary` forwards to $(D Checked!(typeof(hook.hookOpUnary!op(get)), Hook)(hook.hookOpUnary!op(get))). If `Hook` does not define `hookOpUnary` but defines `onOverflow`, `opUnary` forwards to `hook.onOverflow!op(get)` in case an overflow occurs. For `++` and `--`, the payload is assigned from the result of the call to `onOverflow`. Note that unary `-` is considered to overflow if `T` is a signed integral of 32 or 64 bits and is equal to the most negative value. This is because that value has no positive negation. */ auto opUnary(string op, this _)() if (op == "+" || op == "-" || op == "~") { static if (op == "+") return Checked(this); // "+" is not hookable else static if (hasMember!(Hook, "hookOpUnary")) { auto r = hook.hookOpUnary!op(payload); return Checked!(typeof(r), Hook)(r); } else static if (op == "-" && isIntegral!T && T.sizeof >= 4 && !isUnsigned!T && hasMember!(Hook, "onOverflow")) { static assert(is(typeof(-payload) == typeof(payload))); bool overflow; import core.checkedint : negs; auto r = negs(payload, overflow); if (overflow) r = hook.onOverflow!op(payload); return Checked(r); } else return Checked(mixin(op ~ "payload")); } /// ditto ref Checked opUnary(string op)() return if (op == "++" || op == "--") { static if (hasMember!(Hook, "hookOpUnary")) hook.hookOpUnary!op(payload); else static if (hasMember!(Hook, "onOverflow")) { static if (op == "++") { if (payload == max.payload) payload = hook.onOverflow!"++"(payload); else ++payload; } else { if (payload == min.payload) payload = hook.onOverflow!"--"(payload); else --payload; } } else mixin(op ~ "payload;"); return this; } /// static if (is(T == int) && is(Hook == void)) @safe unittest { static struct MyHook { static bool thereWereErrors; static L hookOpUnary(string x, L)(L lhs) { if (x == "-" && lhs == -lhs) thereWereErrors = true; return -lhs; } } auto a = checked!MyHook(long.min); assert(a == -a); assert(MyHook.thereWereErrors); auto b = checked!void(42); assert(++b == 43); } // opBinary /** Defines binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`. If `Hook` defines `hookOpBinary`, `opBinary` forwards to $(D Checked!(typeof(hook.hookOpBinary!op(get, rhs)), Hook)(hook.hookOpBinary!op(get, rhs))). If `Hook` does not define `hookOpBinary` but defines `onOverflow`, `opBinary` forwards to `hook.onOverflow!op(get, rhs)` in case an overflow occurs. If two `Checked` instances are involved in a binary operation and both define `hookOpBinary`, the left-hand side hook has priority. If both define `onOverflow`, a compile-time error occurs. */ auto opBinary(string op, Rhs)(const Rhs rhs) if (isIntegral!Rhs || isFloatingPoint!Rhs || is(Rhs == bool)) { return opBinaryImpl!(op, Rhs, typeof(this))(rhs); } /// ditto auto opBinary(string op, Rhs)(const Rhs rhs) const if (isIntegral!Rhs || isFloatingPoint!Rhs || is(Rhs == bool)) { return opBinaryImpl!(op, Rhs, typeof(this))(rhs); } private auto opBinaryImpl(string op, Rhs, this _)(const Rhs rhs) { alias R = typeof(mixin("payload" ~ op ~ "rhs")); static assert(is(typeof(mixin("payload" ~ op ~ "rhs")) == R)); static if (isIntegral!R) alias Result = Checked!(R, Hook); else alias Result = R; static if (hasMember!(Hook, "hookOpBinary")) { auto r = hook.hookOpBinary!op(payload, rhs); return Checked!(typeof(r), Hook)(r); } else static if (is(Rhs == bool)) { return mixin("this" ~ op ~ "ubyte(rhs)"); } else static if (isFloatingPoint!Rhs) { return mixin("payload" ~ op ~ "rhs"); } else static if (hasMember!(Hook, "onOverflow")) { bool overflow; auto r = opChecked!op(payload, rhs, overflow); if (overflow) r = hook.onOverflow!op(payload, rhs); return Result(r); } else { // Default is built-in behavior return Result(mixin("payload" ~ op ~ "rhs")); } } /// ditto auto opBinary(string op, U, Hook1)(Checked!(U, Hook1) rhs) { return opBinaryImpl2!(op, U, Hook1, typeof(this))(rhs); } /// ditto auto opBinary(string op, U, Hook1)(Checked!(U, Hook1) rhs) const { return opBinaryImpl2!(op, U, Hook1, typeof(this))(rhs); } private auto opBinaryImpl2(string op, U, Hook1, this _)(Checked!(U, Hook1) rhs) { alias R = typeof(get + rhs.payload); static if (valueConvertible!(T, R) && valueConvertible!(U, R) || is(Hook == Hook1)) { // Delegate to lhs return mixin("this" ~ op ~ "rhs.payload"); } else static if (hasMember!(Hook, "hookOpBinary")) { return hook.hookOpBinary!op(payload, rhs); } else static if (hasMember!(Hook1, "hookOpBinary")) { // Delegate to rhs return mixin("this.payload" ~ op ~ "rhs"); } else static if (hasMember!(Hook, "onOverflow") && !hasMember!(Hook1, "onOverflow")) { // Delegate to lhs return mixin("this" ~ op ~ "rhs.payload"); } else static if (hasMember!(Hook1, "onOverflow") && !hasMember!(Hook, "onOverflow")) { // Delegate to rhs return mixin("this.payload" ~ op ~ "rhs"); } else { static assert(0, "Conflict between lhs and rhs hooks," ~ " use .get on one side to disambiguate."); } } static if (is(T == int) && is(Hook == void)) @system unittest { const a = checked(42); assert(a + 1 == 43); assert(a + checked(uint(42)) == 84); assert(checked(42) + checked!void(42u) == 84); assert(checked!void(42) + checked(42u) == 84); static struct MyHook { static uint tally; static auto hookOpBinary(string x, L, R)(L lhs, R rhs) { ++tally; return mixin("lhs" ~ x ~ "rhs"); } } assert(checked!MyHook(42) + checked(42u) == 84); assert(checked!void(42) + checked!MyHook(42u) == 84); assert(MyHook.tally == 2); } // opBinaryRight /** Defines binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for the case when a built-in numeric or Boolean type is on the left-hand side, and a `Checked` instance is on the right-hand side. */ auto opBinaryRight(string op, Lhs)(const Lhs lhs) if (isIntegral!Lhs || isFloatingPoint!Lhs || is(Lhs == bool)) { return opBinaryRightImpl!(op, Lhs, typeof(this))(lhs); } /// ditto auto opBinaryRight(string op, Lhs)(const Lhs lhs) const if (isIntegral!Lhs || isFloatingPoint!Lhs || is(Lhs == bool)) { return opBinaryRightImpl!(op, Lhs, typeof(this))(lhs); } private auto opBinaryRightImpl(string op, Lhs, this _)(const Lhs lhs) { static if (hasMember!(Hook, "hookOpBinaryRight")) { auto r = hook.hookOpBinaryRight!op(lhs, payload); return Checked!(typeof(r), Hook)(r); } else static if (hasMember!(Hook, "hookOpBinary")) { auto r = hook.hookOpBinary!op(lhs, payload); return Checked!(typeof(r), Hook)(r); } else static if (is(Lhs == bool)) { return mixin("ubyte(lhs)" ~ op ~ "this"); } else static if (isFloatingPoint!Lhs) { return mixin("lhs" ~ op ~ "payload"); } else static if (hasMember!(Hook, "onOverflow")) { bool overflow; auto r = opChecked!op(lhs, T(payload), overflow); if (overflow) r = hook.onOverflow!op(42); return Checked!(typeof(r), Hook)(r); } else { // Default is built-in behavior auto r = mixin("lhs" ~ op ~ "T(payload)"); return Checked!(typeof(r), Hook)(r); } } static if (is(T == int) && is(Hook == void)) @system unittest { assert(1 + checked(1) == 2); static uint tally; static struct MyHook { static auto hookOpBinaryRight(string x, L, R)(L lhs, R rhs) { ++tally; return mixin("lhs" ~ x ~ "rhs"); } } assert(1 + checked!MyHook(1) == 2); assert(tally == 1); immutable x1 = checked(1); assert(1 + x1 == 2); immutable x2 = checked!MyHook(1); assert(1 + x2 == 2); assert(tally == 2); } // opOpAssign /** Defines operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=`. If `Hook` defines `hookOpOpAssign`, `opOpAssign` forwards to `hook.hookOpOpAssign!op(payload, rhs)`, where `payload` is a reference to the internally held data so the hook can change it. Otherwise, the operator first evaluates $(D auto result = opBinary!op(payload, rhs).payload), which is subject to the hooks in `opBinary`. Then, if `result` is less than $(D Checked!(T, Hook).min) and if `Hook` defines `onLowerBound`, the payload is assigned from $(D hook.onLowerBound(result, min)). If `result` is greater than $(D Checked!(T, Hook).max) and if `Hook` defines `onUpperBound`, the payload is assigned from $(D hook.onUpperBound(result, min)). If the right-hand side is also a Checked but with a different hook or underlying type, the hook and underlying type of this Checked takes precedence. In all other cases, the built-in behavior is carried out. Params: op = The operator involved (without the `"="`, e.g. `"+"` for `"+="` etc) rhs = The right-hand side of the operator (left-hand side is `this`) Returns: A reference to `this`. */ ref Checked opOpAssign(string op, Rhs)(const Rhs rhs) return if (isIntegral!Rhs || isFloatingPoint!Rhs || is(Rhs == bool)) { static assert(is(typeof(mixin("payload" ~ op ~ "=rhs")) == T)); static if (hasMember!(Hook, "hookOpOpAssign")) { hook.hookOpOpAssign!op(payload, rhs); } else { alias R = typeof(get + rhs); auto r = opBinary!op(rhs).get; import std.conv : unsigned; static if (ProperCompare.hookOpCmp(R.min, min.get) < 0 && hasMember!(Hook, "onLowerBound")) { if (ProperCompare.hookOpCmp(r, min.get) < 0) { // Example: Checked!uint(1) += int(-3) payload = hook.onLowerBound(r, min.get); return this; } } static if (ProperCompare.hookOpCmp(max.get, R.max) < 0 && hasMember!(Hook, "onUpperBound")) { if (ProperCompare.hookOpCmp(r, max.get) > 0) { // Example: Checked!uint(1) += long(uint.max) payload = hook.onUpperBound(r, max.get); return this; } } payload = cast(T) r; } return this; } /// ditto ref Checked opOpAssign(string op, Rhs)(const Rhs rhs) return if (is(Rhs == Checked!(RhsT, RhsHook), RhsT, RhsHook)) { return opOpAssign!(op, typeof(rhs.payload))(rhs.payload); } /// static if (is(T == int) && is(Hook == void)) @safe unittest { static struct MyHook { static bool thereWereErrors; static T onLowerBound(Rhs, T)(Rhs rhs, T bound) { thereWereErrors = true; return bound; } static T onUpperBound(Rhs, T)(Rhs rhs, T bound) { thereWereErrors = true; return bound; } } auto x = checked!MyHook(byte.min); x -= 1; assert(MyHook.thereWereErrors); MyHook.thereWereErrors = false; x = byte.max; x += 1; assert(MyHook.thereWereErrors); } } /** Convenience function that turns an integral into the corresponding `Checked` instance by using template argument deduction. The hook type may be specified (by default `Abort`). */ Checked!(T, Hook) checked(Hook = Abort, T)(const T value) if (is(typeof(Checked!(T, Hook)(value)))) { return Checked!(T, Hook)(value); } /// @system unittest { static assert(is(typeof(checked(42)) == Checked!int)); assert(checked(42) == Checked!int(42)); static assert(is(typeof(checked!WithNaN(42)) == Checked!(int, WithNaN))); assert(checked!WithNaN(42) == Checked!(int, WithNaN)(42)); } // get @safe unittest { void test(T)() { assert(Checked!(T, void)(ubyte(22)).get == 22); } test!ubyte; test!(const ubyte); test!(immutable ubyte); } // Abort /** Force all integral errors to fail by printing an error message to `stderr` and then abort the program. `Abort` is the default second argument for `Checked`. */ struct Abort { static: /** Called automatically upon a bad cast (one that loses precision or attempts to convert a negative value to an unsigned type). The source type is `Src` and the destination type is `Dst`. Params: src = The source of the cast Returns: Nominally the result is the desired value of the cast operation, which will be forwarded as the result of the cast. For `Abort`, the function never returns because it aborts the program. */ Dst onBadCast(Dst, Src)(Src src) { Warn.onBadCast!Dst(src); assert(0); } /** Called automatically upon a bounds error. Params: rhs = The right-hand side value in the assignment, after the operator has been evaluated bound = The value of the bound being violated Returns: Nominally the result is the desired value of the operator, which will be forwarded as result. For `Abort`, the function never returns because it aborts the program. */ T onLowerBound(Rhs, T)(Rhs rhs, T bound) { Warn.onLowerBound(rhs, bound); assert(0); } /// ditto T onUpperBound(Rhs, T)(Rhs rhs, T bound) { Warn.onUpperBound(rhs, bound); assert(0); } /** Called automatically upon a comparison for equality. In case of a erroneous comparison (one that would make a signed negative value appear equal to an unsigned positive value), this hook issues `assert(0)` which terminates the application. Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: Upon a correct comparison, returns the result of the comparison. Otherwise, the function terminates the application so it never returns. */ static bool hookOpEquals(Lhs, Rhs)(Lhs lhs, Rhs rhs) { bool error; auto result = opChecked!"=="(lhs, rhs, error); if (error) { Warn.hookOpEquals(lhs, rhs); assert(0); } return result; } /** Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. it would make a signed negative value appear greater than or equal to an unsigned positive value), then application is terminated with `assert(0)`. Otherwise, the three-state result is returned (positive if $(D lhs > rhs), negative if $(D lhs < rhs), `0` otherwise). Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: For correct comparisons, returns a positive integer if $(D lhs > rhs), a negative integer if $(D lhs < rhs), `0` if the two are equal. Upon a mistaken comparison such as $(D int(-1) < uint(0)), the function never returns because it aborts the program. */ int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { bool error; auto result = opChecked!"cmp"(lhs, rhs, error); if (error) { Warn.hookOpCmp(lhs, rhs); assert(0); } return result; } /** Called automatically upon an overflow during a unary or binary operation. Params: x = The operator, e.g. `-` lhs = The left-hand side (or sole) argument rhs = The right-hand side type involved in the operator Returns: Nominally the result is the desired value of the operator, which will be forwarded as result. For `Abort`, the function never returns because it aborts the program. */ typeof(~Lhs()) onOverflow(string x, Lhs)(Lhs lhs) { Warn.onOverflow!x(lhs); assert(0); } /// ditto typeof(Lhs() + Rhs()) onOverflow(string x, Lhs, Rhs)(Lhs lhs, Rhs rhs) { Warn.onOverflow!x(lhs, rhs); assert(0); } } @system unittest { void test(T)() { Checked!(int, Abort) x; x = 42; auto x1 = cast(T) x; assert(x1 == 42); //x1 += long(int.max); } test!short; test!(const short); test!(immutable short); } // Throw /** Force all integral errors to fail by throwing an exception of type `Throw.CheckFailure`. The message coming with the error is similar to the one printed by `Warn`. */ struct Throw { /** Exception type thrown upon any failure. */ static class CheckFailure : Exception { this(T...)(string f, T vals) { import std.format : format; super(format(f, vals)); } } /** Called automatically upon a bad cast (one that loses precision or attempts to convert a negative value to an unsigned type). The source type is `Src` and the destination type is `Dst`. Params: src = The source of the cast Returns: Nominally the result is the desired value of the cast operation, which will be forwarded as the result of the cast. For `Throw`, the function never returns because it throws an exception. */ static Dst onBadCast(Dst, Src)(Src src) { throw new CheckFailure("Erroneous cast: cast(%s) %s(%s)", Dst.stringof, Src.stringof, src); } /** Called automatically upon a bounds error. Params: rhs = The right-hand side value in the assignment, after the operator has been evaluated bound = The value of the bound being violated Returns: Nominally the result is the desired value of the operator, which will be forwarded as result. For `Throw`, the function never returns because it throws. */ static T onLowerBound(Rhs, T)(Rhs rhs, T bound) { throw new CheckFailure("Lower bound error: %s(%s) < %s(%s)", Rhs.stringof, rhs, T.stringof, bound); } /// ditto static T onUpperBound(Rhs, T)(Rhs rhs, T bound) { throw new CheckFailure("Upper bound error: %s(%s) > %s(%s)", Rhs.stringof, rhs, T.stringof, bound); } /** Called automatically upon a comparison for equality. Throws upon an erroneous comparison (one that would make a signed negative value appear equal to an unsigned positive value). Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: The result of the comparison. Throws: `CheckFailure` if the comparison is mathematically erroneous. */ static bool hookOpEquals(L, R)(L lhs, R rhs) { bool error; auto result = opChecked!"=="(lhs, rhs, error); if (error) { throw new CheckFailure("Erroneous comparison: %s(%s) == %s(%s)", L.stringof, lhs, R.stringof, rhs); } return result; } /** Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. it would make a signed negative value appear greater than or equal to an unsigned positive value), throws a `Throw.CheckFailure` exception. Otherwise, the three-state result is returned (positive if $(D lhs > rhs), negative if $(D lhs < rhs), `0` otherwise). Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: For correct comparisons, returns a positive integer if $(D lhs > rhs), a negative integer if $(D lhs < rhs), `0` if the two are equal. Throws: Upon a mistaken comparison such as $(D int(-1) < uint(0)), the function never returns because it throws a `Throw.CheckedFailure` exception. */ static int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { bool error; auto result = opChecked!"cmp"(lhs, rhs, error); if (error) { throw new CheckFailure("Erroneous ordering comparison: %s(%s) and %s(%s)", Lhs.stringof, lhs, Rhs.stringof, rhs); } return result; } /** Called automatically upon an overflow during a unary or binary operation. Params: x = The operator, e.g. `-` lhs = The left-hand side (or sole) argument rhs = The right-hand side type involved in the operator Returns: Nominally the result is the desired value of the operator, which will be forwarded as result. For `Throw`, the function never returns because it throws an exception. */ static typeof(~Lhs()) onOverflow(string x, Lhs)(Lhs lhs) { throw new CheckFailure("Overflow on unary operator: %s%s(%s)", x, Lhs.stringof, lhs); } /// ditto static typeof(Lhs() + Rhs()) onOverflow(string x, Lhs, Rhs)(Lhs lhs, Rhs rhs) { throw new CheckFailure("Overflow on binary operator: %s(%s) %s %s(%s)", Lhs.stringof, lhs, x, Rhs.stringof, rhs); } } /// @safe unittest { void test(T)() { Checked!(int, Throw) x; x = 42; auto x1 = cast(T) x; assert(x1 == 42); x = T.max + 1; import std.exception : assertThrown, assertNotThrown; assertThrown(cast(T) x); x = x.max; assertThrown(x += 42); assertThrown(x += 42L); x = x.min; assertThrown(-x); assertThrown(x -= 42); assertThrown(x -= 42L); x = -1; assertNotThrown(x == -1); assertThrown(x == uint(-1)); assertNotThrown(x <= -1); assertThrown(x <= uint(-1)); } test!short; test!(const short); test!(immutable short); } // Warn /** Hook that prints to `stderr` a trace of all integral errors, without affecting default behavior. */ struct Warn { import std.stdio : stderr; static: /** Called automatically upon a bad cast from `src` to type `Dst` (one that loses precision or attempts to convert a negative value to an unsigned type). Params: src = The source of the cast Dst = The target type of the cast Returns: `cast(Dst) src` */ Dst onBadCast(Dst, Src)(Src src) { stderr.writefln("Erroneous cast: cast(%s) %s(%s)", Dst.stringof, Src.stringof, src); return cast(Dst) src; } /** Called automatically upon a bad `opOpAssign` call (one that loses precision or attempts to convert a negative value to an unsigned type). Params: rhs = The right-hand side value in the assignment, after the operator has been evaluated bound = The bound being violated Returns: `cast(Lhs) rhs` */ Lhs onLowerBound(Rhs, T)(Rhs rhs, T bound) { stderr.writefln("Lower bound error: %s(%s) < %s(%s)", Rhs.stringof, rhs, T.stringof, bound); return cast(T) rhs; } /// ditto T onUpperBound(Rhs, T)(Rhs rhs, T bound) { stderr.writefln("Upper bound error: %s(%s) > %s(%s)", Rhs.stringof, rhs, T.stringof, bound); return cast(T) rhs; } /** Called automatically upon a comparison for equality. In case of an Erroneous comparison (one that would make a signed negative value appear equal to an unsigned positive value), writes a warning message to `stderr` as a side effect. Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: In all cases the function returns the built-in result of $(D lhs == rhs). */ bool hookOpEquals(Lhs, Rhs)(Lhs lhs, Rhs rhs) { bool error; auto result = opChecked!"=="(lhs, rhs, error); if (error) { stderr.writefln("Erroneous comparison: %s(%s) == %s(%s)", Lhs.stringof, lhs, Rhs.stringof, rhs); return lhs == rhs; } return result; } /// @system unittest { auto x = checked!Warn(-42); // Passes assert(x == -42); // Passes but prints a warning // assert(x == uint(-42)); } /** Called automatically upon a comparison for ordering using one of the operators `<`, `<=`, `>`, or `>=`. In case the comparison is erroneous (i.e. it would make a signed negative value appear greater than or equal to an unsigned positive value), then a warning message is printed to `stderr`. Params: lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` rhs = The right-hand side type involved in the operator Returns: In all cases, returns $(D lhs < rhs ? -1 : lhs > rhs). The result is not autocorrected in case of an erroneous comparison. */ int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { bool error; auto result = opChecked!"cmp"(lhs, rhs, error); if (error) { stderr.writefln("Erroneous ordering comparison: %s(%s) and %s(%s)", Lhs.stringof, lhs, Rhs.stringof, rhs); return lhs < rhs ? -1 : lhs > rhs; } return result; } /// @system unittest { auto x = checked!Warn(-42); // Passes assert(x <= -42); // Passes but prints a warning // assert(x <= uint(-42)); } /** Called automatically upon an overflow during a unary or binary operation. Params: x = The operator involved Lhs = The first argument of `Checked`, e.g. `int` if the left-hand side of the operator is `Checked!int` Rhs = The right-hand side type involved in the operator Returns: $(D mixin(x ~ "lhs")) for unary, $(D mixin("lhs" ~ x ~ "rhs")) for binary */ typeof(~Lhs()) onOverflow(string x, Lhs)(ref Lhs lhs) { stderr.writefln("Overflow on unary operator: %s%s(%s)", x, Lhs.stringof, lhs); return mixin(x ~ "lhs"); } /// ditto typeof(Lhs() + Rhs()) onOverflow(string x, Lhs, Rhs)(Lhs lhs, Rhs rhs) { stderr.writefln("Overflow on binary operator: %s(%s) %s %s(%s)", Lhs.stringof, lhs, x, Rhs.stringof, rhs); static if (x == "/") // Issue 20743: mixin below would cause SIGFPE on POSIX return typeof(lhs / rhs).min; // or EXCEPTION_INT_OVERFLOW on Windows else return mixin("lhs" ~ x ~ "rhs"); } } /// @system unittest { auto x = checked!Warn(42); short x1 = cast(short) x; //x += long(int.max); auto y = checked!Warn(cast(const int) 42); short y1 = cast(const byte) y; } @system unittest { auto a = checked!Warn(int.min); auto b = checked!Warn(-1); auto x = checked!Abort(int.min); auto y = checked!Abort(-1); // Temporarily redirect output to stderr to make sure we get the right output. import std.process : uniqueTempPath; import std.stdio : stderr; auto tmpname = uniqueTempPath; auto t = stderr; stderr.open(tmpname, "w"); // Open a new scope to minimize code ran with stderr redirected. { scope(exit) stderr = t; assert(a / b == a * b); import std.exception : assertThrown; import core.exception : AssertError; assertThrown!AssertError(x / y); } import std.file : readText; import std.ascii : newline; auto witness = readText(tmpname); auto expected = "Overflow on binary operator: int(-2147483648) / const(int)(-1)" ~ newline ~ "Overflow on binary operator: int(-2147483648) * const(int)(-1)" ~ newline ~ "Overflow on binary operator: int(-2147483648) / const(int)(-1)" ~ newline; assert(witness == expected, "'" ~ witness ~ "'"); } // ProperCompare /** Hook that provides arithmetically correct comparisons for equality and ordering. Comparing an object of type $(D Checked!(X, ProperCompare)) against another integral (for equality or ordering) ensures that no surprising conversions from signed to unsigned integral occur before the comparison. Using $(D Checked!(X, ProperCompare)) on either side of a comparison for equality against a floating-point number makes sure the integral can be properly converted to the floating point type, thus making sure equality is transitive. */ struct ProperCompare { /** Hook for `==` and `!=` that ensures comparison against integral values has the behavior expected by the usual arithmetic rules. The built-in semantics yield surprising behavior when comparing signed values against unsigned values for equality, for example $(D uint.max == -1) or $(D -1_294_967_296 == 3_000_000_000u). The call $(D hookOpEquals(x, y)) returns `true` if and only if `x` and `y` represent the same arithmetic number. If one of the numbers is an integral and the other is a floating-point number, $(D hookOpEquals(x, y)) returns `true` if and only if the integral can be converted exactly (without approximation) to the floating-point number. This is in order to preserve transitivity of equality: if $(D hookOpEquals(x, y)) and $(D hookOpEquals(y, z)) then $(D hookOpEquals(y, z)), in case `x`, `y`, and `z` are a mix of integral and floating-point numbers. Params: lhs = The left-hand side of the comparison for equality rhs = The right-hand side of the comparison for equality Returns: The result of the comparison, `true` if the values are equal */ static bool hookOpEquals(L, R)(L lhs, R rhs) { alias C = typeof(lhs + rhs); static if (isFloatingPoint!C) { static if (!isFloatingPoint!L) { return hookOpEquals(rhs, lhs); } else static if (!isFloatingPoint!R) { static assert(isFloatingPoint!L && !isFloatingPoint!R); auto rhs1 = C(rhs); return lhs == rhs1 && cast(R) rhs1 == rhs; } else return lhs == rhs; } else { bool error; auto result = opChecked!"=="(lhs, rhs, error); if (error) { // Only possible error is a wrong "true" return false; } return result; } } /** Hook for `<`, `<=`, `>`, and `>=` that ensures comparison against integral values has the behavior expected by the usual arithmetic rules. The built-in semantics yield surprising behavior when comparing signed values against unsigned values, for example $(D 0u < -1). The call $(D hookOpCmp(x, y)) returns `-1` if and only if `x` is smaller than `y` in abstract arithmetic sense. If one of the numbers is an integral and the other is a floating-point number, $(D hookOpEquals(x, y)) returns a floating-point number that is `-1` if `x < y`, `0` if `x == y`, `1` if `x > y`, and `NaN` if the floating-point number is `NaN`. Params: lhs = The left-hand side of the comparison for ordering rhs = The right-hand side of the comparison for ordering Returns: The result of the comparison (negative if $(D lhs < rhs), positive if $(D lhs > rhs), `0` if the values are equal) */ static auto hookOpCmp(L, R)(L lhs, R rhs) { alias C = typeof(lhs + rhs); static if (isFloatingPoint!C) { return lhs < rhs ? C(-1) : lhs > rhs ? C(1) : lhs == rhs ? C(0) : C.init; } else { static if (!valueConvertible!(L, C) || !valueConvertible!(R, C)) { static assert(isUnsigned!C); static assert(isUnsigned!L != isUnsigned!R); if (!isUnsigned!L && lhs < 0) return -1; if (!isUnsigned!R && rhs < 0) return 1; } return lhs < rhs ? -1 : lhs > rhs; } } } /// @safe unittest { alias opEqualsProper = ProperCompare.hookOpEquals; assert(opEqualsProper(42, 42)); assert(opEqualsProper(42.0, 42.0)); assert(opEqualsProper(42u, 42)); assert(opEqualsProper(42, 42u)); assert(-1 == 4294967295u); assert(!opEqualsProper(-1, 4294967295u)); assert(!opEqualsProper(const uint(-1), -1)); assert(!opEqualsProper(uint(-1), -1.0)); assert(3_000_000_000U == -1_294_967_296); assert(!opEqualsProper(3_000_000_000U, -1_294_967_296)); } @safe unittest { alias opCmpProper = ProperCompare.hookOpCmp; assert(opCmpProper(42, 42) == 0); assert(opCmpProper(42, 42.0) == 0); assert(opCmpProper(41, 42.0) < 0); assert(opCmpProper(42, 41.0) > 0); import std.math : isNaN; assert(isNaN(opCmpProper(41, double.init))); assert(opCmpProper(42u, 42) == 0); assert(opCmpProper(42, 42u) == 0); assert(opCmpProper(-1, uint(-1)) < 0); assert(opCmpProper(uint(-1), -1) > 0); assert(opCmpProper(-1.0, -1) == 0); } @safe unittest { auto x1 = Checked!(uint, ProperCompare)(42u); assert(x1.get < -1); assert(x1 > -1); } // WithNaN /** Hook that reserves a special value as a "Not a Number" representative. For signed integrals, the reserved value is `T.min`. For signed integrals, the reserved value is `T.max`. The default value of a $(D Checked!(X, WithNaN)) is its NaN value, so care must be taken that all variables are explicitly initialized. Any arithmetic and logic operation involving at least on NaN becomes NaN itself. All of $(D a == b), $(D a < b), $(D a > b), $(D a <= b), $(D a >= b) yield `false` if at least one of `a` and `b` is NaN. */ struct WithNaN { static: /** The default value used for values not explicitly initialized. It is the NaN value, i.e. `T.min` for signed integrals and `T.max` for unsigned integrals. */ enum T defaultValue(T) = T.min == 0 ? T.max : T.min; /** The maximum value representable is `T.max` for signed integrals, $(D T.max - 1) for unsigned integrals. The minimum value representable is $(D T.min + 1) for signed integrals, `0` for unsigned integrals. */ enum T max(T) = cast(T) (T.min == 0 ? T.max - 1 : T.max); /// ditto enum T min(T) = cast(T) (T.min == 0 ? T(0) : T.min + 1); /** If `rhs` is `WithNaN.defaultValue!Rhs`, returns `WithNaN.defaultValue!Lhs`. Otherwise, returns $(D cast(Lhs) rhs). Params: rhs = the value being cast (`Rhs` is the first argument to `Checked`) Lhs = the target type of the cast Returns: The result of the cast operation. */ Lhs hookOpCast(Lhs, Rhs)(Rhs rhs) { static if (is(Lhs == bool)) { return rhs != defaultValue!Rhs && rhs != 0; } else static if (valueConvertible!(Rhs, Lhs)) { return rhs != defaultValue!Rhs ? Lhs(rhs) : defaultValue!Lhs; } else { // Not value convertible, only viable option is rhs fits within the // bounds of Lhs static if (ProperCompare.hookOpCmp(Rhs.min, Lhs.min) < 0) { // Example: hookOpCast!short(int(42)), hookOpCast!uint(int(42)) if (ProperCompare.hookOpCmp(rhs, Lhs.min) < 0) return defaultValue!Lhs; } static if (ProperCompare.hookOpCmp(Rhs.max, Lhs.max) > 0) { // Example: hookOpCast!int(uint(42)) if (ProperCompare.hookOpCmp(rhs, Lhs.max) > 0) return defaultValue!Lhs; } return cast(Lhs) rhs; } } /// @safe unittest { auto x = checked!WithNaN(422); assert((cast(ubyte) x) == 255); x = checked!WithNaN(-422); assert((cast(byte) x) == -128); assert(cast(short) x == -422); assert(cast(bool) x); x = x.init; // set back to NaN assert(x != true); assert(x != false); } /** Returns `false` if $(D lhs == WithNaN.defaultValue!Lhs), $(D lhs == rhs) otherwise. Params: lhs = The left-hand side of the comparison (`Lhs` is the first argument to `Checked`) rhs = The right-hand side of the comparison Returns: `lhs != WithNaN.defaultValue!Lhs && lhs == rhs` */ bool hookOpEquals(Lhs, Rhs)(Lhs lhs, Rhs rhs) { return lhs != defaultValue!Lhs && lhs == rhs; } /** If $(D lhs == WithNaN.defaultValue!Lhs), returns `double.init`. Otherwise, has the same semantics as the default comparison. Params: lhs = The left-hand side of the comparison (`Lhs` is the first argument to `Checked`) rhs = The right-hand side of the comparison Returns: `double.init` if `lhs == WitnNaN.defaultValue!Lhs`, `-1.0` if $(D lhs < rhs), `0.0` if $(D lhs == rhs), `1.0` if $(D lhs > rhs). */ double hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { if (lhs == defaultValue!Lhs) return double.init; return lhs < rhs ? -1.0 : lhs > rhs ? 1.0 : lhs == rhs ? 0.0 : double.init; } /// @safe unittest { Checked!(int, WithNaN) x; assert(!(x < 0) && !(x > 0) && !(x == 0)); x = 1; assert(x > 0 && !(x < 0) && !(x == 0)); } /** Defines hooks for unary operators `-`, `~`, `++`, and `--`. For `-` and `~`, if $(D v == WithNaN.defaultValue!T), returns `WithNaN.defaultValue!T`. Otherwise, the semantics is the same as for the built-in operator. For `++` and `--`, if $(D v == WithNaN.defaultValue!Lhs) or the operation would result in an overflow, sets `v` to `WithNaN.defaultValue!T`. Otherwise, the semantics is the same as for the built-in operator. Params: x = The operator symbol v = The left-hand side of the comparison (`T` is the first argument to `Checked`) Returns: $(UL $(LI For $(D x == "-" || x == "~"): If $(D v == WithNaN.defaultValue!T), the function returns `WithNaN.defaultValue!T`. Otherwise it returns the normal result of the operator.) $(LI For $(D x == "++" || x == "--"): The function returns `void`.)) */ auto hookOpUnary(string x, T)(ref T v) { static if (x == "-" || x == "~") { return v != defaultValue!T ? mixin(x ~ "v") : v; } else static if (x == "++") { static if (defaultValue!T == T.min) { if (v != defaultValue!T) { if (v == T.max) v = defaultValue!T; else ++v; } } else { static assert(defaultValue!T == T.max); if (v != defaultValue!T) ++v; } } else static if (x == "--") { if (v != defaultValue!T) --v; } } /// @safe unittest { Checked!(int, WithNaN) x; ++x; assert(x.isNaN); x = 1; assert(!x.isNaN); x = -x; ++x; assert(!x.isNaN); } @safe unittest // for coverage { Checked!(uint, WithNaN) y; ++y; assert(y.isNaN); } /** Defines hooks for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for cases where a `Checked` object is the left-hand side operand. If $(D lhs == WithNaN.defaultValue!Lhs), returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))) without evaluating the operand. Otherwise, evaluates the operand. If evaluation does not overflow, returns the result. Otherwise, returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))). Params: x = The operator symbol lhs = The left-hand side operand (`Lhs` is the first argument to `Checked`) rhs = The right-hand side operand Returns: If $(D lhs != WithNaN.defaultValue!Lhs) and the operator does not overflow, the function returns the same result as the built-in operator. In all other cases, returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))). */ auto hookOpBinary(string x, L, R)(L lhs, R rhs) { alias Result = typeof(lhs + rhs); if (lhs != defaultValue!L) { bool error; auto result = opChecked!x(lhs, rhs, error); if (!error) return result; } return defaultValue!Result; } /// @safe unittest { Checked!(int, WithNaN) x; assert((x + 1).isNaN); x = 100; assert(!(x + 1).isNaN); } /** Defines hooks for binary operators `+`, `-`, `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>` for cases where a `Checked` object is the right-hand side operand. If $(D rhs == WithNaN.defaultValue!Rhs), returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))) without evaluating the operand. Otherwise, evaluates the operand. If evaluation does not overflow, returns the result. Otherwise, returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))). Params: x = The operator symbol lhs = The left-hand side operand rhs = The right-hand side operand (`Rhs` is the first argument to `Checked`) Returns: If $(D rhs != WithNaN.defaultValue!Rhs) and the operator does not overflow, the function returns the same result as the built-in operator. In all other cases, returns $(D WithNaN.defaultValue!(typeof(lhs + rhs))). */ auto hookOpBinaryRight(string x, L, R)(L lhs, R rhs) { alias Result = typeof(lhs + rhs); if (rhs != defaultValue!R) { bool error; auto result = opChecked!x(lhs, rhs, error); if (!error) return result; } return defaultValue!Result; } /// @safe unittest { Checked!(int, WithNaN) x; assert((1 + x).isNaN); x = 100; assert(!(1 + x).isNaN); } /** Defines hooks for binary operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=` for cases where a `Checked` object is the left-hand side operand. If $(D lhs == WithNaN.defaultValue!Lhs), no action is carried. Otherwise, evaluates the operand. If evaluation does not overflow and fits in `Lhs` without loss of information or change of sign, sets `lhs` to the result. Otherwise, sets `lhs` to `WithNaN.defaultValue!Lhs`. Params: x = The operator symbol (without the `=`) lhs = The left-hand side operand (`Lhs` is the first argument to `Checked`) rhs = The right-hand side operand Returns: `void` */ void hookOpOpAssign(string x, L, R)(ref L lhs, R rhs) { if (lhs == defaultValue!L) return; bool error; auto temp = opChecked!x(lhs, rhs, error); lhs = error ? defaultValue!L : hookOpCast!L(temp); } /// @safe unittest { Checked!(int, WithNaN) x; x += 4; assert(x.isNaN); x = 0; x += 4; assert(!x.isNaN); x += int.max; assert(x.isNaN); } } /// @safe unittest { auto x1 = Checked!(int, WithNaN)(); assert(x1.isNaN); assert(x1.get == int.min); assert(x1 != x1); assert(!(x1 < x1)); assert(!(x1 > x1)); assert(!(x1 == x1)); ++x1; assert(x1.isNaN); assert(x1.get == int.min); --x1; assert(x1.isNaN); assert(x1.get == int.min); x1 = 42; assert(!x1.isNaN); assert(x1 == x1); assert(x1 <= x1); assert(x1 >= x1); static assert(x1.min == int.min + 1); x1 += long(int.max); } /** Queries whether a $(D Checked!(T, WithNaN)) object is not a number (NaN). Params: x = the `Checked` instance queried Returns: `true` if `x` is a NaN, `false` otherwise */ bool isNaN(T)(const Checked!(T, WithNaN) x) { return x.get == x.init.get; } /// @safe unittest { auto x1 = Checked!(int, WithNaN)(); assert(x1.isNaN); x1 = 1; assert(!x1.isNaN); x1 = x1.init; assert(x1.isNaN); } @safe unittest { void test1(T)() { auto x1 = Checked!(T, WithNaN)(); assert(x1.isNaN); assert(x1.get == int.min); assert(x1 != x1); assert(!(x1 < x1)); assert(!(x1 > x1)); assert(!(x1 == x1)); assert(x1.get == int.min); auto x2 = Checked!(T, WithNaN)(42); assert(!x2.isNaN); assert(x2 == x2); assert(x2 <= x2); assert(x2 >= x2); static assert(x2.min == T.min + 1); } test1!int; test1!(const int); test1!(immutable int); void test2(T)() { auto x1 = Checked!(T, WithNaN)(); assert(x1.get == T.min); assert(x1 != x1); assert(!(x1 < x1)); assert(!(x1 > x1)); assert(!(x1 == x1)); ++x1; assert(x1.get == T.min); --x1; assert(x1.get == T.min); x1 = 42; assert(x1 == x1); assert(x1 <= x1); assert(x1 >= x1); static assert(x1.min == T.min + 1); x1 += long(T.max); } test2!int; } @safe unittest { alias Smart(T) = Checked!(Checked!(T, ProperCompare), WithNaN); Smart!int x1; assert(x1 != x1); x1 = -1; assert(x1 < 1u); auto x2 = Smart!(const int)(42); } // Saturate /** Hook that implements $(I saturation), i.e. any arithmetic operation that would overflow leaves the result at its extreme value (`min` or `max` depending on the direction of the overflow). Saturation is not sticky; if a value reaches its saturation value, another operation may take it back to normal range. */ struct Saturate { static: /** Implements saturation for operators `+=`, `-=`, `*=`, `/=`, `%=`, `^^=`, `&=`, `|=`, `^=`, `<<=`, `>>=`, and `>>>=`. This hook is called if the result of the binary operation does not fit in `Lhs` without loss of information or a change in sign. Params: Rhs = The right-hand side type in the assignment, after the operation has been computed bound = The bound being violated Returns: `Lhs.max` if $(D rhs >= 0), `Lhs.min` otherwise. */ T onLowerBound(Rhs, T)(Rhs rhs, T bound) { return bound; } /// ditto T onUpperBound(Rhs, T)(Rhs rhs, T bound) { return bound; } /// @safe unittest { auto x = checked!Saturate(short(100)); x += 33000; assert(x == short.max); x -= 70000; assert(x == short.min); } /** Implements saturation for operators `+`, `-` (unary and binary), `*`, `/`, `%`, `^^`, `&`, `|`, `^`, `<<`, `>>`, and `>>>`. For unary `-`, `onOverflow` is called if $(D lhs == Lhs.min) and `Lhs` is a signed type. The function returns `Lhs.max`. For binary operators, the result is as follows: $(UL $(LI `Lhs.max` if the result overflows in the positive direction, on division by `0`, or on shifting right by a negative value) $(LI `Lhs.min` if the result overflows in the negative direction) $(LI `0` if `lhs` is being shifted left by a negative value, or shifted right by a large positive value)) Params: x = The operator involved in the `opAssign` operation Lhs = The left-hand side of the operator (`Lhs` is the first argument to `Checked`) Rhs = The right-hand side type in the operator Returns: The saturated result of the operator. */ auto onOverflow(string x, Lhs)(Lhs lhs) { static assert(x == "-" || x == "++" || x == "--"); return x == "--" ? Lhs.min : Lhs.max; } /// ditto typeof(Lhs() + Rhs()) onOverflow(string x, Lhs, Rhs)(Lhs lhs, Rhs rhs) { static if (x == "+") return rhs >= 0 ? Lhs.max : Lhs.min; else static if (x == "*") return (lhs >= 0) == (rhs >= 0) ? Lhs.max : Lhs.min; else static if (x == "^^") return lhs > 0 || !(rhs & 1) ? Lhs.max : Lhs.min; else static if (x == "-") return rhs >= 0 ? Lhs.min : Lhs.max; else static if (x == "/" || x == "%") return Lhs.max; else static if (x == "<<") return rhs >= 0 ? Lhs.max : 0; else static if (x == ">>" || x == ">>>") return rhs >= 0 ? 0 : Lhs.max; else static assert(false); } /// @safe unittest { assert(checked!Saturate(int.max) + 1 == int.max); assert(checked!Saturate(100) ^^ 10 == int.max); assert(checked!Saturate(-100) ^^ 10 == int.max); assert(checked!Saturate(100) / 0 == int.max); assert(checked!Saturate(100) << -1 == 0); assert(checked!Saturate(100) << 33 == int.max); assert(checked!Saturate(100) >> -1 == int.max); assert(checked!Saturate(100) >> 33 == 0); } } /// @safe unittest { auto x = checked!Saturate(int.max); ++x; assert(x == int.max); --x; assert(x == int.max - 1); x = int.min; assert(-x == int.max); x -= 42; assert(x == int.min); assert(x * -2 == int.max); } /* Yields `true` if `T1` is "value convertible" (by C's "value preserving" rule, see $(HTTP c-faq.com/expr/preservingrules.html)) to `T2`, where the two are integral types. That is, all of values in `T1` are also in `T2`. For example `int` is value convertible to `long` but not to `uint` or `ulong`. */ private enum valueConvertible(T1, T2) = isIntegral!T1 && isIntegral!T2 && is(T1 : T2) && ( isUnsigned!T1 == isUnsigned!T2 || // same signedness !isUnsigned!T2 && T2.sizeof > T1.sizeof // safely convertible ); /** Defines binary operations with overflow checking for any two integral types. The result type obeys the language rules (even when they may be counterintuitive), and `overflow` is set if an overflow occurs (including inadvertent change of signedness, e.g. `-1` is converted to `uint`). Conceptually the behavior is: $(OL $(LI Perform the operation in infinite precision) $(LI If the infinite-precision result fits in the result type, return it and do not touch `overflow`) $(LI Otherwise, set `overflow` to `true` and return an unspecified value) ) The implementation exploits properties of types and operations to minimize additional work. Params: x = The binary operator involved, e.g. `/` lhs = The left-hand side of the operator rhs = The right-hand side of the operator overflow = The overflow indicator (assigned `true` in case there's an error) Returns: The result of the operation, which is the same as the built-in operator */ typeof(mixin(x == "cmp" ? "0" : ("L() " ~ x ~ " R()"))) opChecked(string x, L, R)(const L lhs, const R rhs, ref bool overflow) if (isIntegral!L && isIntegral!R) { static if (x == "cmp") alias Result = int; else alias Result = typeof(mixin("L() " ~ x ~ " R()")); import core.checkedint : addu, adds, subs, muls, subu, mulu; import std.algorithm.comparison : among; static if (x == "==") { alias C = typeof(lhs + rhs); static if (valueConvertible!(L, C) && valueConvertible!(R, C)) { // Values are converted to R before comparison, cool. return lhs == rhs; } else { static assert(isUnsigned!C); static assert(isUnsigned!L != isUnsigned!R); if (lhs != rhs) return false; // R(lhs) and R(rhs) have the same bit pattern, yet may be // different due to signedness change. static if (!isUnsigned!R) { if (rhs >= 0) return true; } else { if (lhs >= 0) return true; } overflow = true; return true; } } else static if (x == "cmp") { alias C = typeof(lhs + rhs); static if (!valueConvertible!(L, C) || !valueConvertible!(R, C)) { static assert(isUnsigned!C); static assert(isUnsigned!L != isUnsigned!R); if (!isUnsigned!L && lhs < 0) { overflow = true; return -1; } if (!isUnsigned!R && rhs < 0) { overflow = true; return 1; } } return lhs < rhs ? -1 : lhs > rhs; } else static if (x.among("<<", ">>", ">>>")) { // Handle shift separately from all others. The test below covers // negative rhs as well. import std.conv : unsigned; if (unsigned(rhs) > 8 * Result.sizeof) goto fail; return mixin("lhs" ~ x ~ "rhs"); } else static if (x.among("&", "|", "^")) { // Nothing to check return mixin("lhs" ~ x ~ "rhs"); } else static if (x == "^^") { // Exponentiation is weird, handle separately return pow(lhs, rhs, overflow); } else static if (valueConvertible!(L, Result) && valueConvertible!(R, Result)) { static if (L.sizeof < Result.sizeof && R.sizeof < Result.sizeof && x.among("+", "-", "*")) { // No checks - both are value converted and result is in range return mixin("lhs" ~ x ~ "rhs"); } else static if (x == "+") { static if (isUnsigned!Result) alias impl = addu; else alias impl = adds; return impl(Result(lhs), Result(rhs), overflow); } else static if (x == "-") { static if (isUnsigned!Result) alias impl = subu; else alias impl = subs; return impl(Result(lhs), Result(rhs), overflow); } else static if (x == "*") { static if (!isUnsigned!L && !isUnsigned!R && is(L == Result)) { if (lhs == Result.min && rhs == -1) goto fail; } static if (isUnsigned!Result) alias impl = mulu; else alias impl = muls; return impl(Result(lhs), Result(rhs), overflow); } else static if (x == "/" || x == "%") { static if (!isUnsigned!L && !isUnsigned!R && is(L == Result) && x == "/") { if (lhs == Result.min && rhs == -1) goto fail; } if (rhs == 0) goto fail; return mixin("lhs" ~ x ~ "rhs"); } else static assert(0, x); } else // Mixed signs { static assert(isUnsigned!Result); static assert(isUnsigned!L != isUnsigned!R); static if (x == "+") { static if (!isUnsigned!L) { if (lhs < 0) return subu(Result(rhs), Result(-lhs), overflow); } else static if (!isUnsigned!R) { if (rhs < 0) return subu(Result(lhs), Result(-rhs), overflow); } return addu(Result(lhs), Result(rhs), overflow); } else static if (x == "-") { static if (!isUnsigned!L) { if (lhs < 0) goto fail; } else static if (!isUnsigned!R) { if (rhs < 0) return addu(Result(lhs), Result(-rhs), overflow); } return subu(Result(lhs), Result(rhs), overflow); } else static if (x == "*") { static if (!isUnsigned!L) { if (lhs < 0) goto fail; } else static if (!isUnsigned!R) { if (rhs < 0) goto fail; } return mulu(Result(lhs), Result(rhs), overflow); } else static if (x == "/" || x == "%") { static if (!isUnsigned!L) { if (lhs < 0 || rhs == 0) goto fail; } else static if (!isUnsigned!R) { if (rhs <= 0) goto fail; } return mixin("Result(lhs)" ~ x ~ "Result(rhs)"); } else static assert(0, x); } debug assert(false); fail: overflow = true; return Result(0); } /// @safe unittest { bool overflow; assert(opChecked!"+"(const short(1), short(1), overflow) == 2 && !overflow); assert(opChecked!"+"(1, 1, overflow) == 2 && !overflow); assert(opChecked!"+"(1, 1u, overflow) == 2 && !overflow); assert(opChecked!"+"(-1, 1u, overflow) == 0 && !overflow); assert(opChecked!"+"(1u, -1, overflow) == 0 && !overflow); } /// @safe unittest { bool overflow; assert(opChecked!"-"(1, 1, overflow) == 0 && !overflow); assert(opChecked!"-"(1, 1u, overflow) == 0 && !overflow); assert(opChecked!"-"(1u, -1, overflow) == 2 && !overflow); assert(opChecked!"-"(-1, 1u, overflow) == 0 && overflow); } @safe unittest { bool overflow; assert(opChecked!"*"(2, 3, overflow) == 6 && !overflow); assert(opChecked!"*"(2, 3u, overflow) == 6 && !overflow); assert(opChecked!"*"(1u, -1, overflow) == 0 && overflow); //assert(mul(-1, 1u, overflow) == uint.max - 1 && overflow); } @safe unittest { bool overflow; assert(opChecked!"/"(6, 3, overflow) == 2 && !overflow); assert(opChecked!"/"(6, 3, overflow) == 2 && !overflow); assert(opChecked!"/"(6u, 3, overflow) == 2 && !overflow); assert(opChecked!"/"(6, 3u, overflow) == 2 && !overflow); assert(opChecked!"/"(11, 0, overflow) == 0 && overflow); overflow = false; assert(opChecked!"/"(6u, 0, overflow) == 0 && overflow); overflow = false; assert(opChecked!"/"(-6, 2u, overflow) == 0 && overflow); overflow = false; assert(opChecked!"/"(-6, 0u, overflow) == 0 && overflow); overflow = false; assert(opChecked!"cmp"(0u, -6, overflow) == 1 && overflow); overflow = false; assert(opChecked!"|"(1, 2, overflow) == 3 && !overflow); } /* Exponentiation function used by the implementation of operator `^^`. */ private pure @safe nothrow @nogc auto pow(L, R)(const L lhs, const R rhs, ref bool overflow) if (isIntegral!L && isIntegral!R) { if (rhs <= 1) { if (rhs == 0) return 1; static if (!isUnsigned!R) return rhs == 1 ? lhs : (rhs == -1 && (lhs == 1 || lhs == -1)) ? lhs : 0; else return lhs; } typeof(lhs ^^ rhs) b = void; static if (!isUnsigned!L && isUnsigned!(typeof(b))) { // Need to worry about mixed-sign stuff if (lhs < 0) { if (rhs & 1) { if (lhs < 0) overflow = true; return 0; } b = -lhs; } else { b = lhs; } } else { b = lhs; } if (b == 1) return 1; if (b == -1) return (rhs & 1) ? -1 : 1; if (rhs > 63) { overflow = true; return 0; } assert((b > 1 || b < -1) && rhs > 1); return powImpl(b, cast(uint) rhs, overflow); } // Inspiration: http://www.stepanovpapers.com/PAM.pdf pure @safe nothrow @nogc private T powImpl(T)(T b, uint e, ref bool overflow) if (isIntegral!T && T.sizeof >= 4) { assert(e > 1); import core.checkedint : muls, mulu; static if (isUnsigned!T) alias mul = mulu; else alias mul = muls; T r = b; --e; // Loop invariant: r * (b ^^ e) is the actual result for (;; e /= 2) { if (e % 2) { r = mul(r, b, overflow); if (e == 1) break; } b = mul(b, b, overflow); } return r; } @safe unittest { static void testPow(T)(T x, uint e) { bool overflow; assert(opChecked!"^^"(T(0), 0, overflow) == 1); assert(opChecked!"^^"(-2, T(0), overflow) == 1); assert(opChecked!"^^"(-2, T(1), overflow) == -2); assert(opChecked!"^^"(-1, -1, overflow) == -1); assert(opChecked!"^^"(-2, 1, overflow) == -2); assert(opChecked!"^^"(-2, -1, overflow) == 0); assert(opChecked!"^^"(-2, 4u, overflow) == 16); assert(!overflow); assert(opChecked!"^^"(-2, 3u, overflow) == 0); assert(overflow); overflow = false; assert(opChecked!"^^"(3, 64u, overflow) == 0); assert(overflow); overflow = false; foreach (uint i; 0 .. e) { assert(opChecked!"^^"(x, i, overflow) == x ^^ i); assert(!overflow); } assert(opChecked!"^^"(x, e, overflow) == x ^^ e); assert(overflow); } testPow!int(3, 21); testPow!uint(3, 21); testPow!long(3, 40); testPow!ulong(3, 41); } version (StdUnittest) private struct CountOverflows { uint calls; auto onOverflow(string op, Lhs)(Lhs lhs) { ++calls; return mixin(op ~ "lhs"); } auto onOverflow(string op, Lhs, Rhs)(Lhs lhs, Rhs rhs) { ++calls; return mixin("lhs" ~ op ~ "rhs"); } T onLowerBound(Rhs, T)(Rhs rhs, T bound) { ++calls; return cast(T) rhs; } T onUpperBound(Rhs, T)(Rhs rhs, T bound) { ++calls; return cast(T) rhs; } } // opBinary @nogc nothrow pure @safe unittest { static struct CountOpBinary { uint calls; auto hookOpBinary(string op, Lhs, Rhs)(Lhs lhs, Rhs rhs) { ++calls; return mixin("lhs" ~ op ~ "rhs"); } } auto x = Checked!(const int, void)(42), y = Checked!(immutable int, void)(142); assert(x + y == 184); assert(x + 100 == 142); assert(y - x == 100); assert(200 - x == 158); assert(y * x == 142 * 42); assert(x / 1 == 42); assert(x % 20 == 2); auto x1 = Checked!(int, CountOverflows)(42); assert(x1 + 0 == 42); assert(x1 + false == 42); assert(is(typeof(x1 + 0.5) == double)); assert(x1 + 0.5 == 42.5); assert(x1.hook.calls == 0); assert(x1 + int.max == int.max + 42); assert(x1.hook.calls == 1); assert(x1 * 2 == 84); assert(x1.hook.calls == 1); assert(x1 / 2 == 21); assert(x1.hook.calls == 1); assert(x1 % 20 == 2); assert(x1.hook.calls == 1); assert(x1 << 2 == 42 << 2); assert(x1.hook.calls == 1); assert(x1 << 42 == x1.get << x1.get); assert(x1.hook.calls == 2); x1 = int.min; assert(x1 - 1 == int.max); assert(x1.hook.calls == 3); auto x2 = Checked!(int, CountOpBinary)(42); assert(x2 + 1 == 43); assert(x2.hook.calls == 1); auto x3 = Checked!(uint, CountOverflows)(42u); assert(x3 + 1 == 43); assert(x3.hook.calls == 0); assert(x3 - 1 == 41); assert(x3.hook.calls == 0); assert(x3 + (-42) == 0); assert(x3.hook.calls == 0); assert(x3 - (-42) == 84); assert(x3.hook.calls == 0); assert(x3 * 2 == 84); assert(x3.hook.calls == 0); assert(x3 * -2 == -84); assert(x3.hook.calls == 1); assert(x3 / 2 == 21); assert(x3.hook.calls == 1); assert(x3 / -2 == 0); assert(x3.hook.calls == 2); assert(x3 ^^ 2 == 42 * 42); assert(x3.hook.calls == 2); auto x4 = Checked!(int, CountOverflows)(42); assert(x4 + 1 == 43); assert(x4.hook.calls == 0); assert(x4 + 1u == 43); assert(x4.hook.calls == 0); assert(x4 - 1 == 41); assert(x4.hook.calls == 0); assert(x4 * 2 == 84); assert(x4.hook.calls == 0); x4 = -2; assert(x4 + 2u == 0); assert(x4.hook.calls == 0); assert(x4 * 2u == -4); assert(x4.hook.calls == 1); auto x5 = Checked!(int, CountOverflows)(3); assert(x5 ^^ 0 == 1); assert(x5 ^^ 1 == 3); assert(x5 ^^ 2 == 9); assert(x5 ^^ 3 == 27); assert(x5 ^^ 4 == 81); assert(x5 ^^ 5 == 81 * 3); assert(x5 ^^ 6 == 81 * 9); } // opBinaryRight @nogc nothrow pure @safe unittest { auto x1 = Checked!(int, CountOverflows)(42); assert(1 + x1 == 43); assert(true + x1 == 43); assert(0.5 + x1 == 42.5); auto x2 = Checked!(int, void)(42); assert(x1 + x2 == 84); assert(x2 + x1 == 84); } // opOpAssign @safe unittest { auto x1 = Checked!(int, CountOverflows)(3); assert((x1 += 2) == 5); x1 *= 2_000_000_000L; assert(x1.hook.calls == 1); x1 *= -2_000_000_000L; assert(x1.hook.calls == 2); auto x2 = Checked!(ushort, CountOverflows)(ushort(3)); assert((x2 += 2) == 5); assert(x2.hook.calls == 0); assert((x2 += ushort.max) == cast(ushort) (ushort(5) + ushort.max)); assert(x2.hook.calls == 1); auto x3 = Checked!(uint, CountOverflows)(3u); x3 *= ulong(2_000_000_000); assert(x3.hook.calls == 1); } // opAssign @safe unittest { Checked!(int, void) x; x = 42; assert(x.get == 42); x = x; assert(x.get == 42); x = short(43); assert(x.get == 43); x = ushort(44); assert(x.get == 44); } @safe unittest { static assert(!is(typeof(Checked!(short, void)(ushort(42))))); static assert(!is(typeof(Checked!(int, void)(long(42))))); static assert(!is(typeof(Checked!(int, void)(ulong(42))))); assert(Checked!(short, void)(short(42)).get == 42); assert(Checked!(int, void)(ushort(42)).get == 42); } // opCast @nogc nothrow pure @safe unittest { static assert(is(typeof(cast(float) Checked!(int, void)(42)) == float)); assert(cast(float) Checked!(int, void)(42) == 42); assert(is(typeof(cast(long) Checked!(int, void)(42)) == long)); assert(cast(long) Checked!(int, void)(42) == 42); static assert(is(typeof(cast(long) Checked!(uint, void)(42u)) == long)); assert(cast(long) Checked!(uint, void)(42u) == 42); auto x = Checked!(int, void)(42); if (x) {} else assert(0); x = 0; if (x) assert(0); static struct Hook1 { uint calls; Dst hookOpCast(Dst, Src)(Src value) { ++calls; return 42; } } auto y = Checked!(long, Hook1)(long.max); assert(cast(int) y == 42); assert(cast(uint) y == 42); assert(y.hook.calls == 2); static struct Hook2 { uint calls; Dst onBadCast(Dst, Src)(Src value) { ++calls; return 42; } } auto x1 = Checked!(uint, Hook2)(100u); assert(cast(ushort) x1 == 100); assert(cast(short) x1 == 100); assert(cast(float) x1 == 100); assert(cast(double) x1 == 100); assert(cast(real) x1 == 100); assert(x1.hook.calls == 0); assert(cast(int) x1 == 100); assert(x1.hook.calls == 0); x1 = uint.max; assert(cast(int) x1 == 42); assert(x1.hook.calls == 1); auto x2 = Checked!(int, Hook2)(-100); assert(cast(short) x2 == -100); assert(cast(ushort) x2 == 42); assert(cast(uint) x2 == 42); assert(cast(ulong) x2 == 42); assert(x2.hook.calls == 3); } // opEquals @nogc nothrow pure @safe unittest { assert(Checked!(int, void)(42) == 42L); assert(42UL == Checked!(int, void)(42)); static struct Hook1 { uint calls; bool hookOpEquals(Lhs, Rhs)(const Lhs lhs, const Rhs rhs) { ++calls; return lhs != rhs; } } auto x1 = Checked!(int, Hook1)(100); assert(x1 != Checked!(long, Hook1)(100)); assert(x1.hook.calls == 1); assert(x1 != 100u); assert(x1.hook.calls == 2); static struct Hook2 { uint calls; bool hookOpEquals(Lhs, Rhs)(Lhs lhs, Rhs rhs) { ++calls; return false; } } auto x2 = Checked!(int, Hook2)(-100); assert(x2 != x1); // For coverage: lhs has no hookOpEquals, rhs does assert(Checked!(uint, void)(100u) != x2); // For coverage: different types, neither has a hookOpEquals assert(Checked!(uint, void)(100u) == Checked!(int, void*)(100)); assert(x2.hook.calls == 0); assert(x2 != -100); assert(x2.hook.calls == 1); assert(x2 != cast(uint) -100); assert(x2.hook.calls == 2); x2 = 100; assert(x2 != cast(uint) 100); assert(x2.hook.calls == 3); x2 = -100; auto x3 = Checked!(uint, Hook2)(100u); assert(x3 != 100); x3 = uint.max; assert(x3 != -1); assert(x2 != x3); } // opCmp @nogc nothrow pure @safe unittest { Checked!(int, void) x; assert(x <= x); assert(x < 45); assert(x < 45u); assert(x > -45); assert(x < 44.2); assert(x > -44.2); assert(!(x < double.init)); assert(!(x > double.init)); assert(!(x <= double.init)); assert(!(x >= double.init)); static struct Hook1 { uint calls; int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { ++calls; return 0; } } auto x1 = Checked!(int, Hook1)(42); assert(!(x1 < 43u)); assert(!(43u < x1)); assert(x1.hook.calls == 2); static struct Hook2 { uint calls; int hookOpCmp(Lhs, Rhs)(Lhs lhs, Rhs rhs) { ++calls; return ProperCompare.hookOpCmp(lhs, rhs); } } auto x2 = Checked!(int, Hook2)(-42); assert(x2 < 43u); assert(43u > x2); assert(x2.hook.calls == 2); x2 = 42; assert(x2 > 41u); auto x3 = Checked!(uint, Hook2)(42u); assert(x3 > 41); assert(x3 > -41); } // opUnary @nogc nothrow pure @safe unittest { auto x = Checked!(int, void)(42); assert(x == +x); static assert(is(typeof(-x) == typeof(x))); assert(-x == Checked!(int, void)(-42)); static assert(is(typeof(~x) == typeof(x))); assert(~x == Checked!(int, void)(~42)); assert(++x == 43); assert(--x == 42); static struct Hook1 { uint calls; auto hookOpUnary(string op, T)(T value) if (op == "-") { ++calls; return T(42); } auto hookOpUnary(string op, T)(T value) if (op == "~") { ++calls; return T(43); } } auto x1 = Checked!(int, Hook1)(100); assert(is(typeof(-x1) == typeof(x1))); assert(-x1 == Checked!(int, Hook1)(42)); assert(is(typeof(~x1) == typeof(x1))); assert(~x1 == Checked!(int, Hook1)(43)); assert(x1.hook.calls == 2); static struct Hook2 { uint calls; void hookOpUnary(string op, T)(ref T value) if (op == "++") { ++calls; --value; } void hookOpUnary(string op, T)(ref T value) if (op == "--") { ++calls; ++value; } } auto x2 = Checked!(int, Hook2)(100); assert(++x2 == 99); assert(x2 == 99); assert(--x2 == 100); assert(x2 == 100); auto x3 = Checked!(int, CountOverflows)(int.max - 1); assert(++x3 == int.max); assert(x3.hook.calls == 0); assert(++x3 == int.min); assert(x3.hook.calls == 1); assert(-x3 == int.min); assert(x3.hook.calls == 2); x3 = int.min + 1; assert(--x3 == int.min); assert(x3.hook.calls == 2); assert(--x3 == int.max); assert(x3.hook.calls == 3); } // @nogc nothrow pure @safe unittest { Checked!(int, void) x; assert(x == x); assert(x == +x); assert(x == -x); ++x; assert(x == 1); x++; assert(x == 2); x = 42; assert(x == 42); const short _short = 43; x = _short; assert(x == _short); ushort _ushort = 44; x = _ushort; assert(x == _ushort); assert(x == 44.0); assert(x != 44.1); assert(x < 45); assert(x < 44.2); assert(x > -45); assert(x > -44.2); assert(cast(long) x == 44); assert(cast(short) x == 44); const Checked!(uint, void) y; assert(y <= y); assert(y == 0); assert(y < x); x = -1; assert(x > y); } @nogc nothrow pure @safe unittest { alias cint = Checked!(int, void); cint a = 1, b = 2; a += b; assert(a == cint(3)); alias ccint = Checked!(cint, Saturate); ccint c = 14; a += c; assert(a == cint(17)); } // toHash @system unittest { assert(checked(42).toHash() == checked(42).toHash()); assert(checked(12).toHash() != checked(19).toHash()); static struct Hook1 { static size_t hookToHash(T)(T payload) nothrow @trusted { static if (size_t.sizeof == 4) { return typeid(payload).getHash(&payload) ^ 0xFFFF_FFFF; } else { return typeid(payload).getHash(&payload) ^ 0xFFFF_FFFF_FFFF_FFFF; } } } auto a = checked!Hook1(78); auto b = checked!Hook1(78); assert(a.toHash() == b.toHash()); assert(checked!Hook1(12).toHash() != checked!Hook1(13).toHash()); static struct Hook2 { static if (size_t.sizeof == 4) { static size_t hashMask = 0xFFFF_0000; } else { static size_t hashMask = 0xFFFF_0000_FFFF_0000; } static size_t hookToHash(T)(T payload) nothrow @trusted { return typeid(payload).getHash(&payload) ^ hashMask; } } auto x = checked!Hook2(1901); auto y = checked!Hook2(1989); assert((() nothrow @safe => x.toHash() == x.toHash())()); assert(x.toHash() == x.toHash()); assert(x.toHash() != y.toHash()); assert(checked!Hook1(1901).toHash() != x.toHash()); immutable z = checked!Hook1(1901); immutable t = checked!Hook1(1901); immutable w = checked!Hook2(1901); assert(z.toHash() == t.toHash()); assert(z.toHash() != x.toHash()); assert(z.toHash() != w.toHash()); const long c = 0xF0F0F0F0; const long d = 0xF0F0F0F0; assert(checked!Hook1(c).toHash() != checked!Hook2(c)); assert(checked!Hook1(c).toHash() != checked!Hook1(d)); // Hook with state, does not implement hookToHash static struct Hook3 { ulong var1 = ulong.max; uint var2 = uint.max; } assert(checked!Hook3(12).toHash() != checked!Hook3(13).toHash()); assert(checked!Hook3(13).toHash() == checked!Hook3(13).toHash()); // Hook with no state and no hookToHash, payload has its own hashing function auto x1 = Checked!(Checked!int, ProperCompare)(123); auto x2 = Checked!(Checked!int, ProperCompare)(123); auto x3 = Checked!(Checked!int, ProperCompare)(144); assert(x1.toHash() == x2.toHash()); assert(x1.toHash() != x3.toHash()); assert(x2.toHash() != x3.toHash()); } /// @system unittest { struct MyHook { static size_t hookToHash(T)(const T payload) nothrow @trusted { return .hashOf(payload); } } int[Checked!(int, MyHook)] aa; Checked!(int, MyHook) var = 42; aa[var] = 100; assert(aa[var] == 100); int[Checked!(int, Abort)] bb; Checked!(int, Abort) var2 = 42; bb[var2] = 100; assert(bb[var2] == 100); }
D
/** Common classes for HTTP clients and servers. Copyright: © 2012-2015 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig, Jan Krüger */ module vibe.http.common; public import vibe.http.status; import vibe.core.log; import vibe.core.net; import vibe.inet.message; import vibe.stream.operations; import vibe.textfilter.urlencode : urlEncode, urlDecode; import vibe.utils.array; import vibe.internal.allocator; import vibe.internal.freelistref; import vibe.internal.interfaceproxy : InterfaceProxy, interfaceProxy; import vibe.utils.string; import std.algorithm; import std.array; import std.conv; import std.datetime; import std.exception; import std.format; import std.range : isOutputRange; import std.string; import std.typecons; import std.uni: asLowerCase; enum HTTPVersion { HTTP_1_0, HTTP_1_1 } enum HTTPMethod { // HTTP standard, RFC 2616 GET, HEAD, PUT, POST, PATCH, DELETE, OPTIONS, TRACE, CONNECT, // WEBDAV extensions, RFC 2518 PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK, // Versioning Extensions to WebDAV, RFC 3253 VERSIONCONTROL, REPORT, CHECKOUT, CHECKIN, UNCHECKOUT, MKWORKSPACE, UPDATE, LABEL, MERGE, BASELINECONTROL, MKACTIVITY, // Ordered Collections Protocol, RFC 3648 ORDERPATCH, // Access Control Protocol, RFC 3744 ACL } /** Returns the string representation of the given HttpMethod. */ string httpMethodString(HTTPMethod m) @safe nothrow { switch(m){ case HTTPMethod.BASELINECONTROL: return "BASELINE-CONTROL"; case HTTPMethod.VERSIONCONTROL: return "VERSION-CONTROL"; default: try return to!string(m); catch (Exception e) assert(false, e.msg); } } /** Returns the HttpMethod value matching the given HTTP method string. */ HTTPMethod httpMethodFromString(string str) @safe { switch(str){ default: throw new Exception("Invalid HTTP method: "~str); // HTTP standard, RFC 2616 case "GET": return HTTPMethod.GET; case "HEAD": return HTTPMethod.HEAD; case "PUT": return HTTPMethod.PUT; case "POST": return HTTPMethod.POST; case "PATCH": return HTTPMethod.PATCH; case "DELETE": return HTTPMethod.DELETE; case "OPTIONS": return HTTPMethod.OPTIONS; case "TRACE": return HTTPMethod.TRACE; case "CONNECT": return HTTPMethod.CONNECT; // WEBDAV extensions, RFC 2518 case "PROPFIND": return HTTPMethod.PROPFIND; case "PROPPATCH": return HTTPMethod.PROPPATCH; case "MKCOL": return HTTPMethod.MKCOL; case "COPY": return HTTPMethod.COPY; case "MOVE": return HTTPMethod.MOVE; case "LOCK": return HTTPMethod.LOCK; case "UNLOCK": return HTTPMethod.UNLOCK; // Versioning Extensions to WebDAV, RFC 3253 case "VERSION-CONTROL": return HTTPMethod.VERSIONCONTROL; case "REPORT": return HTTPMethod.REPORT; case "CHECKOUT": return HTTPMethod.CHECKOUT; case "CHECKIN": return HTTPMethod.CHECKIN; case "UNCHECKOUT": return HTTPMethod.UNCHECKOUT; case "MKWORKSPACE": return HTTPMethod.MKWORKSPACE; case "UPDATE": return HTTPMethod.UPDATE; case "LABEL": return HTTPMethod.LABEL; case "MERGE": return HTTPMethod.MERGE; case "BASELINE-CONTROL": return HTTPMethod.BASELINECONTROL; case "MKACTIVITY": return HTTPMethod.MKACTIVITY; // Ordered Collections Protocol, RFC 3648 case "ORDERPATCH": return HTTPMethod.ORDERPATCH; // Access Control Protocol, RFC 3744 case "ACL": return HTTPMethod.ACL; } } unittest { assert(httpMethodString(HTTPMethod.GET) == "GET"); assert(httpMethodString(HTTPMethod.UNLOCK) == "UNLOCK"); assert(httpMethodString(HTTPMethod.VERSIONCONTROL) == "VERSION-CONTROL"); assert(httpMethodString(HTTPMethod.BASELINECONTROL) == "BASELINE-CONTROL"); assert(httpMethodFromString("GET") == HTTPMethod.GET); assert(httpMethodFromString("UNLOCK") == HTTPMethod.UNLOCK); assert(httpMethodFromString("VERSION-CONTROL") == HTTPMethod.VERSIONCONTROL); } /** Utility function that throws a HTTPStatusException if the _condition is not met. */ T enforceHTTP(T)(T condition, HTTPStatus statusCode, lazy string message = null, string file = __FILE__, typeof(__LINE__) line = __LINE__) { return enforce(condition, new HTTPStatusException(statusCode, message, file, line)); } /** Utility function that throws a HTTPStatusException with status code "400 Bad Request" if the _condition is not met. */ T enforceBadRequest(T)(T condition, lazy string message = null, string file = __FILE__, typeof(__LINE__) line = __LINE__) { return enforceHTTP(condition, HTTPStatus.badRequest, message, file, line); } /** Represents an HTTP request made to a server. */ class HTTPRequest { @safe: protected { InterfaceProxy!Stream m_conn; } public { /// The HTTP protocol version used for the request HTTPVersion httpVersion = HTTPVersion.HTTP_1_1; /// The HTTP _method of the request HTTPMethod method = HTTPMethod.GET; /** The request URI Note that the request URI usually does not include the global 'http://server' part, but only the local path and a query string. A possible exception is a proxy server, which will get full URLs. */ string requestURI = "/"; /// Compatibility alias - scheduled for deprecation alias requestURL = requestURI; /// All request _headers InetHeaderMap headers; } protected this(InterfaceProxy!Stream conn) { m_conn = conn; } protected this() { } public override string toString() { return httpMethodString(method) ~ " " ~ requestURL ~ " " ~ getHTTPVersionString(httpVersion); } /** Shortcut to the 'Host' header (always present for HTTP 1.1) */ @property string host() const { auto ph = "Host" in headers; return ph ? *ph : null; } /// ditto @property void host(string v) { headers["Host"] = v; } /** Returns the mime type part of the 'Content-Type' header. This function gets the pure mime type (e.g. "text/plain") without any supplimentary parameters such as "charset=...". Use contentTypeParameters to get any parameter string or headers["Content-Type"] to get the raw value. */ @property string contentType() const { auto pv = "Content-Type" in headers; if( !pv ) return null; auto idx = std.string.indexOf(*pv, ';'); return idx >= 0 ? (*pv)[0 .. idx] : *pv; } /// ditto @property void contentType(string ct) { headers["Content-Type"] = ct; } /** Returns any supplementary parameters of the 'Content-Type' header. This is a semicolon separated ist of key/value pairs. Usually, if set, this contains the character set used for text based content types. */ @property string contentTypeParameters() const { auto pv = "Content-Type" in headers; if( !pv ) return null; auto idx = std.string.indexOf(*pv, ';'); return idx >= 0 ? (*pv)[idx+1 .. $] : null; } /** Determines if the connection persists across requests. */ @property bool persistent() const { auto ph = "connection" in headers; switch(httpVersion) { case HTTPVersion.HTTP_1_0: if (ph && asLowerCase(*ph).equal("keep-alive")) return true; return false; case HTTPVersion.HTTP_1_1: if (ph && !(asLowerCase(*ph).equal("keep-alive"))) return false; return true; default: return false; } } } /** Represents the HTTP response from the server back to the client. */ class HTTPResponse { @safe: public { /// The protocol version of the response - should not be changed HTTPVersion httpVersion = HTTPVersion.HTTP_1_1; /// The status code of the response, 200 by default int statusCode = HTTPStatus.OK; /** The status phrase of the response If no phrase is set, a default one corresponding to the status code will be used. */ string statusPhrase; /// The response header fields InetHeaderMap headers; /// All cookies that shall be set on the client for this request Cookie[string] cookies; } public override string toString() { auto app = appender!string(); formattedWrite(app, "%s %d %s", getHTTPVersionString(this.httpVersion), this.statusCode, this.statusPhrase); return app.data; } /** Shortcut to the "Content-Type" header */ @property string contentType() const { auto pct = "Content-Type" in headers; return pct ? *pct : "application/octet-stream"; } /// ditto @property void contentType(string ct) { headers["Content-Type"] = ct; } } /** Respresents a HTTP response status. Throwing this exception from within a request handler will produce a matching error page. */ class HTTPStatusException : Exception { @safe: private { int m_status; } this(int status, string message = null, string file = __FILE__, size_t line = __LINE__, Throwable next = null) { super(message != "" ? message : httpStatusText(status), file, line, next); m_status = status; } /// The HTTP status code @property int status() const { return m_status; } string debugMessage; } final class MultiPart { string contentType; InputStream stream; //JsonValue json; string[string] form; } string getHTTPVersionString(HTTPVersion ver) @safe nothrow { final switch(ver){ case HTTPVersion.HTTP_1_0: return "HTTP/1.0"; case HTTPVersion.HTTP_1_1: return "HTTP/1.1"; } } HTTPVersion parseHTTPVersion(ref string str) @safe { enforceBadRequest(str.startsWith("HTTP/")); str = str[5 .. $]; int majorVersion = parse!int(str); enforceBadRequest(str.startsWith(".")); str = str[1 .. $]; int minorVersion = parse!int(str); enforceBadRequest( majorVersion == 1 && (minorVersion == 0 || minorVersion == 1) ); return minorVersion == 0 ? HTTPVersion.HTTP_1_0 : HTTPVersion.HTTP_1_1; } /** Takes an input stream that contains data in HTTP chunked format and outputs the raw data. */ final class ChunkedInputStream : InputStream { @safe: private { InterfaceProxy!InputStream m_in; ulong m_bytesInCurrentChunk = 0; } deprecated("Use createChunkedInputStream() instead.") this(InputStream stream) { this(interfaceProxy!InputStream(stream), true); } /// private this(InterfaceProxy!InputStream stream, bool dummy) { assert(!!stream); m_in = stream; readChunk(); } @property bool empty() const { return m_bytesInCurrentChunk == 0; } @property ulong leastSize() const { return m_bytesInCurrentChunk; } @property bool dataAvailableForRead() { return m_bytesInCurrentChunk > 0 && m_in.dataAvailableForRead; } const(ubyte)[] peek() { auto dt = m_in.peek(); return dt[0 .. min(dt.length, m_bytesInCurrentChunk)]; } size_t read(scope ubyte[] dst, IOMode mode) { enforceBadRequest(!empty, "Read past end of chunked stream."); size_t nbytes = 0; while (dst.length > 0) { enforceBadRequest(m_bytesInCurrentChunk > 0, "Reading past end of chunked HTTP stream."); auto sz = cast(size_t)min(m_bytesInCurrentChunk, dst.length); m_in.read(dst[0 .. sz]); dst = dst[sz .. $]; m_bytesInCurrentChunk -= sz; nbytes += sz; // FIXME: this blocks, but shouldn't for IOMode.once/immediat if( m_bytesInCurrentChunk == 0 ){ // skip current chunk footer and read next chunk ubyte[2] crlf; m_in.read(crlf); enforceBadRequest(crlf[0] == '\r' && crlf[1] == '\n'); readChunk(); } if (mode != IOMode.all) break; } return nbytes; } alias read = InputStream.read; private void readChunk() { assert(m_bytesInCurrentChunk == 0); // read chunk header logTrace("read next chunk header"); auto ln = () @trusted { return cast(string)m_in.readLine(); } (); logTrace("got chunk header: %s", ln); m_bytesInCurrentChunk = parse!ulong(ln, 16u); if( m_bytesInCurrentChunk == 0 ){ // empty chunk denotes the end // skip final chunk footer ubyte[2] crlf; m_in.read(crlf); enforceBadRequest(crlf[0] == '\r' && crlf[1] == '\n'); } } } /// Creates a new `ChunkedInputStream` instance. ChunkedInputStream chunkedInputStream(IS)(IS source_stream) if (isInputStream!IS) { return new ChunkedInputStream(interfaceProxy!InputStream(source_stream), true); } /// Creates a new `ChunkedInputStream` instance. FreeListRef!ChunkedInputStream createChunkedInputStreamFL(IS)(IS source_stream) if (isInputStream!IS) { return () @trusted { return FreeListRef!ChunkedInputStream(interfaceProxy!InputStream(source_stream), true); } (); } /** Outputs data to an output stream in HTTP chunked format. */ final class ChunkedOutputStream : OutputStream { @safe: alias ChunkExtensionCallback = string delegate(in ubyte[] data); private { InterfaceProxy!OutputStream m_out; AllocAppender!(ubyte[]) m_buffer; size_t m_maxBufferSize = 4*1024; bool m_finalized = false; ChunkExtensionCallback m_chunkExtensionCallback = null; } deprecated("Use createChunkedOutputStream() instead.") this(OutputStream stream, IAllocator alloc = theAllocator()) { this(interfaceProxy!OutputStream(stream), alloc, true); } /// private this(InterfaceProxy!OutputStream stream, IAllocator alloc, bool dummy) { m_out = stream; m_buffer = AllocAppender!(ubyte[])(alloc); } /** Maximum buffer size used to buffer individual chunks. A size of zero means unlimited buffer size. Explicit flush is required in this case to empty the buffer. */ @property size_t maxBufferSize() const { return m_maxBufferSize; } /// ditto @property void maxBufferSize(size_t bytes) { m_maxBufferSize = bytes; if (m_buffer.data.length >= m_maxBufferSize) flush(); } /** A delegate used to specify the extensions for each chunk written to the underlying stream. The delegate has to be of type `string delegate(in const(ubyte)[] data)` and gets handed the data of each chunk before it is written to the underlying stream. If it's return value is non-empty, it will be added to the chunk's header line. The returned chunk extension string should be of the format `key1=value1;key2=value2;[...];keyN=valueN` and **not contain any carriage return or newline characters**. Also note that the delegate should accept the passed data through a scoped argument. Thus, **no references to the provided data should be stored in the delegate**. If the data has to be stored for later use, it needs to be copied first. */ @property ChunkExtensionCallback chunkExtensionCallback() const { return m_chunkExtensionCallback; } /// ditto @property void chunkExtensionCallback(ChunkExtensionCallback cb) { m_chunkExtensionCallback = cb; } private void append(scope void delegate(scope ubyte[] dst) @safe del, size_t nbytes) { assert(del !is null); auto sz = nbytes; if (m_maxBufferSize > 0 && m_maxBufferSize < m_buffer.data.length + sz) sz = m_maxBufferSize - min(m_buffer.data.length, m_maxBufferSize); if (sz > 0) { m_buffer.reserve(sz); () @trusted { m_buffer.append((scope ubyte[] dst) { debug assert(dst.length >= sz); del(dst[0..sz]); return sz; }); } (); } } size_t write(in ubyte[] bytes_, IOMode mode) { assert(!m_finalized); const(ubyte)[] bytes = bytes_; size_t nbytes = 0; while (bytes.length > 0) { append((scope ubyte[] dst) { auto n = dst.length; dst[] = bytes[0..n]; bytes = bytes[n..$]; nbytes += n; }, bytes.length); if (mode == IOMode.immediate) break; if (mode == IOMode.once && nbytes > 0) break; if (bytes.length > 0) flush(); } return nbytes; } alias write = OutputStream.write; void flush() { assert(!m_finalized); auto data = m_buffer.data(); if( data.length ){ writeChunk(data); } m_out.flush(); () @trusted { m_buffer.reset(AppenderResetMode.reuseData); } (); } void finalize() { if (m_finalized) return; flush(); () @trusted { m_buffer.reset(AppenderResetMode.freeData); } (); m_finalized = true; writeChunk([]); m_out.flush(); } private void writeChunk(in ubyte[] data) { import vibe.stream.wrapper; auto rng = streamOutputRange(m_out); formattedWrite(() @trusted { return &rng; } (), "%x", data.length); if (m_chunkExtensionCallback !is null) { rng.put(';'); auto extension = m_chunkExtensionCallback(data); assert(!extension.startsWith(';')); debug assert(extension.indexOf('\r') < 0); debug assert(extension.indexOf('\n') < 0); rng.put(extension); } rng.put("\r\n"); rng.put(data); rng.put("\r\n"); } } /// Creates a new `ChunkedInputStream` instance. ChunkedOutputStream createChunkedOutputStream(OS)(OS destination_stream, IAllocator allocator = theAllocator()) if (isOutputStream!OS) { return new ChunkedOutputStream(interfaceProxy!OutputStream(destination_stream), allocator, true); } /// Creates a new `ChunkedOutputStream` instance. FreeListRef!ChunkedOutputStream createChunkedOutputStreamFL(OS)(OS destination_stream, IAllocator allocator = theAllocator()) if (isOutputStream!OS) { return FreeListRef!ChunkedOutputStream(interfaceProxy!OutputStream(destination_stream), allocator, true); } final class Cookie { @safe: private { string m_value; string m_domain; string m_path; string m_expires; long m_maxAge; bool m_secure; bool m_httpOnly; } enum Encoding { url, raw, none = raw } /// Cookie payload @property void value(string value) { m_value = urlEncode(value); } /// ditto @property string value() const { return urlDecode(m_value); } /// Undecoded cookie payload @property void rawValue(string value) { m_value = value; } /// ditto @property string rawValue() const { return m_value; } /// The domain for which the cookie is valid @property void domain(string value) { m_domain = value; } /// ditto @property string domain() const { return m_domain; } /// The path/local URI for which the cookie is valid @property void path(string value) { m_path = value; } /// ditto @property string path() const { return m_path; } /// Expiration date of the cookie @property void expires(string value) { m_expires = value; } /// ditto @property void expires(SysTime value) { m_expires = value.toRFC822DateTimeString(); } /// ditto @property string expires() const { return m_expires; } /** Maximum life time of the cookie This is the modern variant of `expires`. For backwards compatibility it is recommended to set both properties, or to use the `expire` method. */ @property void maxAge(long value) { m_maxAge = value; } /// ditto @property void maxAge(Duration value) { m_maxAge = value.total!"seconds"; } /// ditto @property long maxAge() const { return m_maxAge; } /** Require a secure connection for transmission of this cookie */ @property void secure(bool value) { m_secure = value; } /// ditto @property bool secure() const { return m_secure; } /** Prevents access to the cookie from scripts. */ @property void httpOnly(bool value) { m_httpOnly = value; } /// ditto @property bool httpOnly() const { return m_httpOnly; } /** Sets the "expires" and "max-age" attributes to limit the life time of the cookie. */ void expire(Duration max_age) { this.expires = Clock.currTime(UTC()) + max_age; this.maxAge = max_age; } /// ditto void expire(SysTime expire_time) { this.expires = expire_time; this.maxAge = expire_time - Clock.currTime(UTC()); } /// Sets the cookie value encoded with the specified encoding. void setValue(string value, Encoding encoding) { final switch (encoding) { case Encoding.url: m_value = urlEncode(value); break; case Encoding.none: validateValue(value); m_value = value; break; } } /// Writes out the full cookie in HTTP compatible format. void writeString(R)(R dst, string name) if (isOutputRange!(R, char)) { import vibe.textfilter.urlencode; dst.put(name); dst.put('='); validateValue(this.value); dst.put(this.value); if (this.domain && this.domain != "") { dst.put("; Domain="); dst.put(this.domain); } if (this.path != "") { dst.put("; Path="); dst.put(this.path); } if (this.expires != "") { dst.put("; Expires="); dst.put(this.expires); } if (this.maxAge) dst.formattedWrite("; Max-Age=%s", this.maxAge); if (this.secure) dst.put("; Secure"); if (this.httpOnly) dst.put("; HttpOnly"); } private static void validateValue(string value) { enforce(!value.canFind(';') && !value.canFind('"')); } } unittest { import std.exception : assertThrown; auto c = new Cookie; c.value = "foo"; assert(c.value == "foo"); assert(c.rawValue == "foo"); c.value = "foo$"; assert(c.value == "foo$"); assert(c.rawValue == "foo%24", c.rawValue); c.value = "foo&bar=baz?"; assert(c.value == "foo&bar=baz?"); assert(c.rawValue == "foo%26bar%3Dbaz%3F", c.rawValue); c.setValue("foo%", Cookie.Encoding.raw); assert(c.rawValue == "foo%"); assertThrown(c.value); assertThrown(c.setValue("foo;bar", Cookie.Encoding.raw)); } /** */ struct CookieValueMap { @safe: struct Cookie { /// Name of the cookie string name; /// The raw cookie value as transferred over the wire string rawValue; this(string name, string value, .Cookie.Encoding encoding = .Cookie.Encoding.url) { this.name = name; this.setValue(value, encoding); } /// Treats the value as URL encoded string value() const { return urlDecode(rawValue); } /// ditto void value(string val) { rawValue = urlEncode(val); } /// Sets the cookie value, applying the specified encoding. void setValue(string value, .Cookie.Encoding encoding = .Cookie.Encoding.url) { final switch (encoding) { case .Cookie.Encoding.none: this.rawValue = value; break; case .Cookie.Encoding.url: this.rawValue = urlEncode(value); break; } } } private { Cookie[] m_entries; } auto length(){ return m_entries.length; } string get(string name, string def_value = null) const { foreach (ref c; m_entries) if (c.name == name) return c.value; return def_value; } string[] getAll(string name) const { string[] ret; foreach(c; m_entries) if( c.name == name ) ret ~= c.value; return ret; } void add(string name, string value, .Cookie.Encoding encoding = .Cookie.Encoding.url){ m_entries ~= Cookie(name, value, encoding); } void opIndexAssign(string value, string name) { m_entries ~= Cookie(name, value); } string opIndex(string name) const { import core.exception : RangeError; foreach (ref c; m_entries) if (c.name == name) return c.value; throw new RangeError("Non-existent cookie: "~name); } int opApply(scope int delegate(ref Cookie) @safe del) { foreach(ref c; m_entries) if( auto ret = del(c) ) return ret; return 0; } int opApply(scope int delegate(ref Cookie) @safe del) const { foreach(Cookie c; m_entries) if( auto ret = del(c) ) return ret; return 0; } int opApply(scope int delegate(string name, string value) @safe del) { foreach(ref c; m_entries) if( auto ret = del(c.name, c.value) ) return ret; return 0; } int opApply(scope int delegate(string name, string value) @safe del) const { foreach(Cookie c; m_entries) if( auto ret = del(c.name, c.value) ) return ret; return 0; } auto opBinaryRight(string op)(string name) if(op == "in") { return Ptr(&this, name); } auto opBinaryRight(string op)(string name) const if(op == "in") { return const(Ptr)(&this, name); } private static struct Ref { private { CookieValueMap* map; string name; } @property string get() const { return (*map)[name]; } void opAssign(string newval) { foreach (ref c; *map) if (c.name == name) { c.value = newval; return; } assert(false); } alias get this; } private static struct Ptr { private { CookieValueMap* map; string name; } bool opCast() const { foreach (ref c; map.m_entries) if (c.name == name) return true; return false; } inout(Ref) opUnary(string op : "*")() inout { return inout(Ref)(map, name); } } } unittest { CookieValueMap m; m["foo"] = "bar;baz%1"; assert(m["foo"] == "bar;baz%1"); m["foo"] = "bar"; assert(m.getAll("foo") == ["bar;baz%1", "bar"]); assert("foo" in m); if (auto val = "foo" in m) { assert(*val == "bar;baz%1"); } else assert(false); *("foo" in m) = "baz"; assert(m["foo"] == "baz"); }
D
an easy victory a girl who behaves in a boyish manner gay or light-hearted recreational activity for diversion or amusement play boisterously run easily and fairly fast win easily
D
alias Point = Tuple!(int, "x", int, "y"); void main() { auto H = scan!int, W = scan!int; bool[][] table = H.iota.map!(_ => scan.map!(c => c == '.').array).array; bool at(Point p){ return table[p.y][p.x]; } int solve() { alias DP = Tuple!(int, "count", bool, "isGood"); DP[Point] dp; Point[] points = [Point(0, 0)]; dp[points[0]] = DP(at(points[0]) ? 0 : 1, true); while(points.length > 0) { Point[] next; foreach(p; points) { if (p.x < W-1) { auto right = Point(p.x + 1, p.y); auto count = dp[p].count; if (at(p) && !at(right)) count++; if (!(right in dp) || (right in dp).count > count) { dp[right] = DP(count, at(right)); next ~= right; } } if (p.y < H-1) { auto down = Point(p.x, p.y + 1); auto count = dp[p].count; if (at(p) && !at(down)) count++; if (!(down in dp) || (down in dp).count > count) { dp[down] = DP(count, at(down)); next ~= down; } } } points = next; } return dp[Point(W-1, H-1)].count; } solve().writeln; } // ---------------------------------------------- import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std.math, std.typecons; T[][] combinations(T)(T[] s, in int 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)(int n){ return n.iota.map!(i => scan!T()).array; } void deb(T ...)(T t){ debug writeln(t); } // -----------------------------------------------
D
instance BAU_935_Bronko(Npc_Default) { name[0] = "Бронко"; guild = GIL_BAU; id = 935; voice = 24; flags = 0; npcType = npctype_main; aivar[AIV_Temper] = TEMPER_ToughGuy | TEMPER_ToughGuyNewsOverride | TEMPER_BodyGuard; aivar[AIV_DropDeadAndKill] = TRUE; B_SetAttributesToChapter(self,5); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,ItMw_2h_Bau_Axe); B_CreateAmbientInv(self); CreateInvItems(self,ItMi_Gold,35); B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_B_Normal_Kirgo,BodyTex_B,ITAR_Bau_M); Mdl_SetModelFatness(self,1); Mdl_ApplyOverlayMds(self,"Humans_Militia.mds"); B_GiveNpcTalents(self); B_SetFightSkills(self,30); daily_routine = Rtn_Guard_935; }; func void Rtn_Guard_935() { TA_GuardNpc(9,0,10,30,"NW_FARM4_IN_06"); TA_GuardNpc(10,30,12,00,"NW_FARM4_WOOD_MONSTER_MORE_02"); TA_GuardNpc(12,00,12,30,"NW_FARM4_WOOD_MONSTER_MORE_02"); TA_GuardNpc(12,30,13,30,"NW_FARM4_WOOD_MONSTER_MORE_02"); TA_GuardNpc(13,30,14,30,"NW_FARM4_IN_06"); TA_GuardNpc(14,30,15,00,"NW_BIGFARM_SEKOBWAY_01"); TA_GuardNpc(15,00,15,30,"NW_BIGFARM_LAKE_MONSTER_05_01"); TA_GuardNpc(15,30,16,30,"NW_BIGFARM_LAKE_05"); TA_GuardNpc(16,30,17,30,"NW_TAVERNE_BIGFARM_05"); TA_GuardNpc(17,30,18,0,"NW_TAVERNE_TROLLAREA_MONSTER_01_01"); TA_GuardNpc(18,0,18,3,"NW_CITY_ENTRANCE_BACK"); TA_GuardNpc(18,3,19,5,"NW_CITY_MERCHANT_SHOP04_IN"); TA_GuardNpc(19,5,19,30,"NW_LAKE__WATER_08"); //именно так, через "__" TA_Sit_Campfire(19,30,8,0,"NW_FARM4_REST_02"); }; func void Rtn_After_935() { TA_Stand_ArmsCrossed(9,5,22,0,"NW_FARM4_FIELD_02_A"); TA_Sit_Campfire(19,30,9,5,"NW_FARM4_REST_02"); };
D
import std.stdio; import std.algorithm; import std.array; import std.parallelism; import std.functional; string make_parallel(string funcname, string methodname, bool functional = false) { auto s = "auto " ~ funcname ~ "(Range, Args...)(Range r, TaskPool pool, Args args) {" ~ "return pool." ~ methodname ~ (functional ? "!(fun)" : "") ~ "(r, args);" ~ "}"; return functional ? "template " ~ funcname ~ "(fun...) {" ~ s ~ "}" : s; } mixin(make_parallel("parallelMap", "map", true)); mixin(make_parallel("asyncBuf", "asyncBuf")); template eachDo(fun...) { auto eachDo(Range)(Range r) { foreach(elem; r) unaryFun!fun(elem); } } template parallelEachDo(fun...) { auto parallelEachDo(Range, Args...)(Range r, TaskPool pool, Args args) { eachDo!(fun)(pool.parallel(r, args)); } } void main(string[] args) { auto fin = File("../data/Cucumber_v2i.gff3"); shared int[string] occurrences; auto pool = new TaskPool(totalCPUs-1); fin.byLine() .map!"a.idup"() .filter!"a.length != 0 && a[0] != '#'"() .asyncBuf(pool, 500) .parallelMap!"array(splitter(a, '\t'))[2].idup"(pool) .parallelEachDo!(type => ++occurrences[type])(pool); pool.finish(); foreach(type; occurrences.keys) { writefln("%s: %s", type, occurrences[type]); } }
D
/Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/Build/Intermediates.noindex/Alamofire.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session.o : /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartFormData.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartUpload.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AlamofireExtended.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Protected.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPMethod.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Combine.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/OperationQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/StringEncoding+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Result+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLRequest+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Response.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/SessionDelegate.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoding.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Session.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Validation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ServerTrustEvaluation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ResponseSerialization.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestTaskMap.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLEncodedFormEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/NetworkReachabilityManager.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/CachedResponseHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RedirectHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AFError.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/EventMonitor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AuthenticationInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Notifications.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPHeaders.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Request.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RetryPolicy.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/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.5.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.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/Security.framework/Headers/Security.apinotes /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/Build/Intermediates.noindex/Alamofire.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session~partial.swiftmodule : /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartFormData.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartUpload.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AlamofireExtended.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Protected.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPMethod.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Combine.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/OperationQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/StringEncoding+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Result+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLRequest+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Response.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/SessionDelegate.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoding.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Session.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Validation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ServerTrustEvaluation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ResponseSerialization.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestTaskMap.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLEncodedFormEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/NetworkReachabilityManager.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/CachedResponseHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RedirectHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AFError.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/EventMonitor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AuthenticationInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Notifications.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPHeaders.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Request.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RetryPolicy.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/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.5.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.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/Security.framework/Headers/Security.apinotes /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/Build/Intermediates.noindex/Alamofire.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session~partial.swiftdoc : /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartFormData.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartUpload.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AlamofireExtended.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Protected.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPMethod.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Combine.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/OperationQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/StringEncoding+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Result+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLRequest+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Response.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/SessionDelegate.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoding.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Session.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Validation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ServerTrustEvaluation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ResponseSerialization.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestTaskMap.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLEncodedFormEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/NetworkReachabilityManager.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/CachedResponseHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RedirectHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AFError.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/EventMonitor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AuthenticationInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Notifications.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPHeaders.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Request.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RetryPolicy.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/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.5.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.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/Security.framework/Headers/Security.apinotes /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/Build/Intermediates.noindex/Alamofire.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Session~partial.swiftsourceinfo : /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartFormData.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/MultipartUpload.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AlamofireExtended.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Protected.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPMethod.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLConvertible+URLRequestConvertible.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Combine.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/DispatchQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/OperationQueue+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/StringEncoding+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLSessionConfiguration+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Result+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLRequest+Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Alamofire.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Response.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/SessionDelegate.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoding.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Session.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Validation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ServerTrustEvaluation.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ResponseSerialization.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestTaskMap.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/URLEncodedFormEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/ParameterEncoder.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/NetworkReachabilityManager.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/CachedResponseHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RedirectHandler.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AFError.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/EventMonitor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/AuthenticationInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RequestInterceptor.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Notifications.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/HTTPHeaders.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/Request.swift /Users/olafgomez/Documents/PracticasCice/PokedexXYiOS/PokemonXYiOS/DerivedData/PokemonXYiOS/SourcePackages/checkouts/Alamofire/Source/RetryPolicy.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/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.5.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.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/Security.framework/Headers/Security.apinotes
D
import std.stdio; import stackmachine.tokens; //import stackmachine.lexer; import stackmachine.cpu; import std.ascii; void main() { ubyte[] instructions = [ cast(ubyte) OpCode.ICONST2, cast(ubyte) OpCode.ICONST2, cast(ubyte) OpCode.IADD, cast(ubyte) OpCode.ICONST1, cast(ubyte) OpCode.IADD, cast(ubyte) OpCode.PRINT, cast(ubyte) OpCode.HALT]; CPU cpu = new CPU(); cpu.execute(instructions); // string line ="iconst 64467\n"; // Lexer lex = new Lexer(line); // writeln(lex.nextToken()); // writeln(lex.nextToken()); // writeln(lex.nextToken()); }
D
/* * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package javax.net.ssl; /** * This is the base interface for JSSE trust managers. * <P> * <code>TrustManager</code>s are responsible for managing the trust material * that is used when making trust decisions, and for deciding whether * credentials presented by a peer should be accepted. * <P> * <code>TrustManager</code>s are created by either * using a <code>TrustManagerFactory</code>, * or by implementing one of the <code>TrustManager</code> subclasses. * * @see TrustManagerFactory * @since 1.4 */ public interface TrustManager { }
D
instance Mod_1577_SLD_Soeldner_MT (Npc_Default) { //-------- primary data -------- name = Name_Soeldner; Npctype = NPCTYPE_mt_soeldner; guild = GIL_mil; level = 18; voice = 0; id = 1577; //-------- abilities -------- B_SetAttributesToChapter (self, 4); EquipItem (self, ItMw_GrobesKurzschwert); //-------- visuals -------- // animations Mdl_SetVisual (self,"HUMANS.MDS"); Mdl_ApplyOverlayMds (self,"Humans_Militia.mds"); // body mesh, head mesh, 53 hairmesh, face-tex, hair-tex, skin Mdl_SetVisualBody (self,"hum_body_Naked0",0, 1,"Hum_Head_Pony", 104, 1,ITAR_SLD_M); Mdl_SetModelFatness (self, 0); fight_tactic = FAI_HUMAN_STRONG; //-------- Talente -------- Npc_SetTalentSkill (self, NPC_TALENT_1H,1); Npc_SetTalentSkill (self, NPC_TALENT_2H,1); Npc_SetTalentSkill (self, NPC_TALENT_BOW,1); //-------- inventory -------- //-------------Daily Routine------------- daily_routine = Rtn_FMCstart_1577; //-------------Misions------------------- }; FUNC VOID Rtn_FMCstart_1577 () { TA_Stand_Guarding (01,00,13,00, "FMC_PATH25"); TA_Stand_Guarding (13,00,01,00, "FMC_PATH25"); };
D
module dsymbol.tests; import std.experimental.allocator; import dparse.ast, dparse.parser, dparse.lexer, dparse.rollback_allocator; import dsymbol.cache_entry, dsymbol.modulecache, dsymbol.symbol; import dsymbol.conversion, dsymbol.conversion.first, dsymbol.conversion.second; import dsymbol.semantic, dsymbol.string_interning, dsymbol.builtin.names; import std.file, std.path, std.format; import std.stdio : writeln, stdout; /** * Parses `source`, caches its symbols and compares the the cache content * with the `results`. * * Params: * source = The source code to test. * results = An array of string array. Each slot represents the variable name * followed by the type strings. */ version (unittest): void expectSymbolsAndTypes(const string source, const string[][] results, string file = __FILE_FULL_PATH__, size_t line = __LINE__) { import core.exception : AssertError; import std.exception : enforce; ModuleCache mcache = ModuleCache(theAllocator); auto pair = generateAutocompleteTrees(source, mcache); scope(exit) pair.destroy(); size_t i; foreach(ss; (*pair.symbol)[]) { if (ss.type) { enforce!AssertError(i <= results.length, "not enough results", file, line); enforce!AssertError(results[i].length > 1, "at least one type must be present in a result row", file, line); enforce!AssertError(ss.name == results[i][0], "expected variableName: `%s` but got `%s`".format(results[i][0], ss.name), file, line); auto t = cast() ss.type; foreach (immutable j; 1..results[i].length) { enforce!AssertError(t != null, "null symbol", file, line); enforce!AssertError(t.name == results[i][j], "expected typeName: `%s` but got `%s`".format(results[i][j], t.name), file, line); if (t.type is t && t.name.length && t.name[0] != '*') break; t = t.type; } i++; } } enforce!AssertError(i == results.length, "too many expected results, %s is left".format(results[i .. $]), file, line); } @system unittest { writeln("Running type deduction tests..."); q{bool b; int i;}.expectSymbolsAndTypes([["b", "bool"],["i", "int"]]); q{auto b = false;}.expectSymbolsAndTypes([["b", "bool"]]); q{auto b = true;}.expectSymbolsAndTypes([["b", "bool"]]); q{auto b = [0];}.expectSymbolsAndTypes([["b", "*arr-literal*", "int"]]); q{auto b = [[0]];}.expectSymbolsAndTypes([["b", "*arr-literal*", "*arr-literal*", "int"]]); q{auto b = [[[0]]];}.expectSymbolsAndTypes([["b", "*arr-literal*", "*arr-literal*", "*arr-literal*", "int"]]); q{auto b = [];}.expectSymbolsAndTypes([["b", "*arr-literal*", "void"]]); q{auto b = [[]];}.expectSymbolsAndTypes([["b", "*arr-literal*", "*arr-literal*", "void"]]); //q{int* b;}.expectSymbolsAndTypes([["b", "*", "int"]]); //q{int*[] b;}.expectSymbolsAndTypes([["b", "*arr*", "*", "int"]]); q{auto b = new class {int i;};}.expectSymbolsAndTypes([["b", "__anonclass1"]]); // got a crash before but solving is not yet working ("foo" instead of "__anonclass1"); q{class Bar{} auto foo(){return new class Bar{};} auto b = foo();}.expectSymbolsAndTypes([["b", "foo"]]); } // this one used to crash, see #125 unittest { ModuleCache cache = ModuleCache(theAllocator); auto source = q{ auto a = true ? [42] : []; }; auto pair = generateAutocompleteTrees(source, cache); } // https://github.com/dlang-community/D-Scanner/issues/749 unittest { ModuleCache cache = ModuleCache(theAllocator); auto source = q{ void test() { foo(new class A {});} }; auto pair = generateAutocompleteTrees(source, cache); } // https://github.com/dlang-community/D-Scanner/issues/738 unittest { ModuleCache cache = ModuleCache(theAllocator); auto source = q{ void b() { c = } alias b this; }; auto pair = generateAutocompleteTrees(source, cache); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running function literal tests..."); const sources = [ q{ int a; auto dg = { }; }, q{ void f() { int a; auto dg = { }; } }, q{ auto f = (int a) { }; }, q{ auto f() { return (int a) { }; } }, q{ auto f() { return g((int a) { }); } }, q{ void f() { g((int a) { }); } }, q{ void f() { auto x = (int a) { }; } }, q{ void f() { auto x = g((int a) { }); } }, ]; foreach (src; sources) { auto pair = generateAutocompleteTrees(src, cache); auto a = pair.scope_.getFirstSymbolByNameAndCursor(istring("a"), 35); assert(a, src); assert(a.type, src); assert(a.type.name == "int", src); } } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running struct constructor tests..."); auto source = q{ struct A {int a; struct B {bool b;} int c;} }; auto pair = generateAutocompleteTrees(source, cache); auto A = pair.symbol.getFirstPartNamed(internString("A")); auto B = A.getFirstPartNamed(internString("B")); auto ACtor = A.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME); auto BCtor = B.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME); assert(ACtor.callTip == "this(int a, int c)"); assert(BCtor.callTip == "this(bool b)"); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running union constructor tests..."); auto source = q{ union A {int a; bool b;} }; auto pair = generateAutocompleteTrees(source, cache); auto A = pair.symbol.getFirstPartNamed(internString("A")); auto ACtor = A.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME); assert(ACtor.callTip == "this(int a, bool b)"); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running non-importable symbols tests..."); auto source = q{ class A { this(int a){} } class B : A {} class C { A f; alias f this; } }; auto pair = generateAutocompleteTrees(source, cache); auto A = pair.symbol.getFirstPartNamed(internString("A")); auto B = pair.symbol.getFirstPartNamed(internString("B")); auto C = pair.symbol.getFirstPartNamed(internString("C")); assert(A.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME) !is null); assert(B.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME) is null); assert(C.getFirstPartNamed(CONSTRUCTOR_SYMBOL_NAME) is null); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running alias this tests..."); auto source = q{ struct A {int f;} struct B { A a; alias a this; void fun() { auto var = f; };} }; auto pair = generateAutocompleteTrees(source, cache); auto A = pair.symbol.getFirstPartNamed(internString("A")); auto B = pair.symbol.getFirstPartNamed(internString("B")); auto Af = A.getFirstPartNamed(internString("f")); auto fun = B.getFirstPartNamed(internString("fun")); auto var = fun.getFirstPartNamed(internString("var")); assert(Af is pair.scope_.getFirstSymbolByNameAndCursor(internString("f"), var.location)); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running anon struct tests..."); auto source = q{ struct A { struct {int a;}} }; auto pair = generateAutocompleteTrees(source, cache); auto A = pair.symbol.getFirstPartNamed(internString("A")); assert(A); auto Aa = A.getFirstPartNamed(internString("a")); assert(Aa); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running anon class tests..."); const sources = [ q{ auto a = new class Object { int i; }; }, q{ auto a = new class Object { int i; void m() { } }; }, q{ auto a = g(new class Object { int i; }); }, q{ auto a = g(new class Object { int i; void m() { } }); }, q{ void f() { new class Object { int i; }; } }, q{ void f() { new class Object { int i; void m() { } }; } }, q{ void f() { g(new class Object { int i; }); } }, q{ void f() { g(new class Object { int i; void m() { } }); } }, q{ void f() { auto a = new class Object { int i; }; } }, q{ void f() { auto a = new class Object { int i; void m() { } }; } }, q{ void f() { auto a = g(new class Object { int i; }); } }, q{ void f() { auto a = g(new class Object { int i; void m() { } }); } }, ]; foreach (src; sources) { auto pair = generateAutocompleteTrees(src, cache); auto a = pair.scope_.getFirstSymbolByNameAndCursor(istring("i"), 60); assert(a, src); assert(a.type, src); assert(a.type.name == "int", src); } } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running the deduction from index expr tests..."); { auto source = q{struct S{} S[] s; auto b = s[i];}; auto pair = generateAutocompleteTrees(source, cache); DSymbol* S = pair.symbol.getFirstPartNamed(internString("S")); DSymbol* b = pair.symbol.getFirstPartNamed(internString("b")); assert(S); assert(b.type is S); } { auto source = q{struct S{} S[1] s; auto b = s[i];}; auto pair = generateAutocompleteTrees(source, cache); DSymbol* S = pair.symbol.getFirstPartNamed(internString("S")); DSymbol* b = pair.symbol.getFirstPartNamed(internString("b")); assert(S); assert(b.type is S); } { auto source = q{struct S{} S[][] s; auto b = s[0];}; auto pair = generateAutocompleteTrees(source, cache); DSymbol* S = pair.symbol.getFirstPartNamed(internString("S")); DSymbol* b = pair.symbol.getFirstPartNamed(internString("b")); assert(S); assert(b.type.type is S); } { auto source = q{struct S{} S[][][] s; auto b = s[0][0];}; auto pair = generateAutocompleteTrees(source, cache); DSymbol* S = pair.symbol.getFirstPartNamed(internString("S")); DSymbol* b = pair.symbol.getFirstPartNamed(internString("b")); assert(S); assert(b.type.name == ARRAY_SYMBOL_NAME); assert(b.type.type is S); } { auto source = q{struct S{} S s; auto b = [s][0];}; auto pair = generateAutocompleteTrees(source, cache); DSymbol* S = pair.symbol.getFirstPartNamed(internString("S")); DSymbol* b = pair.symbol.getFirstPartNamed(internString("b")); assert(S); assert(b.type is S); } } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running `super` tests..."); auto source = q{ class A {} class B : A {} }; auto pair = generateAutocompleteTrees(source, cache); assert(pair.symbol); auto A = pair.symbol.getFirstPartNamed(internString("A")); auto B = pair.symbol.getFirstPartNamed(internString("B")); auto scopeA = (pair.scope_.getScopeByCursor(A.location + A.name.length)); auto scopeB = (pair.scope_.getScopeByCursor(B.location + B.name.length)); assert(scopeA !is scopeB); assert(!scopeA.getSymbolsByName(SUPER_SYMBOL_NAME).length); assert(scopeB.getSymbolsByName(SUPER_SYMBOL_NAME)[0].type is A); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running the \"access chain with inherited type\" tests..."); auto source = q{ class A {} class B : A {} }; auto pair = generateAutocompleteTrees(source, cache); assert(pair.symbol); auto A = pair.symbol.getFirstPartNamed(internString("A")); assert(A); auto B = pair.symbol.getFirstPartNamed(internString("B")); assert(B); auto AfromB = B.getFirstPartNamed(internString("A")); assert(AfromB.kind == CompletionKind.aliasName); assert(AfromB.type is A); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running template type parameters tests..."); { auto source = q{ struct Foo(T : int){} struct Bar(T : Foo){} }; auto pair = generateAutocompleteTrees(source, "", 0, cache); DSymbol* T1 = pair.symbol.getFirstPartNamed(internString("Foo")); DSymbol* T2 = T1.getFirstPartNamed(internString("T")); assert(T2.type.name == "int"); DSymbol* T3 = pair.symbol.getFirstPartNamed(internString("Bar")); DSymbol* T4 = T3.getFirstPartNamed(internString("T")); assert(T4.type); assert(T4.type == T1); } { auto source = q{ struct Foo(T){ }}; auto pair = generateAutocompleteTrees(source, "", 0, cache); DSymbol* T1 = pair.symbol.getFirstPartNamed(internString("Foo")); assert(T1); DSymbol* T2 = T1.getFirstPartNamed(internString("T")); assert(T2); assert(T2.kind == CompletionKind.typeTmpParam); } } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Running template variadic parameters tests..."); auto source = q{ struct Foo(T...){ }}; auto pair = generateAutocompleteTrees(source, "", 0, cache); DSymbol* T1 = pair.symbol.getFirstPartNamed(internString("Foo")); assert(T1); DSymbol* T2 = T1.getFirstPartNamed(internString("T")); assert(T2); assert(T2.kind == CompletionKind.variadicTmpParam); } unittest { writeln("Running public import tests..."); const dir = buildPath(tempDir(), "dsymbol"); const fnameA = buildPath(dir, "a.d"); const fnameB = buildPath(dir, "b.d"); const fnameC = buildPath(dir, "c.d"); const fnameD = buildPath(dir, "d.d"); const srcA = q{ int x; int w; }; const srcB = q{ float y; private float z; }; const srcC = q{ public { import a : x; import b; } import a : w; long t; }; const srcD = q{ public import c; }; // A simpler diagram: // a = x w // b = y [z] // c = t + (x y) [w] // d = (t x y) mkdir(dir); write(fnameA, srcA); write(fnameB, srcB); write(fnameC, srcC); write(fnameD, srcD); scope (exit) { remove(fnameA); remove(fnameB); remove(fnameC); remove(fnameD); rmdir(dir); } ModuleCache cache = ModuleCache(theAllocator); cache.addImportPaths([dir]); const a = cache.getModuleSymbol(istring(fnameA)); const b = cache.getModuleSymbol(istring(fnameB)); const c = cache.getModuleSymbol(istring(fnameC)); const d = cache.getModuleSymbol(istring(fnameD)); const ax = a.getFirstPartNamed(istring("x")); const aw = a.getFirstPartNamed(istring("w")); assert(ax); assert(aw); assert(ax.type && ax.type.name == "int"); assert(aw.type && aw.type.name == "int"); const by = b.getFirstPartNamed(istring("y")); const bz = b.getFirstPartNamed(istring("z")); assert(by); assert(bz); assert(by.type && by.type.name == "float"); assert(bz.type && bz.type.name == "float"); const ct = c.getFirstPartNamed(istring("t")); const cw = c.getFirstPartNamed(istring("w")); const cx = c.getFirstPartNamed(istring("x")); const cy = c.getFirstPartNamed(istring("y")); const cz = c.getFirstPartNamed(istring("z")); assert(ct); assert(ct.type && ct.type.name == "long"); assert(cw is null); // skipOver is true assert(cx is ax); assert(cy is by); assert(cz is bz); // should not be there, but it is handled by DCD const dt = d.getFirstPartNamed(istring("t")); const dw = d.getFirstPartNamed(istring("w")); const dx = d.getFirstPartNamed(istring("x")); const dy = d.getFirstPartNamed(istring("y")); const dz = d.getFirstPartNamed(istring("z")); assert(dt is ct); assert(dw is null); assert(dx is cx); assert(dy is cy); assert(dz is cz); } unittest { ModuleCache cache = ModuleCache(theAllocator); writeln("Testing protection scopes"); auto source = q{version(all) { private: } struct Foo{ }}; auto pair = generateAutocompleteTrees(source, "", 0, cache); DSymbol* T1 = pair.symbol.getFirstPartNamed(internString("Foo")); assert(T1); assert(T1.protection != tok!"private"); } // check for memory leaks on thread termination (in static constructors) version (linux) unittest { import core.memory : GC; import core.thread : Thread; import fs = std.file; import std.array : split; import std.conv : to; // get the resident set size static long getRSS() { GC.collect(); GC.minimize(); // read Linux process statistics const txt = fs.readText("/proc/self/stat"); const parts = split(txt); return to!long(parts[23]); } const rssBefore = getRSS(); // create and destroy a lot of dummy threads foreach (j; 0 .. 50) { Thread[100] arr; foreach (i; 0 .. 100) arr[i] = new Thread({}).start(); foreach (i; 0 .. 100) arr[i].join(); } const rssAfter = getRSS(); // check the process memory increase with some eyeballed threshold assert(rssAfter - rssBefore < 5000); } // this is for testing that internString data is always on the same address // since we use this special property for modulecache recursion guard unittest { istring a = internString("foo_bar_baz".idup); istring b = internString("foo_bar_baz".idup); assert(a.data.ptr == b.data.ptr); } private StringCache stringCache = void; static this() { stringCache = StringCache(StringCache.defaultBucketCount); } static ~this() { destroy(stringCache); } const(Token)[] lex(string source) { return lex(source, null); } const(Token)[] lex(string source, string filename) { import dparse.lexer : getTokensForParser; import std.string : representation; LexerConfig config; config.fileName = filename; return getTokensForParser(source.dup.representation, config, &stringCache); } unittest { auto tokens = lex(q{int a = 9;}); foreach(i, t; cast(IdType[]) [tok!"int", tok!"identifier", tok!"=", tok!"intLiteral", tok!";"]) { assert(tokens[i] == t); } assert(tokens[1].text == "a", tokens[1].text); assert(tokens[3].text == "9", tokens[3].text); } string randomDFilename() { import std.uuid : randomUUID; return "dsymbol_" ~ randomUUID().toString() ~ ".d"; } ScopeSymbolPair generateAutocompleteTrees(string source, ref ModuleCache cache) { return generateAutocompleteTrees(source, randomDFilename, cache); } ScopeSymbolPair generateAutocompleteTrees(string source, string filename, ref ModuleCache cache) { auto tokens = lex(source); RollbackAllocator rba; Module m = parseModule(tokens, filename, &rba); scope first = new FirstPass(m, internString(filename), theAllocator, theAllocator, true, &cache); first.run(); secondPass(first.rootSymbol, first.moduleScope, cache); auto r = first.rootSymbol.acSymbol; typeid(SemanticSymbol).destroy(first.rootSymbol); return ScopeSymbolPair(r, first.moduleScope); } ScopeSymbolPair generateAutocompleteTrees(string source, size_t cursorPosition, ref ModuleCache cache) { return generateAutocompleteTrees(source, null, cache); } ScopeSymbolPair generateAutocompleteTrees(string source, string filename, size_t cursorPosition, ref ModuleCache cache) { auto tokens = lex(source); RollbackAllocator rba; return dsymbol.conversion.generateAutocompleteTrees( tokens, theAllocator, &rba, cursorPosition, cache); }
D
module evael.utils.singleton; import evael.lib.memory; /** * Singleton. */ template Singleton() { private static bool instantiated; private __gshared static typeof(this) instance; @nogc public static typeof(this) getInstance() { if (!instantiated) { synchronized (typeof(this).classinfo) { if (!instance) { instance = MemoryHelper.create!(typeof(this))(); } instantiated = true; } } return instance; } @nogc public static void dispose() { if (instantiated) { MemoryHelper.dispose(instance); instance = null; } } }
D
/* REQUIRED_ARGS: -verrors=context TEST_OUTPUT: --- fail_compilation/goto_skip.d(28): Error: `goto` skips declaration of variable `goto_skip.skip.ch` goto Lskip; ^ fail_compilation/goto_skip.d(29): declared here char ch = '!'; ^ fail_compilation/goto_skip.d(36): Error: `goto` skips declaration of `with` temporary goto L1; ^ fail_compilation/goto_skip.d(38): declared here with (S()) { ^ fail_compilation/goto_skip.d(46): Error: `goto` skips declaration of variable `goto_skip.test8.e` goto L2; ^ fail_compilation/goto_skip.d(51): declared here catch (Exception e) { ^ --- */ char skip(bool b) { if (b) goto Lskip; char ch = '!'; Lskip: return ch; } int f() { goto L1; struct S { int e = 5; } with (S()) { L1: return e; } } void test8(int a) { goto L2; try { a += 2; } catch (Exception e) { a += 3; L2: ; a += 100; } assert(a == 100); }
D
// URL: https://atcoder.jp/contests/arc049/tasks/arc049_c import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string; auto rdsp(){return readln.splitter;} void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;} void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r,v);} void readV(T...)(ref T t){auto r=rdsp;foreach(ref v;t)pick(r,v);} void readA(T)(size_t n,ref T[]t){t=new T[](n);auto r=rdsp;foreach(ref v;t)pick(r,v);} void readM(T)(size_t r,size_t c,ref T[][]t){t=new T[][](r);foreach(ref v;t)readA(c,v);} void readC(T...)(size_t n,ref T t){foreach(ref v;t)v=new typeof(v)(n);foreach(i;0..n){auto r=rdsp;foreach(ref v;t)pick(r,v[i]);}} void readS(T)(size_t n,ref T t){t=new T(n);foreach(ref v;t){auto r=rdsp;foreach(ref j;v.tupleof)pick(r,j);}} void writeA(T)(size_t n,T t){foreach(i,v;t.enumerate){write(v);if(i<n-1)write(" ");}writeln;} version(unittest) {} else void main() { int n; readV(n); int a; readV(a); int[] x, y; readC(a, x, y); --x[]; --y[]; int b; readV(b); int[] u, v; readC(b, u, v); --u[]; --v[]; auto r = 0; foreach (i; 0..1<<b) { auto g = Graph!int(n), t = new bool[](n); foreach (j; 0..a) g.addEdge(y[j], x[j]); foreach (j; 0..b) if (i.bitTest(j)) g.addEdge(u[j], v[j]); else t[u[j]] = true; foreach (sc; g.stronglyConnectedComponentsGabow) if (sc.length > 1) foreach (sci; sc) t[sci] = true; foreach (j; 0..n) if (t[j]) { auto q = DList!int(j); while (!q.empty) { auto c = q.front; q.removeFront(); foreach (d; g[c]) if (!t[d]) { t[d] = true; q.insert(d); } } } r = max(r, t.count(false).to!int); } writeln(r); } pragma(inline) { pure bool bitTest(T)(T n, size_t i) { return (n & (T(1) << i)) != 0; } pure T bitSet(T)(T n, size_t i) { return n | (T(1) << i); } pure T bitReset(T)(T n, size_t i) { return n & ~(T(1) << i); } pure T bitComp(T)(T n, size_t i) { return n ^ (T(1) << i); } pure T bitSet(T)(T n, size_t s, size_t e) { return n | ((T(1) << e) - 1) & ~((T(1) << s) - 1); } pure T bitReset(T)(T n, size_t s, size_t e) { return n & (~((T(1) << e) - 1) | ((T(1) << s) - 1)); } pure T bitComp(T)(T n, size_t s, size_t e) { return n ^ ((T(1) << e) - 1) & ~((T(1) << s) - 1); } import core.bitop; pure int bsf(T)(T n) { return core.bitop.bsf(ulong(n)); } pure int bsr(T)(T n) { return core.bitop.bsr(ulong(n)); } pure int popcnt(T)(T n) { return core.bitop.popcnt(ulong(n)); } } struct Graph(N = int) { alias Node = N; Node n; Node[][] g; alias g this; this(Node n) { this.n = n; g = new Node[][](n); } void addEdge(Node u, Node v) { g[u] ~= v; } void addEdgeB(Node u, Node v) { g[u] ~= v; g[v] ~= u; } } auto stronglyConnectedComponentsGabow(Graph)(ref Graph g) { import std.container, std.conv; alias Node = g.Node; auto n = g.n; Node[][] scc; Node[] i = new Node[](n); auto s = SList!Node(), b = SList!Node(), ns = Node(0); void dfs(Node u) { b.insert(i[u] = ns); s.insert(u); ++ns; foreach (v; g[u]) { if (!i[v]) dfs(v); else while (i[v] < b.front) b.removeFront; } if (i[u] == b.front) { scc ~= [[]]; b.removeFront; while (i[u] < ns) { scc[$-1] ~= s.front; i[s.front] = n + scc.length.to!Node; s.removeFront; --ns; } } } foreach (u; 0..n) if (!i[u]) dfs(u); return scc; }
D
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Log/Log+Convenience.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Body+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+FormData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/FormData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/StructuredData+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/Request+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Command.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Log+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringCharacterSequence.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Resource.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/HTTP+Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/AcceptLanguage.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cache/Config+Cache.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Configurable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSONRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/RequestInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Vapor+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/MediaType.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Config+Middleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Date/DateMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/File+Response.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Resolve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Serve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/DumpConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Config+ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoEncoding.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Chaining.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Droplet+Routing.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Config+Log.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RoutesLog.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Config+Hash.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogLevel.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Config+Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/ProviderInstall.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/HashProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CipherProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Int+Random.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Version.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSConfiguration.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RouteCollection.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Subscription.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Run.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mailgun.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Config+Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Responder.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileManager.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/ConsoleLogger.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/Config+Cipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoCipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/CryptoHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/BCryptHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/StaticViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/EngineServer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/SecurityLayer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/AbortError.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider+Resources.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Directories.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Bytes.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/InitProtocols.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Sessions/Config+Sessions.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Responder+Helpers.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/WebSockets/WebSockets.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/EngineClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/FoundationClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Response+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Request+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Event.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/Accept.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+Multipart.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/Abort.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer+Request.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/Config+View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorView.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/Config+ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Config+ClientFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactory.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/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/JSON.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/SMTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/FormData.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cache.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cookies.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Configs.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sessions.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.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 /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/BCrypt.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Transport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.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/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Log+Convenience~partial.swiftmodule : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Body+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+FormData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/FormData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/StructuredData+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/Request+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Command.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Log+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringCharacterSequence.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Resource.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/HTTP+Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/AcceptLanguage.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cache/Config+Cache.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Configurable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSONRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/RequestInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Vapor+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/MediaType.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Config+Middleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Date/DateMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/File+Response.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Resolve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Serve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/DumpConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Config+ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoEncoding.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Chaining.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Droplet+Routing.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Config+Log.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RoutesLog.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Config+Hash.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogLevel.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Config+Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/ProviderInstall.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/HashProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CipherProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Int+Random.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Version.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSConfiguration.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RouteCollection.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Subscription.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Run.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mailgun.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Config+Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Responder.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileManager.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/ConsoleLogger.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/Config+Cipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoCipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/CryptoHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/BCryptHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/StaticViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/EngineServer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/SecurityLayer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/AbortError.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider+Resources.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Directories.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Bytes.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/InitProtocols.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Sessions/Config+Sessions.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Responder+Helpers.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/WebSockets/WebSockets.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/EngineClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/FoundationClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Response+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Request+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Event.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/Accept.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+Multipart.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/Abort.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer+Request.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/Config+View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorView.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/Config+ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Config+ClientFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactory.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/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/JSON.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/SMTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/FormData.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cache.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cookies.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Configs.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sessions.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.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 /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/BCrypt.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Transport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.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/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Log+Convenience~partial.swiftdoc : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Body+JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSON.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+FormData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewData.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/FormData+Polymorphic.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/StructuredData+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/FormURLEncoded/Request+FormURLEncoded.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Command.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Log+Convenience.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringCharacterSequence.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Resource.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/HTTP+Node.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/AcceptLanguage.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cache/Config+Cache.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Response+Codable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Configurable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/JSONRepresentable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/StringInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/RequestInitializable.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Config+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Vapor+Console.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/MediaType.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Config+Middleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Date/DateMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorMiddleware.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/File+Response.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Resolve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Serve.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/DumpConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/Config+ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Serve/ServerConfig.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoEncoding.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Middleware/Chaining.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/Droplet+Routing.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/Config+Log.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RoutesLog.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Config+Hash.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogLevel.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Config+Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mail.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/ProviderInstall.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/LogProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/HashProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CipherProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactoryProtocol.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/Int+Random.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Commands/Version.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/CORS/CORSConfiguration.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Routing/RouteCollection.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Subscription.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Run.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Mail/Mailgun.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Config+Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet+Responder.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/File/FileManager.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Log/ConsoleLogger.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/Config+Cipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Cipher/CryptoCipher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/CryptoHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Hash/BCryptHasher.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/StaticViewRenderer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/EngineServer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/SecurityLayer.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/AbortError.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Provider/Provider+Resources.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Config/Directories.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Bytes.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/InitProtocols.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Sessions/Config+Sessions.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Responder+Helpers.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/WebSockets/WebSockets.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Utilities/Exports.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Droplet/Droplet.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/EngineClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/FoundationClient.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Response+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Request+Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Content/Content.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Event/Event.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/HTTP/Accept.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Multipart/Request+Multipart.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/Abort.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/ViewRenderer+Request.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/Config+View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/View/View.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Error/ErrorView.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/Config+ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Server/ServerFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/Config+ClientFactory.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/Engine/Client/ClientFactory.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/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/URI.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/JSON.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/SMTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/HTTP.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/TLS.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/FormData.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/libc.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Node.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cache.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/PathIndexable.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Console.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Debugging.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Routing.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Random.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreFoundation.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Crypto.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/CoreGraphics.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Branches.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Cookies.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Configs.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sessions.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Sockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/WebSockets.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.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 /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/BCrypt.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Multipart.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Transport.swiftmodule /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/engine.git-3311994267206676365/Sources/CHTTP/include/http_parser.h /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/ctls.git-9210868160426949823/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/CHTTP.build/module.modulemap /Users/chenzuncheng/Desktop/vaporTest/.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 gtkD.pango.PgColor; public import gtkD.gtkc.pangotypes; private import gtkD.gtkc.pango; private import gtkD.glib.ConstructionException; private import gtkD.glib.Str; /** * Description * Attributed text is used in a number of places in Pango. It * is used as the input to the itemization process and also when * creating a PangoLayout. The data types and functions in * this section are used to represent and manipulate sets * of attributes applied to a portion of text. */ public class PgColor { /** the main Gtk struct */ protected PangoColor* pangoColor; public PangoColor* getPgColorStruct(); /** the main Gtk struct as a void* */ protected void* getStruct(); /** * Sets our main struct and passes it to the parent class */ public this (PangoColor* pangoColor); /** */ /** * Fill in the fields of a color from a string specification. The * string can either one of a large set of standard names. (Taken * from the X11 rgb.txt file), or it can be a hex value in the * form '#rgb' '#rrggbb' '#rrrgggbbb' or '#rrrrggggbbbb' where * 'r', 'g' and 'b' are hex digits of the red, green, and blue * components of the color, respectively. (White in the four * forms is '#fff' '#ffffff' '#fffffffff' and '#ffffffffffff') * Params: * spec = a string specifying the new color * Returns: TRUE if parsing of the specifier succeeded, otherwise false. */ public int parse(string spec); /** * Creates a copy of src, which should be freed with * pango_color_free(). Primarily used by language bindings, * not that useful otherwise (since colors can just be copied * by assignment in C). * Returns: the newly allocated PangoColor, which should be freed with pango_color_free(), or NULL if src was NULL. */ public PgColor copy(); /** * Frees a color allocated by pango_color_copy(). */ public void free(); /** * Returns a textual specification of color in the hexadecimal form * #rrrrggggbbbb, where r, * g and b are hex digits representing * the red, green, and blue components respectively. * Since 1.16 * Returns: a newly-allocated text string that must be freed with g_free(). */ public override string toString(); }
D
/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Port to the D programming language: * Frank Benoit <benoit@tionex.de> *******************************************************************************/ module org.eclipse.swt.dnd.DropTarget; import org.eclipse.swt.SWT; import org.eclipse.swt.SWTError; import org.eclipse.swt.SWTException; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.internal.gtk.OS; import org.eclipse.swt.widgets.Combo; import org.eclipse.swt.widgets.Control; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Event; import org.eclipse.swt.widgets.Listener; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.Tree; import org.eclipse.swt.widgets.Widget; import org.eclipse.swt.dnd.DND; import org.eclipse.swt.dnd.Transfer; import org.eclipse.swt.dnd.DropTargetEffect; import org.eclipse.swt.dnd.DNDEvent; import org.eclipse.swt.dnd.DNDListener; import org.eclipse.swt.dnd.TransferData; import org.eclipse.swt.dnd.DropTargetListener; import org.eclipse.swt.dnd.TableDropTargetEffect; import org.eclipse.swt.dnd.TreeDropTargetEffect; import java.lang.all; import java.lang.Thread; version(Tango){ static import tango.stdc.string; } else { // Phobos } /** * * Class <code>DropTarget</code> defines the target object for a drag and drop transfer. * * IMPORTANT: This class is <em>not</em> intended to be subclassed. * * <p>This class identifies the <code>Control</code> over which the user must position the cursor * in order to drop the data being transferred. It also specifies what data types can be dropped on * this control and what operations can be performed. You may have several DropTragets in an * application but there can only be a one to one mapping between a <code>Control</code> and a <code>DropTarget</code>. * The DropTarget can receive data from within the same application or from other applications * (such as text dragged from a text editor like Word).</p> * * <code><pre> * int operations = DND.DROP_MOVE | DND.DROP_COPY | DND.DROP_LINK; * Transfer[] types = new Transfer[] {TextTransfer.getInstance()}; * DropTarget target = new DropTarget(label, operations); * target.setTransfer(types); * </code></pre> * * <p>The application is notified of data being dragged over this control and of when a drop occurs by * implementing the interface <code>DropTargetListener</code> which uses the class * <code>DropTargetEvent</code>. The application can modify the type of drag being performed * on this Control at any stage of the drag by modifying the <code>event.detail</code> field or the * <code>event.currentDataType</code> field. When the data is dropped, it is the responsibility of * the application to copy this data for its own purposes. * * <code><pre> * target.addDropListener (new DropTargetListener() { * public void dragEnter(DropTargetEvent event) {}; * public void dragOver(DropTargetEvent event) {}; * public void dragLeave(DropTargetEvent event) {}; * public void dragOperationChanged(DropTargetEvent event) {}; * public void dropAccept(DropTargetEvent event) {} * public void drop(DropTargetEvent event) { * // A drop has occurred, copy over the data * if (event.data is null) { // no data to copy, indicate failure in event.detail * event.detail = DND.DROP_NONE; * return; * } * label.setText ((String) event.data); // data copied to label text * } * }); * </pre></code> * * <dl> * <dt><b>Styles</b></dt> <dd>DND.DROP_NONE, DND.DROP_COPY, DND.DROP_MOVE, DND.DROP_LINK</dd> * <dt><b>Events</b></dt> <dd>DND.DragEnter, DND.DragLeave, DND.DragOver, DND.DragOperationChanged, * DND.DropAccept, DND.Drop </dd> * </dl> * * @see <a href="http://www.eclipse.org/swt/snippets/#dnd">Drag and Drop snippets</a> * @see <a href="http://www.eclipse.org/swt/examples.php">SWT Example: DNDExample</a> * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> */ public class DropTarget : Widget { Control control; Listener controlListener; Transfer[] transferAgents; DropTargetEffect dropEffect; // Track application selections TransferData selectedDataType; int selectedOperation; // workaround - There is no event for "operation changed" so track operation based on key state int keyOperation = -1; // workaround - Simulate events when the mouse is not moving long dragOverStart; Runnable dragOverHeartbeat; DNDEvent dragOverEvent; ptrdiff_t drag_motion_handler; ptrdiff_t drag_leave_handler; ptrdiff_t drag_data_received_handler; ptrdiff_t drag_drop_handler; static const String DEFAULT_DROP_TARGET_EFFECT = "DEFAULT_DROP_TARGET_EFFECT"; //$NON-NLS-1$ static const int DRAGOVER_HYSTERESIS = 50; // static Callback Drag_Motion; // static Callback Drag_Leave; // static Callback Drag_Data_Received; // static Callback Drag_Drop; // // static this(){ // Drag_Motion = new Callback(DropTarget.class, "Drag_Motion", 5); //$NON-NLS-1$ // if (Drag_Motion.getAddress() is 0) SWT.error(SWT.ERROR_NO_MORE_CALLBACKS); // Drag_Leave = new Callback(DropTarget.class, "Drag_Leave", 3); //$NON-NLS-1$ // if (Drag_Leave.getAddress() is 0) SWT.error(SWT.ERROR_NO_MORE_CALLBACKS); // Drag_Data_Received = new Callback(DropTarget.class, "Drag_Data_Received", 7); //$NON-NLS-1$ // if (Drag_Data_Received.getAddress() is 0) SWT.error(SWT.ERROR_NO_MORE_CALLBACKS); // Drag_Drop = new Callback(DropTarget.class, "Drag_Drop", 5); //$NON-NLS-1$ // if (Drag_Drop.getAddress() is 0) SWT.error(SWT.ERROR_NO_MORE_CALLBACKS); // } /** * Creates a new <code>DropTarget</code> to allow data to be dropped on the specified * <code>Control</code>. * Creating an instance of a DropTarget may cause system resources to be allocated * depending on the platform. It is therefore mandatory that the DropTarget instance * be disposed when no longer required. * * @param control the <code>Control</code> over which the user positions the cursor to drop the data * @param style the bitwise OR'ing of allowed operations; this may be a combination of any of * DND.DROP_NONE, DND.DROP_COPY, DND.DROP_MOVE, DND.DROP_LINK * * @exception SWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> * <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * @exception SWTError <ul> * <li>ERROR_CANNOT_INIT_DROP - unable to initiate drop target; this will occur if more than one * drop target is created for a control or if the operating system will not allow the creation * of the drop target</li> * </ul> * * <p>NOTE: ERROR_CANNOT_INIT_DROP should be an SWTException, since it is a * recoverable error, but can not be changed due to backward compatibility.</p> * * @see Widget#dispose * @see DropTarget#checkSubclass * @see DND#DROP_NONE * @see DND#DROP_COPY * @see DND#DROP_MOVE * @see DND#DROP_LINK */ public this(Control control, int style) { super(control, checkStyle(style)); this.control = control; // if (Drag_Motion is null || Drag_Leave is null || Drag_Data_Received is null || Drag_Drop is null) { // DND.error(DND.ERROR_CANNOT_INIT_DROP); // } if (control.getData(DND.DROP_TARGET_KEY) !is null) { DND.error(DND.ERROR_CANNOT_INIT_DROP); } control.setData(DND.DROP_TARGET_KEY, this); drag_motion_handler = OS.g_signal_connect(control.handle, OS.drag_motion.ptr, cast(GCallback)&Drag_Motion, null); drag_leave_handler = OS.g_signal_connect(control.handle, OS.drag_leave.ptr, cast(GCallback)&Drag_Leave, null); drag_data_received_handler = OS.g_signal_connect(control.handle, OS.drag_data_received.ptr, cast(GCallback)&Drag_Data_Received, null); drag_drop_handler = OS.g_signal_connect(control.handle, OS.drag_drop.ptr, cast(GCallback)&Drag_Drop, null); // Dispose listeners controlListener = new class() Listener{ public void handleEvent(Event event){ if (!this.outer.isDisposed()){ this.outer.dispose(); } } }; control.addListener(SWT.Dispose, controlListener); this.addListener(SWT.Dispose, new class() Listener { public void handleEvent(Event event){ onDispose(); } }); Object effect = control.getData(DEFAULT_DROP_TARGET_EFFECT); if ( auto de = cast(DropTargetEffect)effect ) { dropEffect = de; } else if ( auto table = cast(Table)control ) { dropEffect = new TableDropTargetEffect(table); } else if ( auto tree = cast(Tree) control ) { dropEffect = new TreeDropTargetEffect(tree); } dragOverHeartbeat = new class() Runnable { public void run() { Control control = this.outer.control; if (control is null || control.isDisposed() || dragOverStart is 0) return; long time = System.currentTimeMillis(); int delay = DRAGOVER_HYSTERESIS; if (time < dragOverStart) { delay = cast(int)(dragOverStart - time); } else { dragOverEvent.time += DRAGOVER_HYSTERESIS; int allowedOperations = dragOverEvent.operations; TransferData[] allowedTypes = dragOverEvent.dataTypes; //pass a copy of data types in to listeners in case application modifies it TransferData[] dataTypes = new TransferData[allowedTypes.length]; System.arraycopy(allowedTypes, 0, dataTypes, 0, dataTypes.length); DNDEvent event = new DNDEvent(); event.widget = dragOverEvent.widget; event.x = dragOverEvent.x; event.y = dragOverEvent.y; event.time = dragOverEvent.time; event.feedback = DND.FEEDBACK_SELECT; event.dataTypes = dataTypes; event.dataType = selectedDataType; event.operations = dragOverEvent.operations; event.detail = selectedOperation; if (dropEffect !is null) { event.item = dropEffect.getItem(dragOverEvent.x, dragOverEvent.y); } selectedDataType = null; selectedOperation = DND.DROP_NONE; notifyListeners(DND.DragOver, event); if (event.dataType !is null) { for (int i = 0; i < allowedTypes.length; i++) { if (allowedTypes[i].type is event.dataType.type) { selectedDataType = event.dataType; break; } } } if (selectedDataType !is null && (event.detail & allowedOperations) !is 0) { selectedOperation = event.detail; } } control = this.outer.control; if (control is null || control.isDisposed()) return; control.getDisplay().timerExec(delay, dragOverHeartbeat); } }; } static int checkStyle (int style) { if (style is SWT.NONE) return DND.DROP_MOVE; return style; } private static extern(C) void Drag_Data_Received ( GtkWidget *widget, GdkDragContext *context, int x, int y, GtkSelectionData *data, uint info, uint time, void* user_data) { DropTarget target = FindDropTarget(widget); if (target is null) return; target.drag_data_received (widget, context, x, y, data, info, time); } private static extern(C) int Drag_Drop( GtkWidget *widget, GdkDragContext *context, int x, int y, uint time, void* user_data) { DropTarget target = FindDropTarget(widget); if (target is null) return 0; return target.drag_drop (widget, context, x, y, time) ? 1 : 0; } private static extern(C) void Drag_Leave ( GtkWidget *widget, GdkDragContext *context, uint time, void* user_data) { DropTarget target = FindDropTarget(widget); if (target is null) return; target.drag_leave (widget, context, time); } private static extern(C) int Drag_Motion ( GtkWidget *widget, GdkDragContext *context, int x, int y, uint time, void* user_data) { DropTarget target = FindDropTarget(widget); if (target is null) return 0; return target.drag_motion (widget, context, x, y, time) ? 1 : 0; } static DropTarget FindDropTarget(GtkWidget* handle) { Display display = Display.findDisplay(Thread.currentThread()); if (display is null || display.isDisposed()) return null; Widget widget = display.findWidget(handle); if (widget is null) return null; return cast(DropTarget)widget.getData(DND.DROP_TARGET_KEY); } /** * Adds the listener to the collection of listeners who will * be notified when a drag and drop operation is in progress, by sending * it one of the messages defined in the <code>DropTargetListener</code> * interface. * * <p><ul> * <li><code>dragEnter</code> is called when the cursor has entered the drop target boundaries * <li><code>dragLeave</code> is called when the cursor has left the drop target boundaries and just before * the drop occurs or is cancelled. * <li><code>dragOperationChanged</code> is called when the operation being performed has changed * (usually due to the user changing the selected modifier key(s) while dragging) * <li><code>dragOver</code> is called when the cursor is moving over the drop target * <li><code>dropAccept</code> is called just before the drop is performed. The drop target is given * the chance to change the nature of the drop or veto the drop by setting the <code>event.detail</code> field * <li><code>drop</code> is called when the data is being dropped * </ul></p> * * @param listener the listener which should be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see DropTargetListener * @see #getDropListeners * @see #removeDropListener * @see DropTargetEvent */ public void addDropListener(DropTargetListener listener) { if (listener is null) DND.error (SWT.ERROR_NULL_ARGUMENT); DNDListener typedListener = new DNDListener (listener); typedListener.dndWidget = this; addListener (DND.DragEnter, typedListener); addListener (DND.DragLeave, typedListener); addListener (DND.DragOver, typedListener); addListener (DND.DragOperationChanged, typedListener); addListener (DND.Drop, typedListener); addListener (DND.DropAccept, typedListener); } protected override void checkSubclass () { String name = this.classinfo.name; String validName = DropTarget.classinfo.name; if ( validName !=/*eq*/ name ) { DND.error (SWT.ERROR_INVALID_SUBCLASS); } } void drag_data_received ( GtkWidget *widget, GdkDragContext *context, int x, int y, GtkSelectionData *data, uint info, uint time ) { DNDEvent event = new DNDEvent(); if (data is null || !setEventData(context, x, y, time, event)) { keyOperation = -1; return; } keyOperation = -1; int allowedOperations = event.operations; // Get data in a Java format Object object = null; TransferData transferData = new TransferData(); if (data.data !is null) { transferData.type = data.type; transferData.length = data.length; transferData.pValue = data.data; transferData.format = data.format; for (int i = 0; i < transferAgents.length; i++) { Transfer transfer = transferAgents[i]; if (transfer !is null && transfer.isSupportedType(transferData)) { object = transfer.nativeToJava(transferData); break; } } } if (object is null) { selectedOperation = DND.DROP_NONE; } event.detail = selectedOperation; event.dataType = transferData; event.data = object; selectedOperation = DND.DROP_NONE; notifyListeners(DND.Drop, event); if ((allowedOperations & event.detail) is event.detail) { selectedOperation = event.detail; } //stop native handler OS.g_signal_stop_emission_by_name(widget, OS.drag_data_received.ptr); //notify source of action taken OS.gtk_drag_finish(context, selectedOperation !is DND.DROP_NONE, selectedOperation is DND.DROP_MOVE, time); return; } bool drag_drop( GtkWidget *widget, GdkDragContext *context, int x, int y, uint time) { DNDEvent event = new DNDEvent(); if (!setEventData(context, x, y, time, event)) { keyOperation = -1; return false; } keyOperation = -1; int allowedOperations = event.operations; TransferData[] allowedDataTypes = new TransferData[event.dataTypes.length]; System.arraycopy(event.dataTypes, 0, allowedDataTypes, 0, allowedDataTypes.length); event.dataType = selectedDataType; event.detail = selectedOperation; selectedDataType = null; selectedOperation = DND.DROP_NONE; notifyListeners(DND.DropAccept,event); if (event.dataType !is null) { for (int i = 0; i < allowedDataTypes.length; i++) { if (allowedDataTypes[i].type is event.dataType.type) { selectedDataType = allowedDataTypes[i]; break; } } } if (selectedDataType !is null && ((event.detail & allowedOperations) is event.detail)) { selectedOperation = event.detail; } if (selectedOperation is DND.DROP_NONE) { // this was not a successful drop return false; } // ask drag source for dropped data OS.gtk_drag_get_data(widget, context, selectedDataType.type, time); return true; } void drag_leave( GtkWidget *widget, GdkDragContext *context, uint time ) { updateDragOverHover(0, null); if (keyOperation is -1) return; keyOperation = -1; DNDEvent event = new DNDEvent(); event.widget = this; event.time = time; event.detail = DND.DROP_NONE; notifyListeners(DND.DragLeave, event); } bool drag_motion ( GtkWidget *widget, GdkDragContext *context, int x, int y, uint time) { int oldKeyOperation = keyOperation; if (oldKeyOperation is -1) { //drag enter selectedDataType = null; selectedOperation = DND.DROP_NONE; } DNDEvent event = new DNDEvent(); if (!setEventData(context, x, y, time, event)) { keyOperation = -1; OS.gdk_drag_status(context, 0, time); return false; } int allowedOperations = event.operations; TransferData[] allowedDataTypes = new TransferData[event.dataTypes.length]; System.arraycopy(event.dataTypes, 0, allowedDataTypes, 0, allowedDataTypes.length); if (oldKeyOperation is -1) { event.type = DND.DragEnter; } else { if (keyOperation is oldKeyOperation) { event.type = DND.DragOver; event.dataType = selectedDataType; event.detail = selectedOperation; } else { event.type = DND.DragOperationChanged; event.dataType = selectedDataType; } } updateDragOverHover(DRAGOVER_HYSTERESIS, event); selectedDataType = null; selectedOperation = DND.DROP_NONE; notifyListeners(event.type, event); if (event.detail is DND.DROP_DEFAULT) { event.detail = (allowedOperations & DND.DROP_MOVE) !is 0 ? DND.DROP_MOVE : DND.DROP_NONE; } if (event.dataType !is null) { for (int i = 0; i < allowedDataTypes.length; i++) { if (allowedDataTypes[i].type is event.dataType.type) { selectedDataType = allowedDataTypes[i]; break; } } } if (selectedDataType !is null && (allowedOperations & event.detail) !is 0) { selectedOperation = event.detail; } switch (selectedOperation) { case DND.DROP_NONE: OS.gdk_drag_status(context, 0, time); break; case DND.DROP_COPY: OS.gdk_drag_status(context, OS.GDK_ACTION_COPY, time); break; case DND.DROP_MOVE: OS.gdk_drag_status(context, OS.GDK_ACTION_MOVE, time); break; case DND.DROP_LINK: OS.gdk_drag_status(context, OS.GDK_ACTION_LINK, time); break; default: } if (oldKeyOperation is -1) { dragOverHeartbeat.run(); } return true; } /** * Returns the Control which is registered for this DropTarget. This is the control over which the * user positions the cursor to drop the data. * * @return the Control which is registered for this DropTarget */ public Control getControl () { return control; } /** * Returns an array of listeners who will be notified when a drag and drop * operation is in progress, by sending it one of the messages defined in * the <code>DropTargetListener</code> interface. * * @return the listeners who will be notified when a drag and drop * operation is in progress * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see DropTargetListener * @see #addDropListener * @see #removeDropListener * @see DropTargetEvent * * @since 3.4 */ public DropTargetListener[] getDropListeners() { Listener[] listeners = getListeners(DND.DragEnter); auto length = listeners.length; DropTargetListener[] dropListeners = new DropTargetListener[length]; int count = 0; for (typeof(length) i = 0; i < length; i++) { Listener listener = listeners[i]; if ( auto l = cast(DNDListener)listener ) { dropListeners[count] = cast(DropTargetListener) (l.getEventListener()); count++; } } if (count is length) return dropListeners; DropTargetListener[] result = new DropTargetListener[count]; SimpleType!(DropTargetListener).arraycopy(dropListeners, 0, result, 0, count); return result; } /** * Returns the drop effect for this DropTarget. This drop effect will be * used during a drag and drop to display the drag under effect on the * target widget. * * @return the drop effect that is registered for this DropTarget * * @since 3.3 */ public DropTargetEffect getDropTargetEffect() { return dropEffect; } int getOperationFromKeyState() { int state; OS.gdk_window_get_pointer(null, null, null, &state); bool ctrl = (state & OS.GDK_CONTROL_MASK) !is 0; bool shift = (state & OS.GDK_SHIFT_MASK) !is 0; if (ctrl && shift) return DND.DROP_LINK; if (ctrl)return DND.DROP_COPY; if (shift)return DND.DROP_MOVE; return DND.DROP_DEFAULT; } /** * Returns a list of the data types that can be transferred to this DropTarget. * * @return a list of the data types that can be transferred to this DropTarget */ public Transfer[] getTransfer() { return transferAgents; } void onDispose(){ if (control is null) return; OS.g_signal_handler_disconnect(control.handle, drag_motion_handler); OS.g_signal_handler_disconnect(control.handle, drag_leave_handler); OS.g_signal_handler_disconnect(control.handle, drag_data_received_handler); OS.g_signal_handler_disconnect(control.handle, drag_drop_handler); if (transferAgents.length !is 0) OS.gtk_drag_dest_unset(control.handle); transferAgents = null; if (controlListener !is null) control.removeListener(SWT.Dispose, controlListener); control.setData(DND.DROP_TARGET_KEY, null); control = null; controlListener = null; } int opToOsOp(int operation){ int osOperation = 0; if ((operation & DND.DROP_COPY) is DND.DROP_COPY) osOperation |= OS.GDK_ACTION_COPY; if ((operation & DND.DROP_MOVE) is DND.DROP_MOVE) osOperation |= OS.GDK_ACTION_MOVE; if ((operation & DND.DROP_LINK) is DND.DROP_LINK) osOperation |= OS.GDK_ACTION_LINK; return osOperation; } int osOpToOp(int osOperation){ int operation = DND.DROP_NONE; if ((osOperation & OS.GDK_ACTION_COPY) is OS.GDK_ACTION_COPY) operation |= DND.DROP_COPY; if ((osOperation & OS.GDK_ACTION_MOVE) is OS.GDK_ACTION_MOVE) operation |= DND.DROP_MOVE; if ((osOperation & OS.GDK_ACTION_LINK) is OS.GDK_ACTION_LINK) operation |= DND.DROP_LINK; return operation; } /** * Removes the listener from the collection of listeners who will * be notified when a drag and drop operation is in progress. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the listener is null</li> * </ul> * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see DropTargetListener * @see #addDropListener * @see #getDropListeners */ public void removeDropListener(DropTargetListener listener) { if (listener is null) DND.error (SWT.ERROR_NULL_ARGUMENT); removeListener (DND.DragEnter, listener); removeListener (DND.DragLeave, listener); removeListener (DND.DragOver, listener); removeListener (DND.DragOperationChanged, listener); removeListener (DND.Drop, listener); removeListener (DND.DropAccept, listener); } /** * Specifies the data types that can be transferred to this DropTarget. If data is * being dragged that does not match one of these types, the drop target will be notified of * the drag and drop operation but the currentDataType will be null and the operation * will be DND.NONE. * * @param transferAgents a list of Transfer objects which define the types of data that can be * dropped on this target * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if transferAgents is null</li> * </ul> */ public void setTransfer(Transfer[] transferAgents){ if (transferAgents is null) DND.error(SWT.ERROR_NULL_ARGUMENT); if (this.transferAgents.length !is 0) { OS.gtk_drag_dest_unset(control.handle); } this.transferAgents = transferAgents; GtkTargetEntry*[] targets; for (int i = 0; i < transferAgents.length; i++) { Transfer transfer = transferAgents[i]; if (transfer !is null) { int[] typeIds = transfer.getTypeIds(); String[] typeNames = transfer.getTypeNames(); for (int j = 0; j < typeIds.length; j++) { GtkTargetEntry* entry = new GtkTargetEntry(); entry.target = cast(char*) OS.g_malloc(typeNames[j].length +1); entry.target[ 0 .. typeNames[j].length ] = typeNames[j]; entry.target[ typeNames[j].length ] = '\0'; entry.info = typeIds[j]; GtkTargetEntry*[] newTargets = new GtkTargetEntry*[targets.length + 1]; SimpleType!(GtkTargetEntry*).arraycopy(targets, 0, newTargets, 0, targets.length); newTargets[targets.length] = entry; targets = newTargets; } } } auto pTargets = OS.g_malloc(targets.length * GtkTargetEntry.sizeof); for (int i = 0; i < targets.length; i++) { OS.memmove(pTargets + i*GtkTargetEntry.sizeof, targets[i], GtkTargetEntry.sizeof); } int actions = opToOsOp(getStyle()); if ( auto c = cast(Combo)control ) { if ((control.getStyle() & SWT.READ_ONLY) is 0) { auto entryHandle = OS.gtk_bin_get_child (control.handle); if (entryHandle !is null) { OS.gtk_drag_dest_unset(entryHandle); } } } OS.gtk_drag_dest_set(control.handle, 0, pTargets, cast(int)/*64bit*/targets.length, actions); for (int i = 0; i < targets.length; i++) { OS.g_free(targets[i].target); } } /** * Specifies the drop effect for this DropTarget. This drop effect will be * used during a drag and drop to display the drag under effect on the * target widget. * * @param effect the drop effect that is registered for this DropTarget * * @since 3.3 */ public void setDropTargetEffect(DropTargetEffect effect) { dropEffect = effect; } bool setEventData(GdkDragContext* dragContext, int x, int y, int time, DNDEvent event) { if (dragContext is null) return false; if (dragContext.targets is null) return false; // get allowed operations int style = getStyle(); int operations = osOpToOp(dragContext.actions) & style; if (operations is DND.DROP_NONE) return false; // get current operation int operation = getOperationFromKeyState(); keyOperation = operation; if (operation is DND.DROP_DEFAULT) { if ((style & DND.DROP_DEFAULT) is 0) { operation = (operations & DND.DROP_MOVE) !is 0 ? DND.DROP_MOVE : DND.DROP_NONE; } } else { if ((operation & operations) is 0) operation = DND.DROP_NONE; } // Get allowed transfer types int length = OS.g_list_length(dragContext.targets); TransferData[] dataTypes = new TransferData[0]; for (int i = 0; i < length; i++) { auto pData = OS.g_list_nth(dragContext.targets, i); GtkTargetPair* gtkTargetPair = cast(GtkTargetPair*)pData; TransferData data = new TransferData(); data.type = gtkTargetPair.target; for (int j = 0; j < transferAgents.length; j++) { Transfer transfer = transferAgents[j]; if (transfer !is null && transfer.isSupportedType(data)) { TransferData[] newDataTypes = new TransferData[dataTypes.length + 1]; System.arraycopy(dataTypes, 0, newDataTypes, 0, dataTypes.length); newDataTypes[dataTypes.length] = data; dataTypes = newDataTypes; break; } } } if (dataTypes.length is 0) return false; auto window = OS.GTK_WIDGET_WINDOW(control.handle); int origin_x, origin_y; OS.gdk_window_get_origin(window, &origin_x, &origin_y); Point coordinates = new Point(origin_x + x, origin_y + y); event.widget = this; event.x = coordinates.x; event.y = coordinates.y; event.time = time; event.feedback = DND.FEEDBACK_SELECT; event.dataTypes = dataTypes; event.dataType = dataTypes[0]; event.operations = operations; event.detail = operation; if (dropEffect !is null) { event.item = dropEffect.getItem(coordinates.x, coordinates.y); } return true; } void updateDragOverHover(long delay, DNDEvent event) { if (delay is 0) { dragOverStart = 0; dragOverEvent = null; return; } dragOverStart = System.currentTimeMillis() + delay; if (dragOverEvent is null) dragOverEvent = new DNDEvent(); dragOverEvent.x = event.x; dragOverEvent.y = event.y; TransferData[] dataTypes = new TransferData[ event.dataTypes.length]; System.arraycopy( event.dataTypes, 0, dataTypes, 0, dataTypes.length); dragOverEvent.dataTypes = dataTypes; dragOverEvent.operations = event.operations; dragOverEvent.time = event.time; } }
D
a small two-wheeled cart for one passenger
D
module xf.rt.TaskMngr; private { import CPUid = xf.utils.CPUid; import xf.utils.Meta : Stuple, stuple; import tango.core.ThreadPool; import tango.core.Thread; import tango.core.Atomic; import tango.io.Stdout; } class TaskMngr { this() { _threads = CPUid.coresPerCPU; Stdout.formatln("Detected {} cores", _threads); _pool = new ThreadPool!(int)(_threads); } int numTasks() { return _threads * _subdivs; } Stuple!(int, int) getSlice(int taskNr, int numElements) { return stuple(taskNr * numElements / numTasks, (taskNr+1) * numElements / numTasks); } void parallel(void delegate(int taskNr) dg) { Atomic!(int) taskCntr; taskCntr.store(0); void runTask(int nr) { scope (exit) taskCntr.increment(); dg(nr); } for (int i = 0; i < numTasks; ++i) { _pool.assign(&runTask, i); } while (taskCntr.load() < numTasks) { Thread.yield; } } private { int _threads; ThreadPool!(int) _pool; const int _subdivs = 20; } }
D
module hunt.wechat.bean.card.Cash; //import com.alibaba.fastjson.annotation.JSONField; /** * 代金券 * * * */ class Cash : AbstractInfo { /** * 表示起用金额(单位为分),如果无起用门槛则填0。 * 添加必填,不支持修改 */ @JSONField(name = "least_cost") private Integer leastCost; /** * 表示减免金额。(单位为分) * 添加必填,不支持修改 */ @JSONField(name = "reduce_cost") private Integer reduceCost; /** * 表示起用金额(单位为分),如果无起用门槛则填0。 */ public Integer getLeastCost() { return leastCost; } /** * 表示起用金额(单位为分),如果无起用门槛则填0。 * 添加必填,不支持修改 */ public void setLeastCost(Integer leastCost) { this.leastCost = leastCost; } /** * 表示减免金额。(单位为分) */ public Integer getReduceCost() { return reduceCost; } /** * 表示减免金额。(单位为分) * 添加必填,不支持修改 */ public void setReduceCost(Integer reduceCost) { this.reduceCost = reduceCost; } }
D
import std.algorithm: max; import core.time: MonoTime; class TimeKeeper { static: private { MonoTime previousTime; float deltaTime; int targetFPS; } public void start(int fps) { previousTime = MonoTime.currTime(); targetFPS = fps; } public void startNewFrame() { MonoTime now = MonoTime.currTime(); deltaTime = (now - previousTime).total!"usecs" / 1_000_000f; previousTime = now; } public float getDeltaTime() { return deltaTime; } public long uSecsUntilNextFrame() { return max(0, (1_000_000L / targetFPS) - (MonoTime.currTime() - previousTime).total!"usecs"); } }
D
/home/hedayat/holo/tutorial/art_game/zomes/game/code/target/rls/debug/deps/mashup-240a9a13b31be8b2.rmeta: /home/hedayat/.cargo/registry/src/github.com-1ecc6299db9ec823/mashup-0.1.9/src/lib.rs /home/hedayat/holo/tutorial/art_game/zomes/game/code/target/rls/debug/deps/mashup-240a9a13b31be8b2.d: /home/hedayat/.cargo/registry/src/github.com-1ecc6299db9ec823/mashup-0.1.9/src/lib.rs /home/hedayat/.cargo/registry/src/github.com-1ecc6299db9ec823/mashup-0.1.9/src/lib.rs:
D
import std.file; import std.stdio; import std.string; import transform; import derelict.opengl3.gl3; import gl3n.linalg; import camera; class Shader { private uint program; private uint vertexShader; private uint fragmentShader; private int transformUniform; private int worldUniform; private int colorUniform; static int NULL = 0; this(string filename) { program = glCreateProgram(); vertexShader = createShader(filename ~ ".vsh", GL_VERTEX_SHADER); fragmentShader = createShader(filename ~ ".fsh", GL_FRAGMENT_SHADER); writeln("shaders created and compiled"); glAttachShader(program, vertexShader); glAttachShader(program, fragmentShader); writeln("shaders attached"); bindAttributes(); writeln("attributes bound"); glLinkProgram(program); checkForShaderError(program, GL_LINK_STATUS, true, "Error; Program linking failed!"); writeln("shader linked"); glValidateProgram(program); checkForShaderError(program, GL_VALIDATE_STATUS, true, "Error; Program validation failed!"); writeln("shader validated"); transformUniform = glGetUniformLocation(program, "transform"); writeln("transform uniform gotten"); worldUniform = glGetUniformLocation(program, "world"); writeln("world uniform gotten"); colorUniform = glGetUniformLocation(program, "color"); writeln("color shader gotten"); } void update(Transform transform, Camera camera, vec4 color) { mat4 model = transform.getModel(); glUniformMatrix4fv(transformUniform, 1, GL_TRUE, model.value_ptr); mat4 world = camera.getViewProjection(); glUniformMatrix4fv(worldUniform, 1, GL_TRUE, world.value_ptr); glUniform4fv(colorUniform, 1, color.value_ptr); } void bindAttributes() { glBindAttribLocation(program, 0, "position"); glBindAttribLocation(program, 1, "texCoord"); glBindAttribLocation(program, 2, "normal"); } void bind() { glUseProgram(program); } ~this() { glDetachShader(program, vertexShader); glDeleteShader(vertexShader); glDetachShader(program, fragmentShader); glDeleteShader(fragmentShader); glDeleteProgram(program); } static uint createShader(string filename, GLenum shaderType) { string shader_src = readText(filename); uint shader = glCreateShader(shaderType); if(shader == 0) { stderr.writeln("Error: Shader creation failed"); } const(char)* shaderSources[1]; int shaderSourceLengths[1] = [shader_src.length]; shaderSources[0] = toStringz(shader_src); glShaderSource(shader, 1, shaderSources.ptr, shaderSourceLengths.ptr); glCompileShader(shader); checkForShaderError(shader, GL_COMPILE_STATUS, false, "Error; Compile Failed for Shader: " ~ filename); return shader; } static void checkForShaderError(uint shader, uint flag, bool isProgram, string errorMessage) { int success = 0; char error[1024]; if(isProgram) { glGetProgramiv(shader, flag, &success); } else { glGetShaderiv(shader, flag, &success); } if(success == GL_FALSE) { if(isProgram) { glGetProgramInfoLog(shader, error.sizeof, &NULL, error.ptr); } else { glGetShaderInfoLog(shader, error.sizeof, &NULL, error.ptr); } stderr.writeln(errorMessage ~ ": " ~ error.idup ~ "'"); } } } class TerrainShader : Shader { uint tex1; uint tex2; uint tex3; uint tex4; this(string filename) { super(filename); tex1 = glGetUniformLocation(program, "tex1"); tex2 = glGetUniformLocation(program, "tex2"); tex3 = glGetUniformLocation(program, "tex3"); tex4 = glGetUniformLocation(program, "tex4"); writeln("texture uniforms grabbed"); } override void update(Transform transform, Camera camera, vec4 color) { super.update(transform, camera, color); glUniform1i(tex1, 0); glUniform1i(tex2, 1); glUniform1i(tex3, 2); glUniform1i(tex4, 3); } override void bindAttributes() { super.bindAttributes(); glBindAttribLocation(program, 3, "texValue"); } }
D
/Users/hashgard-01/rust/src/github.com/adao/target/release/build/unicase-b8e189b2106fe64a/build_script_build-b8e189b2106fe64a: /Users/hashgard-01/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.4.0/build.rs /Users/hashgard-01/rust/src/github.com/adao/target/release/build/unicase-b8e189b2106fe64a/build_script_build-b8e189b2106fe64a.d: /Users/hashgard-01/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.4.0/build.rs /Users/hashgard-01/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.4.0/build.rs:
D
/++ + Copyright: Copyright (c) 2018, Christian Koestlin + License: MIT + Authors: Christian Koestlin, Christian Köstlin +/ module ponies.dlang.travis; import dyaml : Loader, Node, dumper, NodeID; import ponies.dlang : DlangPony, travisYamlAvailable; import ponies : CheckStatus; import std.algorithm : map, canFind; import std.conv : to; import std.experimental.logger : info, warning; import std.stdio : File; import std.format : format; auto isScalar(T)(T node) { return node.nodeID == NodeID.scalar; } abstract class TravisDlangPony : DlangPony { private Node root; private bool upToDate = false; /++ + Do the change on the root node and return if something was changed. + Return: true if something was changed +/ protected abstract bool change(ref Node root); override CheckStatus check() { root = Loader.fromFile(travisYaml).load; upToDate = !change(root); return upToDate.to!CheckStatus; } override void run() { if (!upToDate) { "Writing new %s".format(travisYaml).warning; dumper.dump(File(travisYaml, "w").lockingTextWriter, root); } } override bool applicable() { return super.applicable && travisYamlAvailable; } } class LanguageTravisDlangPony : TravisDlangPony { override string name() { return "Setup travis to work with language d"; } override bool change(ref Node root) { const language = "language" in root; if (language) { if (language.isScalar) { if (language.as!string == "d") { return false; } } } root["language"] = "d"; return true; } } class CompilerTravisDlangPony : TravisDlangPony { override string name() { return "Setup dmd and ldc as compilers"; } override bool change(ref Node root) { auto dNode = "d" in root; if (dNode) { bool modified = false; if (dNode.isScalar) { root["d"] = Node([*dNode]); "Converting d node to array".warning; modified = true; } dNode = "d" in root; if (!dNode.sequence!string.canFind("dmd")) { dNode.add(Node("dmd")); root["d"] = *dNode; "Adding dmd".warning; modified = true; } if (!dNode.sequence!string.canFind("ldc")) { dNode.add(Node("ldc")); root["d"] = *dNode; "Adding ldc".warning; modified = true; } return modified; } else { root["d"] = Node([Node("dmd"), Node("ldc")]); "Adding new node with dmd and ldc".warning; return true; } } } class NoSudoTravisDlangPony : TravisDlangPony { override string name() { return "Setup travis to not run as sudo"; } override bool change(ref Node root) { const sudo = "sudo" in root; if (sudo) { if (sudo.as!string != "false") { root["sudo"] = false; return true; } return false; } else { root["sudo"] = false; return true; } } } class GhPagesTravisDlangPony : TravisDlangPony { override string name() { return "Setup travis to autodeploy ddox to ghpages"; } override bool change(ref Node root) { return addNeededPackages(root) || addDdoxBuildScript(root) || addDeployNode(root); } private bool addDeployNode(ref Node root) { const deploy = "deploy" in root; if (!deploy) { "Adding deploy node".warning; // dfmt off root["deploy"] = Node(["provider" : Node("pages"), "skip-cleanup" : Node(true), "local-dir" : Node("docs"), "github-token" : Node("$GH_REPO_TOKEN"), "verbose" : Node(true), "keep-history" : Node(true), "on" : Node(["branch" : "master"])]); // dfmt on return true; } return false; } private bool addDdoxBuildScript(ref Node root) { const buildDdox = "dub build --compiler=${DC} --build=ddox"; const script = "script" in root; if (!script) { "Adding ddox build script".warning; root["script"] = Node(buildDdox); return true; } if (script.isScalar) { if (script.as!string != buildDdox) { root["script"] = Node(script.as!string ~ " && " ~ buildDdox); } else { root["script"] = Node(buildDdox); } return true; } return false; } private bool addNeededPackages(ref Node root) { const addons = "addons" in root; if (!addons) { "Adding addons node".warning; root["addons"] = Node([ "apt": Node(["packages": Node(["libevent-dev"])]) ]); return true; } if (addons.isScalar) { "Changing addons node".warning; root["addons"] = Node([ "apt": Node(["packages": Node(["libevent-dev"])]) ]); return true; } const apt = "apt" in root["addons"]; if (!apt) { root["addons"]["apt"] = Node(["packages": Node(["libevent-dev"])]); return true; } if (apt.isScalar) { "Changing addons.apt node".warning; root["addons"]["apt"] = Node(["packages": Node(["libevent-dev"])]); return true; } auto packages = "packages" in root["addons"]["apt"]; if (!packages) { "Adding packages to addons.apt".warning; root["addons"]["apt"]["packages"] = Node(["libevent-dev"]); return true; } if (packages.isScalar) { "Changing addons.apt.packages".warning; root["addons"]["apt"]["packages"] = Node(["libevent-dev"]); return true; } if (!packages.sequence!string.canFind("libevent-dev")) { "Adding libevent-dev to addons.apt.packages".warning; packages.add("libevent-dev"); root["addons"]["apt"]["packages"] = *packages; return true; } return false; } } /+ class TravisPony : DlangPony { override string name() { return "Setup travis build in %s".format(travisYml); } override CheckStatus check() { return exists(travisYml).to!CheckStatus; } override void run() { "Creating %s file".format(travisYml).info; "userinteraction:Please get gh repo token from https://github.com/settings/tokens".warning; "userinteraction:Please enable travis build".warning; "userinteraction:Please enable coverage on codecov".warning; auto content = "language: d d: - dmd - ldc addons: apt: packages: - libevent-dev before_install: pip install --user codecov script: - dub test --compiler=${DC} --coverage - dub build --build=release - dub build --build=ddox after_success: codecov deploy: provider: pages skip-cleanup: true local-dir: \"docs\" github-token: \"$GH_REPO_TOKEN\" verbose: true keep-history: true on: branch: master env: global: secure: create this token with 'travis encrypt GH_REPO_TOKEN=key from https://github.com/settings/tokens' "; std.file.write(travisYml, content); } } +/
D
/Users/hazuki/Desktop/13/la/lifeistech/StopWatch/DerivedData/StopWatch/Build/Intermediates.noindex/StopWatch.build/Debug-iphonesimulator/StopWatch.build/Objects-normal/x86_64/ViewController.o : /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/SceneDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/AppDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/ViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.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/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.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/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/DerivedData/StopWatch/Build/Intermediates.noindex/StopWatch.build/Debug-iphonesimulator/StopWatch.build/Objects-normal/x86_64/ViewController~partial.swiftmodule : /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/SceneDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/AppDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/ViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.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/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.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/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/DerivedData/StopWatch/Build/Intermediates.noindex/StopWatch.build/Debug-iphonesimulator/StopWatch.build/Objects-normal/x86_64/ViewController~partial.swiftdoc : /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/SceneDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/AppDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/ViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.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/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.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/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/DerivedData/StopWatch/Build/Intermediates.noindex/StopWatch.build/Debug-iphonesimulator/StopWatch.build/Objects-normal/x86_64/ViewController~partial.swiftsourceinfo : /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/SceneDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/AppDelegate.swift /Users/hazuki/Desktop/13/la/lifeistech/StopWatch/StopWatch/ViewController.swift /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.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/iPhoneSimulator14.5.sdk/usr/lib/swift/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/ObjectiveC.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreImage.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Combine.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/QuartzCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Dispatch.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Metal.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Darwin.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Foundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreFoundation.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/CoreGraphics.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/UIKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/prebuilt-modules/14.5/SwiftOnoneSupport.swiftmodule/x86_64-apple-ios-simulator.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/dyld.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/mach-o/compact_unwind_encoding.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/OpenGLES.framework/Headers/OpenGLES.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CoreImage.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.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/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Metal.framework/Headers/Metal.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/usr/include/Darwin.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreGraphics.framework/Headers/CoreGraphics.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UserNotifications.framework/Headers/UserNotifications.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/CoreText.framework/Headers/CoreText.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
D
/* GDC -- D front-end for GCC Copyright (C) 2004 David Friedman This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* GNU/GCC unwind interface declarations for D. This must match unwind-generic.h */ module gcc.unwind_generic; private import gcc.builtins; private import core.stdc.stdlib; // for abort /* This is derived from the C++ ABI for IA-64. Where we diverge for cross-architecture compatibility are noted with "@@@". */ extern (C): /* Level 1: Base ABI */ /* @@@ The IA-64 ABI uses uint64 throughout. Most places this is inefficient for 32-bit and smaller machines. */ // %% These were typedefs, then made alias -- there are some // extra casts now alias __builtin_machine_uint _Unwind_Word; alias __builtin_machine_int _Unwind_Sword; alias __builtin_pointer_uint _Unwind_Internal_Ptr; version (IA64) { version (HPUX) { alias __builtin_machine_uint _Unwind_Ptr; } else { alias __builtin_pointer_uint _Unwind_Ptr; } } else { alias __builtin_pointer_uint _Unwind_Ptr; } /* @@@ The IA-64 ABI uses a 64-bit word to identify the producer and consumer of an exception. We'll go along with this for now even on 32-bit machines. We'll need to provide some other option for 16-bit machines and for machines with > 8 bits per byte. */ alias ulong _Unwind_Exception_Class; /* The unwind interface uses reason codes in several contexts to identify the reasons for failures or other actions. */ 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 } alias uint _Unwind_Reason_Code; /* The unwind interface uses a pointer to an exception header object as its representation of an exception being thrown. In general, the full representation of an exception object is language- and implementation-specific, but it will be prefixed by a header understood by the unwind interface. */ alias extern(C) void function(_Unwind_Reason_Code, _Unwind_Exception *) _Unwind_Exception_Cleanup_Fn; align struct _Unwind_Exception // D Note: this may not be "maxium alignment required by any type"? { _Unwind_Exception_Class exception_class; _Unwind_Exception_Cleanup_Fn exception_cleanup; _Unwind_Word private_1; _Unwind_Word private_2; /* @@@ The IA-64 ABI says that this structure must be double-word aligned. Taking that literally does not make much sense generically. Instead we provide the maximum alignment required by any type for the machine. */ } /* The ACTIONS argument to the personality routine is a bitwise OR of one or more of the following constants. */ alias int _Unwind_Action; enum { _UA_SEARCH_PHASE = 1, _UA_CLEANUP_PHASE = 2, _UA_HANDLER_FRAME = 4, _UA_FORCE_UNWIND = 8, _UA_END_OF_STACK = 16 } /* This is an opaque type used to refer to a system-specific data structure used by the system unwinder. This context is created and destroyed by the system, and passed to the personality routine during unwinding. */ struct _Unwind_Context; /* Raise an exception, passing along the given exception object. */ _Unwind_Reason_Code _Unwind_RaiseException (_Unwind_Exception *); /* Raise an exception for forced unwinding. */ alias extern(C) _Unwind_Reason_Code function (int, _Unwind_Action, _Unwind_Exception_Class, _Unwind_Exception *, _Unwind_Context *, void *) _Unwind_Stop_Fn; _Unwind_Reason_Code _Unwind_ForcedUnwind (_Unwind_Exception *, _Unwind_Stop_Fn, void *); /* Helper to invoke the exception_cleanup routine. */ void _Unwind_DeleteException (_Unwind_Exception *); /* Resume propagation of an existing exception. This is used after e.g. executing cleanup code, and not to implement rethrowing. */ void _Unwind_Resume (_Unwind_Exception *); /* @@@ Resume propagation of an FORCE_UNWIND exception, or to rethrow a normal exception that was handled. */ _Unwind_Reason_Code _Unwind_Resume_or_Rethrow (_Unwind_Exception *); /* @@@ Use unwind data to perform a stack backtrace. The trace callback is called for every stack frame in the call chain, but no cleanup actions are performed. */ alias extern(C) _Unwind_Reason_Code function (_Unwind_Context *, void *) _Unwind_Trace_Fn; _Unwind_Reason_Code _Unwind_Backtrace (_Unwind_Trace_Fn, void *); /* These functions are used for communicating information about the unwind context (i.e. the unwind descriptors and the user register state) between the unwind library and the personality routine and landing pad. Only selected registers maybe manipulated. */ _Unwind_Word _Unwind_GetGR (_Unwind_Context *, int); void _Unwind_SetGR (_Unwind_Context *, int, _Unwind_Word); _Unwind_Ptr _Unwind_GetIP (_Unwind_Context *); void _Unwind_SetIP (_Unwind_Context *, _Unwind_Ptr); /* @@@ Retrieve the CFA of the given context. */ _Unwind_Word _Unwind_GetCFA (_Unwind_Context *); void *_Unwind_GetLanguageSpecificData (_Unwind_Context *); _Unwind_Ptr _Unwind_GetRegionStart (_Unwind_Context *); /* The personality routine is the function in the C++ (or other language) runtime library which serves as an interface between the system unwind library and language-specific exception handling semantics. It is specific to the code fragment described by an unwind info block, and it is always referenced via the pointer in the unwind info block, and hence it has no ABI-specified name. Note that this implies that two different C++ implementations can use different names, and have different contents in the language specific data area. Moreover, that the language specific data area contains no version info because name of the function invoked provides more effective versioning by detecting at link time the lack of code to handle the different data format. */ alias extern(C) _Unwind_Reason_Code function (int, _Unwind_Action, _Unwind_Exception_Class, _Unwind_Exception *, _Unwind_Context *) _Unwind_Personality_Fn; /* @@@ The following alternate entry points are for setjmp/longjmp based unwinding. */ struct SjLj_Function_Context; extern void _Unwind_SjLj_Register (SjLj_Function_Context *); extern 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 *); /* @@@ The following provide access to the base addresses for text and data-relative addressing in the LDSA. In order to stay link compatible with the standard ABI for IA-64, we inline these. */ version (IA64) { _Unwind_Ptr _Unwind_GetDataRelBase (_Unwind_Context *_C) { /* The GP is stored in R1. */ return _Unwind_GetGR (_C, 1); } _Unwind_Ptr _Unwind_GetTextRelBase (_Unwind_Context *) { abort (); return 0; } /* @@@ Retrieve the Backing Store Pointer of the given context. */ _Unwind_Word _Unwind_GetBSP (_Unwind_Context *); } else { _Unwind_Ptr _Unwind_GetDataRelBase (_Unwind_Context *); _Unwind_Ptr _Unwind_GetTextRelBase (_Unwind_Context *); } /* @@@ Given an address, return the entry point of the function that contains it. */ extern void * _Unwind_FindEnclosingFunction (void *pc);
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/Async.build/Objects-normal/x86_64/QueueHandler.o : /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Async+NIO.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Variadic.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Deprecated.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Void.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/FutureType.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Collection+Future.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+DoCatch.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Global.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Transform.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Flatten.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Map.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Worker.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/QueueHandler.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/AsyncError.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/cpp_magic.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIODarwin/include/c_nio_darwin.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/c-atomics.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOLinux/include/c_nio_linux.h /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--6538424668019974428/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/Async.build/Objects-normal/x86_64/QueueHandler~partial.swiftmodule : /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Async+NIO.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Variadic.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Deprecated.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Void.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/FutureType.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Collection+Future.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+DoCatch.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Global.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Transform.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Flatten.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Map.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Worker.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/QueueHandler.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/AsyncError.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/cpp_magic.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIODarwin/include/c_nio_darwin.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/c-atomics.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOLinux/include/c_nio_linux.h /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--6538424668019974428/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes /Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/Async.build/Objects-normal/x86_64/QueueHandler~partial.swiftdoc : /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Async+NIO.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Variadic.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Deprecated.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Void.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/FutureType.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Collection+Future.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+DoCatch.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Global.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Transform.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Flatten.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Future+Map.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Worker.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/QueueHandler.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/AsyncError.swift /Users/petercernak/vapor/TILApp/.build/checkouts/core.git-5591983016255515332/Sources/Async/Exports.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.apinotesc /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIO.framework/Modules/NIO.swiftmodule/x86_64.swiftmodule /Users/petercernak/vapor/TILApp/Build/Products/Debug/NIOConcurrencyHelpers.framework/Modules/NIOConcurrencyHelpers.swiftmodule/x86_64.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_64/SwiftOnoneSupport.swiftmodule /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/cpp_magic.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIODarwin/include/c_nio_darwin.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOAtomics/include/c-atomics.h /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio.git--2128188973977302459/Sources/CNIOLinux/include/c_nio_linux.h /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOSHA1/module.modulemap /Users/petercernak/vapor/TILApp/.build/checkouts/swift-nio-zlib-support.git--6538424668019974428/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIODarwin/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOAtomics/module.modulemap /Users/petercernak/vapor/TILApp/TILApp.xcodeproj/GeneratedModuleMap/CNIOLinux/module.modulemap /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/objc/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/usr/include/Darwin.apinotes
D
/* * $Id: title.d,v 1.4 2005/09/11 00:47:40 kenta Exp $ * * Copyright 2005 Kenta Cho. Some rights reserved. */ module abagames.gr.title; private import std.math; private import bindbc.opengl; private import openglu; private import abagames.util.vector; private import abagames.util.sdl.displaylist; private import abagames.util.sdl.texture; private import abagames.util.sdl.pad; private import abagames.util.sdl.mouse; private import abagames.gr.screen; private import abagames.gr.prefmanager; private import abagames.gr.field; private import abagames.gr.letter; private import abagames.gr.gamemanager; private import abagames.gr.replay; private import abagames.gr.soundmanager; /** * Title screen. */ public class TitleManager { private: static const float SCROLL_SPEED_BASE = 0.025f; PrefManager prefManager; RecordablePad pad; RecordableMouse mouse; Field field; GameManager gameManager; DisplayList displayList; Texture logo; int cnt; ReplayData _replayData; int btnPressedCnt; int gameMode; public this(PrefManager prefManager, Pad pad, Mouse mouse, Field field, GameManager gameManager) { this.prefManager = prefManager; this.pad = cast(RecordablePad) pad; this.mouse = cast(RecordableMouse) mouse; this.field = field; this.gameManager = gameManager; init(); } private void init() { logo = new Texture("title.bmp"); displayList = new DisplayList(1); displayList.beginNewList(); glEnable(GL_TEXTURE_2D); logo.bind(); Screen.setColor(1, 1, 1); glBegin(GL_TRIANGLE_FAN); glTexCoord2f(0, 0); glVertex2f(0, -63); glTexCoord2f(1, 0); glVertex2f(255, -63); glTexCoord2f(1, 1); glVertex2f(255, 0); glTexCoord2f(0, 1); glVertex2f(0, 0); glEnd(); Screen.lineWidth(3); glDisable(GL_TEXTURE_2D); glBegin(GL_LINE_STRIP); glVertex2f(-80, -7); glVertex2f(-20, -7); glVertex2f(10, -70); glEnd(); glBegin(GL_LINE_STRIP); glVertex2f(45, -2); glVertex2f(-15, -2); glVertex2f(-45, 61); glEnd(); glBegin(GL_TRIANGLE_FAN); Screen.setColor(1, 1, 1); glVertex2f(-19, -6); Screen.setColor(0, 0, 0); glVertex2f(-79, -6); glVertex2f(11, -69); glEnd(); glBegin(GL_TRIANGLE_FAN); Screen.setColor(1, 1, 1); glVertex2f(-16, -3); Screen.setColor(0, 0, 0); glVertex2f(44, -3); glVertex2f(-46, 60); glEnd(); Screen.lineWidth(1); displayList.endNewList(); gameMode = prefManager.prefData.gameMode; } public void close() { displayList.close(); logo.close(); } public void start() { cnt = 0; field.start(); btnPressedCnt = 1; } public void move() { if (!_replayData) { field.move(); field.scroll(SCROLL_SPEED_BASE, true); } PadState input = pad.getState(false); MouseState mouseInput = mouse.getState(false); if (btnPressedCnt <= 0) { if (((input.button & PadState.Button.A) || (gameMode == InGameState.GameMode.MOUSE && (mouseInput.button & MouseState.Button.LEFT))) && gameMode >= 0) gameManager.startInGame(gameMode); int gmc = 0; if ((input.button & PadState.Button.B) || (input.dir & PadState.Dir.DOWN)) gmc = 1; else if (input.dir & PadState.Dir.UP) gmc = -1; if (gmc != 0) { gameMode += gmc; if (gameMode >= InGameState.GAME_MODE_NUM) gameMode = -1; else if (gameMode < -1) gameMode = InGameState.GAME_MODE_NUM - 1; if (gameMode == -1 && _replayData) { SoundManager.enableBgm(); SoundManager.enableSe(); SoundManager.playCurrentBgm(); } else { SoundManager.fadeBgm(); SoundManager.disableBgm(); SoundManager.disableSe(); } } } if ((input.button & (PadState.Button.A | PadState.Button.B)) || (input.dir & (PadState.Dir.UP | PadState.Dir.DOWN)) || (mouseInput.button & MouseState.Button.LEFT)) btnPressedCnt = 6; else btnPressedCnt--; cnt++; } public void draw() { if (gameMode < 0) { Letter.drawString("REPLAY", 3, 400, 5); return; } float ts = 1; if (cnt > 120) { ts -= (cnt - 120) * 0.015f; if (ts < 0.5f) ts = 0.5f; } glPushMatrix(); glTranslatef(80 * ts, 240, 0); glScalef(ts, ts, 0); displayList.call(); glPopMatrix(); if (cnt > 150) { Letter.drawString("HIGH", 3, 305, 4, Letter.Direction.TO_RIGHT, 1); Letter.drawNum(prefManager.prefData.highScore(gameMode), 80, 320, 4, 0, 9); } if (cnt > 200) { Letter.drawString("LAST", 3, 345, 4, Letter.Direction.TO_RIGHT, 1); int ls = 0; if (_replayData) ls = _replayData.score; Letter.drawNum(ls, 80, 360, 4, 0, 9); } Letter.drawString(InGameState.gameModeText[gameMode], 3, 400, 5); } public ReplayData replayData(ReplayData v) { return _replayData = v; } }
D
module during.tests.register; import during; import during.tests.base; import core.stdc.stdlib; import core.sys.linux.errno; import core.sys.linux.fcntl; import core.sys.linux.sys.eventfd; import core.sys.posix.sys.uio : iovec; import core.sys.posix.unistd; import std.algorithm : copy, equal, map; import std.range : iota; @("buffers") unittest { // prepare uring Uring io; auto res = io.setup(4); assert(res >= 0, "Error initializing IO"); void* ptr; // single array { ptr = malloc(4096); assert(ptr); scope (exit) free(ptr); ubyte[] buffer = (cast(ubyte*)ptr)[0..4096]; auto r = io.registerBuffers(buffer); assert(r == 0); r = io.unregisterBuffers(); assert(r == 0); } // multidimensional array { alias BA = ubyte[]; ubyte[][] mbuffer; ptr = malloc(4 * BA.sizeof); assert(ptr); scope (exit) { foreach (i; 0..4) { if (mbuffer[i] !is null) free(&mbuffer[i][0]); } free(&mbuffer[0]); } mbuffer = (cast(BA*)ptr)[0..4]; foreach (i; 0..4) { ptr = malloc(4096); assert(ptr); mbuffer[i] = (cast(ubyte*)ptr)[0..4096]; } auto r = io.registerBuffers(mbuffer); assert(r == 0); r = io.unregisterBuffers(); assert(r == 0); } } @("files") unittest { // prepare uring Uring io; auto res = io.setup(4); assert(res >= 0, "Error initializing IO"); // prepare some file auto fname = getTestFileName!"reg_files"; ubyte[256] buf; iota(0, 256).map!(a => cast(ubyte)a).copy(buf[]); auto file = openFile(fname, O_CREAT | O_WRONLY); auto wr = write(file, &buf[0], buf.length); assert(wr == buf.length); close(file); scope (exit) unlink(&fname[0]); // register file file = openFile(fname, O_RDONLY); int[] files = (cast(int*)&file)[0..1]; auto ret = io.registerFiles(files); assert(ret == 0); // read file iovec v; v.iov_base = cast(void*)&buf[0]; v.iov_len = buf.length; ret = io.putWith!((ref SubmissionEntry e, ref iovec v) { e.prepReadv(0, v, 0); // 0 points to the array of registered fds e.flags = SubmissionEntryFlags.FIXED_FILE; })(v) .submit(1); assert(ret == 1); assert(!io.empty); assert(io.front.res == buf.length); assert(buf[].equal(iota(0, 256))); io.popFront(); // close and update reg files (5.5) close(file); files[0] = -1; ret = io.registerFilesUpdate(0, files); if (ret == -EINVAL) { version (D_BetterC) { errmsg = "kernel may not support IORING_REGISTER_FILES_UPDATE"; return; } else throw new Exception("kernel may not support IORING_REGISTER_FILES_UPDATE"); } else assert(ret == 0); // unregister files ret = io.unregisterFiles(); assert(ret == 0); } @("eventfd") unittest { // prepare uring Uring io; auto res = io.setup(4); assert(res >= 0, "Error initializing IO"); // prepare event fd auto evt = eventfd(0, EFD_NONBLOCK); assert(evt != -1, "eventfd()"); // register it long ret = io.registerEventFD(evt); assert(ret == 0); // check that reading from eventfd would block now ulong evtData; ret = read(evt, &evtData, 8); assert(ret == -1); assert(errno == EAGAIN); // post some op to io_uring ret = io.putWith!((ref SubmissionEntry e) => e.prepNop()).submit(1); assert(ret == 1); // check that event has triggered ret = read(evt, &evtData, 8); assert(ret == 8); assert(!io.empty); // and unregister it ret = io.unregisterEventFD(); assert(ret == 0); }
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; void main() { auto N = readln.chomp.to!int; auto as = readln.split.to!(int[]); while (!as.empty && as[$-1] == 0) as = as[0..$-1]; if (as.empty) { writeln(0); return; } int c = 1, last = as[0]; foreach (a; as[1..$]) { if (a < last) { ++c; } last = a; } writeln(c); }
D
import hlt; import positionals : ALL_CARDINALS; import std.format; import std.conv : to; import std.random : choice, rndGen, unpredictableSeed; class MyBot : Bot { this() { super("MyDlangBot"); } override void precomputation(GameState game) { // This method will run before the game starts } override void turn(GameState game) { foreach (ship; game.me.ships.byValue()) { if (game.map.at(ship).halite < constants.MAX_HALITE / 10 || ship.is_full) { ship.move(ALL_CARDINALS[].choice()); } else { ship.stay_still(); } } if (game.turn <= 200 && game.me.halite >= constants.SHIP_COST && !game.map.at(game.me.shipyard).is_occupied) { game.me.shipyard.spawn(); } } } void main(string[] args) { auto seed = unpredictableSeed; if (args.length > 1) { seed = to!uint(args[1]); } rndGen().seed(seed); auto bot = new MyBot(); log(format!"Successfully created bot! My Player ID is %d. Bot rng seed is %d."(bot.state.me.id, seed)); bot.run(); }
D
import std.stdio; alias int number; alias string sequence ; alias char alphabet; int main() { number x=5; alphabet c='D'; sequence s= "Compilers"; mixin(`writefln("Compilers Project");`); mixin(`writefln("%s",s);`); mixin(`writefln("%d",x);`); mixin(`writefln("%c",c);`); return 0; }
D
import std.stdio; import std.process : execute; int main(string[] args) { writefln("Executing init test - multi"); auto script = args[0] ~ ".sh"; auto dubInit = execute(script); return dubInit.status; }
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 310.200012 40.5999985 4.69999981 120.900002 56 59 -33.2000008 151.100006 241 8.60000038 8.60000038 0.333333333 extrusives 306.399994 74.1999969 4.30000019 0 52 55 -31.8999996 151.300003 8785 5.9000001 5.9000001 1 extrusives, basalts 333.200012 64.6999969 6.5999999 0 52 55 -31.8999996 151.300003 8786 10.3000002 11.6999998 1 extrusives, basalts 219.300003 -4.19999981 9.39999962 22.3999996 56 65 -10 121 7800 4.9000001 9.60000038 0.111111111 extrusives, basalts, andesites -65.400002 61.2999992 1.39999998 297 50 70 -31.6000004 145.600006 9339 2.20000005 2.20000005 0.3 sediments, saprolite 264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.0952380952 extrusives, intrusives 346 61 9 41.2000008 35 100 -31.3999996 138.600006 1170 13 15 0.0923076923 sediments 333 45 9 16.5 35 100 -30.3999996 139.399994 1161 17 18 0.0923076923 sediments, tillite 317 57 5 200 35 100 -30.5 139.300003 1165 9 10 0.0923076923 sediments, redbeds 329 58 25 4.0999999 35 100 -30.2000008 139 1166 41.5999985 45.5999985 0.0923076923 sediments, sandstone, tillite 223 26 13 14.8000002 35 100 -30.2999992 139.5 1157 26 26 0.0923076923 extrusives 320 63 9 15.5 34 65 -38 145.5 1854 16 16 0.193548387 extrusives 317 63 14 16 23 56 -32.5 151 1840 20 20 0.151515152 extrusives, basalts 302.700012 66.8000031 6.80000019 35 34 65 -38 145.5 1819 10.8000002 12.1000004 0.193548387 extrusives 305 73 17 29 23 56 -42 147 1821 25 29 0.151515152 extrusives, basalts 305.600006 70.5 3.5999999 48.5 52 54 -32 151.399994 1892 5.30000019 5.30000019 1 extrusives 274 66 27.6000004 8.60000038 25 65 -41.2999992 145.899994 1873 39.7999992 46.9000015 0.15 intrusives, granite 321 64 6 27.5 25 65 -35.5999985 137.5 1874 10 11 0.15 sediments 269 40 0 0 50 300 -32.5999985 151.5 1868 0 0 0.024 extrusives, andesites 294 75 11 7 25 65 -41.0999985 146.100006 1871 16.2999992 18.8999996 0.15 sediments, sandstone 315 66 10.5 18 25 65 -41 145.5 1872 18.2000008 19.6000004 0.15 extrusives, sediments 298 58.7999992 2.4000001 0 35 65 -27 141.5 1972 3.79999995 3.79999995 0.2 sediments, weathered 297.200012 59.2000008 6 0 50 70 -30.5 151.5 1964 9.10000038 9.89999962 0.3 sediments, weathered 310.899994 68.5 0 0 40 60 -35 150 1927 5.19999981 5.19999981 0.3 extrusives, basalts 271 63 2.9000001 352 50 80 -34 151 1595 3.5 4.5 0.2 intrusives 318 37 6.80000019 41 56 59 -33.2000008 151.100006 1597 13.1999998 13.3999996 0.333333333 intrusives
D