code
stringlengths
3
10M
language
stringclasses
31 values
/////////////////////////////////////////////////////////////////////// // Info EXIT /////////////////////////////////////////////////////////////////////// instance DMH_1302_Malgar_EXIT (C_INFO) { npc = DMH_1302_Malgar; nr = 999; condition = DMH_1302_Malgar_EXIT_Condition; information = DMH_1302_Malgar_EXI...
D
/******************************************************************************* @file Random.d Copyright (c) 2004 Kris Bell This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for damages ...
D
import core.stdc.string; import erupted; import erupted.vulkan_lib_loader; import matrix4x4; import std.conv; import std.exception; import std.stdio; version(linux) { import X11.Xlib_xcb; public import xcb.xcb; import erupted.platform_extensions; mixin Platform_Extensions!USE_PLATFORM_XCB_KHR; } versio...
D
/Users/mayurishekhar/Diary/build/Pods.build/Debug-iphonesimulator/SideMenu.build/Objects-normal/x86_64/SideMenuPresentationController.o : /Users/mayurishekhar/Diary/Pods/SideMenu/Pod/Classes/Protected.swift /Users/mayurishekhar/Diary/Pods/SideMenu/Pod/Classes/Initializable.swift /Users/mayurishekhar/Diary/Pods/SideMenu...
D
/* Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license ( the "Software" ) to use, reproduce, display, distribute, execute, and transmit the Software,...
D
/Users/WenNiao/myproject/iosprojects/HackerNews/build/HackerNews.build/Debug-iphonesimulator/HackerNews.build/Objects-normal/x86_64/AppDelegate.o : /Users/WenNiao/myproject/iosprojects/HackerNews/HackerNews/ViewController.swift /Users/WenNiao/myproject/iosprojects/HackerNews/HackerNews/TableViewCell.swift /Users/WenNia...
D
instance TPL_8018_TEMPLER(Npc_Default) { name[0] = NAME_TPL; guild = GIL_TPL; id = 8018; voice = 8; flags = 0; npcType = NPCTYPE_AMBIENT; B_SetAttributesToChapter(self,4); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,itmw_zweihaender5); CreateInvItems(self,ItPo_Health_03,1); B_CreateAmbientInv(self); B_...
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
/** * A dummy-ish main() function, just used for testing. * * When running a program liked to the FewDee library, the unit tests within the * library are not executed (as of DMD 2.061). So, in order to test the library, * we compile all FewDee sources with this additional source file, so that we * get an executab...
D
module taxforms.framework.standardquestions; import scriptlike.std; import scriptlike.interact; private auto marriageFiling = ["Single", "Married Filing Separate", "Married Filing Jointly", "Head of House"]; enum MarriageFiling { unanswered, single, separate, jointly, headofhouse } private Marri...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; enum P = 10L^^9+7; long pow(long x, long n) { long y = 1; while (n) { if (n%2 == 1) y = (y * x) % P; x = x^^2 % P; n /= 2; } return y; } void main() { auto N = readln.cho...
D
instance DIA_DRAGON_BLACK_EXIT(C_Info) { npc = dragon_black; nr = 999; condition = dia_dragon_black_exit_condition; information = dia_dragon_black_exit_info; permanent = TRUE; description = Dialog_Ende; }; func int dia_dragon_black_exit_condition() { if(DragonTalk_Exit_Free == TRUE) { return TRUE; }; }; ...
D
# FIXED third_party/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.obj: C:/ti/TivaWare_C_Series-2.1.4.178/third_party/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.c third_party/FreeRTOS/Source/portable/CCS/ARM_CM4F/port.obj: C:/ti/TivaWare_C_Series-2.1.4.178/third_party/FreeRTOS/Source/include/FreeRTOS.h third_party/Fre...
D
/home/parsa/codes/RUST/parallel/target/debug/deps/cfg_if-ab1bd98be96b57b3.rmeta: /home/parsa/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs /home/parsa/codes/RUST/parallel/target/debug/deps/libcfg_if-ab1bd98be96b57b3.rlib: /home/parsa/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1...
D
/***************************************************************************** * * Higgs JavaScript Virtual Machine * * This file is part of the Higgs project. The project is distributed at: * https://github.com/maximecb/Higgs * * Copyright (c) 2012-2014, Maxime Chevalier-Boisvert. All rights re...
D
module android.java.android.widget.ZoomButtonsController_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.android.view.View_d_interface; import import1 = android.java.android.wid...
D
/** License: 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, execut...
D
module stdio.__stdio_read; import stdio; import posix.sys.uio; import sys.linux.syscalls; extern(C): nothrow: @nogc: size_t __stdio_read(FILE *f, ubyte *buf, size_t len) { iovec[2] iov = [ { iov_base: buf, iov_len: len - !!f.buf_size }, { iov_base: cast(void*)f.buf, iov_len: f.buf_size } ]; ssize_t cnt; cnt ...
D
template TFoo(T) { void bar() { func(); } } import a; void func() { } alias f = TFoo!(int); // error: func not defined in module a template TFoo(T) { void bar() { func(1); } } void func(double d) { } import a; void func(int i) { } alias f = TFoo!(int); f.bar(); // will call a.func(double)
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/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/FluentSQLite.build/Exports.swift.o : /Users/nice/HelloWord/.build/checkouts/fluent-sqlite.git-2294650027361755373/Sources/FluentSQLite/FluentSQLiteSchema.swift /Users/nice/HelloWord/.build/checkouts/fluent-sqlite.git-2294650027361755373/Sources/FluentSQLite/SQ...
D
module bigfloat; import core.bitop; import std.array; import std.exception; import std.stdio; import std.algorithm; import std.traits; import std.meta; import std.math; import std.bitmanip; import biguintcore; version(D_InlineAsm_X86) { import biguintx86; } else { import biguintnoasm; } private template Scal...
D
/* \file lockedexecutor * \brief Runs commands in a мютекс замок */ /* Originally written by Doug Lea and released into the public domain. This may be used for any purposes whatsoever without acknowledgment. Thanks for the assistance and support of Sun Microsystems Labs, and everyone contributing, testing, ...
D
/** * Copyright © DiamondMVC 2018 * License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module diamond.web.elements.image; import diamond.web.elements.element; /// Wrapper around a image. final class Image : Element { private: /// The source. string _sour...
D
func void B_CheckStolenEquipment() { var C_Item melee; var C_Item ranged; var C_Item armor; melee = Npc_GetEquippedMeleeWeapon(other); ranged = Npc_GetEquippedRangedWeapon(other); armor = Npc_GetEquippedArmor(other); if(Npc_OwnedByNpc(melee,self)) { PrintDebugNpc(PD_ZS_Check,"...SC trägt Nahkampf-Waffe des N...
D
module AODCore.matrix; import AODCore.vector; /** A simple 2x2 matrix capable of 2D translation, rotation and scaling */ struct Matrix { public: float a, b, c, d, tx, ty; float rot, prev_rot; Vector scale; /** Constructs a new matrix based off the parameters (if you do not know what params to su...
D
module demo.readBits; import tango.io.FileConduit; import tango.io.Stdout; import util.BitStream; int main(char[][] args){ ubyte[1] buffer; FileConduit file = new FileConduit(args[1]); while(true){ if(file.read(buffer) != 1){ break; } Stdout.formatln("{}", buffer[0]); } BitStream bs = new BitStre...
D
/** * Credentials Manager * * Copyright: * (C) 2011,2012 Jack Lloyd * (C) 2014-2015 Etienne Cimon * * License: * Botan is released under the Simplified BSD License (see LICENSE.md) */ module botan.tls.credentials_manager; import botan.constants; static if (BOTAN_HAS_TLS): import botan.cert.x509.x509cert; import botan...
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_8_BeT-76713756...
D
/home/feynman/rust/rustlings/exercises/clippy/target/debug/deps/clippy2-c540b8336497c22b.rmeta: clippy2.rs /home/feynman/rust/rustlings/exercises/clippy/target/debug/deps/clippy2-c540b8336497c22b.d: clippy2.rs clippy2.rs: # env-dep:CLIPPY_ARGS=-D__CLIPPY_HACKERY__warnings__CLIPPY_HACKERY__
D
/Users/Leex/TableView_Test2/Build/Intermediates.noindex/TableView_Test2.build/Debug-iphonesimulator/TableView_Test2.build/Objects-normal/x86_64/LoadingViewable.o : /Users/Leex/TableView_Test2/TableView_Test2/Common/LoadingViewable.swift /Users/Leex/TableView_Test2/TableView_Test2/AppDelegate.swift /Users/Leex/TableView...
D
module CPUblit.drawing.common; version(unittest) { import std.stdio; public import CPUblit.composing.common : fillWithSingleValue; void printMatrix(T)(T[] matrix, size_t width) { const size_t height = matrix.length / width; for (int y ; y < height ; y++) { for (int x ; x < width...
D
/** Generator for project files Copyright: © 2012-2013 Matthias Dondorff License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Matthias Dondorff */ module dub.generators.generator; import dub.compilers.compiler; import dub.generators.build; import dub.generators.v...
D
D [0, 54]["void", "main", "int", "i", "=", "a"] +-D.Module [0, 54]["void", "main", "int", "i", "=", "a"] +-D.DeclDefs [0, 54]["void", "main", "int", "i", "=", "a"] +-D.DeclDef [24, 54]["void", "main", "int", "i", "=", "a"] +-D.Declaration [24, 54]["void", "main", "int", "i", "=", "a"] ...
D
extern (C): enum FOO = 0; enum FOOBAR = 1; enum FOOBARBAZ = 2; enum FOOSTR = "foo"; enum FOOBARSTR = "foobar"; enum FOOBARBAZSTR = "foobarbaz";
D
// Hello World in D import std.stdio; void main() { writefln("Hello World!"); }
D
/root/Documents/Github/Rust/Mouse-and-Key/target/debug/deps/adler32-a46835df0b16be6f.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/adler32-1.0.3/src/lib.rs /root/Documents/Github/Rust/Mouse-and-Key/target/debug/deps/adler32-a46835df0b16be6f.d: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/adler3...
D
module UnrealScript.Engine.DrawCylinderComponent; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Core.UObject; import UnrealScript.Engine.PrimitiveComponent; import UnrealScript.Engine.Material; extern(C++) interface DrawCylinderComponent : PrimitiveComponent { public extern(D): pr...
D
512 sergei_eisenstein 1 edwin_s_porter 643 josef_von_sternberg 132 daniel_bressanutti 135 fritz_lang 782 georg_wilhelm_pabst 15 dw_griffith 274 dorothy_arzner 148 herbert_blache 260 john_s_robertson 796 dziga_verto 542 rupert_julian 800 luis_bunuel 673 ja_howe 166 robert_wiene 681 paul_leni 455 alfred_hitchcock 690 wal...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 256.399994 77.0999985 13 0 2 56 46 -112 3368 21.7000008 21.7000008 0.416666667 extrusives, intrusives 93.4000015 81.1999969 12.3000002 61 26 36 29.2999992 -103.300003 3078 7.0999999 12.1000004 0.942083333 extrusives, basalts, andesites 149 66 5 ...
D
/** * Copyright: Copyright (c) 2011 Jacob Carlborg. All rights reserved. * Authors: Jacob Carlborg * Version: Initial created: Apr 26, 2011 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module orbit.orb.commands.Build; import mambo.core._; import orbit.dsl.Specification; ...
D
# FIXED uartstdio.obj: C:/ti/TivaWare_C_Series-2.1.4.178/utils/uartstdio.c uartstdio.obj: C:/ti/ccs910/ccs/tools/compiler/ti-cgt-arm_18.12.2.LTS/include/stdbool.h uartstdio.obj: C:/ti/ccs910/ccs/tools/compiler/ti-cgt-arm_18.12.2.LTS/include/stdint.h uartstdio.obj: C:/ti/ccs910/ccs/tools/compiler/ti-cgt-arm_18.12....
D
/* * $Id: displaylist.d,v 1.1.1.1 2005/06/18 00:46:00 kenta Exp $ * * Copyright 2005 Kenta Cho. Some rights reserved. */ module abagames.util.sdl.displaylist; private import opengl; private import abagames.util.sdl.sdlexception; /** * Manage a display list. */ public class DisplayList { private: ...
D
module ppl.Operator; import ppl.internal; Operator parseOperator(Tokens t) { /// '>' is tokenised to separate tokens to ease parsing of nested parameterised templates. /// Account for this here: if(t.type==TT.RANGLE) { if(t.peek(1).type==TT.RANGLE) { if(t.peek(2).type==TT.RANGLE) { ...
D
instance DIA_Milten_DI_EXIT(C_Info) { npc = PC_Mage_DI; nr = 999; condition = DIA_Milten_DI_EXIT_Condition; information = DIA_Milten_DI_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Milten_DI_EXIT_Condition() { return TRUE; }; func void DIA_Milten_DI_EXIT_Info() { AI_StopProcessInf...
D
/* Copyright (c) 2019 Timur Gafarov Boost Software License - Version 1.0 - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execu...
D
module openzwave.options; import openzwave.types; version (OpenZWave): extern extern (C++, "OpenZWave") { extern(C++, class) struct Options { pragma(mangle, "_ZN9OpenZWave7Options6CreateERKSsS2_S2_") static Options* Create(ref const stdstring _configPath, ref const stdstring _userPath, ref const stdstring ...
D
instance DIA_MiltenNW_EXIT(C_Info) { npc = PC_Mage_NW; nr = 999; condition = DIA_MiltenNW_EXIT_Condition; information = DIA_MiltenNW_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_MiltenNW_EXIT_Condition() { if(Kapitel < 3) { return TRUE; }; }; func void DIA_MiltenNW_EXIT_Info() ...
D
import std.algorithm; import std.conv; import std.stdio; import std.string; {% if mod or yes_str or no_str %} {% endif %} {% if mod %} immutable long MOD = {{ mod }}; {% endif %} {% if yes_str %} immutable string YES = "{{ yes_str }}"; {% endif %} {% if no_str %} immutable string NO = "{{ no_str }}"; {% endif %} {% if...
D
/Users/tangzekun/jerry/photoTag/photoTag/DerivedData/photoTag/Build/Intermediates/photoTag.build/Debug-iphonesimulator/photoTag.build/Objects-normal/x86_64/imageCellModel.o : /Users/tangzekun/jerry/photoTag/photoTag/loadDataFromPlist.swift /Users/tangzekun/jerry/photoTag/photoTag/photoTag/imageCellModel.swift /Users/ta...
D
instance DIA_STRF_8125_Addon_Nuts_EXIT(C_Info) { npc = STRF_8125_Addon_Nuts; nr = 999; condition = DIA_STRF_8125_Addon_Nuts_EXIT_Condition; information = DIA_STRF_8125_Addon_Nuts_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_STRF_8125_Addon_Nuts_EXIT_Condition() { return TRUE; }; fu...
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_27_agm-1898343...
D
/* $OpenBSD: ssl3.h,v 1.57 2021/09/10 14:49:13 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library...
D
module tibia.winapi; public import std.c.windows.windows; pragma(lib,"kernel32.lib"); pragma(lib,"user32.lib"); //kernel32 alias CreateProcessW CreateProcess; alias Module32FirstW Module32First; alias Module32NextW Module32Next; alias Process32FirstW Process32First; alias Process32NextW Process32N...
D
/home/albertfega/Desktop/LaSalleChat/.build/x86_64-unknown-linux/debug/Routing.build/Utilities.swift.o : /home/albertfega/Desktop/LaSalleChat/.build/checkouts/routing.git-1485801344613057502/Sources/Routing/Method+Wildcard.swift /home/albertfega/Desktop/LaSalleChat/.build/checkouts/routing.git-1485801344613057502/Sourc...
D
module textrenderer.textrenderer; import std; import bindbc.freetype; import glamour.texture; import inmath.linalg; import loader = bindbc.loader.sharedlib; import textrenderer.atlas; import textrenderer.glyph; class TextRenderer { this() { scope(failure) loader.errors.each!(info => writeln(info.err...
D
module algebraic; import std.meta, std.traits; version (unittest) import std.format; /** Algebraic data type. Params: Args = the list of tags preceded by the (optional) argument types of the tags. Bugs: Self-referential types are not supported. Examples: In Haskell, Maybe is defined as data Maybe a = Nothing | Jus...
D
/* * Copyright 2020 Google LLC * Copyright 2022 Coverify Systems Technology * * 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 * * U...
D
/Users/ming/Desktop/PerfectTemplate/.build/x86_64-apple-macosx/debug/PerfectLib.build/SysProcess.swift.o : /Users/ming/Desktop/PerfectTemplate/.build/checkouts/PerfectLib/Sources/PerfectLib/JSONConvertible.swift /Users/ming/Desktop/PerfectTemplate/.build/checkouts/PerfectLib/Sources/PerfectLib/File.swift /Users/ming/De...
D
/Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Producer.o : /Users/bill/Documents/ios_projects/Swift/ReferenceApps/RxDataSource_CollectionViewTest/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/bill/Doc...
D
/home/cyobero/rust/examples/raw_sqlite/target/debug/deps/lazy_static-62b3850b2403b4b6.rmeta: /home/cyobero/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs /home/cyobero/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/inline_lazy.rs /home/cyobero/rust/examples/raw_sqli...
D
/Users/ThiagoBevi/Dev_iOS/ListaCompras/Build/Intermediates/ListaCompras.build/Debug-iphonesimulator/ListaCompras.build/Objects-normal/x86_64/NovaListaCompras.o : /Users/ThiagoBevi/Dev_iOS/ListaCompras/ListaCompras/AppDelegate.swift /Users/ThiagoBevi/Dev_iOS/ListaCompras/ListaCompras/ViewController.swift /Users/ThiagoBe...
D
/***********************************************************************\ * objbase.d * * * * Windows API header module * * ...
D
void main() { problem(); } void problem() { enum MAX = 10_000; enum MIN = 0; alias Desire = Tuple!(long, "x", long, "y", long, "s"); alias Ad = Tuple!(long, "sx", long, "sy", long, "ex", long, "ey"); long[] minimumDistances(Desire[] desires) { auto ret = new long[](desires.length); ret[] = long.ma...
D
/** cl_gl.d Converted from 'cl_gl.h'. Version: 1.0 See_Also: http://www.khronos.org/opencl/ Authors: Koji Kishita */ module c.cl.cl_gl; /********************************************************************************** * Copyright (c) 2008-2009 The Khronos Group Inc. * * Permission is hereby granted, free of ch...
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, an...
D
/* * Copyright (C) 2008 by Steven Schveighoffer * all rights reserved. * * Examples of how lists can be used. */ import dcollections.ArrayList; import dcollections.LinkList; import dcollections.Deque; import std.stdio; void print(Iterator!(int) s, string message) { write(message ~ " ["); foreach(i; s) ...
D
/** Events that are from the input manager to the game logic. */ module game_events.game_event; enum EventType: ubyte { thrust, torque, rotateGun, fire, } struct GameEvent { EventType type; union { ThrustEvent thrust ; TorqueEvent torque ; RotateGunEvent rotateGun ; FireEvent fireGun ; } } struct Thru...
D
/** * Windows API header module * * Translated from MinGW Windows headers * * Authors: Stewart Gordon * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(DRUNTIMESRC core/sys/windows/_powrprof.d) */ module core.sys.windows.powrprof; version (Windows): pragma(lib, "powrprof");...
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_3_banking-7581...
D
/** * A sorted array to quickly lookup pools. * * Copyright: Copyright Digital Mars 2001 -. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright, David Friedman, Sean Kelly, Martin Nowak */ module gc.pooltable; static import cstdlib=core.stdc.stdlib; struct PoolTable(...
D
// A function: int multiply1(int a, int b) { return a * b; } // Functions like "multiply1" can be evaluated at compile time if // they are called where a compile-time constant result is asked for: enum result = multiply1(2, 3); // Evaluated at compile time. int[multiply1(2, 4)] array; // Evaluated at compile ti...
D
/** * actor.d * tower * April 29, 2013 * Brandon Surmanski */ module entity.actor; import std.algorithm; import std.stdio; import std.math; import std.conv; import c.lua; import c.gl.glfw; import gl.glb.glb; import lua.lib.callback; import entity.entity; import entity.item; import entity.sprite; import math.ma...
D
// ********************* // Constants // Phoenix V0.67 // ********************* // ************************************************************* // PrintScreen Fonts // ************************************************************* const string FONT_Screen = "FONT_OLD_20_WHITE.TGA"; const string FONT_Scre...
D
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AnyObserver.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.sw...
D
/* Copyright (c) 2014 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, exe...
D
module UnrealScript.Engine.Interface_NavMeshPathObject; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Core.UInterface; extern(C++) interface Interface_NavMeshPathObject : UInterface { public extern(D): private static __gshared ScriptClass mStaticClass; @property final static Scrip...
D
/Users/work/Projects/Hello/.build/x86_64-apple-macosx10.10/debug/Validation.build/Validators/CharacterSetValidator.swift.o : /Users/work/Projects/Hello/.build/checkouts/validation.git--4403154650041669468/Sources/Validation/Validatable.swift /Users/work/Projects/Hello/.build/checkouts/validation.git--440315465004166946...
D
/Users/hyungsukkang/terra/terra-contracts/exchange/target/rls/debug/deps/byte_tools-2c2806cb94b7fb5e.rmeta: /Users/hyungsukkang/.cargo/registry/src/github.com-1ecc6299db9ec823/byte-tools-0.3.1/src/lib.rs /Users/hyungsukkang/terra/terra-contracts/exchange/target/rls/debug/deps/byte_tools-2c2806cb94b7fb5e.d: /Users/hyun...
D
module hunt.net.TcpConnection; import hunt.net.AbstractConnection; import hunt.net.Connection; import hunt.net.codec; import hunt.net.TcpSslOptions; import hunt.collection; import hunt.io.TcpStream; import hunt.Exceptions; import hunt.Functions; import hunt.logging; import hunt.util.Common; import hunt.util.DateTime;...
D
a country on the island of Cyprus an island in the eastern Mediterranean
D
/* Converted to D from ../include/capi/cef_trace_capi.h by htod */ module cef_trace_capi; // Copyright (c) 2014 Marshall A. Greenblatt. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // ...
D
module android.java.android.hardware.Camera_OnZoomChangeListener; public import android.java.android.hardware.Camera_OnZoomChangeListener_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!Camera_OnZoomChangeListener; import import1 = android.java.java.lang.Class;
D
/* -------------------- CZ CHANGELOG -------------------- */ /* v1.02: CZ_SkillCheckCondition - přidáno zobrazování skill checků */ instance DIA_Wasili_EXIT(C_Info) { npc = BAU_907_Wasili; nr = 999; condition = DIA_Wasili_EXIT_Condition; information = DIA_Wasili_EXIT_Info; permanent = TRUE; description = D...
D
#failif #... .* _*inlib1.* #...
D
/** TCP/UDP connection and server handling. Copyright: © 2012-2014 RejectedSoftware e.K. Authors: Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. */ module vibe.core.net; public import vibe.core.stream; import vibe.core.driver; import vibe.core.log; im...
D
// Written in the D programming language. /** Networking client functionality as provided by $(HTTP _curl.haxx.se/libcurl, libcurl). The libcurl library must be installed on the system in order to use this module. $(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE , $(TR $(TH Category) $(TH Functions) )...
D
/Users/davalcato/Desktop/iOS/World\ Tracker/Build/Intermediates/World\ Tracker.build/Debug-iphonesimulator/World\ Tracker.build/Objects-normal/x86_64/ViewController.o : /Users/davalcato/Desktop/iOS/World\ Tracker/World\ Tracker/AppDelegate.swift /Users/davalcato/Desktop/iOS/World\ Tracker/World\ Tracker/ViewController....
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math; void main() { auto it = readln.split.to!(int[]); auto A = it[0]; auto B = it[1]; auto C = it[2]; auto X = it[3]; auto Y = it[4]; int cost; if (A + B > C*2) { if (X > Y) { cost += 2 * Y * C;...
D
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/DatabaseKit.build/KeyedCache/DictionaryKeyedCache.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/database-kit/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/mhassanin/Developer/CupcakeVapor/Cu...
D
/Users/dali/Desktop/Rust_Project/target/debug/deps/rand_pcg-000405fe429ba2b8.rmeta: /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/lib.rs /Users/dali/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/pcg64.rs /Users/dali/.cargo/registry/src/mirrors.ustc...
D
module ppl.gen.GenerateLoop; import ppl.internal; final class GenerateLoop { GenerateModule gen; LLVMBuilder builder; this(GenerateModule gen) { this.gen = gen; this.builder = gen.builder; } void generate(Loop loop) { auto preBB = gen.createBlock(loop, "loop_init"); ...
D
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/JSON.build/Objects-normal/x86_64/JSON+Parse.o : /Users/Yowa/WorkSpace/Pokedex/Packages/JSON-1.0.0/Sources/JSON/JSON+Bytes.swift /Users/Yowa/WorkSpace/Pokedex/Packages/JSON-1.0.0/Sources/JSON/JSON+Equatable.swift /Users/Yowa/WorkSpace/Pokedex/Packages...
D
/Users/apple/Desktop/save/HW9.01/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionDelegate.o : /Users/apple/Desktop/save/HW9.01/Pods/Alamofire/Source/AFError.swift /Users/apple/Desktop/save/HW9.01/Pods/Alamofire/Source/Alamofire.swift /Users/apple/Desktop/save/HW9.01/Pods/Alamofire/So...
D
// Copyright Brian Schott 2015. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) module dfmt.formatter; import dparse.lexer; import dparse.parser; import dparse.rollback_allocator; import dfmt....
D
# FIXED BoardSupportPackage/src/UltraSonic.obj: C:/Users/Alex\ Perera/Desktop/Senior/GITHUB/BoardSupportPackage/src/UltraSonic.c BoardSupportPackage/src/UltraSonic.obj: C:/Users/Alex\ Perera/Desktop/Senior/GITHUB/BoardSupportPackage/inc/UltraSonic.h BoardSupportPackage/src/UltraSonic.obj: C:/ti/ccsv7/tools/compile...
D
module ogregl.sdl.support; import ogregl.config; static if(USE_SDL) { import std.string : indexOf; import std.conv : to; debug import std.stdio; import ogre.config; import ogre.compat; import ogre.exception; import ogre.general.common; import ogre.general.log; import ogre.rendersyst...
D
// Written in the D programming language. /** This module contains UI internationalization support implementation. UIString struct provides string container which can be either plain unicode string or id of string resource. Translation strings are being stored in translation files, consisting of simple key=value pai...
D
module org.serviio.config.entities; public import org.serviio.config.entities.ConfigEntry;
D
instance DIA_PAL_4_EXIT(C_Info) { nr = 999; condition = DIA_PAL_4_EXIT_Condition; information = DIA_PAL_4_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_PAL_4_EXIT_Condition() { return TRUE; }; func void DIA_PAL_4_EXIT_Info() { AI_StopProcessInfos(self); }; instance DIA_PAL_4_JOIN(...
D