code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/**
* Compiler implementation of the D programming language
* http://dlang.org
*
* Copyright: Copyright (c) 1999-2016 by D Language Foundation, All Rights Reserved
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DMDSRC root/_longdouble.d)
*/
module ddmd.root.longdoub... | D |
INSTANCE Info_Mod_Vigonza_Hi (C_INFO)
{
npc = Mod_7572_OUT_Vigonza_EIS;
nr = 1;
condition = Info_Mod_Vigonza_Hi_Condition;
information = Info_Mod_Vigonza_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Vigonza_Hi_Condition()
{
if (Npc_KnowsInfo(hero, Info_Mod_Luis_Hi))
{
return 1;
};
};
FUNC ... | D |
very great
resembling an abyss in depth
| D |
int main(){
bool a;
bool b;
bool c;
a = false;
b = true;
c = a && b;
Print(c);
c = a || b;
Print(c);
c = !a;
Print(c);
} | D |
/home/juliobrz/Git/PixelCanvas/.build/x86_64-unknown-linux/debug/Core.build/Thread+Async.swift.o : /home/juliobrz/Git/PixelCanvas/.build/checkouts/core/Sources/Core/Data+Base64URL.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/core/Sources/Core/NestedData.swift /home/juliobrz/Git/PixelCanvas/.build/checkouts/cor... | D |
/*
* Hunt - A data validation for DLang based on hunt library.
*
* Copyright (C) 2015-2019, HuntLabs
*
* Website: https://www.huntlabs.net
*
* Licensed under the Apache-2.0 License.
*
*/
module hunt.validation.constraints.AssertFalse;
struct AssertFalse
{
string message="must be false";
... | D |
/Users/hashgard-01/rust/src/github.com/adao/target/release/build/crunchy-35a6264a7a76182e/build_script_build-35a6264a7a76182e: /Users/hashgard-01/.cargo/registry/src/github.com-1ecc6299db9ec823/crunchy-0.1.6/build.rs
/Users/hashgard-01/rust/src/github.com/adao/target/release/build/crunchy-35a6264a7a76182e/build_script... | D |
/**
* Implementation of associative arrays.
*
* Copyright: Copyright Digital Mars 2000 - 2010.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Walter Bright, Sean Kelly
*/
/* Copyright Digital Mars 2000 - 2010.
* Distributed under the Boost Software Licen... | D |
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header$
CONFIG=/etc/sensors3.conf
depend() {
need localmount
use logger lm_sensors
}
pidfile=/run/sensord.pid
command=/usr/sbin/sensord
command_args="--config-file ${CONFIG} ${SENSORD_OPT... | D |
module UnrealScript.Engine.AnimNodeBlend;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.AnimNodeBlendBase;
extern(C++) interface AnimNodeBlend : AnimNodeBlendBase
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass Stati... | D |
module vcg_ast_arraylength;
// REQUIRED_ARGS: -vcg-ast -o-
// PERMUTE_ARGS:
// POST_SCRIPT: compilable/extra-files/vcg-ast-arraylength-postscript.sh
void main()
{
int[] arr = [1, 2, 3];
// may use runtime call
arr.length = 100;
// should convert to arr = arr[0 .. 0];
arr.length = 0;
// https://issues.dlang... | D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2017 by Rainer Schuetze, All Rights Reserved
//
// 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... | D |
/++
Base module for working with colors and in-memory image pixmaps.
Also has various basic data type definitions that are generally
useful with images like [Point], [Size], and [Rectangle].
+/
module arsd.color;
@safe:
// importing phobos explodes the size of this code 10x, so not doing it.
private {
double to... | D |
/Users/benjaminrees/Desktop/Rust/Section 2/guessing_game/target/debug/deps/rand_chacha-0aa8b166e63413bd.rmeta: /Users/benjaminrees/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/lib.rs /Users/benjaminrees/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.3.1/src/chacha.rs /Users/benja... | D |
/**
* Contains compiler-recognized user-defined attribute types.
*
* Copyright: Authors 2015-2018
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Authors: LDC team
*/
module ldc.attributes;
import microd.types;
/// Helper template
private template AliasSeq(TList...)
{
alias ... | D |
instance DIA_Garvell_EXIT(C_Info)
{
npc = VLK_441_Garvell;
nr = 999;
condition = DIA_Garvell_EXIT_Condition;
information = DIA_Garvell_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Garvell_EXIT_Condition()
{
return TRUE;
};
func void DIA_Garvell_EXIT_Info()
{
AI_StopProcessInfos(se... | D |
/Users/j/Desktop/Code/clock/target/rls/debug/build/backtrace-b578421c3be5c1a5/build_script_build-b578421c3be5c1a5: /Users/j/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.31/build.rs
/Users/j/Desktop/Code/clock/target/rls/debug/build/backtrace-b578421c3be5c1a5/build_script_build-b578421c3be5c1a5.d: /Use... | D |
// Written in the D programming language.
/**
DLANGUI library.
This module implements array based collection.
Synopsis:
----
import dlangui.core.collections;
// add
Collection!Widget widgets;
widgets ~= new Widget("id1");
widgets ~= new Widget("id2");
Widget w3 = new Widget("id3");
widgets ~= w3;
// remove by ind... | D |
/+
Copyright (c) 2006 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... | D |
module UnrealScript.TribesGame.TrAccolade_KillStreak_Ten;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrAccolade;
extern(C++) interface TrAccolade_KillStreak_Ten : TrAccolade
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static... | D |
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensee... | D |
module hurt.util.pair;
struct Pair(T,S) {
T first;
S second;
this(T first, S second) {
this.first = first;
this.second = second;
}
}
| D |
/Users/hishizuka/Work/git/rust/fizzbuzz/target/rls/debug/deps/fizzbuzz-9fc25dc6ade72b04.rmeta: src/main.rs
/Users/hishizuka/Work/git/rust/fizzbuzz/target/rls/debug/deps/fizzbuzz-9fc25dc6ade72b04.d: src/main.rs
src/main.rs:
| D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM WT ROCKTYPE
238 77 6 77 15 60 64.5999985 -127.900002 1745 11.6000004 11.8000002 0.333333333 sediments, redbeds
151.699997 80.8000031 5.19999981 18.2000008 21 26 36.7999992 -105.400002 355 5.0999999 7.30000019 1 intrusives
219.300003 68.9000015 2.79999995 90... | D |
module ui.base;
public import content;
public import collections;
public import rendering.combined;
public import window.mouse, window.keyboard, window.clipboard;
public import util.variant;
public import util.hash;
public import rendering;
public import ui.window;
public import math.rect : Rect;
enum HorizontalAlign... | D |
/Users/christian/GitHub/Tweescord/.build/x86_64-apple-macosx/debug/Jobs.build/Duration+Extensions.swift.o : /Users/christian/GitHub/Tweescord/.build/checkouts/Jobs/Sources/JSON.swift /Users/christian/GitHub/Tweescord/.build/checkouts/Jobs/Sources/Shell.swift /Users/christian/GitHub/Tweescord/.build/checkouts/Jobs/Sourc... | D |
instance DIA_Harad_EXIT(C_Info)
{
npc = VLK_412_Harad;
nr = 999;
condition = DIA_Harad_EXIT_Condition;
information = DIA_Harad_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Harad_EXIT_Condition()
{
return TRUE;
};
func void DIA_Harad_EXIT_Info()
{
AI_StopProcessInfos(self);
};
in... | D |
INSTANCE Info_Mod_Darrion_Hi (C_INFO)
{
npc = Mod_2014_PSINOV_Darrion_MT;
nr = 1;
condition = Info_Mod_Darrion_Hi_Condition;
information = Info_Mod_Darrion_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Darrion_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Darrion_Hi_Info()
{
AI_Output(self,... | D |
module weapon.FlameThrower;
import nuclear.Game;
import weapon.Weapon;
import weapon.AbstractWeapon;
import entity.CollidingEntity;
import entity.Mattis;
import entity.projectile.Projectile;
import entity.projectile.Flame;
import coreinit.debugout;
public class FlameThrower : AbstractWeapon {
public this(Mattis... | D |
// Written in the D programming language.
/**
This module implements the formatting functionality for strings and
I/O. It's comparable to C99's $(D vsprintf()) and uses a similar
format encoding scheme.
Macros: WIKI = Phobos/StdFormat
Copyright: Copyright Digital Mars 2000-.
License: $(WEB boost.o... | D |
/Users/ozgun/Desktop/IOSCase/build/IOSCase.build/Debug-iphonesimulator/IOSCase.build/Objects-normal/x86_64/TermsListView.o : /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewModelType.swift /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewControllerType.swift /Users/ozgun/Desktop/IOSCase/IOSCase/Utils/ViewType.swift /Users... | D |
prototype Mst_Default_Keiler(C_Npc)
{
name[0] = CZ_NAME_Monster_Keiler;
guild = GIL_MOLERAT;
aivar[AIV_MM_REAL_ID] = ID_Keiler;
level = 8;
attribute[ATR_STRENGTH] = 80;
attribute[ATR_DEXTERITY] = 60;
attribute[ATR_HITPOINTS_MAX] = 200;
attribute[ATR_HITPOINTS] = 200;
attribute[ATR_MANA_MAX] = 0;
attribute[AT... | D |
module smtp.reply;
import std.conv;
/++
SMTP server reply codes, RFC 2921, April 2001
+/
enum SmtpReplyCode : uint {
HELP_STATUS = 211, // Information reply
HELP = 214, // Information reply
READY = 220, // After connection is established
QUIT = 221, // After connected ab... | D |
a monastery of friars
| D |
void main() { runSolver(); }
void problem() {
auto N = scan!long;
auto solve() {
char[] ans;
while(N > 0) {
if (N % 2 == 0) {
N /= 2; ans ~= "B";
} else {
N--; ans ~= "A";
}
}
return ans.reverse.array.to!string;
}
outputForAtCoder(&solve);
}
// ------------... | D |
module dinu.command.desktop;
import dinu;
__gshared:
shared immutable class CommandDesktop: Command {
string exec;
this(string args){
auto split = args.bangSplit;
super(Type.desktop, split[0], options.colorDesktop);
exec = split[1];
}
override string serialize(){
return [name, exec].bangJoin;
}
... | D |
/Users/nikhilsridhar/Desktop/Shopp/Shopp/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/NetworkReachabilityManager.o : /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/Alamofire/Source/MultipartFormData.swift /Users/nikhilsridhar/Desktop/Shopp/Shopp/Pods/Alamofire/Source/Timelin... | D |
/// Authors: Chance Snow
/// Copyright: Copyright © 2021 Chance Snow. All rights reserved.
/// License: MIT License
module descartes.path.arc;
| D |
void main() @safe /*@nogc*/ {
import std.stdio, std.algorithm, std.typecons, std.conv;
static struct Bounty {
int value;
double weight, volume;
}
immutable Bounty panacea = {3000, 0.3, 0.025};
immutable Bounty ichor = {1800, 0.2, 0.015};
immutable Bounty gold = {2500, 2... | D |
// Written in the D programming language
/**
This module offers some conversions functions from a Graph to a range.
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
Authors: Philippe Sigaud
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0... | D |
/Users/linkov/Documents/sdwr/texture-maker/texturelib/target/rls/debug/build/stdweb-8da71b55ae429bd4/build_script_build-8da71b55ae429bd4: /Users/linkov/.cargo/registry/src/github.com-1ecc6299db9ec823/stdweb-0.4.20/build.rs
/Users/linkov/Documents/sdwr/texture-maker/texturelib/target/rls/debug/build/stdweb-8da71b55ae42... | D |
/Users/GLB-312/Desktop/KituraWebInterface_Starter/.build/x86_64-apple-macosx10.10/debug/Kitura.build/staticFileServer/ResponseHeadersSetter.swift.o : /Users/GLB-312/Desktop/KituraWebInterface_Starter/.build/checkouts/Kitura.git-6522211175291160341/Sources/Kitura/Kitura.swift /Users/GLB-312/Desktop/KituraWebInterface_St... | D |
/**
* TypeInfo support code.
*
* Copyright: Copyright Digital Mars 2004 - 2009.
* License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright
*/
/* Copyright Digital Mars 2004 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying... | D |
module dfmt.editorconfig;
import std.regex : ctRegex;
static if (__VERSION__ >= 2067)
public import std.traits : FieldNameTuple;
else
{
private enum NameOf(alias T) = T.stringof;
template FieldNameTuple(T)
{
import std.typetuple : staticMap;
import std.traits : isNested;
static... | D |
module isystem;
public:
import platform;
import ivalidator;
import igame;
import ixmldom;
import ixml;
import cry_camera;
import frame_profiler;
import cry_version;
import iinput;
import iconsole;
import ilog;
import iscriptsystem;
import ientitysystem;
import irenderer;
import inetwork : INetwork;
extern (C++)
{
... | D |
/*
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.
0MQ 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 3 of the License, or
(at your option) any... | D |
/Users/zaidtayyab/Desktop/Template/Build/Template/Build/Intermediates/Pods.build/Debug-iphonesimulator/PhoneNumberKit.build/Objects-normal/x86_64/TextField.o : /Users/zaidtayyab/Desktop/Template/Pods/PhoneNumberKit/PhoneNumberKit/UI/TextField.swift /Users/zaidtayyab/Desktop/Template/Pods/PhoneNumberKit/PhoneNumberKit/P... | D |
/**
* D header file for C99.
*
* 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,
Alex Rønne Petersen
* Standards: ISO/IEC 9899:1999 (E)
*/
/* Copyright Sean Kelly 2005 - 2009.
* Distr... | D |
module game.topology.lightref;
import gamelib.containers.intrusivelist;
import game.units;
import game.topology.room;
import game.renderer.light;
struct LightRef
{
Light light;
Room room;
LightRef* prev; //for allocator
IntrusiveListLink roomLink;
IntrusiveListLink entityLink;
}... | D |
/Users/apple/Developer/SuperDemo/build/SuperDemo.build/Debug-iphonesimulator/SuperDemo.build/Objects-normal/x86_64/EditTableViewController.o : /Users/apple/Developer/SuperDemo/SuperDemo/TableViewCell.swift /Users/apple/Developer/SuperDemo/SuperDemo/Item.swift /Users/apple/Developer/SuperDemo/SuperDemo/Detail.swift /Use... | D |
module utils;
import std.array : Appender;
import std.format : formattedWrite;
import etc.c.curl;
static const char* USERAGENT = "Auto-Tester. https://auto-tester.puremagic.com/ contact: braddr@puremagic.com";
static string LOGNAME = "/tmp/serverd.log";
static ulong page_num = 0;
void setLogPageNum(ulong num)
{
... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
alias S = Tuple!(int, "x", int, "y", int, "c");
void main()
{
auto rc = readln.split.to!(int[]);
auto R = rc[0];
auto C = rc[1];
int[][] RC;
RC.length = R;
foreach (ref c; RC) {
c.le... | D |
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Command.build/Utilities/CommandError.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--2431895819212044213/Sources/Command/Command/Command.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/console.git--243189581921... | D |
playful like a lively kitten
| D |
const int LOADINGTEXNAME_OFFSET = 9118980; //0x8B2504;
func void SetLoadTexNameTo_XXXXing (var string XXXX)
{
var int XXXXptr;
XXXXptr = STRINT_ToChar (XXXX);
MEM_WriteInt (LOADINGTEXNAME_OFFSET, MEM_ReadInt (XXXXptr));
}; | D |
//Written in the D programming language
/++
D header file for FreeBSD's extensions to POSIX's time.h.
Copyright: Copyright 2014
License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(HTTP jmdavisprog.com, Jonathan M Davis)
+/
module core.sys.freebsd.time;
public import cor... | D |
module dweb.common;
/**
获取所有子类
*/
ClassInfo[] getChildClasses(ClassInfo c)
{
ClassInfo[] info;
foreach(mod; ModuleInfo)
{
foreach(cla; mod.localClasses)
{
if(cla.base is c)
{
info ~= cla;
}
}
}
return info;
} | D |
instance DIA_Lehmar_EXIT(DIA_Proto_End)
{
npc = VLK_484_Lehmar;
};
/////////////////////////////////////// РУПЕРТ //////////////////////////////////////////////
// ==============================================
instance DIA_Lehmar_Rupert_Hello(C_INFO)
{
nr = 1;
npc = VLK_484_Lehmar;
condition = DIA_Lehmar_Rupert... | D |
void foo(T)(){}
static assert(__traits(isTemplate,foo));
static assert(!__traits(isTemplate,foo!int()));
static assert(!__traits(isTemplate,"string")); | D |
/Users/lb/Documents/Project/LearnVapor/.build/x86_64-apple-macosx10.10/debug/Console.build/Clear/Console+Ephemeral.swift.o : /Users/lb/Documents/Project/LearnVapor/.build/checkouts/console.git--1231705849320085599/Sources/Console/Terminal/ANSI.swift /Users/lb/Documents/Project/LearnVapor/.build/checkouts/console.git--1... | D |
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/debug/deps/odds-ec2b75a9dde4a98c.rmeta: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/odds-0.2.26/src/lib.rs /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/odds-0.2.26/src/range.rs /home/zeliwang/.cargo/registr... | 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 |
having a rough edge
| D |
changing to a lighter color
turn white
| D |
module it.c.compile.struct_;
import it;
@("onefield.int")
@C(
q{
struct Foo { int i; };
}
)
@safe unittest {
mixin(
shouldCompile(
D(
q{
auto f = Foo(5);
static assert(f.sizeof == 4, "Wrong sizeof for foo");
... | 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 |
# FIXED
Comun/driverlib/interrupt.obj: C:/Users/jeniher/PROYECTOS/Workspace_CCS7/UFCharger/F2837xD/Comun/driverlib/interrupt.c
Comun/driverlib/interrupt.obj: C:/Users/jeniher/PROYECTOS/Workspace_CCS7/UFCharger/F2837xD/F2837xD_common/include/F28x_Project.h
Comun/driverlib/interrupt.obj: C:/Users/jeniher/PROYECTOS/Works... | D |
/Users/macbook/Desktop/BookFarm/build/Pods.build/Debug-iphonesimulator/YPImagePicker.build/Objects-normal/x86_64/YPCameraView.o : /Users/macbook/Desktop/BookFarm/Pods/YPImagePicker/Source/Pages/Photo/YPCameraVC.swift /Users/macbook/Desktop/BookFarm/Pods/YPImagePicker/Source/Pages/Video/YPVideoCaptureVC.swift /Users/mac... | D |
// Copyright Ahmet Sait Koçak 2020.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
module bindbc.hb.bind.ot.math;
import bindbc.hb.bind.common;
import bindbc.hb.bind.face;
import bindbc.... | D |
/Users/yamasakitomohiro/Desktop/warkingFolder/seminar/seminar1/mihon/Build/Intermediates/mihon.build/Debug-iphoneos/mihon.build/Objects-normal/armv7/SecondViewControllre.o : /Users/yamasakitomohiro/Desktop/warkingFolder/seminar/seminar1/mihon/mihon/FirstViewController.swift /Users/yamasakitomohiro/Desktop/warkingFolder... | D |
module gui.inventorywindow;
import std.algorithm;
import std.conv;
import std.exception;
import std.stdio;
import main;
import gui.mainmenu;
import gui.all;
import graphics.image;
import gui.unitcontrol;
import cgy.util.sizes;
import worldstate.block;
import worldstate.sector;
import random.random;
import cgy.util.... | D |
module android.java.java.nio.charset.CoderResult;
public import android.java.java.nio.charset.CoderResult_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!CoderResult;
import import1 = android.java.java.lang.Class;
import import0 = android.java.java.nio.charset.CoderResult;
| D |
/Users/ThiagoBevi/Developer/Teste_iOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Kingfisher.build/Objects-normal/x86_64/ImageView+Kingfisher.o : /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/Utility/String+MD5.swift /Users/ThiagoBevi/Developer/Teste_iOS/Pods/Kingfisher/Sources/General/Deprecat... | 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 |
.hd twrit$ "write raw words to terminal" 03/25/82
integer function twrit$ (buf, nw, f)
integer buf (ARB), nw
file_des f
.sp
Library: vswtlb (standard Subsystem library)
.fs
'Twrit$' is the device-dependent driver for terminal line-image i/o.
The first argument is a string of words to be written;
the second argument i... | D |
/**
* Copyright © DiamondMVC 2018
* License: MIT (https://github.com/DiamondMVC/Diamond/blob/master/LICENSE)
* Author: Jacob Jensen (bausshf)
*/
module diamond.data.mapping.engines;
public
{
import diamond.data.mapping.engines.mysql;
}
| D |
instance Mod_943_GRD_Bloodwyn_MT (Npc_Default)
{
// ------ NSC ------
name = "Bloodwyn";
guild = GIL_OUT;
id = 943;
voice = 4;//Stimme Lee
flags = 2;
npctype = NPCTYPE_main;
//aivars
aivar[AIV_StoryBandit] = TRUE;
// ------ Attribute ------
B_SetAttributesToChapter (self, 3); ... | D |
struct Foo
{
Foo opDispatch(string name)(int a, int[] b...)
if(name == "bar")
{
return Foo();
}
Foo opDispatch(string name)()
if(name != "bar")
{
return Foo();
}
}
void main()
{
Foo().bar(0).bar(0).bar(0);
}
| D |
// Written in the D programming language.
/**
Defines generic containers.
Source: $(PHOBOSSRC std/_container.d)
Macros:
WIKI = Phobos/StdContainer
TEXTWITHCOMMAS = $0
Copyright: Red-black tree code copyright (C) 2008- by Steven Schveighoffer. Other code
copyright 2010- Andrei Alexandrescu. All rights reserved by the... | D |
/Users/y_satou/Desktop/espla/esplaBlog/TableViewSwiftSample/TableViewSwiftSample/Build/Intermediates/TableViewSwiftSample.build/Debug-iphonesimulator/TableViewSwiftSample.build/Objects-normal/x86_64/AppDelegate.o : /Users/y_satou/Desktop/espla/esplaBlog/TableViewSwiftSample/TableViewSwiftSample/TableViewSwiftSample/Vie... | D |
/**
* A convenient way to store and access 1-8 flags in a single byte
*/
module util.meta.FlagByte;
import std.traits;
/**
* FlagByte template
*
* Template params:
* Byte = The byte to use as storage
* names = The name aliases of the bit flags
* bitmasks = The bitmasks to access the aliases
*... | D |
module wx.Colour;
public import wx.common;
version(Dinrus) private import stdrus;
//! \cond EXTERN
extern (C) ЦелУкз wxColour_ctor();
extern (C) ЦелУкз wxColour_ctorByName(ткст имя);
extern (C) ЦелУкз wxColour_ctorByParts(ббайт красный, ббайт зелёный, ббайт синий);
extern (C) проц wxColour_dtor(ЦелУкз сам);
//exter... | D |
/**
* Uri parser
*
* Parse URI (Uniform Resource Identifiers) into parts described in RFC, based on tango.net.uri and GIO
*
* Authors: $(WEB github.com/robik, Robert 'Robik' Pasiński), $(WEB driv.pl/, Damian 'nazriel' Ziemba)
* Copyright: Robert 'Robik' Pasiński, Damian 'nazriel' Ziemba 2011
* License: $(WEB htt... | D |
/Users/tpmccallum/SecondState/wasm-joey/apps/server_side_solarisation/target/release/build/log-caab69f8b23c55c7/build_script_build-caab69f8b23c55c7: /Users/tpmccallum/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs
/Users/tpmccallum/SecondState/wasm-joey/apps/server_side_solarisation/target/release... | D |
// Copyright © 2011, Jakob Bornecrantz. All rights reserved.
// See copyright notice in src/charge/charge.d (GPLv2 only).
module miners.importer.info;
import std.file : exists, DirEntry, listdir;
import std.string : format, toString;
import charge.util.vector;
import charge.math.point3d;
import miners.importer.fold... | D |
module ast.template_;
import token;
import ast.astnode;
import ast.attribute;
import ast.symbol;
import ast.expression;
import ast.type;
import visitor.visitor;
final class TemplateInstance : Symbol {
Token[][] params;
TemplateDeclaration decl; /// template declaration
/// parsed parameters
Symbol[] syms;
Expr... | D |
import core.stdc.stdio, core.stdc.stdlib;
struct MemoryPool(T, int MAX_BLOCK_BYTES = 1 << 17) {
static assert(!is(T == class),
"MemoryPool is designed for native data.");
static assert(MAX_BLOCK_BYTES >= 1,
"MemoryPool: MAX_BLOCK_BYTES must be >= 1 bytes.");
static asser... | 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 |
instance DIA_MiltenNW_EXIT(C_Info)
{
npc = PC_Mage_NW;
nr = 999;
condition = DIA_MiltenNW_EXIT_Condition;
information = DIA_MiltenNW_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_MiltenNW_EXIT_Condition()
{
if(Kapitel < 3)
{
return TRUE;
};
};
func void DIA_MiltenNW_EXIT_Info()
... | D |
a military unit consisting of armored fighting vehicles
protective covering made of metal and used in combat
tough more-or-less rigid protective covering of an animal or plant
equip with armor
| D |
// This file is part of Visual D
//
// Visual D integrates the D programming language into Visual Studio
// Copyright (c) 2010 by Rainer Schuetze, All Rights Reserved
//
// 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... | D |
module allegro5.keyboard;
import allegro5.keycodes;
import allegro5.display;
import allegro5.events;
import allegro5.internal.da5;
extern (C)
{
struct ALLEGRO_KEYBOARD {};
struct ALLEGRO_KEYBOARD_STATE
{
/* public */
ALLEGRO_DISPLAY* display;
/* internal */
uint __key_down__internal__[(ALLEGRO_KEY_MAX + 3... | D |
// Copyright Ferdinand Majerech 2011.
// Copyright Cameron Ross 2016.
// 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 wyaml.tests.compare;
unittest {
import std.meta : Alia... | D |
module android.java.android.widget.ImageView;
public import android.java.android.widget.ImageView_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ImageView;
import import40 = android.java.android.view.accessibility.AccessibilityNodeProvider;
import import80 = android.java.java.lang.Class;
impo... | D |
module dmd.astbase;
/**
* Documentation: https://dlang.org/phobos/dmd_astbase.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/astbase.d
*/
import dmd.parsetimevisitor;
/** The ASTBase family defines a family of AST nodes appropriate for parsing with
* no semantic information. It defines... | D |
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/bitflags-a02a2a9e3f10de8f.rmeta: /home/syx/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/bitflags-1.0.4/src/lib.rs
/home/syx/SYXrepo/vacation_homework/percolation/target/rls/debug/deps/bitflags-a02a2a9e3f10de8f.d: /home/syx/.cargo/registr... | D |
/**
* The MIT License (MIT)
*
* Copyright (c) 2015 DNetDev (Richard Andrew Cattermole)
*
* 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 limitat... | D |
// https://issues.dlang.org/show_bug.cgi?id=15373
// Using `typeid` on an `extern(C++) class` type is fine as it is evaluated at compile-time
// Using `typeid` on an `extern(C++) class` instance is not ok because `extern(C++) class`
// instances are not rooted in `Object`. See test/fail_compilation/test15373.d
exte... | D |
// Written in the D programming language.
/**
Haystack trio encoder.
Copyright: Copyright (c) 2019, Radu Racariu <radu.racariu@gmail.com>
License: $(LINK2 www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
Authors: Radu Racariu
**/
module haystack.trio.encode;
import std.range.primitives : isOutputRange;
... | D |
[cc]mc |
.hd guide "Software Tools Subsystem User's Guides" 08/27/84
[cc]mc
guide { <option> | <item> }
<option> ::= -p
<item> ::= <guide_name>
.ds
Several of the more complicated or more frequently used
[cc]mc |
Subsystem commands and libraries have additional documentation
beyond that which is available from ... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.