code
stringlengths
3
10M
language
stringclasses
31 values
//Written in the D programming language module backtrace.backtrace; version(Windows) { pragma(msg, "backtrace only works in Linux, FreeBSD, OS X, Solaris environment"); } else { // allow only Linux, FreeBSD, OS X, Solaris platform } version(Windows) {} else : import std.stdio; version(linux) { import core.sys...
D
escape, either physically or mentally be incomprehensible to avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues
D
// PERMUTE_ARGS: extern(C) int printf(const char*, ...); /***********************************/ enum : float { E1a, E1b, E1c } void test1() { assert(E1a == 0.0f); assert(E1b == 1.0f); assert(E1c == 2.0f); } /***********************************/ enum : string { E2a = "foo", E2b = "ba...
D
// Written in the D programming language. /** This is a submodule of $(LINK2 std_algorithm.html, std.algorithm). It contains generic _iteration algorithms. $(BOOKTABLE Cheat Sheet, $(TR $(TH Function Name) $(TH Description)) $(T2 cache, Eagerly evaluates and caches another range's $(D front).) $(T2 cacheBidi...
D
/** Copyright: Copyright (c) 2020, Joakim Brännström. All rights reserved. License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) Author: Joakim Brännström (joakim.brannstrom@gmx.com) */ module my.fsm; import std.format : format; version (unittest) { import unit_threaded.assertions; }...
D
module dmagick.c.magickModule; import core.stdc.stdio; import core.stdc.time; import dmagick.c.exception; import dmagick.c.image; import dmagick.c.magickType; import dmagick.c.magickVersion; extern(C) { enum MagickModuleType { MagickImageCoderModule, MagickImageFilterModule } /* struct ModuleInfo { cha...
D
/* * Copyright (C) 2019, HuntLabs * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
D
/* TEST_OUTPUT: --- fail_compilation/diag10862.d(28): Error: assignment cannot be used as a condition, perhaps `==` was meant? fail_compilation/diag10862.d(29): Error: assignment cannot be used as a condition, perhaps `==` was meant? fail_compilation/diag10862.d(30): Error: assignment cannot be used as a condition, per...
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_12_BeT-2211135...
D
/++ Settings parser and structures Copyright: © 2017 Szabo Bogdan License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Szabo Bogdan +/ module trial.settings; import std.conv; /// A structure representing the `trial.json` file struct Settings { /* bool c...
D
import tango.io.Stdout; import tango.time.Clock; int identity (int x) { return x; } int sum (int num) { for (int i = 0; i < 1000000; i++) num += i; return num; } double timeIt(int function(int) func, int arg) { long before = Clock.now.ticks; func(arg); return (Clock.now.ticks - before) ...
D
/** Low level mongodb protocol. Copyright: © 2012-2014 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.db.mongo.connection; public import vibe.data.bson; import vibe.core.log; import vibe.core.net; import vi...
D
import std.stdio, std.regex, std.string, std.conv, std.range, std.algorithm; int[] rangeExpand(in string txt) /*pure nothrow*/ { return txt.split(",").map!((r) { const m = r.match(r"^(-?\d+)(-?(-?\d+))?$").captures.array; return m[2].empty ? [m[1].to!int] : iota(m...
D
/Users/patbutler/Developer/Server/Kitura/EmojiJournalServer/.build/x86_64-apple-macosx/debug/KituraNet.build/HTTP/KeepAliveState.swift.o : /Users/patbutler/Developer/Server/Kitura/EmojiJournalServer/.build/checkouts/Kitura-net.git-4378304010554470451/Sources/KituraNet/FastCGI/FastCGI.swift /Users/patbutler/Developer/Se...
D
// Written in the D programming language. /** Standard I/O functions that extend $(B std.c.stdio). $(B std.c.stdio) is $(D_PARAM public)ally imported when importing $(B std.stdio). Source: $(PHOBOSSRC std/_stdio.d) Macros: WIKI=Phobos/StdStdio Copyright: Copyright Digital Mars 2007-. License: $(WEB boost.org/LICE...
D
/Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-template/target/release/deps/integer_sqrt-a0a7ecc374b5b515.rmeta: /Users/pacmac/.cargo/registry/src/github.com-1ecc6299db9ec823/integer-sqrt-0.1.5/src/lib.rs /Users/pacmac/Documents/GitHub/Blockchain/substarte_blockchain/substrate-node-templ...
D
/** * D header file for Linux. * * Copyright: Copyright Alex Rønne Petersen 2012. * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors: Alex Rønne Petersen */ module core.sys.linux.sys.signalfd; import core.sys.posix.signal; version (linux): extern (C): @system: nothrow: @n...
D
/** Markdown parser implementation Copyright: © 2012-2014 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.textfilter.markdown; import vibe.core.log; import vibe.textfilter.html; import vibe.utils.string; imp...
D
/* Converted to D from output/des.h by htod */ module nettle.des; struct _N1 { } extern (C): alias _N1 __mpz_struct; alias __mpz_struct [1]mpz_t; alias ubyte uint8_t; alias uint uint32_t; alias ulong uint64_t; alias void function(void *ctx, uint length, uint8_t *dst)nettle_random_func; alias void function(void *ctx, in...
D
/** This module defines several templates for testing whether a given object is a _range, and what kind of _range it is: $(BOOKTABLE , $(TR $(TD $(D $(LREF isInputRange))) $(TD Tests if something is an $(I input _range), defined to be something from which one can sequentially read data using the ...
D
/Users/macosx/Desktop/TestNetWorkLayer/build/Pods.build/Debug-iphonesimulator/Nimble.build/Objects-normal/x86_64/Expression.o : /Users/macosx/Desktop/TestNetWorkLayer/Pods/Nimble/Sources/Nimble/DSL.swift /Users/macosx/Desktop/TestNetWorkLayer/Pods/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift /Users/macosx/Desktop/T...
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 250.354364 74.7519756 1.89999998 483 56 67 44 -73 1551 2.32526819 4.1754768 0.982111926 sediments, limestones 218.073166 68.0168889 6.5999999 24 63 64 51.9000015 -112.900002 1729 9.43074072 21.2827144 0.804286288 sediments 208.373883 70.2273557 ...
D
/** Module providing facilities related to the fasta format. */ module comet.bio.fasta; import comet.traits; import std.exception: enforce; import std.stdio: File; import std.conv: to; /** Structure extracted from a fasta file: a sequence. A sequence is just a sequence id associated with a sequence of molecule...
D
/Users/gem/Desktop/MovieMoya/the-movie-db/DerivedData/TheNewMovie/Build/Intermediates.noindex/IBDesignables/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageFormat.o : /Users/gem/Desktop/MovieMoya/the-movie-db/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/gem/...
D
instance Mod_1167_STT_Schatten_MT (Npc_Default) { //-------- primary data -------- name = NAME_Schatten; npctype = NPCTYPE_mt_schatten; guild = GIL_out; level = 5; voice = 0; id = 1167; //-------- abilities -------- B_SetAttributesToChapter (self, 3); //-------- visuals -------- // ...
D
module frpd.cell.cf; import std.algorithm; import frpd.cell.cell; import frpd.cell._add_listener : addListener,removeListener; import std.typecons:tuple,Tuple; import std.traits : Parameters, ReturnType; import std.meta : staticMap; /** Create a "cell function" from a normal function. A cell function is a function t...
D
/***********************************************************************\ * wtypes.d * * * * Windows API header module * * ...
D
/orange_pro/swift_dev/Fanplan/.build/debug/PerfectLib.build/WebSocketHandler.swift.o : /orange_pro/swift_dev/Fanplan/Packages/PerfectLib-0.32.0/Sources/PerfectLib/Utilities.swift /orange_pro/swift_dev/Fanplan/Packages/PerfectLib-0.32.0/Sources/PerfectLib/FastCGIServer.swift /orange_pro/swift_dev/Fanplan/Packages/Perfec...
D
//T compiles:yes //T lexer:yes //T parser:yes //T semantic:yes //T retval:42 //T has-passed:no struct S { enum O { B = 21 } } int main() { S s; return s.O.B + S.O.B; }
D
import core.sys.windows.windows; import std.stdio; pragma( lib, "user32.lib" ); struct Rect { RECT native; alias native this; } void main() { Rect rect; POINT p; PtInRect( &rect.native, p ); uint i = 1; ulong l = cast( ulong ) i ; writeln( "i: ", i ); writeln( "l: ", l ); ...
D
module aura.model.face; import aura.list; import aura.selection; import aura.model.mbody; import aura.model.vertex; import aura.model.edge; import aura.model.subtri; import aura.model.vector; import opengl.gl; import std.stdio; class FaceList { mixin MixList!(Face); } class Face { VertexList verts; EdgeList edge...
D
module dwt.internal.mozilla.nsISecureBrowserUI; import dwt.internal.mozilla.Common; import dwt.internal.mozilla.nsID; import dwt.internal.mozilla.nsISupports; import dwt.internal.mozilla.nsIDOMWindow; import dwt.internal.mozilla.nsStringAPI; const char[] NS_ISECUREBROWSERUI_IID_STR = "081e31e0-a144-11d3-8c7...
D
void main() { auto ip = readAs!(ulong[]), a = ip[0], b = ip[1], x = ip[2]; ulong tmp; ulong f(ulong a) { return a == -1 ? 0 : a/x + 1; } (f(b) - f(a-1)).writeln; } // =================================== import std.stdio; import std.string; import std.conv; import std.algorithm; import std.range; import std.tra...
D
import std.stdio; import std.string; import std.file; import std.algorithm; import std.array; import std.conv; struct passport { string byr = null; string iyr = null; string eyr = null; string hgt = null; string hcl = null; string ecl = null; string pid = null; string cid = null; } voi...
D
module thBase.logging; import thBase.plugin; import thBase.format; import thBase.enumbitfield; import thBase.container.vector; import core.sync.mutex; import thBase.allocator; import thBase.casts; import thBase.stream; import core.vararg; version(Plugin) {} else { import thBase.debugconnection; } ...
D
module d2d.configuration; public { import d2d.configuration.configuration; } static this() { // TODO: replace with logging import std.stdio; import jsonx; writeln(jsonEncode(Config)); }
D
module org.serviio.upnp.service.contentdirectory.command.video.ListVideosForActorCommand; import java.util.List; import org.serviio.library.entities.AccessGroup; import org.serviio.library.entities.Person : RoleType; import org.serviio.library.entities.Video; import org.serviio.library.local.service.VideoService; impo...
D
module gui.picker.picker; import std.algorithm; import std.file; // FileException import std.conv; import file.log; import gui; import gui.picker; struct PickerConfig(T) if (is (T : FileTiler) ) { Geom all; Geom bread; Geom files; // Tiler including scrollbar Ls ls; } class Picker : Element { pr...
D
module orelang.operator.DebugOperators; import orelang.operator.DynamicOperator, orelang.expression.SymbolValue, orelang.operator.IOperator, orelang.Closure, orelang.Engine, orelang.Value; import std.stdio; class DumpVaribalesOperator : IOperator { public Value call(Engine engine, ...
D
import io.Stdout, io.Path, io.FileSystem, io.FilePath, io.FileScan; // pragma(lib, "dinrus.lib"); проц foo (ФПуть путь) { Стдвыв("все: ") (путь).нс; Стдвыв("путь: ") (путь.путь).нс; Стдвыв("файл: ") (путь.файл).нс; Стдвыв("папка: ") (путь.папка).нс; ...
D
/Users/Amna/Desktop/hwrust copy/code/target/debug/build/num-traits-675d62b3bd5b5a24/build_script_build-675d62b3bd5b5a24: /Users/Amna/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.14/build.rs /Users/Amna/Desktop/hwrust copy/code/target/debug/build/num-traits-675d62b3bd5b5a24/build_script_build-675d62b3...
D
module collie.socket.eventloopgroup; import core.thread; import std.parallelism; import collie.socket.eventloop; import collie.socket.common; import collie.utils.functional; final class EventLoopGroup { this(uint size = (totalCPUs - 1), int waitTime = 2000) { assert(size > 0, "size must be lt 1"); ...
D
/home/carl/embedded system/e7020e_2019/target/rls/debug/examples/crash-b005f55639fbae8f.rmeta: examples/crash.rs /home/carl/embedded system/e7020e_2019/target/rls/debug/examples/crash-b005f55639fbae8f.d: examples/crash.rs examples/crash.rs:
D
/** dux - ux implementation for D * * Authors: Tomona Nanase * License: The MIT License (MIT) * Copyright: Copyright (c) 2014 Tomona Nanase */ module dux.Component.Noise; import std.algorithm; import std.conv; import dux.Component.Enums; import dux.Component.Waveform; import dux.Component.StepWaveform; import ...
D
/Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/.build/x86_64-apple-macosx10.10/debug/JDCloudSDKDatastar.build/API/GetPackageIdRequest.swift.o : /Users/lishijun1/Documents/swiftworkspace/JDCloudSDKSwift/jdcloud-sdk-swift-github/JDCloudSDKSwift/Sources/JDCloudSDKDatasta...
D
/** ORIGINAL SOURCE: https://github.com/Circular-Studios/Dash/blob/master/source/dash/utility/time.d */ module engine.core.engine.time; import std.datetime; float toSeconds( Duration dur ) { return cast( float )dur.total!"hnsecs" / cast( float )1.convert!( "seconds", "hnsecs" ); }...
D
/******************************************************************************* Run-time test if truncating the head of a file is supported. copyright: Copyright (c) 2016-2017 dunnhumby Germany GmbH. All rights reserved License: Boost Software License Version 1.0. See LICENSE.txt for det...
D
/Users/hdcui/NIZKs-for-AsiaCCS19-and-HSM-CL/bld_sig/target/release/deps/curv-1870392a7b3e916e.rmeta: /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/74b34dc/src/lib.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/74b34dc/src/elliptic/mod.rs /Users/hdcui/.cargo/git/checkouts/curv-a122740a63e0e0af/74b3...
D
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Settings.build/Source.swift.o : /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Vapor-1.5.8/Sources/Settings/Config+Arguments.swift /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Vapor-1.5.8/Sources/Settings/Config+D...
D
module sitrep.receive.sinks.ømq; import sitrep.receive.sinks.common : Sink, SinkFactory; import ømq = sitrep.util.ømq; final class ØmqConnectedPushSink : Sink { private: ømq.Socket socket; public: @safe this(ref shared(ømq.Context) context, scope const(char)[] endpoint) scope { this.sock...
D
import scone; import std.stdio : writeln; void main() { window.title = "Example 2"; bool run = true; while(run) { foreach(input; window.getInputs()) { //NOTE: Without a ^C handler you cannot quit the program (unless you taskmanager or SIGKILL it) //^C (Ctrl + ...
D
/* DIrrlicht - D Bindings for Irrlicht Engine Copyright (C) 2014- Danyal Zia (catofdanyal@yahoo.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 software. Permission is gra...
D
a caustic substance produced by heating limestone a white crystalline oxide used in the production of calcium hydroxide a sticky adhesive that is smeared on small branches to capture small birds any of various related trees bearing limes any of various deciduous trees of the genus Tilia with heart-shaped leaves and dro...
D
static if (condition) int declaration; else { }
D
//poprawione i sprawdzone - Nocturn // ************************************************************ // EXIT // ************************************************************ // AI_TurnToNpc (self, dusty); // AI_TurnToNpc (dusty,other); INSTANCE Info_Thorus_EXIT(C_INFO) { npc = GRD_200_THORUS; nr = 9...
D
uint fib(in uint n) pure nothrow { immutable self = &__traits(parent, {}); return (n < 2) ? n : self(n - 1) + self(n - 2); } void main() { import std.stdio; writeln(fib(39)); }
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void main() { auto xy = readln.chomp.split('/').to!(long[]); auto X = xy[0]; auto Y = xy[1]; auto d = gcd(X, Y); X /= d; Y /= d; long[] ns, ms; foreach (n; (2...
D
/substrate-node-template/target/release/build/snow-bff2aa4295a389ce/build_script_build-bff2aa4295a389ce: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/snow-0.7.1/build.rs /substrate-node-template/target/release/build/snow-bff2aa4295a389ce/build_script_build-bff2aa4295a389ce.d: /root/.cargo/registry/src/github....
D
/Users/bindo123/code/rust/web/gotham/target/debug/deps/hello_world_until-a3c90527323c5b1d: hello_world_until/src/main.rs /Users/bindo123/code/rust/web/gotham/target/debug/deps/hello_world_until-a3c90527323c5b1d.d: hello_world_until/src/main.rs hello_world_until/src/main.rs:
D
prototype Mst_Default_OrcElite(C_Npc) { name[0] = "Ёлитный орк"; guild = GIL_ORC; aivar[AIV_MM_REAL_ID] = ID_ORCELITE; voice = 18; level = 45; attribute[ATR_STRENGTH] = 125; attribute[ATR_DEXTERITY] = 225; attribute[ATR_HITPOINTS_MAX] = 450; attribute[ATR_HITPOINTS] = 450; attribute[ATR_MANA_MAX] = 0; attri...
D
module android.java.android.database.AbstractCursor_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.android.database.CursorWindow_d_interface; import import2 = android.java.andr...
D
# FIXED Application/hidemukbd.obj: C:/ti/simplelink/ble_sdk_2_02_00_31/src/examples/hid_emu_kbd/cc26xx/app/hidemukbd.c Application/hidemukbd.obj: C:/ti/xdctools_3_32_00_06_core/packages/xdc/runtime/System.h Application/hidemukbd.obj: C:/ti/xdctools_3_32_00_06_core/packages/xdc/std.h Application/hidemukbd.obj: C:/ti/cc...
D
// D import file generated from 'test.d' template clamp(T1, T2, T3) { auto clamp(T1 x, T2 min_val, T3 max_val) { return 0; } }
D
// Copyright Luna & Cospec 2019. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) module wsf.ast.common; import std.bitmanip; /** The magic bytes for the WSF format */ const(ubyte[]) W...
D
smash or break forcefully destroyed in an accident
D
#source: call1.s #as: --64 -mrelax-relocations=yes #ld: -melf_x86_64 -z call-nop=prefix-addr #objdump: -dw .*: +file format .* Disassembly of section .text: #... [ ]*[a-f0-9]+: 67 e8 ([0-9a-f]{2} ){4} * addr32 call +[a-f0-9]+ <foo> #pass
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
#!/sbin/runscript # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ depend() { use logger } PIDFILE=/var/run/razerd/razerd.pid start() { ebegin "Starting razerd" start-stop-daemon --start \ --pidfile ${PIDFILE} \ --exec /usr/sbin/razerd \ -- --...
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_10_MobileMedia...
D
/* * $Id: twinstickpad.d,v 1.4 2006/03/18 03:36:00 kenta Exp $ * * Copyright 2006 Kenta Cho. Some rights reserved. */ module abagames.util.sdl.twinstickpad; private import std.string; private import std.stream; private import std.math; private import derelict.sdl2.sdl; private import gl3n.linalg; private import ab...
D
E: c586, c950, c1107, c906, c44, c1003, c871, c321, c390, c842, c567, c674, c461, c718, c360, c213, c93, c963, c894, c94, c288, c859, c787, c1143, c3, c207, c1078, c483, c992, c168, c593, c422, c1139, c724, c275, c579, c828, c934, c1112, c47, c161, c1100, c620, c1156, c767, c1069, c922, c171, c773, c528, c666, c577, c9...
D
instance DIA_Torlof_DI_KAP3_EXIT(C_Info) { npc = SLD_801_Torlof_DI; nr = 999; condition = DIA_Torlof_DI_KAP3_EXIT_Condition; information = DIA_Torlof_DI_KAP3_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Torlof_DI_KAP3_EXIT_Condition() { return TRUE; }; func void DIA_Torlof_DI_KAP3_...
D
put an end to a state or an activity come to or be at an end prevent completion stopped permanently or temporarily
D
/Users/macexpert/Downloads/CommuniSki/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/IQKeyboardManagerSwift.build/Objects-normal/x86_64/IQKeyboardManager.o : /Users/macexpert/Downloads/CommuniSki/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift /Users/m...
D
/Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/build/Ingenium.build/Release-iphonesimulator/Ingenium.build/Objects-normal/x86_64/AppDelegate.o : /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/TutorDetailVC.swift /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/Spri...
D
//------------------------------! // IDE для MiniMono + QtE5 // MGW 18.12.2017 13:05:00 -- 1 version //------------------------------ // dmd mide5 qte5prs asc1251 ini qte5 minimono zdll -release -m32 import asc1251; // Поддержка cp1251 в консоли import std.getopt; // Раазбор аргументов коммандной строки // import...
D
// ************************************************************ // EXIT // ************************************************************ INSTANCE DIA_Hagen_EXIT(C_INFO) { npc = PAL_200_Hagen; nr = 999; condition = DIA_Hagen_EXIT_Condition; information = DIA_Hagen_EXIT_Info; permanent = TRUE; descr...
D
/++ Compile-time introspection of Godot types +/ module godot.d.meta; import godot.d.udas; import std.meta, std.traits; import godot.core, godot.c; /++ A UDA with which base Godot classes are marked. NOT used by new D classes. +/ package(godot) enum GodotBaseClass; /++ Determine if T is a class originally from the...
D
func int B_TeachAttributePoints(var C_Npc slf,var C_Npc oth,var int attrib,var int points,var int teacherMAX) { var string concatText; var int kosten; var int realAttribute; kosten = B_GetLearnCostAttribute(oth,attrib,points); if((attrib != ATR_STRENGTH) && (attrib != ATR_DEXTERITY) && (attrib != ATR_MANA_MAX)) ...
D
/Users/mprechner/vapor-demo/HelloWorld/.build/debug/Jay.build/Extensions.swift.o : /Users/mprechner/vapor-demo/HelloWorld/.build/checkouts/Jay.git--595626396716718175/Sources/Jay/ArrayParser.swift /Users/mprechner/vapor-demo/HelloWorld/.build/checkouts/Jay.git--595626396716718175/Sources/Jay/BooleanParser.swift /Users/...
D
extern (C++) int quus(int x, int y); unittest { assert(quus(1, 1) == 2); assert(quus(57, 18) == 5); } void main() {}
D
/* * This file was automatically generated by sel-utils and * released under the MIT License. * * License: https://github.com/sel-project/sel-utils/blob/master/LICENSE * Repository: https://github.com/sel-project/sel-utils * Generated from https://github.com/sel-project/sel-utils/blob/master/xml/protocol/java210...
D
/** HTML character entity escaping. TODO: Make things @safe once Appender is. Copyright: © 2012-2014 RejectedSoftware e.K. License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig */ module vibe.textfilter.html; import std.array; import std.conv; impor...
D
/** * Find side-effects of expressions. * * Copyright: Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 https://github...
D
/** Copyright: Copyright (c) 2019, Joakim Brännström. All rights reserved. License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) Author: Joakim Brännström (joakim.brannstrom@gmx.com) */ module test_test_environment; import config; @("shall setup a test environment") unittest { makeTes...
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
/Users/xda/Desktop/swift_demo/demo/build/demo.build/Debug-iphonesimulator/demo.build/Objects-normal/x86_64/MainBarController.o : /Users/xda/Desktop/swift_demo/demo/demo/Base/AppDelegate.swift /Users/xda/Desktop/swift_demo/demo/demo/Base/MainBarController.swift /Users/xda/Desktop/swift_demo/demo/demo/ViewController.swif...
D
(of Catholics) refusing to attend services of the Church of England disagreeing, especially with a majority
D
/** * The vararg module is intended to facilitate vararg manipulation in D. * It should be interface compatible with the C module "stdarg," and the * two modules may share a common implementation if possible (as is done * here). * Copyright: Copyright Digital Mars 2000 - 2009. * License: $(LINK2 http://www.boos...
D
/** * This is a set of OpenGL bindings. * * Generated by ./ogl_gen .... * Do not modify. Regenerate if changes are required. * * Macros: * D_CODE = <pre><code class="D">$0</code></pre> */ module opengl.gl3; import std.traits : Unqual; alias int64_t = long; alias uint64_t = ulong; alias int32_t = int; ...
D
module hunt.markdown.ext.table.TableBlock; import hunt.markdown.node.CustomBlock; /** * Table block containing a {@link TableHead} and optionally a {@link TableBody}. */ class TableBlock : CustomBlock { }
D
module mci.debugger.client; import core.thread, std.signals, std.socket, mci.core.atomic, mci.core.io, mci.core.nullable, mci.core.sync, mci.debugger.protocol, mci.debugger.utilities; public alias void delegate() InterruptCallback; public abstract class Debugge...
D
/Users/ismael/Desktop/LYCLocalization/Build/Intermediates/LYCLocalization.build/Debug-iphonesimulator/LYCLocalization.build/Objects-normal/x86_64/LYCLocalization.o : /Users/ismael/Desktop/LYCLocalization/LYCLocalization/Classes/LYCLocalization.swift /Users/ismael/Desktop/LYCLocalization/LYCLocalization/ViewController.s...
D
/mnt/c/Users/35984/Documents/code/qwe/musk/target/debug/build/parking_lot_core-dcb76498807b9676/build_script_build-dcb76498807b9676: /home/denniszhang/.cargo/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.8.4/build.rs /mnt/c/Users/35984/Documents/code/qwe/musk/target/debug/build/parking_lot_core-dcb764988...
D
commodities (goods or services) sold to a foreign country sell or transfer abroad transfer (electronic data) out of a database or document in a format that can be used by other programs cause to spread in another part of the world
D
<?xml version="1.0" encoding="UTF-8"?> <di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi"> <pageList> <availablePage> <emfPageIdentifier href="businessentities_view.notation#_uD...
D
someone who makes jewelry someone in the business of selling jewelry
D
/Users/radibarq/developer/NasaInArabic/build/Pods.build/Debug-iphonesimulator/Hero.build/Objects-normal/x86_64/HeroAnimatorViewContext.o : /Users/radibarq/developer/NasaInArabic/Pods/Hero/Sources/HeroModifier+Advanced.swift /Users/radibarq/developer/NasaInArabic/Pods/Hero/Sources/HeroCompatible.swift /Users/radibarq/de...
D
/Users/parkingsq1/Documents/project/PushPill/DerivedData/PushPill/Build/Intermediates/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/Mapper.o : /Users/parkingsq1/Documents/project/PushPill/Pods/ObjectMapper/ObjectMapper/Transforms/CustomDateFormatTransform.swift /Users/parkingsq1/Documents/pr...
D
class oSDamageDescriptor { var int validFields; // zDWORD 0x00 var int attackerVob; // zCVob* 0x04 var int attackerNpc; // oCNpc* 0x08 var int hitVob; // zCVob* 0x0C var int hitPfx; // oCVisualFX* 0x10 var int itemWeapon; // ...
D