code stringlengths 3 10M | language stringclasses 31
values |
|---|---|
module core.lifetime;
// emplace
/**
Given a pointer `chunk` to uninitialized memory (but already typed
as `T`), constructs an object of non-`class` type `T` at that
address. If `T` is a class, initializes the class reference to null.
Returns: A pointer to the newly constructed object (which is the same
as `chunk`).
... | D |
/home/hedayat/holo/tutorial/art_game/zomes/game/code/target/rls/debug/deps/libproc_macro_hack_impl-02e0ababafa590b0.so: /home/hedayat/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-impl-0.4.2/src/lib.rs
/home/hedayat/holo/tutorial/art_game/zomes/game/code/target/rls/debug/deps/proc_macro_hack_impl-02e... | D |
// проверка некоторых виджетов в qte5
import core.runtime;
import std.stdio;
import asc1251;
import qte5;
// const string strElow = "background: #FCFDC6"; //#F8FFA1";
const string strElow = "background: #F8FFA1";
// Проверка события KeyPressEvent
bool onChar(void* ev) {
// 1 - Схватить событие пришедше... | D |
an army unit large enough to sustain combat
one of the portions into which something is regarded as divided and which together constitute a whole
the act or process of dividing
an administrative unit in government or business
discord that splits a group
a league ranked by quality
(biology) a group of organisms forming ... | D |
/Users/Laird/Code/Projects/AllergyAlert/build/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/ParameterEncoding.o : /Users/Laird/Code/Projects/AllergyAlert/Pods/Alamofire/Source/AFError.swift /Users/Laird/Code/Projects/AllergyAlert/Pods/Alamofire/Source/Alamofire.swift /Users/Laird/Code/Projects/... | D |
/*
TEST_OUTPUT:
---
fail_compilation/fail13336a.d(28): Error: `choose(true)` is not an lvalue
---
*/
class Animal {}
class Cat : Animal {}
class Dog : Animal {}
Animal animal;
Cat cat;
auto ref choose(bool f)
{
if (f)
return cat;
else
return animal;
}
void main()
{
//pragma(msg, typeof(&... | D |
/Users/okasho/serverProject/tryswift/get_and_post/swift/.build/debug/Fluent.build/Schema/Schema+Modifier.swift.o : /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Fluent-1.4.1/Sources/Fluent/Database/Database.swift /Users/okasho/serverProject/tryswift/get_and_post/swift/Packages/Fluent-1.4.1/Sources/Fl... | D |
module android.java.android.database.ContentObservable;
public import android.java.android.database.ContentObservable_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ContentObservable;
import import2 = android.java.java.lang.Class;
| D |
/*
* This file is part of EvinceD.
* EvinceD is based on GtkD.
*
* EvinceD 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 later version... | D |
func void evt_addon_adanosdoor_entrance_voicescript()
{
B_Say(self,self,"$ADDON_OPENADANOSTEMPLE");
};
| D |
instance CS_Eskorte2(Npc_Default)
{
name[0] = "Eskorta";
slot = "Strážce";
guild = GIL_GRD;
level = 5;
flags = 0;
voice = 11;
id = 3023;
attribute[ATR_STRENGTH] = 13;
attribute[ATR_DEXTERITY] = 9;
attribute[ATR_MANA_MAX] = 0;
attribute[ATR_MANA] = 0;
attribute[ATR_HITPOINTS_MAX] = 26;
attribute[ATR_HITPOIN... | D |
/Users/shivamkapur/Desktop/Kali/DerivedData/DateTime/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Kali.build/Objects-normal/x86_64/DateTime.o : /Users/shivamkapur/Desktop/Kali/src/DateTime.swift /Users/shivamkapur/Desktop/Kali/src/Month.swift /Users/shivamkapur/Desktop/Kali/src/Timespan.swift /Users/shi... | D |
/**
* D header file for POSIX.
*
* 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
* Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition
*/
/* Copyright Sean Kelly 20... | D |
/**
Copyright: Copyright (c) 2017-2019 Andrey Penechko.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: Andrey Penechko.
*/
/// Basic block
module vox.ir.ir_basic_block;
import std.bitmanip : bitfields;
import vox.all;
/// Must end with one of block_exit_... instructions
/// Only single loop en... | D |
/*
TEST_OUTPUT:
---
fail_compilation/ice1144.d(14): Error: undefined identifier `a`
fail_compilation/ice1144.d(23): Error: template instance ice1144.testHelper!("hello", "world") error instantiating
---
*/
// Issue 1144 - ICE(template.c) template mixin causes DMD crash
char[] testHelper(A ...)()
{
char[] result;
... | D |
module sliding.ui.picture;
import dsfml.graphics;
import sliding.domain.avoid;
import sliding.domain.exception;
import sliding.domain.tile;
import sliding.ui.anime;
import sliding.ui.config;
import sliding.ui.conv;
import sliding.ui.piece;
import sliding.ui.util;
class Picture
{
this(Void void_, string filename)
{... | D |
module directx.d3d11shader;
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: D3D11Shader.h
// Content: D3D11 Shader Types and APIs
//
///////////////////////////////////////////////////////////////////... | D |
auto a = short(1); // implicitly convert an integer literal '1' to short
auto b = double(a); // implicitly convert a short variable 'a' to double
auto c = byte(128); // error, 128 cannot be represented in a byte
auto a = ushort(); // same as: ushort.init
auto b = wchar(); // same as: wchar.init
auto c = creal(); ... | D |
module vfg.voxelgenerator;
struct VoxelGeneratorConfig(N){
import armos.math;
private alias V3 = Vector!(N, 3);
V3 scale = V3(0.1, 0.1, 0.1);
bool isInverse = false;
}
import armos.graphics.model;
import vfg.scaledgrid;
auto generateVoxel(N)(Model model, in VoxelGeneratorConfig!N config){
auto v... | D |
/Users/Trupti/Desktop/Eva/build/Eva.build/Debug-iphonesimulator/Eva.build/Objects-normal/x86_64/MainViewController.o : /Users/Trupti/Desktop/Eva/Eva/ThirdPartyFiles/FloatingTextField/FloatingTextField.swift /Users/Trupti/Desktop/Eva/Eva/Helper/Models/CardRecommand.swift /Users/Trupti/Desktop/Eva/Eva/AppDelegate/AppDele... | D |
module des.il.util;
import std.algorithm;
import std.exception;
import std.traits;
import std.range;
import std.conv : to;
import des.ts;
import des.math.linear.vector;
import des.il.region;
///
class ImageException : Exception
{
///
this( string msg, string file=__FILE__, size_t line=__LINE__ ) @safe pure... | D |
module CPUblit.colorspaces;
/**
* CPUblit
* Color space descriptions by Laszlo Szeremi
*/
/**
* 32 bit color space.
* Used for architectures where vector instructions are not readily available.
*/
struct Color32Bit {
union{
uint base;
ubyte[4] bytes;
}
version (cpublit_revalph... | D |
/*******************************************************************************
Fiber/coroutine based non-blocking output class
Non-blocking output select client using a fiber/coroutine to suspend
operation while waiting for the write event and resume on that event.
Provides methods to:
* se... | D |
short-tailed rough-haired South American rodent
| D |
/**
* Written in the D programming language.
* This module provides OS X x86-64 specific support for sections.
*
* Copyright: Copyright Digital Mars 2016.
* License: Distributed under the
* $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0).
* (See accompanying file LICENSE)
* Aut... | D |
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric;
void main()
{
auto nr = readln.split.to!(int[]);
auto N = nr[0];
auto R = nr[1];
if (N >= 10) {
writeln(R);
} else {
writeln(R + 100 * (10-N));
}
} | 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 app.form.LoginForm;
import hunt.framework;
class LoginForm : Form
{
mixin MakeForm;
@Length(1, 20)
string name;
@Length(6, 20)
string password;
} | D |
// Utility and Math functions
// Copyright (c) kei mesuda 2007
// (http://www.yomogi.sakura.ne.jp/~si)
// Modified klaus blindert 2008
//------------------------------------------------------------------------------------------
module util;
import std.c.string;
//--------------------------------------------... | D |
module org.serviio.delivery.HttpDeliveryContainer;
import java.lang.String;
import java.lang.Long;
import java.io.InputStream;
import java.util.Map;
import org.apache.http.ProtocolVersion;
import org.serviio.upnp.protocol.http.transport.TransferMode;
public class HttpDeliveryContainer
{
private Map!(String, Object)... | D |
/home/liyun/clink/clink_mpc/target/debug/deps/itertools-19eadccc34be79dd.rmeta: /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/itertools-0.9.0/src/lib.rs /home/liyun/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/itertools-0.9.0/src/impl_macros.rs /home/liyun/.cargo/registry/src/mirrors.... | D |
module android.java.java.math.BigDecimal_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import2 = android.java.java.math.BigDecimal_d_interface;
import import0 = android.java.java.math.MathContext_d_... | D |
import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;
immutable int INF = 1 << 29;
bool solve() {
auto N = readln.chomp.to!int;
auto P = readln.split.map!(to!int).array;
auto X = re... | 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 |
module duck.compiler.semantic;
import duck.compiler.ast, duck.compiler.lexer, duck.compiler.types;//, duck.compiler.transforms;
import duck.compiler.visitors, duck.compiler.context;
import duck.compiler.scopes;
import duck.compiler;
import duck.compiler.dbg;
import duck.compiler.semantic.helpers;
import duck;
import ... | D |
module fuji.font;
public import fuji.fuji;
import fuji.matrix;
/**
* @struct MFFont
* Represents a Fuji Font.
*/
struct MFFont;
/**
* Font Justification.
* These are the available text justifications.
*/
enum MFFontJustify
{
Top_Left, /**< Justify top left. */
Top_Center, /**< Justify top center. */
Top_Right... | D |
module dlangide.builders.extprocess;
import dlangui.core.logger;
import std.process;
import std.stdio;
import std.utf;
import std.stdio;
import core.thread;
import core.sync.mutex;
/// interface to forward process output to
interface TextWriter {
/// log lines
void writeText(dstring text);
}
/// interface t... | D |
/**
Run-time options.
*/
module unit_threaded.runner.options;
///
struct Options {
bool multiThreaded;
string[] testsToRun;
bool debugOutput;
bool list;
bool exit;
bool forceEscCodes;
bool random;
uint seed;
bool stackTraces;
bool showChrono;
}
/**
* Parses the command-li... | D |
template Tuple(T...) {
alias T Tuple;
}
template Repeat(int count) {
static if (!count) {
alias Tuple!() Repeat;
} else {
alias Tuple!(count-1, Repeat!(count-1)) Repeat;
}
}
void sometemplate(int T)() {
foreach (x; Repeat!(62)) {
sometemplate!(T)();
}
}
... | D |
/Users/mli/Desktop/Develope/Swift/LBE_Demo/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/IBubbleChartDataSet.o : /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/mli/Desktop/Develope/Swift/LBE_Demo/Pods/Charts/... | D |
# FIXED
ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_3_10_00_15/source/ti/blestack/icall/app/ble_user_config.c
ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_3_10_00_15/source/ti/blestack/hal/src/target/_common/hal_types.h
ICallBLE/ble_user_config.obj: C:/ti/simplelink_cc2640r2_sdk_3_10_00_... | D |
// *********************
// Vatras predigt auf WP
// *********************
func void ZS_Preach_Vatras()
{
Perception_Set_Normal();
B_UseHat (self);
Npc_PercDisable (self, PERC_ASSESSQUIETSOUND ); //sonst werden OUs abgebrochen - Grund: unbekannt
B_ResetAll (self);
if (self.aivar[AIV_Schwierigkeitsgrad... | D |
/home/dart/DoThinking/RustMain/Advanced/day27_unsafe/open_unsafe4_c_lang_call_rust/by/target/debug/deps/libby-4b0a2a2fbc99b0f8.a: src/lib.rs
/home/dart/DoThinking/RustMain/Advanced/day27_unsafe/open_unsafe4_c_lang_call_rust/by/target/debug/deps/by-4b0a2a2fbc99b0f8.d: src/lib.rs
src/lib.rs:
| D |
module citro3d.types;
extern (C): nothrow: @nogc:
alias C3D_IVec = uint;
pragma(inline, true)
C3D_IVec IVec_Pack (ubyte x, ubyte y, ubyte z, ubyte w)
{
return cast(uint)x | (cast(uint)y << 8) | (cast(uint)z << 16) | (cast(uint)w << 24);
}
/**
* @defgroup math_support Math Support Library
* @brief Implementati... | D |
characterized by or causing or resulting from the process of bringing ideas or events together in memory or imagination
| D |
module deepmagic.layout.code_black.body_block.main_block.older_ie_message.older_ie_message;
import deepmagic.layout.code_black;
class AppLayoutOlderIEMessage : DivElement{
this(){
super();
this.init();
}
override void init(){
string comment = "[if lt IE 9]>
<div class='ie-block'>
<h1 class='Ops'>
... | D |
.build_1i2o2_lin33_48k_farenddsp/_l_mic_array/src/fir/fir_coefs.xc.d .build_1i2o2_lin33_48k_farenddsp/_l_mic_array/src/fir/fir_coefs.xc.o .build_1i2o2_lin33_48k_farenddsp/_l_mic_array/src/fir/fir_coefs.xc.pca.xml: C:/Users/user/workspace/lib_mic_array/src/fir/fir_coefs.xc
| D |
///
module serialport.base;
package import std.algorithm;
package import std.array;
package import std.conv : to, text;
package import std.exception;
package import std.experimental.logger;
package import std.path;
package import std.string;
package import std.datetime.stopwatch : StopWatch, AutoStart;
package import ... | D |
/*********************************************************
Copyright: (C) 2008 by Steven Schveighoffer.
All rights reserved
License: $(LICENSE)
**********************************************************/
module col.model.Multi;
public import col.model.Collection,
col.model.Addable;
/**
*... | D |
/*******************************************************************************
RemoveChannel request implementation.
copyright:
Copyright (c) 2017 sociomantic labs GmbH. All rights reserved
License:
Boost Software License Version 1.0. See LICENSE.txt for details.
**********************... | D |
#!rdmd
// above not work do this instead: 'rdmd vprompt.d' - not that either, just enter the name with the '.d' extenstion, but just for single files.
//#not work
/**
* Title: Welcome to the Verse Prompt Bible Memory verse Program! <b>:-D</b>
* Credits: digitalmars.com/d/2.0/index.html - Walter Bright - The D Progra... | D |
// D command-line interface parser that will make you smile.
// Copyright (c) 2014, 2015 Bob Tolbert, bob@tolbert.org
// Licensed under terms of MIT license (see LICENSE-MIT)
//
// https://github.com/rwtolbert/docopt.d
//
// Ported from Python to D based on:
// - http://docopt.org
import std.stdio;
import std.... | D |
/Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/DerivedData/CryptoLive/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ScatterChartView.o : /Users/Jaskeerat/Desktop/CryptoLive/CryptoLive/Pods/Charts/Source/Charts/Filters/DataApproximator+N.swift /Users/Jaskeerat/Desktop/Cr... | D |
/*
* This file has been automatically generated by Soupply and released under the MIT license.
*/
module soupply.java335.packet;
import xpacket;
alias Java335Packet = PacketImpl!(Endian.bigEndian, varuint, varuint);
| D |
//######################################################
//
// Kern des Skriptpakets "Ikarus"
// Autor : Sektenspinner
// Co-Autor : Gottfried, mud-freak, Neconspictor
// Version : 1.2.2
//
//######################################################
//*********************************************... | D |
/*
Copyright (c) 2011-2013 Timur Gafarov
Boost Software License - Version 1.0 - August 17th, 2003
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute... | D |
// PERMUTE_ARGS:
extern(C) int printf(const char*, ...);
class Eh : Exception
{
this()
{
super("Eh thrown");
}
}
/********************************************/
class Foo
{
static int x;
this()
{
assert(x == 0);
x++;
printf("Foo.this()\n");
throw new Eh();
assert(0);
}
~this(... | D |
# FIXED
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/ble5stack/hal/src/common/hal_assert.c
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/ble5stack/hal/src/inc/hal_assert.h
HAL/Common/hal_assert.obj: C:/ti/simplelink_cc2640r2_sdk_1_40_00_45/source/ti/ble5... | 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 |
module mecca.reactor.platform.linux.epoll;
// Licensed under the Boost license. Full copyright information in the AUTHORS file
import core.stdc.errno;
import core.sys.linux.epoll;
import core.sys.posix.fcntl;
import unistd = core.sys.posix.unistd;
import std.conv;
import std.exception;
import std.meta;
import std.tra... | D |
module android.java.android.provider.ContactsContract_StatusUpdates;
public import android.java.android.provider.ContactsContract_StatusUpdates_d_interface;
import arsd.jni : ImportExportImpl;
mixin ImportExportImpl!ContactsContract_StatusUpdates;
import import0 = android.java.java.lang.Class;
| D |
/Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/build/Pods.build/Debug-iphonesimulator/Action.build/Objects-normal/x86_64/Action+Extensions.o : /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/Action/Sources/Action/Action+Internal.swift /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/Action/Sources/Action/C... | D |
/*
TEST_OUTPUT:
---
fail_compilation/diag12777.d(14): Error: cannot modify const expression this.v
fail_compilation/diag12777.d(15): Error: cannot modify immutable expression this.v
fail_compilation/diag12777.d(21): Error: cannot modify const expression this.v
fail_compilation/diag12777.d(22): Error: cannot modify immu... | D |
module ctpg.combinators;
import std.conv : to;
import std.typecons : Tuple, tuple;
import std.traits : CommonType, isArray;
import std.range : hasSlicing;
import ctpg : parse;
import ctpg.for_unittest;
import ctpg.parse_result : ParseResult, getParseResultType, getParseResultTypes;
import ctpg.parser_kind : Parser... | D |
/*
Reinsertor Genérico para ficheros DAT del Tales of the Abyss
*/
import std.stdio, std.stream, std.file, std.string, std.date;
import tales.util.gameformat, tales.common, tales.util.rangelist;
import tales.scont.generic, tales.scont.iso;
import tales.isopath;
version = alignfake;
version(alignfake) {
... | D |
/++
REQUIRED_ARGS: -HC=verbose -c -o- -d
PERMUTE_ARGS:
TEST_OUTPUT:
---
// Automatically generated by Digital Mars D Compiler v2097
#pragma once
#include <assert.h>
#include <stddef.h>
#include <stdint.h>
#include <math.h>
#ifdef CUSTOM_D_ARRAY_TYPE
#define _d_dynamicArray CUSTOM_D_ARRAY_TYPE
#else
/// Represents a ... | D |
/*
* thread.d
*
* This Scaffold holds the Thread implementations for the Linux platform
*
* Author: Dave Wilkinson
*
*/
module scaffold.thread;
import core.string;
import core.color;
import core.main;
import core.definitions;
import core.string;
import synch.thread;
import platform.osx.common;
import platfor... | D |
module UnrealScript.TribesGame.TrProj_ThumperD;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.TribesGame.TrProj_Thumper;
extern(C++) interface TrProj_ThumperD : TrProj_Thumper
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property final static ScriptClass... | D |
module menu.options;
/* OptionsMenu: Menu with several tabs to set user options and global options.
*/
import std.algorithm;
import std.string;
import std.conv;
import enumap;
import file.option;
import file.option;
import file.language;
import file.option; // only to name the type for addNumPick
import gui;
impor... | D |
/home/solidity/Code/bonedaddy/rustiboi/ownership/target/debug/deps/ownership-a072ccae64b840bf: src/main.rs
/home/solidity/Code/bonedaddy/rustiboi/ownership/target/debug/deps/ownership-a072ccae64b840bf.d: src/main.rs
src/main.rs:
| D |
(sports) a return made with the palm of the hand facing the direction of the stroke (as in tennis or badminton or squash)
(of racket strokes) made with palm facing direction of stroke
| D |
// REQUIRED_ARGS:
//
module test42;
import std.stdio;
import core.stdc.stdio;
import std.string;
import core.memory;
/***************************************************/
class Foo {
template myCast(T) {
T myCast(U)(U val) {
return cast(T) val;
}
}
}
void test1()
{
Foo foo = n... | D |
/* ---- NUMBER THEORY ---- */
module tomcrypt.pk;
import core.stdc.config : c_ulong;
import core.stdc.stddef : wchar_t;
import tomcrypt.prng;
import tomcrypt.pkcs;
extern(C) nothrow:
enum
{
PK_PUBLIC=0,
PK_PRIVATE=1
}
int rand_prime(void *N, long len, prng_state *prng, int wprng);
/* ---- RSA ---- */
vers... | D |
module jsm;
import simd_set;
import sorted_array_set;
import properties;
import encoders;
import context;
import cbo;
import std.algorithm;
import std.csv;
import std.file : readFile = read;
import std.format;
import std.getopt;
import std.range;
import std.stdio;
int main(string[] args) {
void usage() {
... | D |
# FIXED
Comun/common/F2837xD_sdfm_drivers.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/Comun/common/F2837xD_sdfm_drivers.c
Comun/common/F2837xD_sdfm_drivers.obj: C:/Users/dagaro/workspace/Firmware_Test/UFCharger/F2837xD/F2837xD_common/include/F28x_Project.h
Comun/common/F2837xD_sdfm_drivers.obj: C:/U... | D |
module voxelman.chat.plugin;
import voxelman.log;
import pluginlib;
import voxelman.text.messagewindow : MessageWindow;
import voxelman.core.events;
import voxelman.net.packets;
import voxelman.command.plugin;
import voxelman.eventdispatcher.plugin;
import voxelman.net.plugin;
import voxelman.session;
final class ... | D |
module UnrealScript.Engine.MaterialExpressionDestColor;
import ScriptClasses;
import UnrealScript.Helpers;
import UnrealScript.Engine.MaterialExpression;
extern(C++) interface MaterialExpressionDestColor : MaterialExpression
{
public extern(D):
private static __gshared ScriptClass mStaticClass;
@property ... | D |
/***********************************************************************\
* shlguid.d *
* *
* Windows API header module *
* ... | D |
// Copyright 2019, University of Freiburg.
// Chair of Algorithms and Data Structures.
// Markus Näther <naetherm@informatik.uni-freiburg.de>
module dgenerator.generator;
import std.stdio;
import std.container;
import std.variant;
import darg;
import snck: snck;
/**
* @struct
* Options
*
* @brief
* Simple struc... | D |
module android.java.android.bluetooth.BluetoothManager_d_interface;
import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers;
static import arsd.jni;
import import6 = android.java.java.lang.Class_d_interface;
import import3 = android.java.android.bluetoo... | D |
dmark$ (6) --- return the position of a disk file 03/25/82
_C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n
file_mark function dmark$ (f)
file_des f
Library: vswtlb (standard Subsystem library)
_F_u_n_c_t_... | D |
/Users/nazarkovalik/Desktop/work/MouseHunter/MouseHunter/DerivedData/Catch\ the\ jellyfish/Build/Intermediates.noindex/FunnyJellyfish.build/Debug-iphonesimulator/Catch\ the\ jellyfish.build/Objects-normal/x86_64/ViewController.o : /Users/nazarkovalik/Desktop/work/MouseHunter/MouseHunter/Catch\ the\ jellyfish/Mouse.swif... | D |
import std.stdio;
import std.string;
import std.file;
import std.algorithm;
import std.array;
import std.conv;
struct passport {
string byr = null;
string iyr = null;
string eyr = null;
string hgt = null;
string hcl = null;
string ecl = null;
string pid = null;
string cid = null;
}
voi... | D |
/Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Build/Intermediates/Pods.build/Debug-iphonesimulator/Differ.build/Objects-normal/x86_64/Patch+Apply.o : /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Differ/Sources/Differ/Diff.swift /Users/nikhilsridhar/Desktop/Dyce/DyceAppIOS/Pods/Differ/Sources/Differ/ExtendedDiff.swi... | 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/_winnls.d)
*/
module core.sys.windows.winnls;
version (Windows):
@system:
version (ANSI) {} ... | D |
// Copyright (c) 2014- Facebook
// License: Boost License 1.0, http://boost.org/LICENSE_1_0.txt
// @author Andrei Alexandrescu (andrei.alexandrescu@facebook.com)
import std.file, std.getopt, std.stdio;
import Checks, FileCategories, Ignored, Tokenizer;
bool recursive = true;
/**
* Entry point. Reads in turn and ver... | D |
/Users/mli/Desktop/Develope/Swift/RxSwiftDemo20190402/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ObserveOn.o : /Users/mli/Desktop/Develope/Swift/RxSwiftDemo20190402/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/mli/Desktop/Develope/Swift/RxSwiftDemo20190402/Pods... | D |
instance DIA_FELLAN_EXIT(C_INFO)
{
npc = vlk_480_fellan;
nr = 999;
condition = dia_fellan_exit_condition;
information = dia_fellan_exit_info;
permanent = TRUE;
description = DIALOG_ENDE;
};
func int dia_fellan_exit_condition()
{
return TRUE;
};
func void dia_fellan_exit_info()
{
AI_StopProcessInfos(self);
}... | D |
a step in walking or running
the grooved surface of a pneumatic tire
the part (as of a wheel or shoe) that makes contact with the ground
structural member consisting of the horizontal part of a stair or step
put down or press the foot, place the foot
tread or stomp heavily or roughly
crush as if by treading on
brace (a... | D |
/Users/kevinlee/Desktop/eecs441/eLect/michiganseniors/frontend/ElectionCreation/CreateElection/DerivedData/CreateElection/Build/Intermediates.noindex/CreateElection.build/Debug-iphonesimulator/CreateElection.build/Objects-normal/x86_64/SceneDelegate.o : /Users/kevinlee/Desktop/eecs441/eLect/michiganseniors/frontend/Ele... | D |
/Users/a18968/Develop/RxSwiftSampler/DerivedData/RxSwiftSampler/Build/Intermediates/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Range.o : /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/Observables/Implementations/AddRef.swift /Users/a18968/Develop/RxSwiftSampler/Pods/RxSwift/RxSwift/... | D |
a particular environment or surrounding influence
a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade
the mass of air surrounding the Earth
the weather or climate at some place
the envelope of gases surrounding any celestial body
a distinctive but int... | D |
/***********************************\
CONSOLECOMMANDS
\***********************************/
//========================================
// [intern] Class / Variables
//========================================
class CCItem {
var int fncID;
var string cmd;
};
instance CCItem@(CCItem);
const int _CC_L... | D |
module kerisy.provider.BreadcrumbServiceProvider;
import kerisy.provider.ServiceProvider;
import kerisy.breadcrumb.BreadcrumbsManager;
import kerisy.breadcrumb.Breadcrumbs;
import poodinis;
/**
*
*/
class BreadcrumbServiceProvider : ServiceProvider {
BreadcrumbsManager breadcrumbs() {
return containe... | D |
/*
Copyright (c) 1996 Blake McBride
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. Redistributions of source code must retain the above copyright
notice, this list of conditions and th... | D |
/**
* The shared library module provопрes a basic layer around the исконный functions
* used в_ загрузи symbols из_ shared libraries.
*
* Copyright: Copyright (C) 2007 Tomasz Stachowiak
* License: BSD стиль: $(LICENSE)
* Authors: Tomasz Stachowiak, Anders Bergh
*/
module sys.SharedLib;
privat... | D |
module pixelperfectengine.concrete.elements.panel;
import pixelperfectengine.concrete.elements.base;
import pixelperfectengine.system.etc : clamp, cmpObjPtr;
import collections.linkedlist;
/**
* Panel for grouping elements.
* Does not directly handle elements, instead relies on blitter transparency. However, can... | D |
//#I don't think this is even used
module data;
import std.stdio;
import std.string;
import money;
import jmisc;
import mmisc;
final class Data {
private:
int _index;
int _day,_month,_year;
string _shop;
string _item;
bdub _cost;
string _comment;
public:
int index() { return _index; }
int index(int index0)... | D |
/**
Contains high-level functionality for working with packages.
Copyright: © 2012-2013 Matthias Dondorff, © 2012-2016 Sönke Ludwig
License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
Authors: Matthias Dondorff, Sönke Ludwig, Martin Nowak, Nick Sabalausky
*/
module dub.pa... | D |
/afs/cern.ch/work/m/mmittal/private/MyAnalysisCode/RootCoreBin/obj/x86_64-slc6-gcc49-opt/TruthWeightTools/obj/TruthMetaDataTest.o /afs/cern.ch/work/m/mmittal/private/MyAnalysisCode/RootCoreBin/obj/x86_64-slc6-gcc49-opt/TruthWeightTools/obj/TruthMetaDataTest.d : /afs/cern.ch/work/m/mmittal/private/MyAnalysisCode/TruthWe... | D |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.