code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/* ----------------------------------------------------------------------------
* 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 |
/**
* A color representation that can behave either as in premultiplied alpha
* blending or as in conventional alpha blending.
*
* License: $(LINK2 http://opensource.org/licenses/zlib-license, Zlib License).
*
* Authors: Leandro Motta Barros
*/
module fewdee.color;
import std.math;
import allegro5.allegro;
/... | D |
/Users/augustomachado/github/rust_sudoku/sudoku/target/debug/deps/float-a67b4ba12596742d.rmeta: /Users/augustomachado/.cargo/registry/src/github.com-1ecc6299db9ec823/piston-float-1.0.0/src/lib.rs
/Users/augustomachado/github/rust_sudoku/sudoku/target/debug/deps/libfloat-a67b4ba12596742d.rlib: /Users/augustomachado/.ca... | 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 |
//T compiles:yes
//T lexer:yes
//T parser:yes
//T semantic:yes
//T retval:84
//T Tests simple literal expressions.
int main()
{
return 42 + 21 * 2;
}
| D |
/Users/mehulghoderao/Documents/Miscelleneous/Rust/Example/target/debug/deps/Example-b7c8b4a859f4df1f: src/main.rs
/Users/mehulghoderao/Documents/Miscelleneous/Rust/Example/target/debug/deps/Example-b7c8b4a859f4df1f.d: src/main.rs
src/main.rs:
| D |
/**
* Macros:
* WIKI = Phobos/StdCompiler
*/
/**
* Identify the compiler used and its various features.
* Authors: Walter Bright, www.digitalmars.com
* License: Public Domain
*/
module std.compiler;
const
{
/// Vendor specific string naming the compiler, for example: "Digital Mars D".
string name =... | D |
module dagon.graphics.genericmaterial;
import dlib.core.memory;
import dlib.math.vector;
import dlib.image.color;
import derelict.opengl.gl;
import derelict.opengl.glext;
import dagon.core.ownership;
import dagon.graphics.material;
import dagon.graphics.rc;
enum int SF_None = 0;
enum int SF_PCF3 = 1;
enum int SF_PCF5... | D |
/substrate-node-template/target/release/deps/twox_hash-7ddf2a7dc63a4b4b.rmeta: /root/.cargo/registry/src/github.com-1ecc6299db9ec823/twox-hash-1.5.0/src/lib.rs /root/.cargo/registry/src/github.com-1ecc6299db9ec823/twox-hash-1.5.0/src/sixty_four.rs /root/.cargo/registry/src/github.com-1ecc6299db9ec823/twox-hash-1.5.0/sr... | D |
/* -------------------- CZ CHANGELOG -------------------- */
/*
v1.01:
(6x) CanLearnMagicCircleNext_ABCZ - upraveny podmínky učení se magických kruhů (na žádost hráčů)
*/
instance DMT_12200_WAKON_EXIT(C_Info)
{
npc = dmt_12200_wakon;
nr = 999;
condition = dmt_12200_wakon_exit_condition;
information = dmt_122... | D |
module dscord.types.channel;
import std.stdio,
std.format,
std.variant,
std.algorithm,
core.vararg;
import dscord.types,
dscord.voice,
dscord.client;
alias ChannelMap = ModelMap!(Snowflake, Channel);
alias PermissionOverwriteMap = ModelMap!(Snowflake, PermissionOverwrite);
... | D |
module src.gui.Compiler_UI;
public {
import qt.gui.QTextEdit;
import qt.gui.QWidget;
}
mixin QT_BEGIN_NAMESPACE;
template Compiler_UI() {
private void setupUi(QTextEdit parent) {
parent.setReadOnly(true);
}
}
struct Compiler {
mixin Compiler_UI;
}
mixin QT_END_NAMESPACE; | D |
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/tokio_timer-5ede4e11be016a55.rmeta: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-timer-0.2.11/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/reg... | D |
// Written in the D programming language
// License: http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0
import std.stdio;
import core.stdc.stdlib;
enum CSI = "\033[";
enum RESET=CSI~"0m";
enum BOLD=CSI~"1m";
enum BLACK =CSI~"30m";
enum RED =CSI~"31m";
enum GREEN=CSI~"32m";
enum YELLOW=CSI~"33m";
enum BLUE=CSI~"3... | D |
module deimos.cef1.url;
// Copyright (c) 2012 Marshall A. Greenblatt. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright... | D |
/home/bahroz/hell-rocket/target/debug/deps/aead-2571b5f35a8663b4.rmeta: /home/bahroz/.cargo/registry/src/github.com-1ecc6299db9ec823/aead-0.2.0/src/lib.rs
/home/bahroz/hell-rocket/target/debug/deps/libaead-2571b5f35a8663b4.rlib: /home/bahroz/.cargo/registry/src/github.com-1ecc6299db9ec823/aead-0.2.0/src/lib.rs
/home/... | D |
import simulation_state2;
public struct ModifyTreeNode
{
// States before and after calling the modify function
// NOTE: These states will often match other than dice being removed for reroll.
SimulationState before;
SimulationState after;
int reroll_count = 0;
// From this point forward (comp... | D |
module cl.program;
import cl.all;
final class CLProgram {
private:
CLContext context;
CLDevice device;
cl_program programId;
string filename;
CLKernel[] kernels;
bool _compiled;
string _compilationMessage;
public:
cl_program id() { return programId; }
bool compiled() { return _compiled; }
string... | D |
module gfm.common.all;
public import gfm.common.log,
gfm.common.memory,
gfm.common.alignedbuffer,
gfm.common.queue,
gfm.common.lockedqueue,
gfm.common.structpool,
gfm.common.text,
gfm.common.ini;
| D |
void main() {
auto ip = readAs!(int[]), N = ip[0], A = ip[1], B = ip[2], C = ip[3], D = ip[4];
}
// ===================================
import std.stdio;
import std.string;
import std.functional;
import std.algorithm;
import std.range;
import std.traits;
import std.math;
import std.container;
import std.bigint;
im... | D |
/home/hunain/Desktop/IOTQ1/mysql_project/target/debug/deps/matches-b1903b662ca90c7e.rmeta: /home/hunain/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs
/home/hunain/Desktop/IOTQ1/mysql_project/target/debug/deps/libmatches-b1903b662ca90c7e.rlib: /home/hunain/.cargo/registry/src/github.com-1ecc6299d... | D |
var int B_RAVENSESCAPEINTOTEMPELAVI_OneTime;
func void b_ravensescapeintotempelavi()
{
if(B_RAVENSESCAPEINTOTEMPELAVI_OneTime == FALSE)
{
PlayVideoEx("PORTAL_RAVEN.BIK",TRUE,FALSE);
RavenIsInTempel = TRUE;
Log_CreateTopic(TOPIC_Addon_RavenKDW,LOG_MISSION);
Log_SetTopicStatus(TOPIC_Addon_RavenKDW,LOG_Running... | D |
module dmagick.c.feature;
import dmagick.c.exception;
import dmagick.c.image;
import dmagick.c.magickVersion;
extern(C)
{
struct ChannelFeatures
{
double[4]
angular_second_moment,
contrast,
correlation,
variance_sum_of_squares,
inverse_difference_moment,
sum_average,
sum_variance,
sum_entr... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag12312.d(10): Error: variable `diag12312.main.arr` `void[16]` does not have a default initializer
---
*/
void main()
{
void[16] arr;
}
| D |
/**
* Copyright: Enalye
* License: Zlib
* Authors: Enalye
*/
module primidi.script.font;
import std.conv;
import atelier, grimoire;
import primidi.script.util;
package void loadFontLibrary(GrLibrary library) {
GrType fontType = library.addForeign("Font");
GrType trueTypeFontType = library.addForeign("Tru... | D |
instance ItAr_BloodArmor(C_Item)
{
name = "Zbroj krve";
mainflag = ITEM_KAT_ARMOR;
flags = ITEM_MISSION;
protection[PROT_EDGE] = 270;
protection[PROT_BLUNT] = 250;
protection[PROT_POINT] = 190;
protection[PROT_FIRE] = 60;
protection[PROT_MAGIC] = 120;
protection[PROT_FLY] = 90;
value = protection[PROT_MAGIC];... | D |
func void B_Say_FleeReason()
{
var int rnd;
rnd = Hlp_Random(3);
if(rnd == 0)
{
B_Say_Overlay(self,self,"$RUNAWAY");
}
else if((rnd == 1) && (self.voice != 6) && (self.voice != 9) && (self.voice != 11) && (self.voice != 12) && (self.voice != 14))
{
B_Say_Overlay(self,self,"$SPAREME");
}
else
{
B_Say_Ov... | D |
a fencing sword with a v-shaped blade and a slightly curved handle
a stout sword with a curved blade and thick back
cut or injure with a saber
kill with a saber
| D |
/*
* Copyright (C) 2016 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 app... | D |
module ppl.ast.expr.Index;
import ppl.internal;
/**
* Index
* Expression // index
* Expression // ArrayType | Tuple | Pointer
*/
final class Index : Expression {
/// ASTNode
override bool isResolved() {
if(!expr().isResolved()) return false;
if(isArrayIndex()) {
retur... | D |
fill to satisfaction
overeat or eat immodestly
supplied (especially fed) to satisfaction
| D |
// Generated by gnome-h2d.rb <http://github.com/ddude/gnome.d>.
module gio.dbusconnection;
/* GDBus - GLib D-Bus Library
*
* Copyright (C) 2008-2010 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published... | 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_0_agm-66215744... | D |
module android.java.android.content.pm.VersionedPackage_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.android.os.Par... | D |
module coinmarketcap_api;
public import coinmarketcap_api.coinmarketcap_api;
package unittest {
import std.json;
import std.stdio;
auto cmc = new CoinmarketcapAPI ("api key");
try {
auto f = File("test.txt", "w");
f.writeln("@@", "getMetadata", "@@");
f.writeln(`==getMetadat... | D |
/Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/build/Ingenium.build/Release-iphonesimulator/Ingenium.build/Objects-normal/i386/DesignableTabBarController.o : /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/Ingenium/TutorDetailVC.swift /Users/varun/Documents/2015Desktop/SwiftAdventures/Ingenium/... | D |
/// NOTE: If you're using MySQL client library v5.1 or greater,
/// you must pass this to dmd: -version=MySQL_51
/// This is important - otherwise you will see bizarre segfaults!
module arsd.mysql;
version(MySQL_51) {
// we good
} else version(Less_Than_MySQL_51) {
// we good
} else
pragma(msg, "NOTE: If you... | D |
/**
Lockbit Support
Introduction:
The Lockbit API allows a user to specify the lockbit settings for the
specific AVR device they are compiling for. These lockbit settings will be
placed in a special section in the ELF output file, after linking.
Programming tools can take advantage of the lockbit information... | D |
// Copyright Michael D. Parker 2018.
// 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 bindbc.opengl.bind.dep.dep11;
import bindbc.loader;
import bindbc.opengl.bind.types;
version(GL... | D |
/Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/x86_64-apple-macosx10.10/debug/Vapor.build/View/ViewData.swift.o : /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build/checkouts/vapor.git-5492988889259800272/Sources/Vapor/JSON/HTTP/Message+JSON.swift /Users/AleixDiaz/Desktop/VaporProject/LaSalleChat/.build... | D |
import std.stdio;
import std.format;
struct Point {
int x;
int y;
void toString(void delegate(const(char)[]) sink) const {
sink.formattedWrite!"(%s,%s)"(x, y);
}
}
struct Color {
ubyte r;
ubyte g;
ubyte b;
void toString(void delegate(const(char)[]) sink) const {
sink.formattedWrite!"RGB:%s,%s,%s... | D |
instance DMT_1299_OberDementor_DI (Npc_Default)
{
// ------ NSC ------
name = "Schwarzmagier";
guild = GIL_DMT;
id = 1299;
voice = 09;
flags = 0;
npctype = NPCTYPE_MAIN;
// ------ Aivars ------
aivar[AIV_EnemyOverride] = TRUE;
aivar[AIV_MagicUser] = MAGIC_ALWAYS;
bodyStat... | D |
module dmagick.c.splayTree;
import dmagick.c.magickType;
import dmagick.c.magickVersion;
extern(C)
{
struct SplayTreeInfo {}
MagickBooleanType AddValueToSplayTree(SplayTreeInfo*, const(void)*, const(void)*);
MagickBooleanType DeleteNodeByValueFromSplayTree(SplayTreeInfo*, const(void)*);
MagickBooleanType DeleteN... | D |
/*
* Copyright (C) 2008 by Steven Schveighoffer
* all rights reserved.
*
* Examples of how lists can be used.
*
* Currently only implemented for Tango.
*/
import dcollections.ArrayList;
import dcollections.LinkList;
import tango.io.Stdout;
void print(Iterator!(int) s, char[] message)
{
Stdout(message ~ " ["... | D |
/Users/azimin/Downloads/Hello2/.build/debug/Cookies.build/Cookie+Serialize.swift.o : /Users/azimin/Downloads/Hello2/.build/checkouts/engine.git-3311994267206676365/Sources/Cookies/Cookie.swift /Users/azimin/Downloads/Hello2/.build/checkouts/engine.git-3311994267206676365/Sources/Cookies/Cookie+BytesConvertible.swift /U... | D |
/afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/JetCalibTools/obj/EtaJESCorrection.o /afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/JetCalibTools/obj/EtaJESCorrection.d : /afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramewo... | D |
/Users/MohamedNawar/Desktop/Task/build/Pods.build/Debug-iphonesimulator/CryptoSwift.build/Objects-normal/x86_64/UInt8+Extension.o : /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/ChaCha20.swift /Users/MohamedNawar/Desktop/Task/Pods/CryptoSwift/Sources/CryptoSwift/SHA1.swift /Users/MohamedNawar/De... | D |
func void B_AssessThreat()
{
PrintDebugNpc(PD_ZS_FRAME,"B_AssessThreat");
if(Npc_CanSeeNpc(self,other))
{
PrintDebugNpc(PD_ZS_Check,"...NSC kann Bedrohung sehen!");
if(Npc_GetAttitude(self,other) == ATT_FRIENDLY)
{
B_SayOverlay(self,other,"$WATCHYOURAIM");
Npc_SetTempAttitude(self,ATT_NEUTRAL);
}
els... | D |
const int SPL_Cost_Firerain = 150;
const int SPL_Damage_FireRain = 500;
instance Spell_FireRain(C_Spell_Proto)
{
time_per_mana = 0;
damage_per_level = SPL_Damage_FireRain;
damagetype = DAM_MAGIC;
targetCollectAlgo = TARGET_COLLECT_NONE;
};
func int Spell_Logic_Firerain(var int manaInvested)
{
if(Npc_GetActiveS... | D |
/**
original of this module is by rsinfu (http://gist.github.com/598659)
*/
module meta;
private import std.conv : to;
private import std.string;
private import std.traits;
@safe:
/**
*/
template Sequence(seq...)
{
alias seq Sequence;
}
//-------------------------------------------------... | D |
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Crypto.build/Cipher/OpenSSLCipherAlgorithm.swift.o : /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/Crypto/Utilities/Base32.swift /Users/nice/HelloWord/.build/checkouts/crypto.git--3937561158972323303/Sources/Crypto/RSA/RSA.swif... | D |
module deepmagic.dom.complex.column;
import deepmagic.dom;
class ColumnElement : DivElement{
import std.conv;
int grid = 12;
this(int grid = 12){
super();
this.grid = grid;
this ~= new Sass("col-md-" ~ to!(string)(this.grid));
}
} | D |
/* Converted to D from gsl_matrix_float.h by htod
* and edited by daniel truemper <truemped.dsource <with> hence22.org>
*/
module auxc.gsl.gsl_matrix_float;
/* matrix/gsl_matrix_float.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistri... | D |
/home/ubuntu/Documents/rust_by_example/testing/target/debug/deps/testing-151a0e1b98aebb80.rmeta: src/main.rs
/home/ubuntu/Documents/rust_by_example/testing/target/debug/deps/testing-151a0e1b98aebb80.d: src/main.rs
src/main.rs:
| D |
instance DIA_Addon_Paul_EXIT(C_Info)
{
npc = BDT_1070_Addon_Paul;
nr = 999;
condition = DIA_Addon_Paul_EXIT_Condition;
information = DIA_Addon_Paul_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Addon_Paul_EXIT_Condition()
{
return TRUE;
};
func void DIA_Addon_Paul_EXIT_Info()
{
AI_... | D |
func void B_AssessUseMob()
{
var string detMob;
if(!Npc_IsPlayer(other))
{
return;
};
if(Wld_GetPlayerPortalGuild() >= GIL_NONE)
{
if(Npc_GetHeightToNpc(self,other) > PERC_DIST_INDOOR_HEIGHT)
{
return;
};
};
if(Wld_GetGuildAttitude(self.guild,other.guild) == ATT_FRIENDLY)
{
if(!Npc_IsDetectedMobO... | D |
# FIXED
TOOLS/onboard.obj: C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/blestack/common/cc26xx/onboard.c
TOOLS/onboard.obj: C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/blestack/inc/bcomdef.h
TOOLS/onboard.obj: C:/ti/simplelink_cc13x0_sdk_1_50_00_08/source/ti/blestack/osal/src/inc/comdef.h
TOOLS/onboard.obj: C... | D |
/**
...
Copyright: © 2012 Matthias Dondorff
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Matthias Dondorff
*/
module dub.utils;
import dub.internal.std.process;
import dub.internal.vibecompat.core.file;
import dub.internal.vibecompat.core.log;
import dub... | D |
/*
* texturesheet.d
*
* Copyright (c) 2021 David P Skluzacek
*/
module texturesheet;
@safe:
import std.string : toStringz;
import std.exception : enforce;
import sdl2.sdl,
sdl2.texture,
sdl2.renderer;
import util : IOException;
final class TextureRegion
{
private
{
Texture _textu... | D |
/Users/Polina/XcodeApp/diplom_prj/CoreML_test/build/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/DateFormatterTransform.o : /Users/Polina/XcodeApp/diplom_prj/CoreML_test/Pods/ObjectMapper/Sources/FromJSON.swift /Users/Polina/XcodeApp/diplom_prj/CoreML_test/Pods/ObjectMapper/Sources/ToJSON.s... | D |
module brakk.middleware.toolbar;
import std.stdio;
import vibe.d;
import brakk.http;
import brakk.middleware.base : Middleware;
class DebugToolbarMiddleware : Middleware
{
override void afterView(HTTPServerRequest req, HTTPServerResponse res)
{
/*res.renderCompat!(
"debugToolbar.dt"
)(req);*/
}
} | D |
module nbuff.pipe;
private:
import std.algorithm;
import std.array;
import std.conv;
import std.experimental.logger;
import std.exception;
import std.format;
import std.range;
import std.range.primitives;
import std.string;
import std.stdio;
import std.traits;
import std.zlib;
import std.datetime;
import std.socket;
i... | D |
/**
Copyright: Copyright (c) 2017-2018 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
module symbol;
import std.string : format;
import all;
///
enum SymbolClass : ubyte
{
c_function,
c_variable,
c_struct
}
///
enum SymbolFlags : ubyte
{
isInOrderedSco... | D |
#objdump: -s -j .data
#name: alpha fp
.*: file format .*
Contents of section .data:
0000 71a37909 4f930a40 5441789a cd4b881b q.y.O..@TAx..K..
0010 2a404f93 790971a3 789a5440 5441789a .@O.y.q.x.T@TAx.
0020 00000000 00000000 00000000 00000000 ................
| D |
/Users/phungdu/Documents/code/vapor/TILApp/Build/Intermediates/TILApp.build/Debug/Validation.build/Objects-normal/x86_64/EmailValidator.o : /Users/phungdu/Documents/code/vapor/TILApp/.build/checkouts/validation.git-4974132509114077291/Sources/Validation/Validatable.swift /Users/phungdu/Documents/code/vapor/TILApp/.buil... | D |
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.build/Utilities/FluentError.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/Fluent/Model/ID.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/fluent/Sources/... | D |
/Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/DerivedData/PayMe/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/NVActivityIndicatorView.build/Objects-normal/x86_64/NVActivityIndicatorViewable.o : /Users/eduardo.herrera/Desktop/Edu/Projects/iOS/PayMe/PayMe/Pods/NVActivityIndicatorView/NVActivi... | D |
module android.java.java.nio.file.ClosedDirectoryStreamException_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import1 = android.java.java.io.PrintStream_d_interface;
import import4 = android.java.j... | D |
gcdir$ (6) --- get current directory pathname 01/05/83
_C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n
integer function gcdir$ (path)
character path (ARB)
Library: vswtlb (standard Subsystem library)
_F_... | D |
E: c77, c151, c92, c110, c159, c205, c207, c220, c147, c176, c143, c1, c132, c153, c136, c38, c12, c150, c20, c105, c14, c235, c233, c33, c165, c18, c76, c126, c186, c152, c103, c19, c8, c208, c211, c125, c34, c115, c72, c74, c63, c180, c189, c194, c219, c4, c25, c116, c68, c60, c17, c182, c5, c183, c10, c154, c31, c17... | D |
print (2) --- easy to use semi-formatted print routine 01/07/83
_C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n
subroutine print (fd, fmt, a1, a2, ...)
file_des fd
character fmt (ARB)
untyped a1, a2, ...
... | D |
// Written in the D programming language.
module windows.distributedfilesystem;
public import windows.core;
public import windows.systemservices : PWSTR;
extern(Windows) @nogc nothrow:
// Enums
///Defines the set of possible DFS target priority class settings.
alias DFS_TARGET_PRIORITY_CLASS = int;
enum : int
{
... | D |
/home/user/Momir.Milutinovic/PerfectTemplate/.build/x86_64-unknown-linux/debug/PerfectLib.build/PerfectServer.swift.o : /home/user/Momir.Milutinovic/PerfectTemplate/.build/checkouts/PerfectLib.git-902226119893380327/Sources/PerfectLib/JSONConvertible.swift /home/user/Momir.Milutinovic/PerfectTemplate/.build/checkouts/P... | D |
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Settings.build/Config+Arguments.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/Setting... | D |
/run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/target/debug/deps/tokio_executor-d88e53e66291fde4.rmeta: /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-executor-0.1.8/src/lib.rs /run/media/andreby/Docs/GithubCodes/learn_rust/actix-demo/~/.carg... | D |
/**
* D header file for C99.
*
* $(C_HEADER_DESCRIPTION pubs.opengroup.org/onlinepubs/009695399/basedefs/_signal.h.html, _signal.h)
*
* Copyright: Copyright Sean Kelly 2005 - 2009.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accomp... | D |
module mage.log;
public import std.experimental.logger;
shared static this() {
// TODO Set some awesome default logger.
}
| D |
/Users/km/projects/stack-vm/.build/debug/stack_vm.build/Frame.swift.o : /Users/km/projects/stack-vm/Sources/Frame.swift /Users/km/projects/stack-vm/Sources/Stack.swift /Users/km/projects/stack-vm/Sources/main.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/x86_6... | D |
$(H2 Switch)
$(P
In a theory, no matter how complex is a choice, it can be handled with just $(CN if-else).
Of course, complex logic will require many $(CN if-else).
Note that $(CN if-else) syntax allows to "chain" blocks like this:
---
if ( Condition1 ) { Block1 }
else if ( Condition2 ) { Block2 }
else if ( Cond... | D |
module dpp.translation.macro_;
import dpp.from;
string[] translateMacro(in from!"clang".Cursor cursor,
ref from!"dpp.runtime.context".Context context)
@safe
in(cursor.kind == from!"clang".Cursor.Kind.MacroDefinition)
{
import dpp.translation.dlang: maybeRename;
import clang: Cu... | D |
module fcgi.stdio;
public import fcgi.app;
import std.format;
import std.traits;
import std.format : formattedWrite;
void writeln(S...)(S args)
{
write(args, '\n');
}
void writefln(S...)(in char[] fmt, S args)
{
writef(fmt, args);
request.stdout.put('\n');
}
void putc(char c)
{
request.stdout.put(c... | D |
act of pivoting 180 degrees, especially in a military formation
a major change in attitude or principle or point of view
turn, usually 180 degrees
change one's mind and assume the opposite viewpoint
| D |
// REQUIRED_ARGS: -o-
// PERMUTE_ARGS:
/***************** CatExp *******************/
/*
TEST_OUTPUT:
---
fail_compilation/nogc2.d(21): Error: cannot use operator `~` in `@nogc` function `nogc2.testCat`
fail_compilation/nogc2.d(22): Error: cannot use operator `~` in `@nogc` function `nogc2.testCat`
fail_compilation/n... | D |
/**
* Copyright © DiamondMVC 2018
* License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE)
* Author: Jacob Jensen (bausshf)
*/
module diamond.core.traits;
/// Creates a string to use with mixin that is an exact copy members of an enum
string createEnumAlias(T)(string name)
{
import std.traits : Enu... | D |
AL 5 7 i
AZ 5 2 i
AR 5 5 i
CA 5 1 i
CO 4 3 i
CT 1 10 i
DE 3 11 i
DC 3 10 i
FL 6 9 i
GA 5 8 i
ID 3 2 i
IL 3 6 i
IN 3 7 i
IA 3 5 i
KS 4 4 i
KY 4 7 i
LA 6 5 i
ME 0 12 i
MD 4 10 i
MA 1 11 i
MI 2 7 i
MN 2 5 i
MS 5 6 i
MO 4 5 i
MT 2 2 i
NE 3 4 i
NV 4 1 i
NH 0 11 i
NJ 2 10 i
NM 5 3 i
NY 1 9 i
NC 4 9 i
ND 2 3 i
OH 3 8 i
OK 5 4... | D |
import tango.io.Console;
import tango.net.InternetAddress;
import tango.net.device.Socket;
void main() {
auto site = new Socket;
site.connect (new InternetAddress("google.com",80)).write ("GET / HTTP/1.0\n\n");
Cout.stream.copy (site);
}
| D |
an electrical device used to introduce reactance into a circuit
(physics) any of several kinds of apparatus that maintain and control a nuclear reaction for the production of energy or artificial elements
| D |
/*
* 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 pango.fontset;
import pango.utils;
import pango.font;
import pango.c.font;
import pango.c.fontset;
import gobject;
import glib;
/**
* ... | D |
//import std.stdio;
//import core.stdc.stdio;
//import core.stdc.stdlib;
//import core.stdc.string;
import core.thread;
import pegged.grammar;
import std.conv: to;
mixin(grammar(`
M2Pkgs:
List < Elem* / " "*
Elem < Pkg / :Delim / :Parens
#Pkg <- identifier
Pkg <~ (Letter+ "/" Letter+... | D |
/*******************************************************************************
copyright: Copyright (c) 2004 Kris Bell. All rights reserved
license: BSD style: $(LICENSE)
version: Initial release: April 2004
author: Kris
***********... | D |
// https://issues.dlang.org/show_bug.cgi?id=17145
auto tuple(T...)(T t) {
struct Result {
T expand;
}
return Result(t);
}
void baz()
{
enum zoo = tuple(1, 2).expand; // Error: value of __tup1847 is not known at compile time
}
| D |
module dsymbol.builtin.symbols;
import dsymbol.symbol;
import dsymbol.builtin.names;
import dsymbol.string_interning;
import containers.ttree;
import std.experimental.allocator;
import std.experimental.allocator.mallocator;
import dparse.lexer;
/**
* Symbols for the built in types
*/
TTree!(DSymbol*, Mallocator, tr... | D |
/Users/lanussebaptiste/Desktop/unitTest/Build/Intermediates/unitTest.build/Debug-iphoneos/unitTest.build/Objects-normal/armv7/AppDelegate.o : /Users/lanussebaptiste/Desktop/unitTest/unitTest/ViewController.swift /Users/lanussebaptiste/Desktop/unitTest/unitTest/AppDelegate.swift /Applications/Xcode.app/Contents/Develope... | D |
module dcl.gl.context;
version(clglinterop):
import dcl.base;
import dcl.context;
import dcl.device;
import dcl.platform;
import dcl.event;
import dcl.commandqueue;
import dcl.gl.memory;
///
class CLGLContext : CLContext
{
protected:
///
CLGLMemory[] acquired_list;
package:
///
void registerAcqui... | D |
/*
* This file is part of gtkD.
*
* gtkD is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* gtkD is distribut... | D |
import std.stdio;
void main(){
int i = 10;
i !<> 1
}
| D |
instance VLK_516_Buddler(Npc_Default)
{
name[0] = NAME_Buddler;
npcType = npctype_ambient;
guild = GIL_VLK;
level = 2;
voice = 1;
id = 516;
attribute[ATR_STRENGTH] = 25;
attribute[ATR_DEXTERITY] = 20;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 94;
attribute[ATR_HITP... | D |
/Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SchedulerServices+Emulation.o : /Users/babaiholdings/Documents/AlchemintWalletiOS/AlchemintProject/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/babaiho... | D |
/Users/vincent/Documents/Projects/VincentProjets/rustLearning/greprs/target/debug/greprs-18894d77617b84a2: /Users/vincent/Documents/Projects/VincentProjets/rustLearning/greprs/src/lib.rs
| D |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the Qt Designer of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.