code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
/Users/whplue07/Desktop/testing/threeDmodel/Build/Intermediates/threeDmodel.build/Debug-iphonesimulator/threeDmodel.build/Objects-normal/x86_64/ViewController.o : /Users/whplue07/Desktop/testing/threeDmodel/threeDmodel/AppDelegate.swift /Users/whplue07/Desktop/testing/threeDmodel/threeDmodel/ViewController.swift /Appli... | D |
/home/amogh/engineering/rust-intermediate/basicexample/target/debug/build/memchr-a24a312e646b6790/build_script_build-a24a312e646b6790: /home/amogh/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.4.1/build.rs
/home/amogh/engineering/rust-intermediate/basicexample/target/debug/build/memchr-a24a312e646b6790/buil... | D |
PLONG PLAT ED95 KD LOMAGAGE HIMAGAGE SLAT SLONG RESULTNO DP DM ROCKTYPE
340 40 5 0 80 100 -33.7999992 150.699997 1768 10 10 intrusives
325 55 5 0 80 100 -33.9000015 151.300003 1766 10 10 intrusives, basalt
330.100006 45.9000015 3.9000001 600 80 100 -33.7999992 150.800003 83 7.5999999 7.5999999 intrusives, breccia
307.2... | D |
module util;
pragma(inline) auto ref staticCast(T,F)(auto ref F from)
{
return *cast(T*)cast(void*)&from;
}
struct Vector(T)
{
private T[] array;
void put(T newItem)
{
array ~= newItem;
}
}
struct StringRef
{
}
struct Pair(T,S)
{
T first;
S second;
} | 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 |
import std.conv;
import std.file;
import std.functional;
import std.getopt;
import std.path;
import std.stdio;
import std.string;
import derelict.sdl2.sdl;
import nes.console;
import nes.controller;
import scaler;
enum WINDOW_WIDTH = 1280;
enum WINDOW_HEIGHT = 720;
enum NATIVE_WIDTH = 256;
enum NORMAL_WIDTH = 320;
... | D |
/**
* Windows API header module
*
* Translated from MinGW Windows headers
*
* Authors: Stewart Gordon
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_rapi.d)
*/
module core.sys.windows.rapi;
version (Windows):
@system:
/* Comment from MinGW
... | D |
module pbf.digraph_compressed;
import ProtocolBuffer.conversion.pbbinary;
import std.conv;
import std.typecons;
string makeString(T)(T v) {
return to!string(v);
}
struct Edge {
// deal with unknown fields
ubyte[] ufields;
///
Nullable!(uint) to_node_idx;
///
Nullable!(ubyte[]) payload;
ubyte[] Serialize(int f... | D |
/Users/nadiamettioui/Desktop/PortoFolio\ 2020/WMSegmentControlAPP/DerivedData3/WMSegmentControlAPP/Build/Intermediates.noindex/IBDesignables/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BetterSegmentedControl.build/Objects-normal/x86_64/Options.o : /Users/nadiamettioui/Desktop/PortoFolio\ 2020/WMSegmentContro... | D |
import std.stdio;
import std.conv;
import std.typetuple;
double[3] ar2eig(double[3] input) {
double iso = input[0];
double a = input[1];
double r = input[2];
double xx=iso - a/6.0 + r/2.0;
double yy=iso - a/6.0 - r/2.0;
double zz=iso + a/3.0;
return [xx,yy,zz];
}
double[3] eig2ar(dou... | D |
void foo()
{
uint var1 = 1; // stack: no linkage => no mangling
pragma(msg, var1.mangleof); // prints '_D3bug3fooFZv4var1k'
enum uint var2 = 2; // manifest: no linkage => no mangling
pragma(msg, var2.mangleof); // prints 'k'
// TLS variables are debatable
static uint var3 ... | D |
an entertainer who performs a dramatic or musical work for an audience
| D |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License")... | D |
module hunt.wechat.bean.component.ApiQueryAuthResult;
import hunt.collection.List;
import hunt.wechat.bean.BaseResult;
class ApiQueryAuthResult : BaseResult {
private Authorization_info authorization_info;
public Authorization_info getAuthorization_info() {
return authorization_info;
}
public ... | D |
// Written in the D programming language.
// Copyright: Copyright Digital Mars 2007 - 2011
// Coverify Systems Technology 2011 - 2014
// License: Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LI... | D |
/*
* DSFML - The Simple and Fast Multimedia Library for D
*
* Copyright (c) 2013 - 2018 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 android.java.android.provider.ContactsContract_PhoneLookup_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
@JavaName("ContactsContract$Phone... | D |
a port city in southeastern Apulia in Italy
| D |
module UnrealScript.Engine.MaterialExpressionParticleSubUV;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.MaterialExpressionTextureSample;
extern(C++) interface MaterialExpressionParticleSubUV : MaterialExpressionTextureSample
{
public extern(D):
private static __gshared Scri... | D |
module graphics.mesh;
import std.stdio;
import std.container;
import std.range;
import graphics;
import core;
class Mesh
{
this(Vertex[] vertices, uint[] indices)
{
drawCount = cast(int)indices.length;
auto posList = Array!vec3();
auto texCoordList = Array!vec2();
for (ui... | D |
/Users/gem/Desktop/MovieMoya/the-movie-db/DerivedData/TheNewMovie/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/SnapKit.build/Objects-normal/x86_64/ConstraintRelatableTarget.o : /Users/gem/Desktop/MovieMoya/the-movie-db/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift /Users/gem/Desktop/MovieMoya/the-m... | D |
/******************************************************************************
A binding to some of Tango's network functionality.
License:
Copyright (c) 2009 Jarrett Billingsley
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages ar... | D |
/Users/prajaktakulkarni/Documents/Casper/Build/Intermediates/Pods.build/Debug-iphonesimulator/Eureka.build/Objects-normal/x86_64/Validation.o : /Users/prajaktakulkarni/Documents/Casper/Pods/Eureka/Source/Rows/ActionSheetRow.swift /Users/prajaktakulkarni/Documents/Casper/Pods/Eureka/Source/Rows/AlertRow.swift /Users/pra... | D |
module gfm.sdl2.sdlimage;
import std.string;
import derelict.util.exception,
derelict.sdl2.sdl,
derelict.sdl2.image;
import gfm.core.log,
gfm.core.text,
gfm.sdl2.sdl,
gfm.sdl2.surface;
/// Load images using SDL_image, a SDL companion library able to load various image formats.
fi... | D |
/*******************************************************************************
copyright: Copyright (c) 2004 Kris Bell. All rights reserved
license: BSD style: $(LICENSE)
version: Mar 2004 : Initial release
version: Dec 2006 : South Pacific release
... | D |
/*
* This code is derivative of guess.c of Gauche-0.8.3.
* The following is the original copyright notice.
*/
/*
* guess.c - guessing character encoding
*
* Copyright (c) 2000-2003 Shiro Kawai, All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, ar... | D |
/// D translation of stb_truetype v0.7 by Sean Barrett
/// More information on http://nothings.org/stb/stb_truetype.h
/// Removed:
/// - texture baking API
/// - font finding in the TTF itself. Make sure there is only one font in the TTF.
module gfm.image.stb_truetype;
import core.stdc.stdlib : malloc, free, qsort;
im... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag21883.d(15): Error: `diag21883.ClassB`: base class must be specified first, before any interfaces.
---
*/
// https://issues.dlang.org/show_bug.cgi?id=21883
interface InterfaceA {
}
class ClassA {
}
class ClassB: InterfaceA, ClassA {
}
| D |
module deepmagic.dom.elements.section.h1_element;
import deepmagic.dom;
class H1Element : Html5Element!("h1", true){
mixin(ElementConstructorTemplate!());
}
///Check Default Initialization.
unittest{
H1Element h1 = new H1Element();
assert(h1.toString == "<h1></h1>");
}
| D |
module UnrealScript.Engine.DrawPylonRadiusComponent;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.DrawSphereComponent;
extern(C++) interface DrawPylonRadiusComponent : DrawSphereComponent
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property fina... | D |
// https://issues.dlang.org/show_bug.cgi?id=21275
// REQUIRED_ARGS: -de
// EXTRA_FILES: imports/fail21275a.d
/*
TEST_OUTPUT:
---
fail_compilation/fail21275.d(18): Deprecation: Function `imports.fail21275a.Foo.x` of type `ref int() return` is not accessible from module `fail21275`
fail_compilation/fail21275.d(21): Depr... | D |
module lib.bug.pdb;
debug(deref) {
import std.stdio: writefln;
public void printDebug(
const void*[string] params,
const string func = __FUNCTION__,
const string pac = __MODULE__
) {
writefln("%s(%s)", __FUNCTION__[__MODULE__.length + 1..$], params);
}
} | D |
/**
* Poodinis Dependency Injection Framework
* Copyright 2014-2023 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 poodinis.test.testclasses;
import std.exception;
version (unittest) {
... | D |
/**
License:
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 t... | D |
///* Licensed under the Apache License, Version 2.0 (the "License");
// * you may not use this file except in compliance with the License.
// * You may obtain a copy of the License at
// *
// * http://www.apache.org/licenses/LICENSE-2.0
// *
// * Unless required by applicable law or agreed to in writing, software
... | D |
<?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_22_BeT-9513393... | D |
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag8101b.d(28): Error: none of the overloads of `foo` are callable using argument types `(double)`, candidates are:
fail_compilation/diag8101b.d(19): `diag8101b.S.foo(int _param_0)`
fail_compilation/diag8101b.d(20): `diag8101b.S.foo(int _param_0, int _param_1)`
fail_c... | D |
module dau.allegro;
// library setup
pragma(lib, "dallegro5");
version(none)
{
}
else
{
pragma(lib, "allegro");
pragma(lib, "allegro_primitives");
pragma(lib, "allegro_image");
pragma(lib, "allegro_font");
pragma(lib, "allegro_ttf");
pragma(lib, "allegro_color");
pragma(lib, "allegro_audio");
pragma(lib, "all... | D |
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Fluent.build/QueryBuilder/QueryBuilder+Aggregate.swift.o : /Users/nice/HelloWord/.build/checkouts/fluent.git-6829944210039798771/Sources/Fluent/Model/ID.swift /Users/nice/HelloWord/.build/checkouts/fluent.git-6829944210039798771/Sources/Fluent/Schema/SchemaSup... | D |
// This source code is in the public domain.
/*
Diagram:
TestMenuBar
File MenuHeader
*/
import gtk.MainWindow;
import gtk.Box;
import gtk.Main;
import gtk.MenuBar;
import gtk.MenuItem;
import gtk.Widget;
import gdk.Event;
void main(string[] args)
{
TestRigWindow testRigWindow;
Main.init(args);
te... | D |
/*
* The MIT License (MIT)
*
* Copyright (c) 2014 Devisualization (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 l... | D |
/**
* D header file for C99.
*
* Copyright: Public Domain
* License: Public Domain
* Authors: Sean Kelly
* Standards: ISO/IEC 9899:1999 (E)
*/
module core.stdc.time;
private import core.stdc.config;
private import core.stdc.stddef; // for size_t
extern (C):
version( Windows )
{
struct tm
{
... | D |
module android.java.android.hardware.camera2.CaptureRequest_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.android.hardware.camera2.CaptureRequest_Key_d_interface;
import impor... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
void main()
{
auto T = readln.chomp.to!int;
foreach (_; 0..T) {
auto xy = readln.split.to!(long[]);
auto x = xy[0];
auto y = xy[1];
auto ab = readln.split.to!(long[]);
... | D |
module loggd.util;
import std.conv;
import std.datetime;
class StringBuilder
{
private {
size_t len = 0;
char[] str = [];
}
this (string s = "") {
str = s.dup;
len = s.length;
}
auto append(T)(T item) {
static if (is(T == string)) {
appendString(item);
} else {
appendString(to!string(item));... | D |
/**
* Windows API header module
*
* Translated from MinGW Windows headers
*
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_lmat.d)
*/
module core.sys.windows.lmat;
version (Windows):
pragma(lib, "netapi32");
import core.sys.windows.lmcons, c... | D |
module dw.draw.pixelFormat;
enum PixelFormat
{
NONE,
//RGBA
RGBA8,
RGBA8I, // difference between RGBA8 and RGBA8I: RGBA8 gets treated as float in shader
RGBA8UI,
RGBA16,
RGBA16I,
RGBA16UI,
RGBA16F,
RGBA32I,
RGBA32UI,
RGBA32F,
//RGB
RGB8,
RGB8I,
RGB8UI,
... | D |
an artificial source of visible illumination
a piece of furniture holding one or more electric light bulbs
| D |
module android.java.android.database.sqlite.SQLiteDatabaseLockedException;
public import android.java.android.database.sqlite.SQLiteDatabaseLockedException_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!SQLiteDatabaseLockedException;
import import4 = android.java.java.lang.Class;
import impor... | D |
const int VALUE_APPLE = 8;
const int HP_APPLE = 3;
const int VALUE_CHEESE = 30;
const int HP_CHEESE = 15;
const int VALUE_BACON = 50;
const int HP_BACON = 20;
const int VALUE_BREAD = 20;
const int HP_BREAD = 10;
const int VALUE_FISH = 15;
const int HP_FISH = 5;
const int VALUE_RAWMEAT = 3;
const int HP_RAWMEAT = 6;
co... | D |
/home/ubuntu/hpips_runtime/wasm/target/release/build/proc-macro2-97ef0b3dfdf120bd/build_script_build-97ef0b3dfdf120bd: /home/ubuntu/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.27/build.rs
/home/ubuntu/hpips_runtime/wasm/target/release/build/proc-macro2-97ef0b3dfdf120bd/build_script_build-97ef0b3dfd... | D |
module protocol.voice.v1.voiceHrpc;
import protocol.voice.v1.voice;
import google.protobuf.empty;
mixin Service!(
"VoiceService", "protocol.voice.v1",
);
import harmonytemplates.templates;
| D |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ma... | D |
module unittest_config;
extern (C) const char* unittest_configname = "release";
| D |
instance DIA_Zuris_EXIT(C_Info)
{
npc = VLK_409_Zuris;
nr = 999;
condition = DIA_Zuris_EXIT_Condition;
information = DIA_Zuris_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Zuris_EXIT_Condition()
{
return TRUE;
};
func void DIA_Zuris_EXIT_Info()
{
B_EquipTrader(self);
AI_StopProce... | D |
instance ORG_819_Drax(Npc_Default)
{
name[0] = "Дракс";
npcType = npctype_main;
guild = GIL_ORG;
level = 3;
voice = 6;
id = 819;
attribute[ATR_STRENGTH] = 30;
attribute[ATR_DEXTERITY] = 30;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 136;
attribute[ATR_HITPOINTS] = ... | D |
/Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/x86_64-apple-macosx/debug/Vapor.build/Server/NIOServer.swift.o : /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/Sources/Vapor/Utilities/FileIO.swift /Users/nathanwhite/Desktop/vaporserver/simpleVapor/.build/checkouts/vapor/Sources/Vapo... | D |
deprecated([]) module imports.test19609a;
| D |
/home/javed/Documents/Projects/RustRepo/ultimate_rust_crash_course/exercise/d_control_flow_strings/target/rls/debug/deps/d_control_flow_strings-91e7ec1b75a81c4d.rmeta: src/main.rs
/home/javed/Documents/Projects/RustRepo/ultimate_rust_crash_course/exercise/d_control_flow_strings/target/rls/debug/deps/d_control_flow_str... | D |
INSTANCE Monster_11032_Wesen_HALU (Npc_Default)
{
// ------ NSC ------
name = "Wesen";
guild = GIL_MOLERAT;
id = 11032;
voice = 18;
npctype = NPCTYPE_MAIN;
// ------ Attribute ------
B_SetAttributesToChapter (self, 5);
// ------ Kampf-Taktik ------
fight_tactic = FAI_HUMAN_STRONG;... | D |
func void B_GiveTradeInv(var C_Npc slf)
{
//NS - 01/05/15 переделано через отдельные инвентари торговцев
var C_Npc trd_Joseph; trd_Joseph = Hlp_GetNpc(PIR_205_DS2P_Joseph);
var C_Npc trd_Zedd; trd_Zedd = Hlp_GetNpc(PIR_203_DS2P_Zedd);
var C_Npc trd_KuLa; trd_Zedd = Hlp_GetNpc(Gobbo_DS2P_KuLa);
var C_Npc trd_Eko... | D |
// Написано на языке программирования Динрус. Разработчик Виталий Кулич.
/*
* Placed into the Public Domain.
* Digital Mars, www.digitalmars.com
* Written by Walter Bright
*/
/**
* Simple Unicode character classification functions.
* For ASCII classification, see $(LINK2 std_ctype.html, std.ctype).... | D |
/Users/chrisconner/Desktop/Project\ 1/DerivedData/Project\ 1/Build/Intermediates/Project\ 1.build/Debug-iphonesimulator/Project\ 1.build/Objects-normal/x86_64/AppDelegate.o : /Users/chrisconner/Desktop/Project\ 1/Project\ 1/AppDelegate.swift /Users/chrisconner/Desktop/Project\ 1/Project\ 1/ViewController.swift /Applica... | 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 |
module raytracer.maths.intersection;
import raytracer.maths.point;
struct Intersection
{
Point point() @property pure const nothrow @nogc { return _point; }
private Point _point;
float angle() @property pure const nothrow @nogc { return _angle; }
private float _angle;
static Intersection none() @... | 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_BeT-9817678... | D |
/Users/work/Projects/Hello/.build/x86_64-apple-macosx10.10/debug/Logging.build/Logger.swift.o : /Users/work/Projects/Hello/.build/checkouts/console.git--2431895819212044213/Sources/Logging/LogLevel.swift /Users/work/Projects/Hello/.build/checkouts/console.git--2431895819212044213/Sources/Logging/Logger.swift /Users/wor... | D |
import std.stdio: readln, writeln;
import std.string: strip;
import std.conv: to;
import std.algorithm: max;
/**
* User: Jior
* Date: 03.06.13
* Time: 13:13
*/
void main(string[] args) {
char[] buffer = strip(readln()).dup;
int account = to!int(buffer);
if (account < 0 && buffer.length > 2) {
... | D |
/* Converted to D from fec.h by htod */
module fec;
import std.conv : octal;
/* User include file for libfec
* Copyright 2004, Phil Karn, KA9Q
* May be used under the terms of the GNU Lesser General Public License (LGPL)
*/
//C #ifndef _FEC_H_
//C #define _FEC_H_
//C #ifdef __cplusplus
//C extern ... | D |
#!/usr/bin/env rdmd
/**
A wrapper around DDoc to allow custom extensions
Copyright: D Language Foundation 2018
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Example usage:
---
./ddoc --compiler=<path-to-dmd> --output=out.html myfile.dd
---
Author: Sebastian Wilzbach
*/
import std.algorithm, std.a... | D |
/*
* textbox.d
*
* This module implements a large editable text area for TUI apps.
*
* Author: Dave Wilkinson
* Originated: August 6th 2009
*
*/
module cui.textbox;
import djehuty;
import data.list;
import cui.widget;
import io.console;
class CuiTextBox : CuiWidget {
this(uint x, uint y, uint width, uint... | D |
module org.restlet.service;
public import org.restlet.service.RangeService;
public import org.restlet.service.StatusService;
| D |
instance DIA_Attila_EXIT(C_Info)
{
npc = VLK_494_Attila;
nr = 999;
condition = DIA_Attila_EXIT_Condition;
information = DIA_Attila_EXIT_Info;
permanent = TRUE;
description = Dialog_Ende;
};
func int DIA_Attila_EXIT_Condition()
{
return TRUE;
};
func void DIA_Attila_EXIT_Info()
{
AI_StopProcessInfos(self);
}... | D |
module android.java.java.time.chrono.Era_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import4 = android.java.java.time.format.TextStyle_d_interface;
import import0 = android.java.java.time.temporal... | D |
/***********************************************************************\
* winnt.d *
* *
* Windows API header module *
* ... | D |
good luck in making unexpected and fortunate discoveries
| D |
module android.java.android.animation.ArgbEvaluator_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import0 = android.java.java.lang.Class_d_interface;
final class ArgbEvaluator : IJavaObject {
stat... | D |
// Written in the D programming language.
/**
* MessagePack serializer and deserializer implementation.
*
* MessagePack is a binary-based serialization specification.
*
* Example:
* -----
* auto data = tuple("MessagePack!", [1, 2], true);
*
* auto serialized = pack(data);
*
* // ...
*
* typeof(data) deser... | D |
/** Helper functions for the SU(M)O-KIF file format.
*
* SUO-KIF is used the default encoding of the SUMO ontology.
*/
module nxt.sumo_kif;
@safe:
bool isFormat(scope const(char)[] chars) pure nothrow @nogc
{
import nxt.array_algorithm : findSkip;
while (chars.findSkip('%'))
{
import std.ascii ... | D |
module disgaeareporter.disgaea5.switch_;
import reversineer : Offset, VerifyOffsets;
align(1)
struct D5Switch {
align(1):
}
| D |
$(OBJDIR)/ciloptions.cmi $(OBJDIR)/:
| D |
/Users/Khanh/vapor/TILApp/.build/x86_64-apple-macosx10.10/debug/Bits.build/Bytes.swift.o : /Users/Khanh/vapor/TILApp/.build/checkouts/core.git-9210800844849382486/Sources/Bits/Deprecated.swift /Users/Khanh/vapor/TILApp/.build/checkouts/core.git-9210800844849382486/Sources/Bits/ByteBuffer+require.swift /Users/Khanh/vapo... | D |
/Users/dimdew/CLionProjects/talent_plan_kv/simple_kv/target/debug/kvs_client-0b8eebbdae47bfa7: /Users/dimdew/CLionProjects/talent_plan_kv/simple_kv/src/bin/kvs-client.rs /Users/dimdew/CLionProjects/talent_plan_kv/simple_kv/src/engine/kvs.rs /Users/dimdew/CLionProjects/talent_plan_kv/simple_kv/src/engine/mod.rs /Users/d... | D |
module code.fastappender2_fogmemcpy;
import core.memory;
debug import std.stdio;
pragma(lib, "alibomf32"); // Agner Fog's asmlib
extern(C) void * A_memcpy (void * dest, const void * src, size_t count); // Copy count bytes from src to dest
/// Optimized copying appender, no chaining
struct FastAppender2(T, bool X)
{... | 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.
$(SCRIPT inhibitQuickIndex = 1;)
$(DIVC quickindex,
$(BOOKTABLE,
$(TR $(TH Category) $(TH Functions))
$(TR $(TD Tuple) $(TD
$(LREF isTu... | D |
module dwt.internal.mozilla.nsIURI;
import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;
import dwt.internal.mozilla.nsStringAPI;
const char[] NS_IURI_IID_STR = "07a22cc0-0ce5-11d3-9331-00104ba0fd40";
const nsIID NS_IURI_IID=
{0x07a22cc0, 0x0ce5, 0x11d3,
... | D |
// Written in the D programming language.
/**
This module contains OpenGL access layer.
To enable OpenGL support, build with version(USE_OPENGL);
Synopsis:
----
import dlangui.graphics.glsupport;
----
Copyright: Vadim Lopatin, 2014
License: Boost License 1.0
Authors: Vadim Lopatin, coolreader.org@gmail.com
*/... | D |
/Users/Santana/Desktop/iOS\ Projects/Section10/WeatherApp/DerivedData/WeatherApp/Build/Intermediates/WeatherApp.build/Debug-iphonesimulator/WeatherApp.build/Objects-normal/x86_64/AppDelegate.o : /Users/Santana/Desktop/iOS\ Projects/Section10/WeatherApp/Weather.swift /Users/Santana/Desktop/iOS\ Projects/Section10/Weathe... | D |
// Written in the D programming language
// License: http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0
import dexpr, util;
DExpr computeSum(DExpr expr,DExpr facts=one){
auto var=db1;
auto newFacts=(facts.incDeBruijnVar(1,0)*dIsℤ(db1)).simplify(one);
auto nexpr=expr.simplify(newFacts);
if(nexpr !is expr) exp... | D |
// This code has been mechanically translated from the original FORTRAN
// code at http://netlib.org/quadpack.
// An idiomatic D port can be found in scid.internal.calculus.integrate_qng.
/** This module is deprecated in favour of scid.internal.calculus.integrate_qng.
Authors: Lars Tandle Kyllingstad
Copyr... | D |
/*
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and t... | D |
module dvulkan;
public import dvulkan.types;
public import dvulkan.functions;
| D |
E: c154, c836, c370, c51, c808, c402, c124, c633, c102, c313, c926, c661, c306, c531, c407, c925, c563, c138, c206, c225, c872, c568, c504, c705, c626, c822, c372, c591, c282, c599, c831, c930, c536, c275, c445, c629, c566, c85, c530, c487, c107, c601, c243, c80, c692, c907, c518, c500, c166, c284, c610, c974, c939, c8... | D |
the people who inhabit a territory or state
a group of organisms of the same species inhabiting a given area
(statistics) the entire aggregation of items from which samples can be drawn
the number of inhabitants (either the total number or the number of a particular race or class) in a given place (country or city etc.... | D |
/*
* Copyright 2018 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 applica... | D |
/Users/raed/Desktop/inutrationproject/inutrationapp/Build/Intermediates.noindex/inutrationapp.build/Debug-iphonesimulator/inutrationapp.build/Objects-normal/x86_64/UserBasicProfile+CoreDataClass.o : /Users/raed/Desktop/inutrationproject/inutrationapp/inutrationapp/AppDelegate.swift /Users/raed/Desktop/inutrationproject... | D |
/*******************************************************************************
GetRangeFilter request class.
copyright:
Copyright (c) 2011-2017 dunnhumby Germany GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
************************... | D |
/**
* D header file for POSIX.
*
* Copyright: Copyright David Nadlinger 2011.
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: David Nadlinger, Sean Kelly, Alex Rønne Petersen
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
... | D |
/** D bindings for GSL.
Authors: Chibisi Chima-Okereke
Copyright: Copyright (c) 2016, Chibisi Chima-Okereke. All rights reserved.
License: Boost License 1.0
*/
module gsl.chebyshev;
import gsl.math;
import gsl.mode;
extern (C):
alias gsl_cheb_series_struct gsl_cheb_series;
struct gsl_cheb_series_... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.