code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
//Org: s.newsgroup: Andrej Mitrovic 25 4 2011
//#would've though 1 and not 3
import std.stdio;
import std.string;
void main()
{
struct ASIOChannelInfo
{
int channel;
int isInput;
int isActive;
int channelGroup;
int type;
string name;
}
auto info = ASIOCh... | D |
/Users/vineshkumar/Documents/Volvo/UD_Hackathon/bms_mobile/ios/build/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChartDataEntry.o : /Users/vineshkumar/Documents/Volvo/UD_Hackathon/bms_mobile/ios/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartData.swift /... | D |
module fisherExact;
import std.algorithm: sum;
import std.container: Array;
import core.stdc.stdio: printf;
import core.stdc.stdlib: atoi;
import core.stdc.math: log, exp;
@nogc:
void main(const string[] argv) {
// checking num of agruments
if(argv.length < 2) {
printf("Specify number of iterations!\n");
retu... | D |
//#windows version needed for short cut to quit
/+
1 Psalm 32 1 -> A Maskil of David
2 I went for a walk\nand fell down a hole. (notice the \n in there for newline)
Keys 1 and 2 - values 'Psalm ..' and 'I went ..'
+/
import base;
struct Info {
string text;
string toString() const {
return text;
... | D |
module mongod.mongo_h;
private import std.socket;
private import mongod.bson_h;
public static string mongo_error_str[] = ["Connection success!","Could not create a socket.",
"An error occured while calling connect().","An error occured while calling getaddrinfo().",
"Warning: connected... | D |
/**
* Defines lexical tokens.
*
* Specification: $(LINK2 https://dlang.org/spec/lex.html#tokens, Tokens)
*
* Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE... | D |
/Users/mac/Documents/GitHub/PerfectServer/.build/x86_64-apple-macosx/debug/PerfectCRUD.build/Expression/In.swift.o : /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/PerfectCRUD.swift /Users/mac/Documents/GitHub/PerfectServer/.build/checkouts/Perfect-CRUD/Sources/PerfectCRUD/E... | D |
/code/target/lambda/release/build/serde_derive-89e77db2b46f515c/build_script_build-89e77db2b46f515c: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.114/build.rs
/code/target/lambda/release/build/serde_derive-89e77db2b46f515c/build_script_build-89e77db2b46f515c.d: /root/.cargo/registry/src/githu... | D |
module gfmod.opengl.opengl;
import core.stdc.stdlib;
import std.string,
std.conv,
std.exception,
std.array,
std.algorithm;
import derelict.util.exception,
derelict.opengl3.gl3;
import std.experimental.logger;
import gfmod.core.text,
gfmod.opengl.textureunit;
/// The one e... | D |
module ast.Expression;
import ast.Instruction;
import syntax.Word;
import tables.Symbol;
class Expression : Instruction {
this (Word token) {
super (token);
}
public ref Symbol symbol () {
return _symbol;
}
override void print (int nb = 0) {}
override void prettyPrint (int nb = 0) {}
... | D |
class Foo
{
public void f() { }
private void g() { }
invariant()
{
f(); // error, cannot call public member function from invariant
g(); // ok, g() is not public
}
}
| D |
module core.internal.lifetime;
import core.lifetime : forward;
/+
emplaceRef is a package function for druntime internal use. It works like
emplace, but takes its argument by ref (as opposed to "by pointer").
This makes it easier to use, easier to be safe, and faster in a non-inline
build.
Furthermore, empla... | D |
/**
This module implements a $(LINK2 http://dlang.org/template-mixin.html,
template mixin) containing a program to search a list of directories
for all .d files therein, then writes a D program to run all unit
tests in those files using unit_threaded. The program
implemented by this mixin only writes out a D file that ... | D |
// *********************************************************************
// change keys menu
// *********************************************************************
instance MENU_OPT_CONTROLS(C_MENU_DEF)
{
backpic = MENU_BACK_PIC;
items[0] = "MENU_ITEM_CHG_KEYS_HEADLINE";
// Items
items[1] = "MENU_ITEM_KEY... | D |
instance DIA_BDT_13_EXIT(C_Info)
{
nr = 999;
condition = DIA_BDT_13_EXIT_Condition;
information = DIA_BDT_13_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_BDT_13_EXIT_Condition()
{
return TRUE;
};
func void DIA_BDT_13_EXIT_Info()
{
AI_StopProcessInfos(self);
};
instance DIA_BDT_13... | D |
// Written in the D programming language.
/**
This module implements a variety of type constructors, i.e., templates
that allow construction of new, useful general-purpose types.
Source: $(PHOBOSSRC std/_typecons.d)
Macros:
WIKI = Phobos/StdVariant
Synopsis:
----
// value tuples
alias Tuple!(float, "x", float,... | D |
module twigd.data;
import std.variant : Variant;
struct Data {
private Variant[string] data;
@property
Variant opDispatch(string name)() const {
return name in data ? data[name] : Variant.init;
}
@property
void opDispatch(string name, T)(T val) {
data[name] = val;
}
}
vers... | D |
import item;
import enums;
import slump;
class ItemHouse : Item
{
this()
{
auto a =
[
"A house, a home.",
"House sweet house.",
"A good place for friends to live.",
"Four walls and a roof, it's all you need!",
"The house of the rising ... | D |
/**
This module implements any types that are not explicitly defined by the D compiler, but are considered
standard D types. See https://dlang.org/spec/type.html
*/
module d.types;
alias string = immutable(char)[];
alias wstring = immutable(wchar)[];
alias dstring = immutable(dchar)[];
alias uint8 = ubyte;
alias ... | D |
import std.math;
extern(C) int printf(const char*, ...);
string abc;
template Floating(T)
{
T[3] a;
T[3] b;
T[3] c;
T[] A()
{
printf("A\n");
abc ~= "A";
return a;
}
T[] B()
{
printf("B\n");
abc ~= "B";
return b;
}
T[] C()
... | D |
const int Value_BeliarW_Raven = 500;
const int Damage_BeliarW_Raven = 50;
const int Value_BeliarW_1H_01 = 600;
const int Damage_BeliarW_1H_01 = 90;
const int Value_BeliarW_1H_02 = 650;
const int Damage_BeliarW_1H_02 = 100;
const int Value_BeliarW_1H_03 = 750;
const int Damage_BeliarW_1H_03 = 110;
const int Value_Belia... | D |
module ddi.msg;
struct Message {
enum INTRO=
`Welcome to DDataInput, a convenient way to input data.
Copyright (C) 2012 Nathan M. Swan
You can always type ".quit" to quit.`;
enum OPENING_INSTRUCTIONS=
`To open a file for editing, drag its thumbnail here, or type ".new":
`;
enum START_INPUT=
`Okay, now you ca... | D |
/home/ubuntu/substrate-node-template/target/debug/wbuild-runner/node-template-runtime6620869906145500559/target/x86_64-unknown-linux-gnu/debug/deps/fs2-e0a0fc64b3e22702.rmeta: /home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/fs2-0.4.3/src/lib.rs /home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/f... | D |
/*
* extra interface not define in any other modules, copied from MSDN 2003
* don't import this module directly, import std.internal.ole.win32.com instead
*
* author : Shawn Liu
*/
module org.eclipse.swt.internal.ole.win32.ifs;
private import org.eclipse.swt.SWT;
private import org.eclipse.swt.internal.win32.WIN... | D |
module hunt.http.codec.websocket.utils.MaskedByteBuffer;
import hunt.collection.ByteBuffer;
class MaskedByteBuffer {
private enum byte[] mask = [0x00, cast(byte) 0xF0, 0x0F, cast(byte) 0xFF];
static void putMask(ByteBuffer buffer) {
buffer.put(mask, 0, mask.length);
}
static void putPayload(... | D |
/Users/gbonda/Documents/Libraries/RWPickFlavor/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Result.o : /Users/gbonda/Documents/Libraries/RWPickFlavor/Pods/Alamofire/Source/MultipartFormData.swift /Users/gbonda/Documents/Libraries/RWPickFlavor/Pods/Alamofire/Source/T... | D |
int main() {
int a;
int b;
a = 20;
b = -10;
while(a >= b) {
a = a - 4;
b = b + 2;
Print(a, " ", b);
}
}
| D |
# FIXED
uart.obj: C:/Projects/embedded-software/src/uart.c
uart.obj: C:/Projects/embedded-software/include/uart.h
uart.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/stdint.h
uart.obj: C:/ti/ccsv8/tools/compiler/ti-cgt-msp430_18.1.4.LTS/include/sys/stdint.h
uart.obj: C:/ti/ccsv8/tools/compiler/ti-cgt... | D |
package android.app.backup;
import android.os.ParcelFileDescriptor;
/**
* Provides the interface through which a {@link BackupAgent} writes entire files
* to a full backup data set, via its {@link BackupAgent#onFullBackup(FullBackupDataOutput)}
* method.
*/
public class FullBackupDataOutput {
// Currently a n... | D |
a person who habitually pretends to be something he is not
a person who poses for a photographer or painter or sculptor
a particularly difficult or baffling question or problem
| D |
module crypto.wnaf;
/**
* This structure allows to do scalar*point multiplication.
*
* While this multiplier isn't as fast as Generator, but doesn't
* require heavy precomputation, so it is well suited to multiply
* points which aren't going to be reused often.
*
* It is hardened against side channel attack so ... | D |
module grain.cl.allocator;
import grain.tensor : Opt;
import grain.cl.testing;
import grain.cl.device : ClDevice;
import grain.dpp.cl;
struct ClMem
{
@nogc nothrow:
cl_mem ptr;
size_t length;
alias ptr this;
}
struct ClMallocator
{
Opt opt;
alias opt this;
/// device indicator
en... | D |
// **********************************************
// B_GiveTradeInventory
// --------------------
// Verteiler. Aufruf aller B_GiveTradeInv-Befehle
// **********************************************
func void B_GiveTradeInv (var C_NPC slf)
{
//********************************************************************
// H... | D |
/home/gunk/Documents/therustbook/guessing_game/target/debug/build/libc-a1fcfd5405a3b144/build_script_build-a1fcfd5405a3b144: /home/gunk/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.62/build.rs
/home/gunk/Documents/therustbook/guessing_game/target/debug/build/libc-a1fcfd5405a3b144/build_script_build-a1fcfd5... | D |
/**
* Poodinis Dependency Injection Framework
* Copyright 2014-2016 Mike Bierlee
* This software is licensed under the terms of the MIT license.
* The full terms of the license can be found in the LICENSE file.
*/
import poodinis;
import std.exception;
version(unittest) {
interface Fruit {
string getShape()... | D |
/home/zbf/workspace/git/RTAP/target/debug/build/nom-92039a9651ed75fc/build_script_build-92039a9651ed75fc: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/nom-4.2.3/build.rs
/home/zbf/workspace/git/RTAP/target/debug/build/nom-92039a9651ed75fc/build_script_build-92039a9651ed75fc.d: /home/zbf/.cargo/re... | D |
#!/usr/bin/env dub
/+dub.sdl:
dependency "dmd" path="../.."
+/
import std.stdio;
// test frontend
void main()
{
import dmd.frontend;
import std.algorithm : canFind, each;
import std.file : remove, tempDir, fwrite = write;
import std.format : format;
import std.path : buildPath;
initDMD;
fi... | D |
import std.stdio;
uint getFour ()
{
auto getTwo ()
{
return 1 + 1;
}
return getTwo () + getTwo ();
}
void main ()
{
import core.stdc.stdlib : exit;
writeln ("Four: ", getFour ());
exit (4);
}
unittest
{
writeln ("TEST");
import core.stdc.stdlib : exit;
import second... | D |
// This file lists D routines required for coding UVM
//
//------------------------------------------------------------------------------
// Copyright 2012-2014 Coverify Systems Technology
// All Rights Reserved Worldwide
//
// Licensed under the Apache License, Version 2.0 (the
// "License"); you may not use thi... | D |
instance DIA_Sarah_EXIT(C_Info)
{
npc = VLK_470_Sarah;
nr = 999;
condition = DIA_Sarah_EXIT_Condition;
information = DIA_Sarah_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Sarah_EXIT_Condition()
{
return TRUE;
};
func void DIA_Sarah_EXIT_Info()
{
B_EquipTrader(self);
AI_StopProce... | D |
/**
* Authors: Szabo Bogdan <szabobogdan@yahoo.com>
* Date: 3 29, 2015
* License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
* Copyright: Public Domain
*/
module vibedav.davresource;
import vibedav.prop;
import vibe.core.log;
import vibe.core.file;
import vibe.inet.mim... | D |
instance Mod_7059_DMR_Daemonenritter_MT (Npc_Default)
{
// ------ NSC ------
name = "Dämonenritter";
guild = GIL_KDF;
id = 7059;
voice = 13;
flags = 0;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 5);
// ------ Kampf-Ta... | D |
module org.eclipse.swt.accessibility.all;
public import org.eclipse.swt.accessibility.ACC;
public import org.eclipse.swt.accessibility.Accessible;
public import org.eclipse.swt.accessibility.AccessibleActionAdapter;
public import org.eclipse.swt.accessibility.AccessibleActionEvent;
public import org.eclipse.swt.access... | D |
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/build/num-bigint-49fcda9088b9dadb/build_script_build-49fcda9088b9dadb: /Users/kirstenrichard/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6/build.rs
/Users/kirstenrichard/Desktop/substrate-moloch-dao/target/release/build/num-bigint-49f... | D |
/*
* DSFML - The Simple and Fast Multimedia Library for D
*
* Copyright (c) 2013 - 2017 Jeremy DeHaan (dehaan.jeremiah@gmail.com)
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the
* use of this software.
... | D |
module ast.loops;
import ast.base, ast.scopes, ast.vardecl, ast.conditionals, ast.parse, ast.fun;
import ast.iterator, ast.int_literal, ast.fold, ast.tuples, ast.tuple_access;
// TODO: come up with a way to emit guards for a jump. this is necessary for continue/break to work correctly.
interface Breakable {
Stuple... | D |
module irc.irc;
public import irc.utils;
public import irc.config;
public import irc.events;
import std.regex;
import std.string;
import irc.exceptions;
/**
* Primary class for interacting with an IRC server
* Standards: Conforms to RFC 2812
* See_Also: <href>http://tools.ietf.org/html/rfc2812</href>
* Authors: ... | 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_28_MobileMedia... | D |
/**
* CodeView 4 symbolic debug info generation
*
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1984-1995 by Symantec
* Copyright (C) 2000-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://... | D |
/Users/sanshitsagar/Desktop/RustOS/target/x86_64-blog_os/debug/deps/rlibc-056c24a6fc68b2a1.rmeta: /Users/sanshitsagar/.cargo/registry/src/github.com-1ecc6299db9ec823/rlibc-1.0.0/src/lib.rs
/Users/sanshitsagar/Desktop/RustOS/target/x86_64-blog_os/debug/deps/librlibc-056c24a6fc68b2a1.rlib: /Users/sanshitsagar/.cargo/reg... | D |
module os.windows;
version (Windows){public import rt.core.os.windows;}
else{ static assert(0);} // Windows only
| D |
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug/Charts.build/Objects-normal/x86_64/HorizontalBarChartView.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/ios/shoanaorigin2/... | D |
/home/knoldus/IdeaProjects/user_service/target/debug/deps/liblog-cca170c9b2b372cd.rlib: /home/knoldus/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.6/src/lib.rs /home/knoldus/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.6/src/macros.rs /home/knoldus/.cargo/registry/src/github.com-1ecc6299db9ec823/l... | D |
/*******************************************************************************
copyright: Copyright (c) 2004 Kris Bell. All rights reserved
license: BSD style: $(LICENSE)
version: Initial release: January 2006
author: Kris
*******************************... | D |
/Users/monradajuycharoen/Desktop/DUP/Test2/build/Pods.build/Debug-iphonesimulator/SwiftyOnboard.build/Objects-normal/x86_64/SwiftyOnboardPage.o : /Users/monradajuycharoen/Desktop/DUP/Test2/Pods/SwiftyOnboard/SwiftyOnboard/SwiftyOnboard.swift /Users/monradajuycharoen/Desktop/DUP/Test2/Pods/SwiftyOnboard/SwiftyOnboard/Sw... | D |
module ws.gui.scroller;
import
std.math,
std.algorithm,
std.conv,
ws.time,
ws.gui.base;
class Scroller: Base {
double scroll = 0;
double scrollSpeed = 0;
double frameTime;
double frameLast;
override void resize(int[2] size){
super.resize(size);
update;
}
void update(){
if(!children.length)
... | D |
/// Generate by tools
module org.restlet.engine.io.BioUtils;
import java.lang.exceptions;
public class BioUtils
{
public this()
{
implMissing();
}
}
| D |
module android.java.android.animation.AnimatorSet;
public import android.java.android.animation.AnimatorSet_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!AnimatorSet;
import import6 = android.java.android.animation.AnimatorSet;
import import3 = android.java.java.util.ArrayList;
import import... | D |
module org.eclipse.swt.internal.mozilla.nsIDOMDOMImplementation;
import org.eclipse.swt.internal.mozilla.Common;
import org.eclipse.swt.internal.mozilla.nsID;
import org.eclipse.swt.internal.mozilla.nsISupports;
import org.eclipse.swt.internal.mozilla.nsIDOMDocumentType;
import org.eclipse.swt.internal.mozilla.nsIDOM... | D |
instance MIL_3110_ANDRE(Npc_Default)
{
name[0] = "Лорд Андре";
guild = GIL_PAL;
id = 3110;
voice = 8;
flags = 0;
npcType = npctype_main;
aivar[93] = TRUE;
aivar[AIV_ToughGuy] = TRUE;
aivar[AIV_ToughGuyNewsOverride] = TRUE;
aivar[AIV_IGNORE_Murder] = TRUE;
aivar[AIV_IGNORE_Theft] = TRUE;
aivar[AIV_IGNORE_Sh... | D |
/**
* Copyright © Yurai Web Framework 2021
* License: MIT (https://github.com/YuraiWeb/yurai/blob/main/LICENSE)
* Author: Jacob Jensen (bausshf)
*/
module yurai.views.viewresult;
public final class ViewResult
{
private:
string _content;
string _contentType;
public:
final:
this(string content, string conte... | D |
/Users/admin/Desktop/TMS_Kostya/TMSrepo/test/HW9_1_Kostya/DerivedData/HW9_1_Kostya/Build/Intermediates.noindex/HW9_1_Kostya.build/Debug-iphonesimulator/HW9_1_Kostya.build/Objects-normal/x86_64/AppDelegate.o : /Users/admin/Desktop/TMS_Kostya/TMSrepo/test/HW9_1_Kostya/HW9_1_Kostya/SceneDelegate.swift /Users/admin/Desktop... | D |
a male singer with a voice above that of a tenor
the highest adult male singing voice
of or being the highest male voice
| D |
/*
TEST_OUTPUT:
---
fail_compilation/fail97.d(11): Error: pragma `lib` is missing a terminating `;`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=151
import std.stdio;
pragma(lib,"ws2_32.lib")//;
class bla{}
void main(){}
| D |
/*
Copyright (c) 2013-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 |
; 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 |
# FIXED
PROFILES/gattservapp_util.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Projects/ble/Profiles/GATT/gattservapp_util.c
PROFILES/gattservapp_util.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Components/ble/include/bcomdef.h
PROFILES/gattservapp_util.obj: C:/ti/simplelink/ble_cc26xx_2_01_01_44627/Components/os... | D |
module core.dto.common;
enum Player : int {
A = 1,
B = 2,
C = 4 };
enum Cell : int {
None = 0,
A = 1,
B = 2,
C = 4,
AllMighty = 7,
Nothing = -1 };
struct ShuttingDown {}
struct Finished {}
struct Position {
int x;
int y;
bool opEquals(Position arg) {
return this.x == arg.x
... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Copyright: Copyright (C) 1999-2019 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo... | D |
module game.model.cache;
/* PhysicsCache (former name: StateManager) holds many states, and knows when
* to auto-save. Feed the StateManager with the current state all the time,
* feed to function autoSave(). That will nop often.
*/
import std.algorithm;
import std.range;
import std.typecons;
import core.memory; /... | D |
/** Fundamental operations for arbitrary-precision arithmetic
*
* These functions are for internal use only.
*/
/* Copyright Don Clugston 2008 - 2010.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENS... | D |
/Users/Yowa/WorkSpace/Pokedex/Build/Intermediates/Pokedex.build/Debug/Fluent.build/Objects-normal/x86_64/Migration.o : /Users/Yowa/WorkSpace/Pokedex/Packages/Fluent-1.0.0/Sources/Fluent/Database/Database.swift /Users/Yowa/WorkSpace/Pokedex/Packages/Fluent-1.0.0/Sources/Fluent/Database/Driver.swift /Users/Yowa/WorkSpace... | D |
module xf.rt.Misc;
private {
import xf.omg.core.LinearAlgebra : vec3, vec3ub, vec2i;
import xf.omg.core.CoordSys : CoordSys;
import tango.io.device.File : FileConduit = File;
import tango.io.stream.DataFile: DataFileOutput;
}
void writeTGA(vec3ub delegate(int x, int y) data, vec2i origin, vec2i size,... | D |
func void B_ClearFMC()
{
B_KillNpc(SLD_750_Soeldner);
B_KillNpc(SLD_751_Soeldner);
B_KillNpc(SLD_752_Okyl);
B_KillNpc(SLD_753_Baloro);
B_KillNpc(SLD_755_Soeldner);
B_KillNpc(SLD_756_Soeldner);
B_KillNpc(SLD_757_Soeldner);
B_KillNpc(SLD_758_Soeldner);
B_KillNpc(SLD_759_Soeldner);
B_KillNpc(SLD_760_Soeldner);
... | D |
instance VLK_6001_mythrilarbeiter (Npc_Default)
{
// ------ NSC ------
name = "Arbeiter";
guild = GIL_VLK;
id = 6001;
voice = 13;
flags = 0; //NPC_FLAG_IMMORTAL oder 0
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 1); //setzt Attrib... | 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="completeClass.notation#_83_9kCRyEe... | D |
/**
* This module provides OS specific helper function for DLL support
*
* Copyright: Copyright Digital Mars 2010 - 2012.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Authors: Rainer Schuetze
* Source:... | D |
/Users/kodainakamura/.go/src/github.com/kdnk/rust_introduction/src/ch07_ownership/target/debug/examples/toy_vec_01-12b1e87826ee375b: examples/toy_vec_01.rs
/Users/kodainakamura/.go/src/github.com/kdnk/rust_introduction/src/ch07_ownership/target/debug/examples/toy_vec_01-12b1e87826ee375b.d: examples/toy_vec_01.rs
exam... | D |
/++
A sum type for modern D.
This module provides [SumType], an alternative to `std.variant.Algebraic` with
[match|improved pattern-matching], full attribute correctness (`pure`, `@safe`,
`@nogc`, and `nothrow` are inferred whenever possible), and no dependency on
runtime type information (`TypeInfo`).
License: MIT
A... | 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.tree.Tree;
/**
* The basic notion of a tree has a parent, a payload, and a list of children.
... | D |
/home/bigdata/Documents/projects/snake_game/target/rls/debug/deps/snake_game-62a2687ac37212b5.rmeta: src/main.rs
/home/bigdata/Documents/projects/snake_game/target/rls/debug/deps/snake_game-62a2687ac37212b5.d: src/main.rs
src/main.rs:
| D |
/*
* types.d
*
* This module defines common language types.
*
*/
module runtime.types;
// Figure out the size of a pointer
static if ((ubyte*).sizeof == 8) {
version = Arch64;
}
else static if ((ubyte*).sizeof == 4) {
version = Arch32;
}
// Pointer sizes
version(Arch32) {
alias uint size_t;
alias int ptrdif... | D |
// Copyright © 2011, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/charge/charge.d (GPLv2 only).
module charge.core;
import charge.sys.properties;
enum coreFlag
{
CTL = (1 << 0),
GFX = (1 << 1),
SFX = (1 << 2),
NET = (1 << 3),
PHY = (1 << 4),
AUTO = (1 << 5),
}
/**
* Get a new ... | D |
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/Socks.build/Objects-normal/x86_64/SynchronousUDPServer.o : /Users/kimhyewon/Documents/Server/tennis/Packages/Socks-1.2.0/Sources/Socks/Socks.swift /Users/kimhyewon/Documents/Server/tennis/Packages/Socks-1.2.0/Sources/Socks/SynchronousTCPServer.swift /Use... | D |
// URL: https://atcoder.jp/contests/abc110/tasks/abc110_a
import std.algorithm, std.container, std.conv, std.math, std.range, std.typecons, std.stdio, std.string;
auto rdsp(){return readln.splitter;}
void pick(R,T)(ref R r,ref T t){t=r.front.to!T;r.popFront;}
void pickV(R,T...)(ref R r,ref T t){foreach(ref v;t)pick(r... | D |
module menu.browser.select;
/* class BrowserHighlightSelect
*
* Guarantee for all inherited classes: onFileHighlight will be called
* for every file on which possibly on_file_select could be called later.
* Whenever on_file_select is called, onFileHighlight has been called
* on the same filen... | D |
/*
* Copyright 2018-present Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "l... | D |
@compute(CompileFor.hostAndDevice) module dcompute.std.index;
import ldc.dcompute;
private import ocl = dcompute.std.opencl.index;
private import cuda = dcompute.std.cuda.index;
/*
Index Terminology
DCompute CUDA OpenCL
GlobalDimension.xyz gridDim*blockDim get... | D |
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 3.0.0
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ------------------------------... | D |
/Users/devinmcgloin/exercism/rust/leap/target/debug/leap-1b0acf439bd92215: tests/leap.rs
/Users/devinmcgloin/exercism/rust/leap/target/debug/leap-1b0acf439bd92215.d: tests/leap.rs
| D |
module android.java.java.security.Principal;
public import android.java.java.security.Principal_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Principal;
import import1 = android.java.java.lang.Class;
| D |
/Users/jonb/Documents/GitHub/rustapps/twitterplotter/target/debug/build/proc-macro2-4b2b336b51802001/build_script_build-4b2b336b51802001: /Users/jonb/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/build.rs
/Users/jonb/Documents/GitHub/rustapps/twitterplotter/target/debug/build/proc-macro2-4b2b336b5... | D |
instance ItSe_XardasNotfallBeutel_MIS(C_Item)
{
name = "Very Strange Leather Satchel";
mainflag = ITEM_KAT_NONE;
flags = ITEM_MULTI | ITEM_MISSION;
value = 0;
visual = "ItMi_Pocket.3ds";
scemeName = "MAPSEALED";
material = MAT_METAL;
on_state[0] = Use_XardasNotfallBeutel;
description = name;
text[0] = "";
t... | D |
interface Node {
type: string;
start: number;
end: number;
}
interface IdNode extends Node {
name: "window";
}
interface KeyNode extends Node {
name: "clickLog"
}
// 普通标示符
interface IdentifierNode extends Node {
name: string;
}
// jsx标示符
interface JSXIdentifierNode extends IdentifierNode {}
... | D |
/**
* Compiler implementation of the
* $(LINK2 http://www.dlang.org, D programming language).
*
* Compute common subexpressions for non-optimized builds.
*
* Copyright: Copyright (C) 1985-1995 by Symantec
* Copyright (C) 2000-2021 by The D Language Foundation, All Rights Reserved
* Authors: $... | D |
/**
* Copyright: Copyright (c) 2011 Jacob Carlborg. All rights reserved.
* Authors: Jacob Carlborg
* Version: Initial created: Jan 19, 2011
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
*/
module dvm.commands.DvmInstall;
import std.algorithm : each, filter, find, map;
import... | D |
/Users/cansoykarafakili/Desktop/Hello/build/Intermediates/Hello.build/Debug/Node.build/Objects-normal/x86_64/FuzzyConverter.o : /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/node.git-9175390252000121167/Sources/Node/StructuredData/StructuredData.swift /Users/cansoykarafakili/Desktop/Hello/.build/checkouts/node... | D |
module android.java.java.util.concurrent.Semaphore_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.lang.Class_d_interface;
import import0 = android.java.java.util.concurren... | D |
module arraylist;
//TODO REMOVE ME, USE std.container.array instead
public class ArrayList(V) {
V[] array;
private int lastIndex;
/**
* Constructs an ArrayList with the default starting size,
* which is currently 10.
*/
public this() {
this(10);
}
/**
... | D |
//---------------------------------------------------------------------
// Item Werte
//---------------------------------------------------------------------
const int Value_Goldnugget = 18;
const int Value_WhitePearl = 120;
const int Value_GreatPearl = 500;
const int Value_Addon_Joint_01 = 60;
//--------... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.