code
stringlengths
3
10M
language
stringclasses
31 values
module orvid.testing; /++ + Assert than an expression evaluates to `true` at both compile-time and runtime. +/ @property void assertStaticAndRuntime(alias expr, string errorMessage = "")() { static if (errorMessage != "") { static assert(expr, errorMessage); assert(expr, errorMessage); } else { static ass...
D
module phobosPort; version(LDC) { import ldc.llvmasm; } void doSemihostingCommand(int command, void* message) nothrow { version(LDC) { __asm ( "mov r0, $0; mov r1, $1; bkpt #0xAB", "r,r,~{r0},~{r1}", command, message ); } else version(GNU) { asm { "...
D
a medicinal liquid preparation intended for use in an atomizer cloudiness of the urine an immense cloud of gas (mainly hydrogen) and dust in interstellar space (pathology) a faint cloudy spot on the cornea
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_18_agm-1646619...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; enum P = 10L^^9+7; void main() { auto S = readln.chomp.to!(char[]); auto DP = new long[][](S.length, 13); foreach (i, c; S) { foreach (n; 0..10) { if (c == '?' || n == c-'0') { ...
D
the state of being first in importance
D
/Users/hanykaram/Desktop/MVP/DerivedData/MVP/Build/Intermediates.noindex/SwiftMigration/MVP/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorAnimationCircleStrokeSpin.o : /Users/hanykaram/Desktop/MVP/Pods/NVActivityIndicatorView/Sources/Base/A...
D
module common.FreeList; import common; /** * Keep track of index usage. * Allows for fast reuse of slots. */ final class FreeList { private: uint[] list; uint next; uint _numUsed; public: uint numUsed() { return _numUsed; } uint numFree() { return list.length.as!uint - _numUsed; } this(uin...
D
import dlang.servermain : dlangServerMain; int main(string args[]) { // exe is in root/bin/new-dlang.org import std.path; immutable root = buildPath(args[0].dirName, ".."); version(documentation) { import dlang.docmain : dlangDocMain; return dlangDocMain(root, args); } else { ...
D
module procon26.field; import std.algorithm : canFind; import std.typecons : Rebindable; import std.array : array, appender; import std.format : formattedWrite; import std.stdio; debug import std.stdio; import procon26.problem; import procon26.stone; import procon26.util; import std.random; //b...
D
import gl3n.linalg; import app; class Transform { vec3 pos; vec3 scale; vec3 rot; this(vec3 pos, vec3 scale, vec3 rot) { this.pos = pos; this.scale = scale; this.rot = rot; } this() { pos = vec3(0,0,0); scale = vec3(1,1,1); rot = vec3(0,0,0); } mat4 getModel() { mat4 posMatrix = mat4.transl...
D
/* * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) */ module rdmd_test; /** RDMD Test-suite. Authors: Andrej Mitrovic Notes: Use the --compiler switch to specify a custom compiler ...
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 imp...
D
module dwt.internal.mozilla.nsIURL; import dwt.internal.mozilla.Common; import dwt.internal.mozilla.nsID; import dwt.internal.mozilla.nsIURI; import dwt.internal.mozilla.nsStringAPI; const char[] NS_IURL_IID_STR = "d6116970-8034-11d3-9399-00104ba0fd40"; const nsIID NS_IURL_IID= {0xd6116970, 0x8034, 0x11d3, [ 0...
D
a regulator for automatically regulating temperature by starting or stopping the supply of heat control the temperature with a thermostat
D
/Users/xhbapple/Desktop/EGEasyFramework_IOS/src/easydeveloper_swift/build/easydeveloper_swift.build/Debug-iphonesimulator/easydeveloper_swift.build/Objects-normal/x86_64/CoreController.o : /Users/xhbapple/Desktop/EGEasyFramework_IOS/src/easydeveloper_swift/easydeveloper/Base/BaseTableViewController.swift /Users/xhbappl...
D
// URL: https://atcoder.jp/contests/abc073/tasks/abc073_a 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...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo...
D
/******************************************************************************* * Copyright (c) 2000, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distributio...
D
/** * Lightweight wrappers for SIMD operations * * Copyright: * (C) 2009,2011 Jack Lloyd * (C) 2014-2015 Etienne Cimon * * License: * Botan is released under the Simplified BSD License (see LICENSE.md) */ module botan.simd.simd_32; import botan.utils.types; import botan.constants; static if (BOTAN_HAS_SIMD_SSE2) { ...
D
specify as a condition or requirement in a contract or agreement decide upon or fix definitely determine the essential quality of be specific about define clearly design or destine select something or someone for a specific purpose clearly and explicitly stated
D
/********************************************************** ** ** LOGRAMM ** Interpreter ** ** (c) 2009-2014, Dr.Kameleon ** ********************************************************** ** execSt.d **********************************************************/ module components.execSt; //========================...
D
/Users/setiyadi/Projects/Xcode/CodeTest-303Software/Build/Intermediates/CodeTest-303Software.build/Debug-iphonesimulator/CodeTest-303Software.build/Objects-normal/x86_64/DataModelView.o : /Users/setiyadi/Projects/Xcode/CodeTest-303Software/CodeTest-303Software/Person.swift /Users/setiyadi/Projects/Xcode/CodeTest-303Sof...
D
/** * Copyright: Copyright Jason White, 2016 * License: MIT * Authors: Jason White */ module button.edgedata; /** * The type of an edge. */ enum EdgeType { /** * An explicit edge is one that was specified in the build description. * * The explicit specification of an edge from a task to a ...
D
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/SQL.build/SQLTableConstraintAlgorithm.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/sql.git-2678105727451989607/Sources/SQL/SQLBind.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/sql.git-2678105727451989607/Sources/SQL/S...
D
import enfilade; import doc; import trans; import node; import cell_lib; import enfs; class EPL { static synchronized int interpCell(Enfs n, Enfilade e) { cell_lib.init_api(); XuDoc doc=n.get(e); if (doc.doc.doc in cell_lib.api) { return cell_lib.api[doc.doc.doc](n, e, doc.links, doc.cludes); } return -1; } s...
D
module d.semantic.identifier; import d.semantic.semantic; import d.ast.dmodule; import d.ast.identifier; import d.ir.dscope; import d.ir.expression; import d.ir.symbol; import d.ir.type; import d.context; import d.exception; import d.location; import std.algorithm; import std.array; alias Module = d.ir.symbol.Mod...
D
/Users/atyun-monitor/Desktop/Swift/Swift-ViewAnimationDemo/Build/Intermediates/Swift-ViewAnimationDemo.build/Debug-iphonesimulator/Swift-ViewAnimationDemo.build/Objects-normal/x86_64/ViewController.o : /Users/atyun-monitor/Desktop/Swift/Swift-ViewAnimationDemo/Swift-ViewAnimationDemo/KeyframeAnimationsControllerViewCon...
D
/** * Glue code for Objective-C interop. * * Copyright: Copyright (C) 2015-2021 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 https://www.digitalmars.com, Walter Bright) * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://git...
D
/** Module contains utilities common for all algorithms which operate with feature points. Copyright: Copyright Relja Ljubobratovic 2016. Authors: Relja Ljubobratovic License: $(LINK3 http://www.boost.org/LICENSE_1_0.txt, Boost Software License - Version 1.0). */ module dcv.features.utils; import std.experimental....
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 th...
D
module UnrealScript.UTGame.UTEmitter; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.WorldInfo; import UnrealScript.Engine.ParticleSystem; import UnrealScript.Engine.Emitter; import UnrealScript.UDKBase.UDKPawn; extern(C++) interface UTEmitter : Emitter { public extern(D): ...
D
/Users/huhuegg/Desktop/Source/VaporServer/XProject/.build/debug/Core.build/String+Polymorphic.swift.o : /Users/huhuegg/Desktop/Source/VaporServer/XProject/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/huhuegg/Desktop/Source/VaporServer/XProject/.build/checkouts/core.git-921080084484938...
D
/home/owen/PycharmProjects/cryptopals/set1/convert_hex_to_base64/target/debug/deps/hex-989b3557e0a78b31.rmeta: /home/owen/.cargo/registry/src/github.com-1ecc6299db9ec823/hex-0.3.2/src/lib.rs /home/owen/PycharmProjects/cryptopals/set1/convert_hex_to_base64/target/debug/deps/libhex-989b3557e0a78b31.rlib: /home/owen/.car...
D
/** Utilities for building user-controlled commands with the dcord bot interface */ module dcord.bot.command; import std.regex, std.array, std.algorithm, std.string; import dcord.types, dcord.gateway; /// Commands (currently not working) are members of Plugin class or classes which inh...
D
instance BDT_1082_Addon_Skinner(Npc_Default) { name[0] = "Ρκθννεπ"; guild = GIL_BDT; id = 1082; voice = 8; flags = 0; npcType = NPCTYPE_BL_MAIN; aivar[AIV_StoryBandit] = TRUE; B_SetAttributesToChapter(self,4); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_Addon_Betty); B_CreateAmbientInv(self); Crea...
D
/******************************************************************************* Helper to deal with version strings Copyright: Copyright (c) 2017 Sociomantic Labs GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. ***********************...
D
CHAIN IF WEIGHT #5 ~ CombatCounter(0) !See([ENEMY]) Range("O#Xan",30) !StateCheck("O#Xan",CD_STATE_NOTVALID) !StateCheck("Iylos",CD_STATE_NOTVALID) Global("G#XB.IylosXanToBBanter1","GLOBAL",0)~ THEN BLK#IYL IylosXanToBBanter1 ~So, doom-sayer, what does fate hold in store for us today?~ DO ~SetGlobal("G#XB.IylosXanToBBa...
D
// This file is part of Visual D // // Visual D integrates the D programming language into Visual Studio // Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved // // License for redistribution is given by the Artistic License 2.0 // see file LICENSE for further details module visuald.dllmain; import ...
D
/Users/olegp/Desktop/XCoordinatorPlayground/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ScheduledItemType.o : /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/olegp/Desktop/XCoordinatorPlayground/Pods/RxSwift/RxSwift/Obser...
D
/* * DSFML - The Simple and Fast Multimedia Library for D * * Copyright (c) 2013 - 2017 Jeremy DeHaan (dehaan.jeremiah@gmail.com) * * This software is provided 'as-is', without any express or implied warranty. * In no event will the authors be held liable for any damages arising from the * use of this sof...
D
/Users/ramzy/Desktop/swift/Netflix_Roulette_Repo_V1_Final/netflix-roulette/DerivedData/NetflixRoulette/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/AlamofireImage.build/Objects-normal/x86_64/ImageDownloader.o : /Users/ramzy/Desktop/swift/Netflix_Roulette_Repo_V1_Final/netflix-roulette/Pods/AlamofireImag...
D
{ depfiles_gcc = "build/.objs/viewer/linux/x86_64/release/src/Viewer_Interpreter/glfw_callback.c.o: src/Viewer_Interpreter/glfw_callback.c include/Viewer_Interpreter/glfw_callback.h include/Viewer_Interpreter/Viewer_OpenglAlg.h thirdpart/glad/include/glad/glad.h thirdpart/glad/include/KHR/khrplatform.h includ...
D
/Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target/debug/deps/stb_truetype-7aa9f0d2b80def1b.rmeta: /Users/victornascimento/.cargo/registry/src/github.com-1ecc6299db9ec823/stb_truetype-0.3.1/src/lib.rs /Users/victornascimento/Documents/Projects/Rust/pong_with_rust/pong_with_rust/target...
D
module nilcons.util.io; import nilcons.util.os : read, write; import std.range : empty; /// Input range that calls read each time input is needed. The input range stores /// (but does not own) a file descriptor, as well as a buffer into which the /// bytes are read. The buffer is reused across calls. struct Reader { ...
D
void main() { problem(); } void problem() { auto N = scan!int; auto M = scan!int; auto Q = scan!int; auto ABCD = Q.iota.map!(scan!int(4)); ulong solve() { ulong years; real money = 100; while(money < X) { years++; money = cast(ulong)(cast(real)money * 1.01); } return year...
D
module procon29.server.app; import std.stdio; import std.file; import std.json; import std.conv; import std.format; import std.algorithm.iteration; import std.range; import std.conv; import std.datetime.stopwatch: StopWatch; import std.getopt; import vibe.http.router; import vibe.http.websockets; import vibe.d; impor...
D
/* Header code adapted from SDL_timer.h */ module sdl.timer; public import core.stdc.stdint : uint32_t; extern (C) { /* SDL - Simple DirectMedia Layer Copyright (C) 1997-2012 Sam Lantinga This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General...
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/Objects-normal/x86_64/Legend.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Ch...
D
/home/syx/SYXrepo/vacation_homework/percolation/target/debug/deps/libinflate-e7d698a22dfeb137.rlib: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/inflate-0.4.4/src/lib.rs /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/inflate-0.4.4/src/checksum.rs /home/syx/.cargo/registry/src/m...
D
(of a body of water) free from disturbance by heavy waves not agitated
D
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Console.build/Objects-normal/x86_64/Runnable.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Console-1.0.0/Sources/Console/Bar/Bar.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Console-1.0.0/Sources/Console/Command/Argument.swift /Users/Yowa/WorkSpace/Poke...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void get(Args...)(ref Args args) { import std.traits, std.meta, std.typecons; static if (Args.length == 1) { alias Arg = Args[0]; static if (isArray!Arg) { ...
D
; Copyright (C) 2008 The Android Open Source Project ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law ...
D
private import Log; private import tango.io.File; //private import Text = tango.text.Util; private import tango.text.Text; //private import tango.text.Regex; private import portions_read; private import tango.stdc.string; private import tango.stdc.stringz; private import tango.stdc.stdio; import tango.io.Stdout; priva...
D
/* * * AUTO GENERATED! DO NOT EDIT! * */ module bindbc.bgfx.types; public import core.stdc.stdarg : va_list; extern(C) @nogc nothrow: enum uint BGFX_API_VERSION = 109; alias bgfx_view_id_t = ushort; /// Memory release callback. /// Color RGB/alpha/depth write. When it's not specified write will be disabled. ...
D
instance DIA_Dobar_EXIT(C_Info) { npc = VLK_4106_Dobar; nr = 999; condition = DIA_Dobar_EXIT_Condition; information = DIA_Dobar_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Dobar_EXIT_Condition() { return TRUE; }; func void DIA_Dobar_EXIT_Info() { AI_StopProcessInfos(self); }; i...
D
module cf.spew.implementation.windowing.utilities.misc; import stdx.allocator : IAllocator, makeArray, expandArray; struct HandleAppender(Handle) { IAllocator alloc; Handle[] array; size_t toUse; void add(Handle handle) { if (toUse == 0) { if (array.length == 0) { ...
D
/Users/Mandy_Cho/Documents/GetSwifty/Pachinko/DerivedData/Pachinko/Build/Intermediates/Pachinko.build/Debug-iphonesimulator/Pachinko.build/Objects-normal/x86_64/GameViewController.o : /Users/Mandy_Cho/Documents/GetSwifty/Pachinko/Pachinko/GameScene.swift /Users/Mandy_Cho/Documents/GetSwifty/Pachinko/Pachinko/GameViewCo...
D
a night flight from which the passengers emerge with eyes red from lack of sleep
D
/Users/Dai/Desktop/Studing/swift服务端/PerfectDemo4/.build/debug/PerfectLib.build/PerfectError.swift.o : /Users/Dai/Desktop/Studing/swift服务端/PerfectDemo4/.build/checkouts/PerfectLib.git-3712999737848873669/Sources/PerfectLib/Bytes.swift /Users/Dai/Desktop/Studing/swift服务端/PerfectDemo4/.build/checkouts/PerfectLib.git-37129...
D
/* * Copyright (c) 2012-2019 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ module antlr.v4.runtime.RuleContext; import antlr.v4.runtime.InterfaceRecognizer; import antlr.v4.runtime.InterfaceRul...
D
/******************************************************************************* copyright: Copyright (c) 2007-2008 Jascha Wetzel. All rights reserved. license: BSD style: $(LICENSE) version: Initial release: Jan 2008 authors: Jascha Wetzel This is a regular expression...
D
/Users/caijie/MLJRCode/Bowling/Example/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ParameterEncoding.o : /Users/caijie/MLJRCode/Bowling/Example/Pods/Alamofire/Source/MultipartFormData.swift /Users/caijie/MLJRCode/Bowling/Example/Pods/Alamofire/Source/Timeline.swift /Users/caijie/MLJRCod...
D
/Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/dispositivos-moviles/primer-parcial/act_TableView/Build/Intermediates/act_TableView.build/Debug-iphonesimulator/act_TableView.build/Objects-normal/x86_64/AppDelegate.o : /Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/dispositivos-moviles/primer-parcial/ac...
D
[cc]mc | .hd dint$m "get integer part of an longreal" 04/27/83 longreal function dint$m (x) longreal x .sp Library: vswtmath (Subsystem mathematical library) .fs The 'dint$m' function implements the Fortran 'dint' function. That is, it takes one double precision value and resets bits in the mantissa to remove any fract...
D
/Users/okasho/serverProject/tryswift/helloworld/swift/.build/debug/Jay.build/Error.swift.o : /Users/okasho/serverProject/tryswift/helloworld/swift/Packages/Jay-1.0.1/Sources/Jay/ArrayParser.swift /Users/okasho/serverProject/tryswift/helloworld/swift/Packages/Jay-1.0.1/Sources/Jay/BooleanParser.swift /Users/okasho/serve...
D
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/SQL.build/SQLCreateTableBuilder.swift.o : /Users/mu/Hello/.build/checkouts/sql/Sources/SQL/SQLBind.swift /Users/mu/Hello/.build/checkouts/sql/Sources/SQL/SQLJoinMethod.swift /Users/mu/Hello/.build/checkouts/sql/Sources/SQL/SQLTable.swift /Users/mu/Hello/.build/checkouts/...
D
/** HTTP (reverse) proxy implementation 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 vibe.http.proxy; import vibe.core.log; import vibe.http.client; import vibe.http.server; import vibe.inet.m...
D
module rx.scheduler; import rx.disposable; import rx.observer; import rx.observable; import core.time; import core.thread : Thread; import std.range : put; import std.parallelism : TaskPool, taskPool, task; interface Scheduler { void start(void delegate() op); } interface AsyncScheduler : Scheduler { Cancell...
D
// Written in D programming language /* 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, e...
D
import std.algorithm, std.range; auto foo(int[] a, immutable int b) @nogc //Fails { return a.map!(x => x + b); } auto bar(R)(R a, immutable int b) @nogc //OK { return a.map!(x => x + b); } auto baz(int[] a, immutable int b) @nogc //OK { return bar(a, b); }
D
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ScheduledItem.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/danielmorales/CSUMB/P...
D
module webtank.security.right.source_method; import webtank.security.right.iface.data_source: IRightDataSource; import webtank.security.right.access_exception: AccessSystemException; import std.typecons: tuple; auto getAccessRightList(IRightDataSource rightSource) { import std.exception: enforce; enforce!AccessSyst...
D
/Users/shimmennobuyoshi/Desktop/OnTheMap/Build/Intermediates/OnTheMap.build/Debug-iphonesimulator/OnTheMap.build/Objects-normal/x86_64/MapViewController.o : /Users/shimmennobuyoshi/Desktop/OnTheMap/OnTheMap/UdacityAnnotation.swift /Users/shimmennobuyoshi/Desktop/OnTheMap/OnTheMap/UIColorExtension.swift /Users/shimmenno...
D
/* New style BGZF writer. This file is part of Sambamba. Copyright (C) 2017 Pjotr Prins <pjotr.prins@thebird.nl> Sambamba 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 th...
D
/* * Copyright Andrej Mitrovic 2013. * Distributed under the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) */ module dtk.tests.image; version(unittest): version(DTK_UNITTEST): import dtk; import dtk.impo...
D
/Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/DerivedData/XYiOS/Build/Intermediates/XYiOS.build/Debug-iphonesimulator/XYiOS.build/Objects-normal/x86_64/vector-B16CEE5B7732E294.o : /Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/XYiOS/Sepia.swift /Users/tom.power/Developer/MusicTechPr...
D
module hierarchy.graphics.activity.GameActivity; import hierarchy; /** * The activity in which the player plays the game */ class GameActivity : Activity { HandComponent hand; ///The hand component used by the player on this activity CenterPile pile; ///The center-pile component for the game Notificati...
D
instance non_5044_wegelagerer(Npc_Default) { name[0] = "Rozbójnik"; npcType = Npctype_ROGUE; guild = GIL_None; level = 9; voice = 9; id = 5044; attribute[ATR_STRENGTH] = 65; attribute[ATR_DEXTERITY] = 55; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 205; attribute[AT...
D
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean Kelly 2005 ...
D
/Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/DerivedData/XYiOS/Build/Intermediates/XYiOS.build/Debug-iphonesimulator/XYiOS.build/Objects-normal/x86_64/Polygon.o : /Users/tom.power/Developer/MusicTechProjects/XYMusic/XYiOS/XYiOS/XYiOS/Sepia.swift /Users/tom.power/Developer/MusicTechProjects/XYMusic/X...
D
//////////////////////////////////////////////////////////////////////////////// // // Przyklad jak odczytac dane o ograniczeniu czasowym (okres testowy) // // Wersja : PELock v2.0 // Jezyk : D // Autor : Bartosz Wójcik (support@pelock.com) // Strona domowa : https://www.pelock.com // ///////...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (c) 1999-2017 by Digital Mars, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1...
D
/Users/seandorian/Code/PasswordStrength/Build/Intermediates/SwiftMigration/Password\ Strength/Intermediates.noindex/Password\ Strength.build/Debug-iphonesimulator/Password\ Strength.build/Objects-normal/x86_64/AppDelegate.o : /Users/seandorian/Code/PasswordStrength/Password\ Strength/AppDelegate.swift /Users/seandorian...
D
/home/calin/Playground/rust/slices/target/rls/debug/deps/slices-8706aa286ef8ccbf.rmeta: src/main.rs /home/calin/Playground/rust/slices/target/rls/debug/deps/slices-8706aa286ef8ccbf.d: src/main.rs src/main.rs:
D
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Alex Rønne Petersen * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean ...
D
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Cancelable.o : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/...
D
module android.java.android.webkit.TracingConfig; public import android.java.android.webkit.TracingConfig_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!TracingConfig; import import1 = android.java.java.lang.Class; import import0 = android.java.java.util.List;
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 distribut...
D
instance DIA_SENYAK_DEMON_EXIT(C_Info) { npc = senyak_demon; nr = 999; condition = dia_senyak_demon_exit_condition; information = dia_senyak_demon_exit_info; permanent = TRUE; description = Dialog_Ende; }; func int dia_senyak_demon_exit_condition() { if(SHEMRON_TALK == TRUE) { return TRUE; }; }; func voi...
D
a woman hunter
D
// Copyright Ferdinand Majerech 2012. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) /// Classes related to campaigns. module ice.campaign; import std.algorithm; import std.array; impor...
D
/Users/wq/rust/myrust/struct_proj/target/debug/deps/struct_proj-4862a3d05247b58b: src/main.rs /Users/wq/rust/myrust/struct_proj/target/debug/deps/struct_proj-4862a3d05247b58b.d: src/main.rs src/main.rs:
D
/home/cyobero/rust/examples/request-guards/target/debug/build/bitflags-6734b61e6f664c2d/build_script_build-6734b61e6f664c2d: /home/cyobero/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs /home/cyobero/rust/examples/request-guards/target/debug/build/bitflags-6734b61e6f664c2d/build_script_build-6...
D
module gfx.backend.gl3.pso; import gfx.core : maxVertexAttribs, maxColorTargets, AttribMask, ColorTargetMask; import gfx.core.rc : Rc, rcCode; import gfx.core.typecons : Option; import gfx.core.state : Stencil, Depth, Color, Blend; import gfx.core.pso : PipelineStateRes, PipelineDescriptor, VertexAttribDesc; import gf...
D
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/TemplateKit.build/AST/TemplateConditional.swift.o : /Users/mu/Hello/.build/checkouts/template-kit/Sources/TemplateKit/Data/TemplateData.swift /Users/mu/Hello/.build/checkouts/template-kit/Sources/TemplateKit/AST/TemplateEmbed.swift /Users/mu/Hello/.build/checkouts/templa...
D
import std.algorithm: sort, equal; import std.string: format, split; import std.range: iota; import std.conv: to; import std.stdio: writeln; struct Person { string name; int age; auto toString() const { return format("%10s-%s", name, age); } } auto vold() { struct St { int name; int age; } St st; return ...
D
/Users/davelevy/Desktop/80pts/80pts/Build/Intermediates/80pts.build/Debug-iphonesimulator/80pts.build/Objects-normal/x86_64/AppDelegate.o : /Users/davelevy/Desktop/80pts/80pts/80pts/Wage.swift /Users/davelevy/Desktop/80pts/80pts/80pts/People.swift /Users/davelevy/Desktop/80pts/80pts/80pts/Determine.swift /Users/davelev...
D
/** * TypeInfo support code. * * Copyright: Copyright Digital Mars 2004 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Walter Bright */ /* Copyright Digital Mars 2004 - 2009. * Distributed under the Boost Software License, Version 1.0. * (See...
D