code
stringlengths
3
10M
language
stringclasses
31 values
/** This module contains some usual predicates, either on entire ranges or on their elements. */ module dranges.predicate; import std.algorithm; import std.functional; import std.range; import std.traits; import dranges.range2 : segment; import dranges.traits2; import dranges.functional2; import drange...
D
module intents.togglestandby; import openwebif.api; import ask.ask; import texts; import openwebifbaseintent; /// final class IntentToggleStandby : OpenWebifBaseIntent { /// this(OpenWebifApi api) { super(api); } /// override AlexaResult onIntent(AlexaEvent, AlexaContext) { AlexaResult result; PowerS...
D
void main() { import std.stdio, std.string, std.conv, std.algorithm; long a, b; rd(a, b); long f(long _n) { int[] n; do { n = _n % 10 ~ n; _n /= 10; } while (_n); auto memog = new long[][][][](n.length + 1, 2, 10, n.length + 1); afill(memog, -1L); long g(size_t i, bool ...
D
module std.database.freetds.database; pragma(lib, "sybdb"); import std.database.common; import std.database.exception; import std.database.source; import std.database.freetds.bindings; import std.string; import core.stdc.stdlib; import std.conv; import std.typecons; import std.container.array; import std.experimenta...
D
E: c25, c8, c7, c11, c88, c94, c95, c60, c86, c9, c83, c51, c0, c97, c78, c15, c40, c82, c12, c35, c81, c99, c46, c22, c41, c57, c68, c21, c42, c49, c4, c62, c10, c19, c85, c70, c43, c98, c18, c38, c31, c69, c50, c63. p6(E,E) c25,c8 c97,c78 c94,c88 c0,c62 c19,c85 c4,c8 c57,c83 c82,c12 c18,c18 c86,c9 c78,c35 c35,c81 c3...
D
/Users/liujianhao/code/rust/simple_web_app/simple_web_app/target/debug/deps/awc-df8917961aecf7ba.rmeta: /Users/liujianhao/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/awc-0.2.8/src/lib.rs /Users/liujianhao/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/awc-0.2.8/src/builder.rs /Users/liujianhao/.c...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (c) 1999-2016 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
/////////////////////////////////////////////////////////////////////// // Info EXIT /////////////////////////////////////////////////////////////////////// INSTANCE DIA_Gaan_EXIT (C_INFO) { npc = BAU_961_Gaan; nr = 999; condition = DIA_Gaan_EXIT_Condition; information = DIA_Gaan_EXIT_Info; p...
D
// test that the import of std.math is not needed __gshared uint x0 = 0; __gshared uint x1 = 1; __gshared uint x2 = 2; __gshared uint x3 = 3; __gshared uint x4 = 4; __gshared uint x5 = 5; __gshared uint x6 = 6; __gshared uint x7 = 7; __gshared uint x10 = 10; __gshared uint x15 = 15; __gshared uint x31 = 31; __gshared ...
D
/Users/sol369/Desktop/InstaPics/DerivedData/InstaPics/Build/Intermediates/Pods.build/Debug-iphonesimulator/IQKeyboardManagerSwift.build/Objects-normal/x86_64/IQKeyboardManager.o : /Users/sol369/Desktop/InstaPics/Pods/IQKeyboardManagerSwift/IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift /Users/sol369/Desktop/Ins...
D
data_info.cmi : type.cmo preSyntax.cmo m.cmo id.cmo formula.cmo
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 292.5 65.5 1.60000002 262.700012 34 39 -38.7999992 143.399994 7097 2.5 2.5 0.955004591 sediments, red-brown clays 264.399994 75 15.6000004 0 2 65 -8.80000019 126.699997 1206 10.3999996 18 0.444444444 extrusives, intrusives 346 61 9 41.2000008 35...
D
// Written in the D programming language. /** This module contains common Plaform definitions. Platform is abstraction layer for application. Synopsis: ---- import dlangui.platforms.common.platform; ---- Copyright: Vadim Lopatin, 2014 License: Boost License 1.0 Authors: Vadim Lopatin, coolreader.org@gmail.co...
D
// https://issues.dlang.org/show_bug.cgi?id=19227 struct S { float f; } struct T { cfloat cf; } void main() { static assert(S.init is S.init); static assert(S.init != S.init); static assert(T.init is T.init); static assert(T.init != T.init); }
D
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE 298.700012 68.4000015 2.9000001 130.600006 23 28 -38.4000015 144.300003 138 4.80000019 4.80000019 1 sediments, limestone 295.100006 74.0999985 5.19999981 0 23 35 -27 143 1971 6.5999999 6.5999999 1 sediments, weathered
D
// Written in the D programming language. /** This is a submodule of $(MREF std, algorithm). It contains generic _sorting algorithms. $(BOOKTABLE Cheat Sheet, $(TR $(TH Function Name) $(TH Description)) $(T2 completeSort, If $(D a = [10, 20, 30]) and $(D b = [40, 6, 15]), then $(D completeSort(a, b)) l...
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
import common; struct quadTree{ alias P2 = Point!2; // Member variables Node root; class Node{ bool isLeaf; P2[] pointList; Node topLeft, topRight, bottomLeft, bottomRight; AABB!2 boundBox; this(P2[] points, AABB!2 bounds){ this.boundBox = bounds;...
D
/Users/rick/home/0_Languages/2_Rust/Tutorials/guessing_game/target/debug/deps/rand_pcg-54abbb01acb79d73.rmeta: /Users/rick/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/lib.rs /Users/rick/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/pcg64.rs /Users/rick/.carg...
D
/* * Copyright (c) 2012-2018 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.atn.LexerSkipAction; import antlr.v4.runtime.InterfaceLexer; import antlr.v4.runtime.atn.Lexer...
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, a...
D
/** * Copyright: © 2013-2014 Anton Gushcha * License: Subject to the terms of the MIT license, as written in the included LICENSE file. * Authors: NCrashed <ncrashed@gmail.com> */ module concolor.unix; import std.process; static if(__VERSION__ < 2066) enum nogc; @safe: struct foreground { version(linux) ...
D
/// Translated from C to D module glfw3.win32_time; extern(C): @nogc: nothrow: __gshared: //======================================================================== // GLFW 3.3 Win32 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // ...
D
module tofuEngine.component; import std.range; import std.traits; import std.meta; import graphics.gui; import util.serial2; import math.matrix; import tofuEngine.engine; import tofuEngine.entity; // _____ _ __ __ _ // / _...
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 t...
D
in an insignificant manner not to a significant degree or amount
D
import std.stdio; import compress : compress_big = compress; import compress_min : compress_min = compress; import core.memory; import core.thread; import std.range; import std.file; import std.datetime; import std.conv; //Benchmarking! extern (C) void c_free(void *ptr); extern (C) char *id_compress(char *id, int idl...
D
/Users/LuisSFU/Desktop/Derilearn/DeriLearn/DerivedData/DeriLearn/Build/Intermediates/DeriLearn.build/Debug-iphonesimulator/DeriLearn.build/Objects-normal/x86_64/ViewControllerPregunta.o : /Users/LuisSFU/Desktop/Derilearn/DeriLearn/DeriLearn/ViewControllerFormulario2.swift /Users/LuisSFU/Desktop/Derilearn/DeriLearn/Deri...
D
/Users/abuzeid/workspace/DevPods/.build/x86_64-apple-macosx/debug/DevComponents.build/TextAreas/TextArea.swift.o : /Users/abuzeid/workspace/DevPods/DevComponents/TextAreas/TextArea.swift /Users/abuzeid/workspace/DevPods/DevComponents/PaddingLabel.swift /Users/abuzeid/workspace/DevPods/DevComponents/SnackBar/SnackBarVie...
D
module xf.nucleus.renderer.ForwardRenderer; private { import xf.Common, xf.nucleus.Defs, xf.nucleus.Value, xf.nucleus.Param, xf.nucleus.Function, xf.nucleus.Renderable, xf.nucleus.Light, xf.nucleus.Renderer, xf.nucleus.RenderList, xf.nucleus.KernelImpl, xf.nucleus.KernelParamInterface, xf.nucl...
D
// Copyright Brian Schott (Hackerpilot) 2014. // 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 dscanner.analysis.objectconst; import std.stdio; import std.regex; import dparse.ast; im...
D
/** C++ tests that must run */ module it.cpp.run; import it; @HiddenTest @Tags("run") @("ctor") @safe unittest { shouldCompileAndRun( Cpp( q{ struct Struct { void *data; Struct(); Struct(int i); ...
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/pocket1...
D
// Written in the D programming language. /** Facilities for random number generation. The old-style functions $(D_PARAM rand_seed) and $(D_PARAM rand) will soon be deprecated as they rely on global state and as such are subjected to various thread-related issues. The new-style generator objects hold their own state ...
D
INSTANCE Mod_556_NOV_Theodor_NW (Npc_Default) { // ------ NSC ------ name = "Novize"; guild = GIL_VLK; id = 556; voice = 0; flags = 0; npctype = NPCTYPE_nw_feuernovize; B_SetAttributesToChapter (self, 2); fight_tactic = FAI_HUMAN_COWARD; aivar[AIV_MagicUser] = MAGIC_ALWAYS; EquipIte...
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
/++ + Adds support for logging std.logger messages to HTML files. + Authors: Cameron "Herringway" Ross + Copyright: Copyright Cameron Ross 2016 + License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0). +/ module htmllog; import std.algorithm : among; import std.array; import std.conv : to; impor...
D
/Users/macbook/Desktop/BookFarm/build/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/Deprecated.o : /Users/macbook/Desktop/BookFarm/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/macbook/Desktop/BookFarm/Pods/Kingfisher/Sources/General/Deprecated.swift /Users/macbook/Desktop/BookFarm/P...
D
Ddoc $(DERS_BOLUMU $(IX ternary operator) $(IX ?:) $(IX conditional operator) Ternary Operator $(CH4 ?:)) $(P The $(C ?:) operator works very similarly to an $(C if-else) statement: ) --- if (/* condition check */) { /* ... expression(s) to execute if true */ } else { /* ... expression(s) to...
D
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Core.build/Result.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/core.git-9210800844849382486/Sources/Core/String+P...
D
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/WebSockets.build/Objects-normal/x86_64/WebSocketFormatErrors.o : /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/engine.git-3311994267206676365/Sources/WebSockets/Communication/WebSocket+Send.swift /Users/cansoykarafakili/Desktop/Hello/....
D
/Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/dispositivos-moviles/segundo-parcial/cargarDatosPropertyList/Build/Intermediates/cargarDatosPropertyList.build/Debug-iphonesimulator/cargarDatosPropertyList.build/Objects-normal/x86_64/ViewController.o : /Users/hernaniruegasvillarreal/Documents/TEC/semestre-8/disp...
D
/Users/petercernak/vapor/TILApp/Build/Intermediates.noindex/TILApp.build/Debug/FluentSQL.build/Objects-normal/x86_64/Exports.o : /Users/petercernak/vapor/TILApp/.build/checkouts/fluent.git-8387737201324173519/Sources/FluentSQL/FluentSQLSchema.swift /Users/petercernak/vapor/TILApp/.build/checkouts/fluent.git-83877372013...
D
/Users/edwardhuang/Documents/MichiganHackersiOSApp/DerivedData/Michigan\ Hackers/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/JTAppleCalendar.build/Objects-normal/x86_64/JTAppleCalendarVariables.o : /Users/edwardhuang/Documents/MichiganHackersiOSApp/Pods/JTAppleCalendar/Sources/JTAppleCell.swift /Users/...
D
/++ Comulative density functions +/ /** Authors: [Ilya Yaroshenko](http://9il.github.io) Copyright: © 2014-2015 [Ilya Yaroshenko](http://9il.github.io) License: MIT */ module atmosphere.cdf; import core.stdc.tgmath; import std.algorithm; import std.traits; import std.range; import atmosphere.moment; import atmosph...
D
///* 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 writing, software ...
D
of or relating to a messiah promising deliverance
D
/* Written by Walter Bright, Christopher E. Miller, and many others. * www.digitalmars.com * Placed into public domain. */ module std.c.linux.pthread; import std.c.linux.linux; extern (C): deprecated("Use core.sys.posix.pthread instead"): public import core.sys.posix.pthread;
D
/* Copyright (c) 2019-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
module godot.lightoccluder2d; import std.meta : AliasSeq, staticIndexOf; import std.traits : Unqual; import godot.d.meta; import godot.core; import godot.c; import godot.object; import godot.classdb; import godot.node2d; import godot.occluderpolygon2d; @GodotBaseClass struct LightOccluder2D { static immutable string _...
D
module hip.assets.image; //Reserved for future implementation. import hip.asset; import hip.image; import hip.util.reflection; /** * This class represents pixel data on RAM (CPU Powered) * this is useful for loading images on another thread and then * sending it to the GPU */ public class Image : ...
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 Soft...
D
/Users/gbs/Xcode/MessView/DerivedData/MessView/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageModifier.o : /Users/gbs/Xcode/MessView/Pods/Kingfisher/Sources/String+MD5.swift /Users/gbs/Xcode/MessView/Pods/Kingfisher/Sources/Resource.swift /Users/gbs/Xcode/MessVi...
D
module gamemain; import std.math; import std.stdio; import std.string; import std.windows.charset; import DX_lib; import convert; //ゲームの状態 enum mode { TITLE, NEWGAME, CONTINUE, MOVEINPUT, STAGE_CLEAR, GAME_CLEAR, }; //マップ上のオブジェクト enum Object{ OBJ_SPACE, OBJ_WALL, OBJ_GOAL, OBJ_BLOCK, OBJ_BLOCK_ON_GOAL, O...
D
/Users/hashgard-01/rust/src/github.com/adao/target/release/deps/crypto_mac-9e6160655b9b8f7f.rmeta: /Users/hashgard-01/.cargo/registry/src/github.com-1ecc6299db9ec823/crypto-mac-0.4.0/src/lib.rs /Users/hashgard-01/rust/src/github.com/adao/target/release/deps/libcrypto_mac-9e6160655b9b8f7f.rlib: /Users/hashgard-01/.carg...
D
/** The purpose of this module is to provide audio functions for things like playback, capture, and volume on both Windows (via the mmsystem calls)and Linux (through ALSA). It is only aimed at the basics, and will be filled in as I want a particular feature. I don't generally need super configurability and see i...
D
// Written in the D programming language. /** Defines generic _containers. Source: $(PHOBOSSRC std/_container.d) Macros: WIKI = Phobos/StdContainer TEXTWITHCOMMAS = $0 LEADINGROW = <tr style=leadingrow bgcolor=#E4E9EF><td colspan=3><b><em>$0</em></b></td></tr> Copyright: Red-black tree code copyright (C) 2008- by St...
D
# FIXED source/f28004x_spi.obj: C:/Users/STarikUser/Documents/F280049_Projects/DSP_280049_Common/f28004x/common/source/f28004x_spi.c source/f28004x_spi.obj: C:/Users/STarikUser/Documents/F280049_Projects/DSP_280049_Common/f28004x/headers/include/f28004x_device.h source/f28004x_spi.obj: C:/ti/ccs1000/ccs/tools/compiler...
D
hold back to a later time
D
/** Product type package. */ module poet.product; public import poet.product.create_product; public import poet.product.type; public import poet.product.value;
D
// Written by Christopher E. Miller // See the included license.txt for copyright and license details. module dfl.internal.com; private import dfl.internal.winapi, dfl.internal.wincom, dfl.internal.dlib; version(DFL_TANGO_SEEK_COMPAT) { } else { version = DFL_TANGO_NO_SEEK_COMPAT; } // Importing dfl.application...
D
/Users/skwon2345/Desktop/YouFood-master_2/build/YouFood.build/Debug-iphonesimulator/YouFood.build/Objects-normal/x86_64/Users+CoreDataProperties.o : /Users/skwon2345/Desktop/YouFood-master_2/YouFood/SearchTextField.swift /Users/skwon2345/Desktop/YouFood-master_2/YouFood/FoodNutrientFile.swift /Users/skwon2345/Desktop/Y...
D
the residue of partially burnt tobacco left caked in the bowl of a pipe after smoking
D
module servlib.http.response; /// Module d'inclusion du superModule responsemod public import servlib.http.responsemod.HttpResponse;
D
/Users/sadikekinozbay/Documents/TUM/WS-2/Swift/Apodini-Example-Project/.build/x86_64-apple-macosx/debug/ConsoleKit.build/Command/CommandSignature.swift.o : /Users/sadikekinozbay/Documents/TUM/WS-2/Swift/Apodini-Example-Project/.build/checkouts/console-kit/Sources/ConsoleKit/Terminal/ANSI.swift /Users/sadikekinozbay/Doc...
D
void main () { int i; for (i = 0; true; i = i + 1) { if (i % 2 == 0) continue; if (i == 21) break; Print(i); } i = 0; while (true) { i = i + 1; if (i%2 == 0) continue; if (i == 21) break; Print(i); } }
D
module distGraph.skeleton.Generate; import distGraph.mpiez.admin; public import distGraph.skeleton.Register; import std.traits; import std.algorithm; import std.conv; import distGraph.utils.Options; import distGraph.skeleton.Compose; private bool checkFunc (alias fun) () { isSkeletable!fun; alias a1 = Par...
D
/** * This module defines the Scene class, TODO * */ module core.scene; import core, components, graphics, utility; import std.path; enum SceneName = "[scene]"; /** * The Scene contains a list of all objects that should be drawn at a given time. */ shared final class Scene { private: GameObject _root; pack...
D
the principles of right and wrong that are accepted by an individual or a social group a system of principles governing morality and acceptable conduct
D
/* This file is in public domain */ module framework.implementation.collections.graph; import framework.implementation.collections.array; class NoAssociatedTransitionException : Exception { this() { super("No associated transition"); } } class Graph(T) { class Node { ...
D
var int heroisafighter; func void zs_arenaspectator() { occupiedperception(); Npc_PercEnable(self,PERC_ASSESSDEFEAT,b_as_assessdefeat); Npc_PercDisable(self,PERC_ASSESSFIGHTSOUND); AI_RemoveWeapon(self); if(Npc_IsOnFP(self,"STAND") && (Npc_GetDistToWP(self,self.wp) < 500)) { AI_AlignToFP(self); } ...
D
a riblike part of a plant or animal (such as a middle rib of a leaf or a thickened vein of an insect wing) any of the 12 pairs of curved arches of bone extending from the spine to or toward the sternum in humans (and similar bones in most vertebrates)
D
// Copyright Brian Schott (Hackerpilot) 2014. // 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 dscanner.analysis.config; import inifiled; /// Returns: A default configuration. Static...
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
/Users/jackwong/Desktop/Developer/MercaniStyleSample/Build/Intermediates.noindex/MercaniStyleSample.build/Debug-iphonesimulator/MercaniStyleSample.build/Objects-normal/x86_64/MenuCollectionProvider.o : /Users/jackwong/Desktop/Developer/MercaniStyleSample/MercaniStyleSample/UIStoryboard+Instance.swift /Users/jackwong/De...
D
/******************************************************************************* Push request protocol. Copyright: Copyright (c) 2016-2017 dunnhumby Germany GmbH. All rights reserved. License: Boost Software License Version 1.0. See LICENSE.txt for details. ******************************...
D
/* apk_hash.h - Alpine Package Keeper (APK) * * Copyright (C) 2005-2008 Natanael Copa <n@tanael.org> * Copyright (C) 2008-2011 Timo Teräs <timo.teras@iki.fi> * All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License vers...
D
instance Org_871_Raeuber(Npc_Default) { name[0] = NAME_Raeuber; npcType = Npctype_ROGUE; guild = GIL_None; level = 12; voice = 7; id = 871; attribute[ATR_STRENGTH] = 60; attribute[ATR_DEXTERITY] = 30; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 184; attribute[ATR_HI...
D
module android.java.android.view.Choreographer; public import android.java.android.view.Choreographer_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!Choreographer; import import0 = android.java.android.view.Choreographer; import import2 = android.java.java.lang.Class;
D
// This code has been mechanically translated from the original FORTRAN // code at http://netlib.org/quadpack. /** Authors: Lars Tandle Kyllingstad Copyright: Copyright (c) 2009, Lars T. Kyllingstad. All rights reserved. License: Boost License 1.0 */ module scid.ports.quadpack.qagie; import std.algori...
D
module Structures.MapTile; public class MapTile { private ushort ID; private ushort Meta; public void SetID(ushort i) { ID=i; } public this(ushort id, ushort meta) { ID = id; Meta = meta; } public void SetMeta(ushort meta) { Meta=meta; } public ushort getID() { return ID; } public u...
D
#!/usr/bin/env dub /+ dub.sdl: name "snippet5" dependency "dwt" path="../../../../../../" version="*" libs \ "atk-1.0" \ "cairo" \ "dl" \ "fontconfig" \ "gdk-x11-2.0" \ "gdk_pixbuf-2.0" \ "gio-2.0" \ "glib-2.0" \ "gmodule-2.0" \ "gob...
D
/* * Copyright (c) 2004-2006 Derelict Developers * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice...
D
/Users/laurennicoleroth/Development/iOS/WeddingVenues/Build/Intermediates/Pods.build/Debug-iphonesimulator/AlecrimCoreData.build/Objects-normal/x86_64/UICollectionViewExtensions.o : /Users/laurennicoleroth/Development/iOS/WeddingVenues/Pods/AlecrimCoreData/Source/AlecrimCoreData/Core/Enums/AlecrimCoreDataError.swift /U...
D
/Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/AsMaybe.o : /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/tagline13/Documents/Projects/IOS/Demo/RxSwift_DEMO/Pods/RxSwift/RxS...
D
double fd(double x, double y) { return x+y; }
D
//----------------------------------------------------------------------------- // wxD - TipWindow.d // (C) 2005 bero <berobero@users.sourceforge.net> // based on // wx.NET - tipwin.h // /// The wxTipWindow wrapper class // // Licensed under the wxWidgets license, see LICENSE.txt for details. // // $Id: TipWindow.d,v 1...
D
/+ Copyright (c) 2005 Eric Anderton Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, p...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric; int[2][6] pt; void main() { foreach (i; 0..3) { auto ab = readln.split.to!(int[]); pt[i] = [ab[0], ab[1]]; pt[3+i] = [ab[1], ab[0]]; } foreach (i, a; pt) { foreach (j, b;...
D
module windows.gamingdeviceinfo; public import windows.com; extern(Windows): enum GAMING_DEVICE_VENDOR_ID { GAMING_DEVICE_VENDOR_ID_NONE = 0, GAMING_DEVICE_VENDOR_ID_MICROSOFT = -1024700366, } enum GAMING_DEVICE_DEVICE_ID { GAMING_DEVICE_DEVICE_ID_NONE = 0, GAMING_DEVICE_DEVICE_ID_XBOX_ONE = 1988865...
D
/Users/lincolnnguyen/Downloads/yelpy_starter_1/DerivedData/Yelpy/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/EventMonitor.o : /Users/lincolnnguyen/Downloads/yelpy_starter_1/Pods/Alamofire/Source/MultipartFormData.swift /Users/lincolnnguyen/Downloads/yelpy_starter_1...
D
import std.stdio; import core.sys.windows.windows; import core.thread; import core.runtime; import std.concurrency; import game; import triggerbot; import bunnyhop; import esp; void initialize() { Game game = new Game(); writeln( "Welcome back, Chairman Mao." ); // If you try to add a fourth thread in the same fa...
D
import std.stdio; extern (C++) void print_hello(int i) { writefln("Hello. Here is a number printed with D: %d", i); }
D
/* Copyright © 2020, Luna Nielsen Distributed under the 2-Clause BSD License, see LICENSE file. Authors: Luna Nielsen */ module engine.input.mouse; import engine.input; import bindbc.sdl; import gl3n.linalg; /** The buttons on a mouse */ enum MouseButton { Left = SDL_BUTTON_LMASK , Middle ...
D
module aurora.directx.dxgi; public import aurora.directx.dxgi.dxgi; public import aurora.directx.dxgi.dxgi1_2; public import aurora.directx.dxgi.dxgi1_3; public import aurora.directx.dxgi.dxgi1_4; public import aurora.directx.dxgi.dxgi1_5; public import aurora.directx.dxgi.dxgi1_6; public import aurora.directx.dxgi.dx...
D
/Users/Polina/XcodeApp/diplom_prj/CoreML_test/build/CoreML_test.build/Debug-iphonesimulator/CoreML_test.build/Objects-normal/x86_64/NetworkDIPart.o : /Users/Polina/XcodeApp/diplom_prj/CoreML_test/build/CoreML_test.build/Debug-iphonesimulator/CoreML_test.build/DerivedSources/CoreMLGenerated/Inceptionv3/Inceptionv3.swift...
D
module org.serviio.upnp.service.contentdirectory.rest.resources.server.AbstractRestrictedCDSServerResource; import java.lang.String; import org.restlet.representation.Representation; import org.restlet.resource.ResourceException; import org.serviio.upnp.service.contentdirectory.rest.resources.server.AbstractCDSServerR...
D
/home/philip/LearnDemo/rust-lang-book/Chapter08/Vec8_3/target/debug/Vec8_3: /home/philip/LearnDemo/rust-lang-book/Chapter08/Vec8_3/src/main.rs
D
a formal entry into an organization or position or office an electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current reasoning from detailed facts to general principles stimulation that calls up (draws forth) a particular class of behaviors the act ...
D
/Users/Dominik/Documents/Programmieren/Libraries/DYAlertController/DYAlertControllerExample3/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/DYAlertController.build/Objects-normal/x86_64/DYAlertSettings.o : /Users/Dominik/Documents/Programmieren/Libraries/DYAlertController/DYAlertController/DYActionCell.sw...
D