code
stringlengths
3
10M
language
stringclasses
31 values
<?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="parent.notation#_MKCG0GDEEeOlwNvI9...
D
a meter in a taxi that registers the fare (based on the length of the ride)
D
module minima.physics.data; public { alias BoxId = size_t; interface ForceApplier { float[2] apply(BoxId boxId, float timeChange); } public TileName* getTile(int x, int y) { with (_tileMap) { if (x >= 0 && x < width && y >= 0 && y < height) r...
D
// The values for this variables can be specified by the user const int SPINE_ACHIEVEMENTORIENTATION = SPINE_BOTTOMRIGHT; // position of the achievement widget const int SPINE_SHOWACHIEVEMENTS = TRUE; // show achievement (you can set this to FALSE to disable the achievement widget, but internally the achievement will ...
D
char[][] foo; foo = new char[][30]; foo = new char[][](30); int[][][] bar; bar = new int[][][](5, 20, 30); bar = new int[][][5]; foreach (ref a; bar) { a = new int[][20]; foreach (ref b; a) { b = new int[30]; } }
D
/Users/apple-1/Downloads/HouseKeeping/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionManager.o : /Users/apple-1/Downloads/HouseKeeping/Pods/Alamofire/Source/AFError.swift /Users/apple-1/Downloads/HouseKeeping/Pods/Alamofire/Source/Alamofire.swift /Users/apple-1/Downloa...
D
/** A HTTP 1.1/1.0 server 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, Jan Krüger */ module vibe.http.server; public import vibe.core.net; public import vibe.http.common; public import ...
D
/Users/lucasfarah/Documents/lucasfarah.github.io/.build/x86_64-apple-macosx/debug/Publish.build/API/SortOrder.swift.o : /Users/lucasfarah/Documents/lucasfarah.github.io/.build/checkouts/publish/Sources/Publish/API/PodcastEpisodeMetadata.swift /Users/lucasfarah/Documents/lucasfarah.github.io/.build/checkouts/publish/Sou...
D
/** * Copyright © The Bot Blog 2019 * License: MIT (https://github.com/TheBotBlog/thebotbloglib/blob/master/LICENSE) * Author: Jacob Jensen (bausshf) */ module thebotbloglib.facebookservice; import std.string : strip; import thebotbloglib.webmanager; import thebotbloglib.graphapi; import thebotbloglib.facebookpost; ...
D
/** A package supplier, able to get some packages to the local FS. 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.packagesupplier; import dub.dependency; import dub.internal.utils; imp...
D
/** Various @nogc alternatives. This file includes parts of `std.process`, `std.random`, `std.uuid`. Authors: $(HTTP guillaumepiolat.fr, Guillaume Piolat) $(LINK2 https://github.com/kyllingstad, Lars Tandle Kyllingstad), $(LINK2 https://github.com/schveiguy, Steven Schveighoffer), $(HTTP thecybershadow.net, V...
D
<?xml version="1.0" encoding="ASCII"?> <di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi"> <pageList> <availablePage> <emfPageIdentifier href="7d62c6aa-1149-4b8e-9ce7-69b7f1...
D
module game.gapi.characters.player.states; public: import game.gapi.characters.player.states.attack; import game.gapi.characters.player.states.base; import game.gapi.characters.player.states.base_run; import game.gapi.characters.player.states.block; import game.gapi.characters.player.states.fall; import game.gapi.char...
D
instance Info_FreemineOrc_EXIT(C_Info) { npc = FreemineOrc; nr = 999; condition = Info_FreemineOrc_EXIT_Condition; information = Info_FreemineOrc_EXIT_Info; important = 0; permanent = 1; description = DIALOG_ENDE; }; func int Info_FreemineOrc_EXIT_Condition() { return 1; }; func void Info_FreemineOrc_EXIT_Inf...
D
/** * Contains classes used to send electronic _mail to a Simple Mail Transfer Protocol (SMTP) server for delivery. * * Copyright: (c) 2009 John Chapman * * License: See $(LINK2 ..\..\licence.txt, licence.txt) for use and distribution terms. */ module os.win.net.mail; import os.win.base.core, os.win...
D
anything that is cast aside or discarded (cards) the act of throwing out a useless card or of failing to follow suit getting rid something that is regarded as useless or undesirable throw or cast away
D
module org.serviio.ui.resources.TranscodingResource; import org.restlet.resource.Get; import org.restlet.resource.Put; import org.serviio.restlet.ResultRepresentation; import org.serviio.ui.representation.TranscodingRepresentation; public abstract interface TranscodingResource { //@Put("xml|json") public abst...
D
/Users/jackwong/Desktop/Developer/CollectionCellReorder/Build/Intermediates.noindex/CollectionCellReorder.build/Debug-iphoneos/CollectionCellReorder.build/Objects-normal/arm64/AppDelegate.o : /Users/jackwong/Desktop/Developer/CollectionCellReorder/CollectionCellReorder/AppDelegate.swift /Users/jackwong/Desktop/Develope...
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
import std.math; struct Quaternion { float x, y, z, w; Quaternion opBinary(string op)(Quaternion lhs) { static if (op == "*") { return Quaternion( w*lhs.x + x*lhs.w + y*lhs.z - z*lhs.y, w*lhs.y + y*lhs.w + z*lhs.x - x*lhs.z, w*lhs.z + z*lhs.w + x*lhs.y - y*lhs.x, w*lhs.w - x*lhs.x - y*lhs.y - z*...
D
// **************** // Alle Beeinflussung Spells // **************** const int SPL_Cost_Beeinflussung = 10; // ------ Instanz für alle normalen Beeinflussung-Sprüche ------ instance Spell_Beeinflussung (C_Spell_Proto) { time_per_mana = 0; spelltype = SPELL_NEUTRAL; targetCollectAlgo = TARGET_COLLECT_CASTER...
D
/** * Copyright: © 2014-2015 Anton Gushcha * License: Subject to the terms of the Boost 1.0 license as specified in LICENSE file * Authors: Anton Gushcha <ncrashed@gmail.com> * * Template for compile time key-value list - extension of std.traits; */ module stribog.meta.keyvalue; import stribog.meta.base; impor...
D
// REQUIRED_ARGS: // EXECUTE_ARGS: 10000 extern(C) int printf(const char *, ...); extern(C) int atoi(const char *); int main (string[] argv) { string s = ""; int count, loop; count = atoi((argv[1] ~ '\0').ptr); if (count == 0) count = 1; printf("count = %u\...
D
/* Copyright (c) 2017-2018 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, ...
D
instance DIA_Addon_Myxir_CITY_EXIT(C_Info) { npc = KDW_140300_Addon_Myxir_CITY; nr = 999; condition = DIA_Addon_Myxir_CITY_EXIT_Condition; information = DIA_Addon_Myxir_CITY_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Addon_Myxir_CITY_EXIT_Condition() { return TRUE; }; func void D...
D
;;; bs.el --- menu for selecting and displaying buffers ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ;; Author: Olaf Sylvester <olaf@geekware.de> ;; Maintainer: Olaf Sylvester <olaf@geekware.de> ;; Keywords: convenience ;; This file is part of GNU Emacs. ;; GNU Emacs is...
D
/Users/hannh/Documents/MyGitHub/ChartsTest2/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChevronDownShapeRenderer.o : /Users/hannh/Documents/MyGitHub/ChartsTest2/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /Users/hannh/Documents/MyGitHub/ChartsTest2/Ch...
D
// // Texturen // // Menu const string MENU_BACK_PIC = "menu_ingame.tga"; // outgame/ingame const string MENU_ITEM_BACK_PIC = ""; // Hintergrund für alle anwählbaren Menüpunkte const string MENU_CHOICE_BACK_PIC = "menu_choice_back.tga"; // Hintergrund für Choicebox const string MENU_SLIDER_BACK_PIC = "...
D
/* TEST_OUTPUT: --- fail_compilation/diag10099.d(15): Error: variable diag10099.main.s default construction is disabled for type `S` --- */ struct S { @disable this(); } void main() { S s; }
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
import std.stdio; import std.math; import std.bigint; import std.conv; import std.typecons; import rbtree; struct Power { uint base; uint exponent; BigInt value; Power(uint base, uint exponent, BigInt value) Power raise() { Power result = this; result.base = base; result.exponent = exponent;...
D
module wx.FindReplaceDialog; public import wx.common; public import wx.Dialog; public import wx.CommandEvent; //----------------------------------------------------------------------------- extern(D) class ДиалогНайдиЗамени : Диалог { public const цел wxFR_DOWN = 1; public const цел wxFR_WHOLEWORD = 2;...
D
import std.stdio, std.algorithm; void main() { auto set1 = [1, 2, 3, 4, 5, 6]; auto set2 = [2, 5, 6, 3, 4, 8].sort; // [2, 3, 4, 5, 6, 8] auto set3 = [1, 2, 5]; assert(equal(setUnion(set1, set2), [1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 8])); assert(equal(setIntersection(set1, set2), [2, 3, 4, 5, 6])); ...
D
instance BDT_1030_Morgahard(Npc_Default) { name[0] = "Моргахард"; guild = GIL_OUT; id = 1030; voice = 7; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,4); fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,ItMw_1h_Sld_Sword); B_CreateAmbientInv(self); CreateInvItems(self,ItWr_RichterKomproBr...
D
INSTANCE Info_Mod_Sylvio_Hi (C_INFO) { npc = Mod_797_SLD_Sylvio_MT; nr = 1; condition = Info_Mod_Sylvio_Hi_Condition; information = Info_Mod_Sylvio_Hi_Info; permanent = 0; important = 1; }; FUNC INT Info_Mod_Sylvio_Hi_Condition() { if (Npc_KnowsInfo(hero, Info_Mod_Lee_GotoSylvio)) { return 1; }; }; FUNC ...
D
void main() { testKeysValues1(); testKeysValues2(); testGet1(); testGet2(); testRequire1(); testRequire2(); testRequire3(); testUpdate1(); testUpdate2(); testByKey1(); testByKey2(); testByKey3(); testByKey4(); issue5842(); issue5842Expanded(); issue5925();...
D
//taken from learning d by Michael Parker template MyTemplate(T) { T val; void printVal() { import std.stdio : writeln; writeln("The type is ", typeid(T)); writeln("The value is ", val); } } void main() { MyTemplate!(int).val = 20; MyTemplate!int.printVal(); ...
D
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.string; immutable long MOD = 10^^9 + 7; long powmod(long a, long x, long m) { long ret = 1; while (x) { if (x % ...
D
// Written in the D programming language. /** This module contains resource management and drawables implementation. imageCache is RAM cache of decoded images (as DrawBuf). drawableCache is cache of Drawables. Supports nine-patch PNG images in .9.png files (like in Android). Supports state drawables using XML file...
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="oneProfileApplied.notation#_LLO-QP...
D
# FIXED LaunchPad.obj: C:/Users/Kyle//\ Maiorana/Desktop/tirslk_maze_1_00_01/tirslk_maze_1_00_00/inc/LaunchPad.c LaunchPad.obj: C:/ti/ccs910/ccs/ccs_base/arm/include/msp.h LaunchPad.obj: C:/ti/ccs910/ccs/ccs_base/arm/include/msp432p401r.h LaunchPad.obj: C:/ti/ccs910/ccs/tools/compiler/ti-cgt-arm_18.12.2.LTS/include/st...
D
/home/juliobrz/Git/PixelCanvas/.build/x86_64-unknown-linux/debug/NIO.build/Interfaces.swift.o : /home/juliobrz/Git/PixelCanvas/.build/checkouts/swift-nio/Sources/NIO/IO.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/swift-nio/Sources/NIO/NonBlockingFileIO.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/swi...
D
struct CC(JB, DC) { struct FC { JB HC; } alias RC = FC; static RC[] SC; struct TC { uint CD ; JB* HC() { return &SC[CD].HC; } alias HC this; } }
D
import std.stdio; import std.range; import std.algorithm; void main(){ //Given an array of strings, filter it so that only strings less than 4 characters remain //Hint: you can do str.length to get length of str string[] words = ["hi","greetings","bye","farewell","d", "dlang"]; auto result = words.filt...
D
/** * Common string functions including filename manipulation. * * Copyright: Copyright (C) 1999-2023 by The D Language Foundation, All Rights Reserved * Authors: Walter Bright, https://www.digitalmars.com * License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Source: $(LINK2 ...
D
/Users/MohamedNawar/Desktop/weatherTask/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/HTTPMethod.o : /Users/MohamedNawar/Desktop/weatherTask/Pods/Alamofire/Source/MultipartFormData.swift /Users/MohamedNawar/Desktop/weatherTask/Pods/Alamofire/Source/MultipartUpload.swift /Users/MohamedNawa...
D
/** * DSSS command "build" * * Authors: * Gregor Richards * * License: * Copyright (c) 2006, 2007 Gregor Richards * * 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 withou...
D
/Users/meiting/Desktop/Recipe/Recipe/Build/Intermediates.noindex/Recipe.build/Debug-iphonesimulator/Recipe.build/Objects-normal/x86_64/Recipe+CoreDataClass.o : /Users/meiting/Desktop/Recipe/Recipe/Recipe/Model/ModelData.swift /Users/meiting/Desktop/Recipe/Recipe/Recipe/Persistence.swift /Users/meiting/Desktop/Recipe/Re...
D
module ui.outputpanel; import dlangui; import dlangide.ui.frame; import std.utf; import std.regex; import std.algorithm : startsWith; import std.string; /// event listener to navigate by error/warning position interface CompilerLogIssueClickHandler { bool onCompilerLogIssueClick(dstring filename, int line, int colu...
D
module dhe.graphics.compoundimage; import derelict.sdl.sdl; import dhe.graphics.image; class CompoundImage { Image child; void draw(short x, short y, SDL_Surface *source, SDL_Surface *destination) { SDL_Rect offset; offset.x = x; offset.y = y; SDL_BlitSurface(source, null, destination, &offset); } }
D
/++ $(H2 Scriptlike $(SCRIPTLIKE_VERSION)) Extra Scriptlike-only functionality to complement and wrap $(MODULE_STD_PATH), providing extra functionality, such as no-fail "try*" alternatives, and support for Scriptlike's $(API_PATH_EXTR Path), command echoing and dry-run features. Modules: $(UL $(LI $(MODULE_PATH_EXTR...
D
the incineration of a dead body
D
/** * Copyright: Copyright Digital Mars 2010. * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Jacob Carlborg * Version: Initial created: Mar 16, 2010 */ /* Copyright Digital Mars 2010. * Distributed under the Boost Software License, Version 1.0. * (See accompanying...
D
/Users/radibarq/developer/NasaInArabic/build/Pods.build/Debug-iphonesimulator/YoutubeKit.build/Objects-normal/x86_64/SearchVideoDuration.o : /Users/radibarq/developer/NasaInArabic/Pods/YoutubeKit/YoutubeKit/API/Models/ResourceID.swift /Users/radibarq/developer/NasaInArabic/Pods/YoutubeKit/YoutubeKit/YoutubeDataAPI.swif...
D
INSTANCE Info_Mod_Den_Hi (C_INFO) { npc = Mod_969_MIL_Den_NW; nr = 1; condition = Info_Mod_Den_Hi_Condition; information = Info_Mod_Den_Hi_Info; permanent = 0; important = 0; description = "Wer bist du?"; }; FUNC INT Info_Mod_Den_Hi_Condition() { return 1; }; FUNC VOID Info_Mod_Den_Hi_Info() { B_Say (hero,...
D
/* * Hunt - a framework for web and console application based on Collie using Dlang development * * Copyright (C) 2015-2017 Shanghai Putao Technology Co., Ltd * * Developer: HuntLabs * * Licensed under the Apache-2.0 License. * */ module hunt; public import hunt.application; public import hunt.routing; pu...
D
import std.stdio; import std.conv; import std.string; import core.memory; import bindbc.opengl; import bindbc.glfw; import arc.core; import arc.engine; import arc.input; import arc.math; import arc.gfx.shader; import arc.gfx.buffers; import arc.gfx.mesh; import arc.gfx.texture; public class MyGame : IApp { strin...
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Log/LogProtocol.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.bui...
D
module android.java.android.text.method.DateTimeKeyListener_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import2 = android.java.java.lang.CharSequence_d_interface; import import4 = android.java.and...
D
/* * This file is part of serpent. * * Copyright © 2019-2020 Lispy Snake, Ltd. * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this s...
D
import diet.internal.html : htmlEscape, htmlAttribEscape; import std.format : formattedWrite; #line 1 "layout.dt" import qv.enums; { #line 1 "layout.dt" } _diet_output.put("<!DOCTYPE html><head><!--/ Blobal CSS and JS--><link rel=\"stylesheet\" href=\"/"); #line 6 "layout.dt" _diet_output.htmlAttribEscape(AssetsURL.cs...
D
module dnes.ppu.mirroring; import dnes.rom; import dnes.util; /** * Handles PPU nametable mirroring * * Params: * addr = The address trying to be read or written to * * Returns: The real address that will be read or written to */ nothrow @safe @nogc ushort nametableMirroring(ushort addr) in (addr >= 0x2000...
D
/** * D header file for POSIX. * * Copyright: Copyright Sean Kelly 2005 - 2009. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>. * Authors: Sean Kelly * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition */ /* Copyright Sean Kelly 20...
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
import std.stdio; import Dgame.Graphic; import Dgame.Math; import Dgame.Audio; import Dgame.System; import Dgame.Window; debug { pragma(msg, Color4b.sizeof); pragma(msg, Color4f.sizeof); pragma(msg, Matrix4x4.sizeof); pragma(msg, Window.sizeof); pragma(msg, Event.sizeof); pragma(msg, Surface.s...
D
var int npcobsessedbydmt; var int npcobsessedbydmt_brutus; var int npcobsessedbydmt_engrom; var int npcobsessedbydmt_vino; var int npcobsessedbydmt_malak; var int npcobsessedbydmt_fernando; var int npcobsessedbydmt_bromor; var int npcobsessedbydmt_sekob; var int npcobsessedbydmt_randolph; func void b_dmtwurm() { AI_...
D
/Users/a123456/Desktop/React/WeiBoNews/Build/Intermediates/Pods.build/Debug-iphonesimulator/SnapKit.build/Objects-normal/x86_64/ConstraintRelation.o : /Users/a123456/Desktop/React/WeiBoNews/Pods/SnapKit/Source/Constraint.swift /Users/a123456/Desktop/React/WeiBoNews/Pods/SnapKit/Source/ConstraintAttributes.swift /Users/...
D
/** Generator for direct compiler builds. Copyright: © 2013-2013 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.generators.build; import dub.compilers.compiler; import dub.generators.generator; import dub.in...
D
/Users/sadikekinozbay/Documents/TUM/WS-2/Swift/Apodini-Example-Project/.build/x86_64-apple-macosx/debug/AsyncKit.build/EventLoopFuture/Future+Transform.swift.o : /Users/sadikekinozbay/Documents/TUM/WS-2/Swift/Apodini-Example-Project/.build/checkouts/async-kit/Sources/AsyncKit/EventLoopFuture/EventLoopFutureQueue+Sequen...
D
/Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/.build/debug/Leaf.build/Buffer/BufferProtocol.swift.o : /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTellersAPI/Packages/Leaf-1.0.3/Sources/Leaf/Argument.swift /Users/mohammadazam/Documents/Projects/StoryTellersAPICode/StoryTe...
D
CheckVowel.elf: file format elf32-littleriscv Disassembly of section .text: 01000000 <main>: 1000000: fd010113 addi sp,sp,-48 1000004: 02112623 sw ra,44(sp) 1000008: 00012e23 sw zero,28(sp) 100000c: 00012c23 sw zero,24(sp) 1000010: 010007b7 lui a...
D
module android.java.android.view.inspector.PropertyReader; public import android.java.android.view.inspector.PropertyReader_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!PropertyReader; import import1 = android.java.java.lang.Class;
D
# FIXED drivers/eth_client_lwip.obj: C:/ti/TivaWare_C_Series-2.1.4.178/examples/boards/ek-tm4c1294xl-boostxl-senshub/drivers/eth_client_lwip.c drivers/eth_client_lwip.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.4.LTS/include/stdint.h drivers/eth_client_lwip.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-arm_18.1.4.LTS/inc...
D
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version 2.0.4 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ------------------------------...
D
// PERMUTE_ARGS: // Copyright (c) 1999-2012 by Digital Mars // All Rights Reserved // written by Walter Bright // http://www.digitalmars.com import std.stdio; version (D_PIC) { int main() { return 0; } } else version (D_InlineAsm_X86) { struct M128 { int a,b,c,d; }; struct M64 { int a,b; }; /******************...
D
/Users/ramonhonorio/workspace/ios/fiap/BuyList/DerivedData/BuyList/Build/Intermediates.noindex/RamonEvandro.build/Debug-iphonesimulator/RamonEvandro.build/Objects-normal/x86_64/BuyListViewController.o : /Users/ramonhonorio/workspace/ios/fiap/BuyList/BuyList/StateMO.swift /Users/ramonhonorio/workspace/ios/fiap/BuyList/B...
D
module mixin_utilities; /*********************************** * Borrowed from BindBC.SFML - Created by mdparker * * Original source: * https://github.com/BindBC/bindbc-sfml/blob/40b08ffa045a139585720a113b619d4357cd89c2/source/bindbc/sfml/config.d#L46 */ enum expandEnum(EnumType, string fqnEnumType = EnumType.strin...
D
// This source code is in the public domain. /* Diagram: MyMenuBar FileMenuHeader FileMenu ExtraLargeCheckMenuItem FancyCheckMenuItem FortifiedCheckMenuItem Soft&FluffyCheckMenuItem Exit */ import std.stdio; import gtk.MainWindow; import gtk.Box; import gtk.Main; import gtk.Menu; import...
D
/* Copyright (c) 2011-2020 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,...
D
void main() { int[] data1 = [1,2,3]; long[] data2; void[] arr = data1; // OK, int[] implicit converts to void[]. assert(data1.length == 3); assert(arr.length == 12); // length is implicitly converted to bytes. //data1 = arr; // Illegal: void[] does not implicitl...
D
module troubadour.midi; public { import troubadour.midi.clock; import troubadour.midi.file; import troubadour.midi.sequencer; }
D
/Users/ben/Documents/w/code/project/learn/learn-cargo/target/rls/debug/deps/cargo_hello-e0fb2fb01c397911.rmeta: src/main.rs /Users/ben/Documents/w/code/project/learn/learn-cargo/target/rls/debug/deps/cargo_hello-e0fb2fb01c397911.d: src/main.rs src/main.rs:
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1986-1998 by Symantec * Copyright (C) 2000-2019 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
func void ZS_Stand_Dementor() { self.senses = SENSE_SEE | SENSE_HEAR | SENSE_SMELL; self.senses_range = PERC_DIST_MONSTER_ACTIVE_MAX; if(Npc_KnowsInfo(self,1)) { Npc_SetPercTime(self,0.3); } else { Npc_SetPercTime(self,1); }; Npc_PercEnable(self,PERC_ASSESSPLAYER,B_AssessPlayer); Npc_PercEnable(self,PERC...
D
instance BDT_1097_Addon_Fisk(Npc_Default) { name[0] = "Ôèñê"; guild = GIL_BDT; id = 1097; voice = 12; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,3); fight_tactic = FAI_HUMAN_NORMAL; EquipItem(self,ItMw_1h_Sld_Sword); // B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_Head_Bald",...
D
module dmagick.c.resample; import dmagick.c.cacheView; import dmagick.c.exception; import dmagick.c.image; import dmagick.c.magickType; import dmagick.c.magickVersion; import dmagick.c.pixel; //A mixin with static if has problems with circular imports. (dmagick.c.image) version(MagickCore_660) {} else vers...
D
module perfontain.program; import std, core.bitop, perfontain.opengl, perfontain, utile.except, utile.logger; public import perfontain.program.props; enum { PROG_DATA_MODEL = 1, PROG_DATA_COLOR = 2, PROG_DATA_NORMAL = 4, PROG_DATA_LIGHTS = 8, PROG_DATA_SM_MAT = 16, PROG_DATA_SCISSOR = 32, } struct Attrib { uin...
D
/* TEST_OUTPUT: --- fail_compilation/fail8009.d(9): Error: template `fail8009.filter` cannot deduce function from argument types `!()(void)`, candidates are: fail_compilation/fail8009.d(8): `fail8009.filter(R)(scope bool delegate(ref BAD!R) func)` --- */ void filter(R)(scope bool delegate(ref BAD!R) func) { } vo...
D
/Users/mumpiko/dev/XCUITest/XCUITest-demo/output/Build/Intermediates/UIKitCatalog.build/Debug-iphonesimulator/UIKitCatalog.build/Objects-normal/x86_64/AppDelegate.o : /Users/mumpiko/dev/XCUITest/XCUITest-demo/UIKitCatalog/PickerViewController.swift /Users/mumpiko/dev/XCUITest/XCUITest-demo/UIKitCatalog/SearchResultsVie...
D
// FIXME: if the taskbar dies, a notification icon is undocked... but never detects a new taskbar spawning // https://dpaste.dzfl.pl/7a77355acaec /* Text layout needs a lot of work. Plain drawText is useful but too limited. It will need some kind of text context thing which it will update and you can pass it on and ...
D
module opus.encoder; const int OPUS_OK = 0; enum Application { VOIP = 2048, AUDIO = 2049, LOWDELAY = 2051, } enum Bandwidth { NARROWBAND = 1101, MEDIUMBAND = 1102, WIDEBAND = 1103, SUPERWIDEBAND = 1104, FULLBAND = 1105, } enum CTL { SET_BITRATE_REQUEST = 4002, SET_BANDWIDTH_REQUEST = 4008, SET...
D
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Vapor.build/Cipher/CipherProtocol.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-5492988...
D
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Crypto.build/Random/Hash+Random.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/crypto.git-7980259129511365902/Sources/Crypto/HMAC/HMAC.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/chec...
D
/mnt/c/Users/Max Kelly/Documents/Github/rust/crawler/target/debug/build/markup5ever-b111a4c68714a22c/build_script_build-b111a4c68714a22c: /home/trinitok/.cargo/registry/src/github.com-1ecc6299db9ec823/markup5ever-0.7.3/build.rs /mnt/c/Users/Max Kelly/Documents/Github/rust/crawler/target/debug/build/markup5ever-b111a4c...
D
hunt illegally cook in a simmering liquid
D
FUNC VOID MEMINT_RemoveVob(var int ptr) { if (ptr > 0) && (ptr != MEM_InstToPtr(PC_Hero)) { CALL__thiscall(ptr, 6298688); // Entfernt übergebens Vob (zCVob.RemoveVobFromWorld()) }; }; FUNC INT MEM_RemoveVob(var string vobname) { var int ptr; ptr = MEM_SearchVobByName (vobname); if (ptr > 0) { MEMINT_Remove...
D
/Users/danielmorales/CSUMB/Potluck/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ScheduledItemType.o : /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/danielmorales/CSUMB/Potluck/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/danielmorales/CSU...
D
module android.java.android.view.inputmethod.BaseInputConnection_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import5 = android.java.java.lang.CharSequence_d_interface; import import9 = android.jav...
D
a city in southern California (southeast of Los Angeles
D
/* REQUIRED_ARGS: -de TEST_OUTPUT: --- fail_compilation/fail16997.d(31): Deprecation: integral promotion not done for `~c`, use '-transition=intpromote' switch or `~cast(int)(c)` fail_compilation/fail16997.d(32): Deprecation: integral promotion not done for `-c`, use '-transition=intpromote' switch or `-cast(int)(c)` f...
D