code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
; 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 VLK_486_Buergerin(Npc_Default)
{
name[0] = NAME_Buergerin;
guild = GIL_VLK;
id = 486;
voice = 17;
flags = 0;
npcType = NPCTYPE_AMBIENT;
B_SetAttributesToChapter(self,1);
level = 1;
fight_tactic = FAI_HUMAN_COWARD;
B_CreateAmbientInv(self);
EquipItem(self,ItMw_1h_Vlk_Mace);
B_SetNpcVisual(self,FEMA... | D |
import std.stdio, std.string;
void main(){
string[] s;
int n;
while (readf("%d\n", &n), n) {
int[] a;
s = split(readln());
foreach (i; s) a ~= i[0] - '0';
n = 32;
for (int i = 0; n > 0; i++) {
if (i%2 == 0) n -= (n-1)%5;
else n -= a[i/2 % $];
writeln(n > 0 ? n : 0);
}
}
}
| D |
module d.gc.util;
size_t log2floor(size_t x) {
if (x == 0) {
return 0;
}
import sdc.intrinsics;
enum S = size_t.sizeof * 8;
return S - countLeadingZeros(x) - 1;
}
unittest log2floor {
assert(log2floor(0) == 0);
assert(log2floor(1) == 0);
assert(log2floor(2) == 1);
assert(log2floor(3) == 1);
assert(log2fl... | D |
// module.h
//
// Copyright (C) 2003, 2004 Jason Bevins
//
// 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 by
// the Free Software Foundation; either version 2.1 of the License, or (at
// your option) any later ve... | D |
/**
Implementations of Discord events.
*/
module dscord.gateway.events;
import std.algorithm,
std.string,
std.stdio,
std.datetime,
std.array,
std.conv;
import dscord.types,
dscord.gateway,
dscord.bot.command;
/**
A wrapper type for delegates that can be attached ... | D |
/Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/x86_64-apple-macosx/debug/NIOWebSocket.build/WebSocketFrame.swift.o : /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift-nio/Sources/NIOWebSocket/SHA1.swift /Users/mhassanin/Developer/CupcakeVapor/CupcakeCorner/.build/checkouts/swift... | D |
module video;
/**
* Some routines for mapping a linear framebuffer (currently set up by GRUB)
* into our kernel's VM space, and some primitive drawing/text-blitting
* routines.
*
* To use this framebuffer mode, see boot.asm to have GRUB set the
* video mode. Then have fun drawing!
*
* TODO: abstract... | D |
import std.stdio;
void main() {
if(char.init == 0)
writefln("DMD 0.92 char.init.");
if(wchar.init == 0)
writefln("DMD 0.92 wchar.init.");
if(dchar.init == 0)
writefln("DMD 0.92 dchar.init.");
if(char.init == 0xFF)
... | D |
private
{
class privC {}
struct privS {}
interface privI {}
union privU {}
enum privE { foo }
void privF() {}
mixin template privMT() {}
class privTC(T) {}
struct privTS(T) {}
interface privTI(T) {}
union privTU(T) {}
void privTF(T)() {}
}
void publF(T)() {}
void publFA(alias A)() {}
private a... | 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 |
module compile;
import dmake;
import std.algorithm;
import std.array;
import std.ascii;
import std.conv;
import std.exception;
import std.file;
import std.getopt;
import std.process;
private string[] getLibs()
{
version(Windows)
{
auto libDir = ".\\lib\\win-i386\\";
return [
libDir ~ "ws2_32.lib",
libDir... | D |
/Users/ozgun/Desktop/IOSCase/build/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/SwitchIfEmpty.o : /Users/ozgun/Desktop/IOSCase/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/ozgun/Desktop/IOSCase/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Users/ozgun/Desktop/IOSCase/Pods/RxSwift/RxSw... | D |
module d.semantic.sizeof;
import d.semantic.semantic;
import d.ir.symbol;
import d.ir.type;
// Conflict with Interface in object.di
alias Interface = d.ir.symbol.Interface;
struct SizeofVisitor {
private SemanticPass pass;
alias pass this;
this(SemanticPass pass) {
this.pass = pass;
}
uint visit(Type t) ... | D |
// *********************************
// C_NpcIsBotheredByWeapon
// *********************************
func int C_NpcIsBotheredByWeapon (var C_NPC slf, var C_NPC oth)
{
// EXIT IF...
// ------ Partymember ignoriert Waffe ------
if (slf.aivar[AIV_PARTYMEMBER] == TRUE)
{
return FALSE;
};
// ------ NpcTypeFrie... | D |
/*
*******************************************************************************************
* Dgame (a D game framework) - Copyright (c) Randy Schütt
*
* 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... | D |
/Users/davalcato/Library/Mobile\ Documents/com~apple~CloudDocs/Desktop/iOS/iTunesClient2/Build/Intermediates/iTunesClient2.build/Debug-iphonesimulator/iTunesClient2.build/Objects-normal/x86_64/AlbumCell.o : /Users/davalcato/Library/Mobile\ Documents/com~apple~CloudDocs/Desktop/iOS/iTunesClient2/iTunesClient2/Models/End... | D |
module matrix;
version(WebAssembly)
{
import wasmrt.math;
}
else
{
import std.math;
}
float[16] orthoMatrix(float l, float r, float b, float t, float n, float f)
{
float[16] res;
float width = r - l;
float height = t - b;
float depth = f - n;
res[0] = 2.0 / width;
res[1] = 0.0;
... | D |
public import trivailmachines;
public import trivailcomposition; | D |
/home/zbf/workspace/git/RTAP/target/debug/deps/rand_pcg-4d339d83f6969060.rmeta: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/lib.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rand_pcg-0.1.2/src/pcg64.rs /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61... | D |
prototype Mst_Default_Gobbo_Green(C_Npc)
{
name[0] = "Гоблин";
guild = GIL_GOBBO;
aivar[AIV_MM_REAL_ID] = ID_GOBBO_GREEN;
level = 4;
attribute[ATR_STRENGTH] = 20;
attribute[ATR_DEXTERITY] = 20;
attribute[ATR_HITPOINTS_MAX] = 20;
attribute[ATR_HITPOINTS] = 20;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] ... | D |
/* e_os2.h */
/* ====================================================================
* Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. ... | D |
// PERMUTE_ARGS:
/**************************************************
5996 ICE(expression.c)
**************************************************/
template T5996(T)
{
auto bug5996() {
if (anyOldGarbage) {}
return 2;
}
}
static assert(!is(typeof(T5996!(int).bug5996())));
/*****************... | D |
/Users/mbroski/Code/Septa/Septa2/SeptaRest/Build/Intermediates.noindex/SeptaRest.build/Debug-iphonesimulator/SeptaRest.build/Objects-normal/x86_64/TransitType.o : /Users/mbroski/Code/Septa/Septa2/SeptaRest/SeptaRest/TransitType.swift /Users/mbroski/Code/Septa/Septa2/SeptaRest/SeptaRest/RestResponse.swift /Users/mbroski... | D |
/Users/hao/Code/substrate/course/lesson_1/pallets/template/target/rls/debug/build/num-rational-5c68724b472cf6c5/build_script_build-5c68724b472cf6c5: /Users/hao/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/build.rs
/Users/hao/Code/substrate/course/lesson_1/pallets/template/target/rls/debug/build/n... | D |
INSTANCE Info_Mod_Whistler_NW_Hi (C_INFO)
{
npc = Mod_1927_STT_Whistler_NW;
nr = 1;
condition = Info_Mod_Whistler_NW_Hi_Condition;
information = Info_Mod_Whistler_NW_Hi_Info;
permanent = 0;
important = 0;
description = "Alissandro schickt mich.";
};
FUNC INT Info_Mod_Whistler_NW_Hi_Condition()
{
if (Npc_Know... | D |
/*
* Copyright 2012 The Netty Project
*
* The Netty Project licenses this file to you 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 ... | D |
/Users/honpe/PerfectTemplate/.build/x86_64-apple-macosx10.10/debug/PerfectLib.build/Dir.swift.o : /Users/honpe/PerfectTemplate/.build/checkouts/PerfectLib.git-6435051526859923445/Sources/PerfectLib/JSONConvertible.swift /Users/honpe/PerfectTemplate/.build/checkouts/PerfectLib.git-6435051526859923445/Sources/PerfectLib/... | D |
/Users/ws/Desktop/gitTest/GItTest2/Build/Intermediates/GItTest2.build/Debug-iphonesimulator/GItTest2.build/Objects-normal/x86_64/AppDelegate.o : /Users/ws/Desktop/gitTest/GItTest2/GItTest2/AppDelegate.swift /Users/ws/Desktop/gitTest/GItTest2/GItTest2/ViewController.swift /Applications/Xcode.app/Contents/Developer/Toolc... | D |
/*
* $Id: screen3d.d,v 1.1.1.1 2005/06/18 00:46:00 kenta Exp $
*
* Copyright 2005 Kenta Cho. Some rights reserved.
*/
module abagames.util.sdl.screen3d;
private import std.conv;
private import std.string;
private import bindbc.sdl;
private import bindbc.opengl;
private import abagames.util.vector;
private import a... | D |
someone who is a detective
a waterproof overshoe that protects shoes from water or snow
| D |
INSTANCE Info_Mod_Hagen_MT_Hi (C_INFO)
{
npc = Mod_7698_PAL_Hagen_MT;
nr = 1;
condition = Info_Mod_Hagen_MT_Hi_Condition;
information = Info_Mod_Hagen_MT_Hi_Info;
permanent = 0;
important = 1;
};
FUNC INT Info_Mod_Hagen_MT_Hi_Condition()
{
return 1;
};
FUNC VOID Info_Mod_Hagen_MT_Hi_Info()
{
AI_Output(self,... | D |
/users/tommy-b-10/Desktop/SidePilotApp/Carthage/Checkouts/SwiftIO/Build/Intermediates/SwiftIO.build/Debug-iphoneos/SwiftIO_iOS.build/Objects-normal/arm64/inet+Extensions.o : /users/tommy-b-10/Desktop/SidePilotApp/Carthage/Checkouts/SwiftIO/Sources/NullStream.swift /users/tommy-b-10/Desktop/SidePilotApp/Carthage/Checkou... | D |
// **************************************************
// EXIT
// **************************************************
INSTANCE DIA_Edwin_Exit (C_INFO)
{
npc = Grd_4081_Edwin;
nr = 999;
condition = DIA_Edwin_Exit_Condition;
information = DIA_Edwin_Exit_Info;
permanent = 1;
description = DIALOG_ENDE;
}; ... | D |
module android.java.android.se.omapi.SEService_OnConnectedListener;
public import android.java.android.se.omapi.SEService_OnConnectedListener_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SEService_OnConnectedListener;
import import0 = android.java.java.lang.Class;
| D |
/*******************************************************************************
copyright: Copyright (c) 2007 Kris Bell. все rights reserved
license: BSD стиль: $(LICENSE)
version: Jan 2007: Initial release
author: Kris
Exposes the libr... | D |
#!/sbin/runscript
# Copyright 2008 Bernd Steinhauser <berniyh@exherbo.org>
# Distributed under the terms of the GNU General Public License v2
# Based in part upon 'fancontrol-init.d' from Gentoo, which is:
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
CONFIG... | D |
module kerisy.task.SerializableTask;
import hunt.util.worker.Task;
import hunt.logging.ConsoleLogger;
class SerializableTask : Task {
override void doExecute() {
tracef("Do nothing");
}
ubyte[] serialize() {
return null;
}
void deserialize(const(ubyte)[] message) {
}
} | D |
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Fluent.build/Migration/AnyMigration.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 |
/afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODReader/obj/CxAODReaderCINT.o /afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/RootCoreBin/obj/x86_64-slc6-gcc48-opt/CxAODReader/obj/CxAODReaderCINT.d : /afs/cern.ch/user/a/abrennan/testarea/CxAODTestFramework/CxA... | D |
/Users/netnorimingconception/utils/GeoFence/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Filter.o : /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/netnorimingconception/utils/GeoFence/Pods/RxSwift/RxSwift/Obser... | D |
module ppl2.ast.expr_parenthesis;
import ppl2.internal;
final class Parenthesis : Expression {
override bool isResolved() { return expr.isResolved; }
override bool isConst() { return expr().isConst; }
override NodeID id() const { return NodeID.PARENTHESIS; }
override int priority() const { return 15... | D |
/Users/mayurishekhar/Diary/build/Pods.build/Debug-iphonesimulator/SideMenu.build/Objects-normal/x86_64/Print.o : /Users/mayurishekhar/Diary/Pods/SideMenu/Pod/Classes/Protected.swift /Users/mayurishekhar/Diary/Pods/SideMenu/Pod/Classes/Initializable.swift /Users/mayurishekhar/Diary/Pods/SideMenu/Pod/Classes/SideMenuPres... | D |
/home/pi/Veilige_soft_test/test_project/test_project/target/debug/deps/libtake-7585b8bd6a790216.rlib: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/take-0.1.0/src/lib.rs
/home/pi/Veilige_soft_test/test_project/test_project/target/debug/deps/take-7585b8bd6a790216.d: /home/pi/.cargo/registry/src/github.com-1e... | D |
solid excretory product evacuated from the bowels
a euphemism for defecation
| D |
/Users/angelc/projects/sleepcoacher/TESTING/DerivedData/sleepcoacher/Build/Intermediates.noindex/sleepcoacher.build/Debug-iphonesimulator/sleepcoacher.build/Objects-normal/x86_64/ViewController.o : /Users/angelc/projects/sleepcoacher/TESTING/sleepcoacher/AppDelegate.swift /Users/angelc/projects/sleepcoacher/TESTING/sle... | 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/java210... | D |
upackage com.aqm.staf.library.databin;
public class T4ClaimPropITMISEntity extends GenericEntity {
}
| D |
module android.java.android.telecom.RemoteConnection_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import5 = android.java.java.lang.CharSequence_d_interface;
import import4 = android.java.android.ne... | D |
/*********************************************************
* X86 disassembler. Can disassemble 16, 32, and 64 bit code. Includes
* x87 FPU instructions and vector instructions.
*
* Copyright: Copyright (C) 1982-1998 by Symantec
* Copyright (C) 2000-2021 by The D Language Foundation, All Rights Reser... | D |
module android.java.java.sql.Types;
public import android.java.java.sql.Types_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Types;
import import0 = android.java.java.lang.Class;
| D |
/Users/kimhyewon/Documents/Server/tennis/build/tennis.build/Debug/Console.build/Objects-normal/x86_64/Argument.o : /Users/kimhyewon/Documents/Server/tennis/Packages/Console-1.0.1/Sources/Console/Bar/Bar.swift /Users/kimhyewon/Documents/Server/tennis/Packages/Console-1.0.1/Sources/Console/Command/Argument.swift /Users/k... | D |
#name: C6X bad predicate syntax
#error_output: predicate-bad-1.l
| 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 |
/Users/mu/Hello/.build/x86_64-apple-macosx/debug/Vapor.build/Content/HTTPMessageContainer.swift.o : /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Content/FormDataCoder+HTTP.swift /Users/mu/Hello/.build/checkouts/vapor/Sources/Vapor/Sessi... | D |
import std.stdio;
import bindbc.sdl;
import bindbc.bgfx;
import gl3n.math;
import gl3n.linalg;
struct Vertex {
float x;
float y;
float z;
Uint32 rgba;
}
static immutable Vertex[] quad = [
{ 0.5f, 0.5f, 0.0f, rgba : 0xff0000ff},
{ 0.5f, -0.5f, 0.0f, rgba : 0xff0000ff},
{ -0.5f, -0.... | D |
module dllvm.threading;
// Source: https://llvm.org/doxygen/group__LLVMCCoreThreading.html
import dllvm.ctypes;
extern(C)
{
/++
+ Deprecated: Multi-threading can only be enabled/disabled with the compile time define `LLVM_ENABLE_THREADS`
+
+ This function always returns `LLVMIsMultithreaded()`
... | D |
instance VLK_577_Buddler(Npc_Default)
{
name[0] = NAME_Buddler;
npcType = npctype_ambient;
guild = GIL_VLK;
level = 4;
voice = 2;
id = 577;
attribute[ATR_STRENGTH] = 30;
attribute[ATR_DEXTERITY] = 20;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 118;
attribute[ATR_HIT... | D |
import std.algorithm;
import std.array;
import std.conv;
import std.math;
import std.numeric;
import std.stdio;
import std.string;
void main()
{
long n = readln.chomp.to!long;
string s = readln.chomp;
writeln(search(s, ""));
}
long search(in string s, in string already) {
if(s.empty) {
return ... | D |
/**
* Contains the garbage collector implementation.
*
* Copyright: Copyright Digital Mars 2001 - 2016.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Walter Bright, David Friedman, Sean Kelly
*/
/* Copyright Digital Mars 2005 - 2016.
* Distributed under the Boost S... | D |
/Users/whitneyfoster/Dev/WFEventHubClient/Build/Intermediates/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/Result.o : /Users/whitneyfoster/Dev/WFEventHubClient/Pods/Alamofire/Source/Alamofire.swift /Users/whitneyfoster/Dev/WFEventHubClient/Pods/Alamofire/Source/Download.swift /Users/whitneyfos... | D |
class Test{
private int member ;
public auto func ( string str )
{
import std.stdio; writeln("Hello world !");}}
| 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 |
import std.file;
import std.stdio;
import lighttp;
void main(string[] args) {
auto server = new Server();
server.host("0.0.0.0");
server.host("::");
server.router.add(new Router());
server.run();
}
class Router {
@Get("") getDownload(ServerRequest req, ServerResponse res) {
res.headers["Content-Type"] = ... | D |
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Core.build/Portal.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-9210800844849382486/Sources/Core/RFC1123.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/core.git-92... | D |
/**
* Does semantic analysis for statements.
*
* Specification: $(LINK2 https://dlang.org/spec/statement.html, Statements)
*
* Copyright: Copyright (C) 1999-2022 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://w... | D |
#source: load4.s
#as: --32
#ld: -melf_i386
#objdump: -dw
.*: +file format .*
Disassembly of section .text:
#...
[ ]*[a-f0-9]+: c7 c0 ([0-9a-f]{2} ){4} * mov \$0x[a-f0-9]+,%eax
#pass
| 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 |
/**
* 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 |
module ml.dataset;
import std.range;
///
enum isDataSet(D) = isLabelSet!(LabelSet!D) && isValueSet!(ValueSet!D);
///
alias LabelSet(T) = typeof(T.init.labels);
///
alias ValueSet(T) = typeof(T.init.values);
///
alias ValueType(D) = ElementType!(ValueSet!D);
///
enum isLabelSet(T) = isFiniteRandomAccessRange!T &&... | D |
/*******************************************************************************
* Copyright (c) 2000, 2006 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 |
// Written in the D programming language.
/**
String handling functions.
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BOOKTABLE ,
$(TR $(TH Category) $(TH Functions) )
$(TR $(TDNW Searching)
$(TD
$(MYREF column)
$(MYREF indexOf)
$(MYREF indexOfAny)
$(MYREF indexOfNeit... | D |
module triples.bot;
import std.array;
import std.conv;
import std.stdio;
import std.socket;
import irc.client;
import irc.tracker;
import irc.eventloop;
import triples.logger;
import triples.messagehandlers;
import triples.configclasses.config;
import triples.pluginclasses.pluginmanager;
class TripleS {
Config con... | D |
/**
* Window and platform menu support.
*
* Copyright: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: $(LINK2 http://cattermole.co.nz, Richard Andrew Cattermole)
*/
module std.experimental.ui.window.features.menu;
import std.experimental.ui.window.defs;
import std.experimental.pla... | D |
/*
Copyright © 2020, Inochi2D Project
Distributed under the 2-Clause BSD License, see LICENSE file.
Authors: Luna Nielsen
*/
module inochi2d.core.texture;
import inochi2d.math;
import std.exception;
import std.format;
import bindbc.opengl;
import imagefmt;
/**
Filtering mode for texture
*/
enum Fi... | D |
/Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/.build/debug/Core.build/Collection+Safe.swift.o : /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Core-1.0.0/Sources/Core/Array.swift /Users/tipaul/Sites/PlatypusAgency/XebiaFormation/bot/Packages/Core-1.0.0/Sources/Core/Bool+String.swift /Users/tipau... | D |
module graphics.hw.enums;
// ______
// | ____|
// | |__ _ __ _ _ _ __ ___ ___
// | __| | '_ \| | | | '_ ` _ \/ __|
// | |____| | | | |_| | | | | | \__ \
// |______|_| |_|\__,_|_| |_| |_|___/
//
// ... | D |
module android.java.java.lang.reflect.Type;
public import android.java.java.lang.reflect.Type_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!Type;
import import0 = android.java.java.lang.Class;
| D |
/**
* D header file for NetBSD.
*
* http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/sys/exec_elf.h
*/
module core.sys.netbsd.sys.elf32;
version (NetBSD):
extern (C):
pure:
nothrow:
import core.stdc.stdint;
public import core.sys.netbsd.sys.elf_common;
alias uint16_t Elf32_Half;
alias uint32_t Elf32_Word;
... | D |
/**
This module contains the core functionality of the vibe.d framework.
Copyright: © 2012-2014 RejectedSoftware e.K.
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Sönke Ludwig
*/
module vibe.core.core;
public import vibe.core.driver;
import vibe.core.arg... | D |
module duck.runtime.instrument;
import duck.runtime.print;
import duck.stdlib.units;
int idCount = 0;
short instr_codes = 0;
short[size_t] codeForAddr;
void instrumentNextSample() {
//return;
//rawWrite3(cast(short)0);
}
short instrumentationCode(string id, void* address) {
size_t addr = cast(size_t)address;
s... | D |
import node_dlang;
import std.typecons;
extern (C):
// Global so that we can use a function pointer instead of delegate.
// Delegates are supported but need to be sent as delegate *, this is easier.
JSVar electron;
void setup (napi_env env) {
electron = env.global (`process`) [`mainModule`].require (`electron`);
... | D |
instance DIA_Addon_Elvrich_EXIT(C_Info)
{
npc = VLK_4302_Addon_Elvrich;
nr = 999;
condition = DIA_Addon_Elvrich_EXIT_Condition;
information = DIA_Addon_Elvrich_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Addon_Elvrich_EXIT_Condition()
{
return TRUE;
};
func void DIA_Addon_Elvrich_... | D |
int main() {
int a;
int b;
a = 10;
while ( a >= 0 ){
a = a-1;
if( a == 5 ){
break;
}
Print(a);
}
Print("Should Print from 9 to 6");
Print("-------------------");
a = 10;
while ( a >= 0 ){
a = a-1;
if( a == 3 )
b... | D |
/******************************************************************************
This module contains the functionality used to parse the contents of doc
comments and turn them into the contents of doc tables.
License:
Copyright (c) 2012 Jarrett Billingsley
This software is provided 'as-is', without any express or imp... | D |
/*******************************************************************************
copyright: Copyright (c) 2008 Matthias Walter. All rights reserved
authors: Matthias Walter, Andreas Hollandt, Clemens Hofreither
*******************************************************************************/
module amigos.dlua.st... | D |
instance Mod_1475_BUD_Buddler_OM (Npc_Default)
{
//-------- primary data --------
name = Name_Buddler;
npctype = npctype_om_buddler;
guild = GIL_OUT;
level = 2;
voice = 2;
id = 1475;
//-------- abilities --------
attribute[ATR_STRENGTH] = 13;
attribute[ATR_DEX... | 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_12_MobileMedia... | D |
module diskuto.userstore;
import std.typecons : Nullable;
import vibe.http.server : HTTPServerRequest;
interface DiskutoUserStore {
@safe nothrow:
Nullable!StoredUser getLoggedInUser(HTTPServerRequest req);
Nullable!StoredUser getUserForEmail(string email);
}
struct StoredUser {
alias ID = string;
ID id; // st... | D |
/Users/wilsonvinson/Documents/GitHub/RUST01/rust01_01/target/debug/deps/texture-b6ebb50bd1f639a1.rmeta: /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/piston-texture-0.6.0/src/lib.rs /Users/wilsonvinson/.cargo/registry/src/github.com-1ecc6299db9ec823/piston-texture-0.6.0/src/ops.rs
/Users/wilsonvi... | D |
/Users/chaoren/LearnRust/scrape_url/target/debug/deps/tower_service-966340b914f5a3fb.rmeta: /Users/chaoren/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.1/src/lib.rs
/Users/chaoren/LearnRust/scrape_url/target/debug/deps/libtower_service-966340b914f5a3fb.rlib: /Users/chaoren/.cargo/registry/src/gith... | D |
const int AM_EyeProtEdge = 10;
const int AM_EyeProtPoint = 10;
const int AM_EyeProtMage = 20;
const int AM_EyeProtFire = 30; //20
instance ItMi_InnosEye_MIS(C_Item)
{
name = NAME_InnosEye;
mainflag = ITEM_KAT_MAGIC;
flags = ITEM_AMULET | ITEM_MISSION;
value = 0;
visual = "ItMi_InnosEye_MIS.3DS";
ma... | D |
import easymeshed : EasyMesh;
void main(string[] args)
{
import std.conv : to;
import std.stdio : writeln;
import core.thread : Thread;
import std.datetime : dur;
if (args.length == 3) {
auto mesh = new EasyMesh(args[1], args[2].to!int);
mesh.setReceiveCallback((from, msg) {
... | D |
module android.java.android.media.SoundPool;
public import android.java.android.media.SoundPool_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SoundPool;
import import4 = android.java.java.lang.Class;
| D |
/**
This module contains the engine behind Pegged, the expression templates building blocks to create a top-down
recursive-descent parser.
The terminals and non-terminals described here are meant to be used inside a Pegged grammar.
As such, they are a bit less user-friendly than what's output by pegged.grammar.
For ex... | D |
/Users/sven/Documents/XCodeProjects/SurfLogbook/build/SurfLogbook.build/Debug-iphoneos/SurfLogbook.build/Objects-normal/arm64/vcNewWetsuit.o : /Users/sven/Documents/XCodeProjects/SurfLogbook/SurfLogbook/Wetsuits.swift /Users/sven/Documents/XCodeProjects/SurfLogbook/SurfLogbook/EnumSkyConditions.swift /Users/sven/Docume... | D |
// automatically generated by the FlatBuffers compiler, do not modify
module MyGame.Example.TestSimpleTableWithEnum;
import std.typecons;
import flatbuffers;
import MyGame.Example.Color;
struct TestSimpleTableWithEnum {
mixin Table!TestSimpleTableWithEnum;
static TestSimpleTableWithEnum getRootAsTestSimpleTableW... | D |
int main() {
Print("hello");
Print("Sussman");
Print("Psilosophy");
Print("ZZZZZZzzzzzzzzzz");
}
| D |
module gtkD.glib.Tuples;
public import gtkD.gtkc.glibtypes;
private import gtkD.gtkc.glib;
private import gtkD.glib.ConstructionException;
/**
* Description
* A GRelation is a table of data which can be indexed on any number of fields,
* rather like simple database tables. A GRelation contains a number of
... | D |
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Routing.build/Routing/RoutableComponent.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/routing/Sources/Routing/Utilities/Deprecated.swift /Users/panartem/Developer/Study/Microserv... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.