code
stringlengths
3
10M
language
stringclasses
31 values
module webkit2webextension.DOMCSSRule; private import glib.ErrorG; private import glib.GException; private import glib.Str; private import gobject.ObjectG; private import webkit2webextension.DOMCSSStyleSheet; private import webkit2webextension.DOMObject; private import webkit2webextension.c.functions; public import w...
D
// Copyright Brian Schott (Hackerpilot) 2014. // 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 dscanner.analysis.stats_collector; import dparse.ast; import dparse.lexer; import dscann...
D
/Users/hyungsukkang/terra/terra-contracts/uniswapv1/target/rls/debug/deps/cfg_if-224cafc4b959bbef.rmeta: /Users/hyungsukkang/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs /Users/hyungsukkang/terra/terra-contracts/uniswapv1/target/rls/debug/deps/libcfg_if-224cafc4b959bbef.rlib: /Users/hyungsu...
D
module android.helper.log; import android.log; import std.functional:partial; alias LOGW = partial!(__android_log_print, android_LogPriority.ANDROID_LOG_WARN); alias LOGE = partial!(__android_log_print, android_LogPriority.ANDROID_LOG_ERROR); alias LOGI = partial!(__android_log_print, android_LogPriority.ANDROID_LOG...
D
int g = 0; static ~this() { assert(g == 100); } void main() out { g = 100; } do { return; // expected return code == 0 }
D
/Users/macmini2/Desktop/workSpace/Perfect-HTTP/.build/x86_64-apple-macosx10.10/debug/PerfectLib.build/SysProcess.swift.o : /Users/macmini2/Desktop/workSpace/Perfect-HTTP/.build/checkouts/PerfectLib.git-3712999737848873669/Sources/PerfectLib/JSONConvertible.swift /Users/macmini2/Desktop/workSpace/Perfect-HTTP/.build/che...
D
module android.java.android.graphics.drawable.TransitionDrawable_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import7 = android.java.android.graphics.Rect_d_interface; import import5 = android.java...
D
/* REQUIRED_ARGS: -checkaction=context -dip25 -dip1000 */ void test8765() { string msg; try { int a = 0; assert(a); } catch (Throwable e) { // no-message -> assert expression msg = e.msg; } assert(msg && msg == "assert(a) failed"); } void test9255() { ...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; void main() { auto hw = readln.split.to!(int[]); auto H = hw[0]; auto W = hw[1]; int[][] MAP; foreach (_; 0..H) MAP ~= readln.split.to!(int[]); auto DP = new long[]...
D
int main() { int a; int b; for( a = 0 ; a < 10 ; a = a + 1 ){ Print( a ); } Print("----------------------------"); for( a = 0 ; a < 10 ; a = a + 1 ){ for( b = 0 ; b < 10 ; b = b + 1 ){ Print(a); Print(b); Print("----"); } } Prin...
D
// Copyright Brian Schott (Hackerpilot) 2014. // 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 analysis.fish; import std.stdio; import dparse.ast; import dparse.lexer; import analysis...
D
import std.stdio; import std.uuid; import std.conv; import core.time; import vibe.core.core; import sam.server.actor : Actor; import sam.server.actorsystem : ActorSystem, ActorSystemBuilder, UseInMemoryActorSystem; import sam.common.interfaces.actor : IActor; interface IHelloWorldActor : IActor { void sayHi(string ...
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 Mod_7790_SFB_Schuerfer_PAT (Npc_Default) { //-------- primary data -------- name = NAME_Schuerfer; npctype = Npctype_MAIN; guild = GIL_VLK; level = 6; voice = 0; id = 7790; //-------- abilities -------- attribute[ATR_STRENGTH] = 30; attribute[ATR_DEXTERITY] = 10; ...
D
/Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/DerivedData/mealify/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Alamofire.build/Objects-normal/x86_64/SessionDelegate.o : /Users/justinlew/Documents/SFU/CMPT276/justinlew.mealify.io/Pods/Alamofire/Source/MultipartFormData.swift /Users/justinle...
D
/** * Copyright: Copyright (c) 2016 Wojciech Szęszoł. All rights reserved. * Authors: Wojciech Szęszoł * Version: Initial created: Feb 14, 2016 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0) */ module clang.Token; import std.conv : to; import std.typecons; public import std.r...
D
module UnrealScript.UTGame.UTSeqEvent_FlagEvent; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.Engine.Controller; import UnrealScript.Engine.SequenceEvent; extern(C++) interface UTSeqEvent_FlagEvent : SequenceEvent { public extern(D): private static __gshared ScriptClass mStaticCla...
D
/* * Copyright Andrej Mitrovic 2014. * 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 wkBindKeys.dialog; import std.algorithm; import std.string; import win32.winuser; /**...
D
module game.core.chatarea; /* This is typically never hidden. * Only label and texttype are hidden while not typing. * The chat console can be empty and we can be not typing, then we don't * draw anything. */ import std.algorithm; import std.format; import std.range; import file.option; import file.replay; impor...
D
module ast.module_node; import ast.declaration_node; import ast.import_declaration_node; class ModuleNode { private: char[] _name; DeclarationNode[] _declarations; public: this(char[] name, DeclarationNode[] declarations) { _name = name.dup; _declarations = declarations; } char[] name() { return _name.du...
D
module hunt.sql.ast.SQLStructDataType; import hunt.sql.ast.SQLObjectImpl; import hunt.sql.ast.SQLObject; import hunt.sql.ast.SQLDataType; import hunt.sql.ast.SQLName; import hunt.sql.ast.SQLExpr; import hunt.sql.util.FnvHash; import hunt.sql.visitor.SQLASTVisitor; import hunt.collection; public class S...
D
/Users/slashare/zongjie/rust/code/messages-actix/target/rls/debug/deps/bytestring-0e8358024b7d2b9d.rmeta: /Users/slashare/.cargo/registry/src/github.com-1ecc6299db9ec823/bytestring-0.1.5/src/lib.rs /Users/slashare/zongjie/rust/code/messages-actix/target/rls/debug/deps/bytestring-0e8358024b7d2b9d.d: /Users/slashare/.ca...
D
surgical removal of a body part or tissue the act of pulling up or out
D
/Users/Ari/Desktop/ArisAdditionsToAllBeat/allbeat-ios/allbeat/DerivedData/allbeat/Build/Intermediates/Alamofire.build/Debug-iphonesimulator/Alamofire\ iOS.build/Objects-normal/x86_64/Error.o : /Users/Ari/Desktop/ArisAdditionsToAllBeat/allbeat-ios/allbeat/Alamofire/Source/Timeline.swift /Users/Ari/Desktop/ArisAdditionsT...
D
/Users/Salgara/Desktop/IOS/CurrencyApp/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/Map.o : /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/Salgara/Desktop/IOS/CurrencyApp/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift /Use...
D
//********************************************************************* // Info EXIT //********************************************************************* INSTANCE DIA_NASZ_103_Johny_EXIT (C_INFO) { npc = NASZ_103_Johny; nr = 999; condition = DIA_NASZ_103_Johny_EXIT_Condition; information = ...
D
import std.algorithm, std.conv, std.ctype, std.regex, std.range, std.stdio, std.string; struct PersonaData { uint totalWordsSpoken; uint [string] wordCount; } void addParagraph(string line, ref PersonaData[string] info) { // Figure out persona and sentence line = strip(line); auto sentence = std.algorithm....
D
/Users/work/Projects/Hello/.build/x86_64-apple-macosx10.10/debug/DatabaseKit.build/KeyedCache/MemoryKeyedCache.swift.o : /Users/work/Projects/Hello/.build/checkouts/database-kit.git--3872818599693266265/Sources/DatabaseKit/Utilities/Deprecated.swift /Users/work/Projects/Hello/.build/checkouts/database-kit.git--38728185...
D
/Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/build/Pods.build/Debug-iphonesimulator/RxCocoa.build/Objects-normal/x86_64/RxSearchBarDelegateProxy.o : /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxCocoa/RxCocoa/RxCocoa.swift /Users/MohamedNawar/Desktop/MyMVVMRxSwiftExample/Pods/RxCocoa/RxCocoa/Deprecated.sw...
D
instance BAU_950_Lobart(Npc_Default) { name[0] = "Lobart"; guild = GIL_OUT; id = 950; voice = 5; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,2); fight_tactic = FAI_HUMAN_COWARD; EquipItem(self,ItMw_1h_Bau_Axe); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_Head_Bald",Face_N_No...
D
module reggae.options; import reggae.types; import reggae.path: buildPath; import std.file: thisExePath; import std.path: absolutePath; import std.file: exists; enum version_ = "0.5.24+"; Options defaultOptions; enum BuildLanguage { D, Python, Ruby, JavaScript, Lua, } enum DubArchitecture { ...
D
module bindbc.kw.scrollbox; import bindbc.kw.gui; import bindbc.kw.widget; import bindbc.kw.rect; version(BindKiwi_Static){ extern (C) @nogc nothrow { KW_Widget * KW_CreateScrollbox(KW_GUI * gui, KW_Widget * parent, const KW_Rect * geometry); void KW_ScrollboxVerticalScroll(KW_Widget * scrollbox, ...
D
# FIXED Startup/UartLog.obj: C:/ti/simplelink_cc2640r2_sdk_3_10_00_15/examples/rtos/CC2640R2_LAUNCHXL/blestack/project_zero/src/extra/uartlog/UartLog.c Startup/UartLog.obj: C:/ti/simplelink_cc2640r2_sdk_3_10_00_15/examples/rtos/CC2640R2_LAUNCHXL/blestack/project_zero/src/extra/uartlog/UartLog.h Startup/UartLog.obj: C:...
D
/Users/chenzuncheng/Desktop/vaporTest/.build/x86_64-apple-macosx10.10/debug/Fluent.build/Entity/Dirty.swift.o : /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/fluent.git-6251908308727715749/Sources/Fluent/Utilities/UUID.swift /Users/chenzuncheng/Desktop/vaporTest/.build/checkouts/fluent.git-6251908308727715749/...
D
/Users/nice/HelloWord/.build/x86_64-apple-macosx10.10/debug/Fluent.build/Service/FluentProvider.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/SchemaSupporting+CRUD....
D
module gamelib.collisionmanager; import gamelib.all; class CollisionManager : PoolManager!(Collision) { this(uint max){ super(max, {return new Collision();}); } //ココからGenerate関数 Collision collision(Vector pos, double dir, int offence, DamageType type, BadState badState, Mover move...
D
/* TEST_OUTPUT: --- fail_compilation/fail9414c.d(47): Error: variable fail9414c.C.foo.x cannot modify parameter `x` in contract fail_compilation/fail9414c.d(34): Error: variable fail9414c.C.foo.x cannot modify parameter `x` in contract fail_compilation/fail9414c.d(35): Error: variable fail9414c.C.foo.bar.y cannot modif...
D
/**************************************************************************** ** ** Copyright (C) 2013 John Layt <jlayt@kde.org> ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding va...
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
/Users/sunchuyue/Documents/test/RX_Product/DerivedData/RX_Product/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/DateTransform.o : /Users/sunchuyue/Documents/test/RX_Product/Pods/ObjectMapper/Sources/FromJSON.swift /Users/sunchuyue/Documents/test/RX_Product/Pods/Ob...
D
import std.stdio; int main() { foreach(i; 1..101) { fizzbuzz(i); } return 0; } void fizzbuzz(int i) { if (i % 15 == 0) writeln("FizzBuzz"); else if (i % 3 == 0) writeln("Fizz"); else if (i % 5 == 0) writeln("Buzz"); else writeln(i); }
D
module deimos.cef1.internal.nplugin_types; // Copyright (c) 2011 Marshall A. Greenblatt. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain ...
D
module hunt.time.format.PrefixTree; import hunt.time.format.DateTimeParseContext; import hunt.time.text.ParsePosition; import hunt.collection.Set; import hunt.text.Common; import hunt.util.StringBuilder; import std.string; //----------------------------------------------------------------------- /** * A string base...
D
/home/merzouk/COURS_ESGI/RUST/project/RustProject4IABD/raytracer/app/target/debug/build/rayon-core-29c51c312b9482ed/build_script_build-29c51c312b9482ed: /home/merzouk/.cargo/registry/src/github.com-1ecc6299db9ec823/rayon-core-1.7.1/build.rs /home/merzouk/COURS_ESGI/RUST/project/RustProject4IABD/raytracer/app/target/de...
D
/** Mirror _object.h Object and type object interface Objects are structures allocated on the heap. Special rules apply to the use of objects to ensure they are properly garbage-collected. Objects are never allocated statically or on the stack; they must be accessed through special macros and functions only. (Typ...
D
/** * Table support */ module harud.table; import harud.page: Page; import harud.types: Rect, HaruTextAlignment, HaruCMYKColor; /** * Describe a table. * * A `Table` is a layout element that represents data in a two-dimensional grid */ class Table { private Page page; this(Page page, Rect rect) { a...
D
<?xml version="1.0" encoding="UTF-8"?> <di:SashWindowsMngr xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:di="http://www.eclipse.org/papyrus/0.7.0/sashdi"> <pageList> <availablePage> <emfPageIdentifier href="extractSuperclassRef.notation#_9kH...
D
instance Pal_220_Schiffswache(Npc_Default) { name[0] = NAME_Ritter; guild = GIL_PAL; id = 220; voice = 4; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,6); fight_tactic = FAI_HUMAN_MASTER; EquipItem(self,ItMw_1H_Blessed_02); B_CreateAmbientInv(self); B_SetNpcVisual(self,MALE,"Hum_Head_Fig...
D
instance SLD_737_Torlof(Npc_Default) { name[0] = "Torlof"; npcType = npctype_main; guild = GIL_SLD; level = 19; voice = 4; id = 737; attribute[ATR_STRENGTH] = 95; attribute[ATR_DEXTERITY] = 75; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 268; attribute[ATR_HITPOINTS...
D
/** * Authors: Szabo Bogdan <szabobogdan@yahoo.com> * Date: 9 8, 2015 * License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. * Copyright: Public Domain */ module swaggerize.parser; import swaggerize.definitions; import vibe.data.json; import yaml; import std.file, std.tra...
D
module UnrealScript.TribesGame.TrPlayerVoice_T2_Male01; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.TrPlayerVoice; extern(C++) interface TrPlayerVoice_T2_Male01 : TrPlayerVoice { public extern(D): private static __gshared ScriptClass mStaticClass; @property final stat...
D
// Written in the D programming language. /** * Builtin SIMD intrinsics * * Source: $(DRUNTIMESRC core/_simd.d) * * Copyright: Copyright Digital Mars 2012. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: $(HTTP digitalmars.com, Walter Bright), */ module core.simd; pure: no...
D
/** * item.d * tower * April 30, 2013 * Brandon Surmanski */ module entity.item; import c.lua; import gl.glb.glb; import std.math; import entity.entity; import entity.sprite; import math.matrix; import camera; class ItemInfo : SpriteInfo { bool autopickup; bool holdable; int type; Texture text...
D
// Written in the D programming language. /** This module contains common layouts implementations. Layouts are similar to the same in Android. LinearLayout - either VerticalLayout or HorizontalLayout. VerticalLayout - just LinearLayout with orientation=Orientation.Vertical HorizontalLayout - just LinearLayout with o...
D
/Users/yq/Project/Swift/SwiftGroup/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FSPagerView.build/Objects-normal/x86_64/FSPageControl.o : /Users/yq/Project/Swift/SwiftGroup/Pods/FSPagerView/Sources/FSPagerViewCell.swift /Users/yq/Project/Swift/SwiftGroup/Pods/FSPagerView/Sources/FSPageControl.swift /Use...
D
module clwrap; public import clwrap.l2.wrap, clwrap.l2.clSelect, clwrap.l2.errors, clwrap.l2.info, clwrap.l2.util; public import clwrap.cl;
D
module android.java.android.os.MessageQueue; public import android.java.android.os.MessageQueue_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!MessageQueue; import import3 = android.java.java.lang.Class;
D
module ds.stack; import ds.linked_list; class LLStack(Item) { private LinkedList!Item list; private int N; this() { list = new LinkedList!Item; } void push(Item item) { list.addBeginning(item); N += 1; } Item pop() { Item popped = list.first.item; ...
D
/home/zbf/workspace/git/RTAP/target/debug/build/serde-bd5198959f5a7fe2/build_script_build-bd5198959f5a7fe2: /home/zbf/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/serde-1.0.101/build.rs /home/zbf/workspace/git/RTAP/target/debug/build/serde-bd5198959f5a7fe2/build_script_build-bd5198959f5a7fe2.d: /home/zbf/....
D
module routes.blog; import vibe.core.log; import vibe.http.server; import vibe.data.bson; import dlirium.conf; import dlirium.data; import dlirium.db; import std.file; import std.datetime; import std.conv; import std.string : strip, translate; import std.array : split, array; void renderArticle(HttpServerRequest re...
D
// REQUIRED_ARGS: -w // https://issues.dlang.org/show_bug.cgi?id=4375: Dangling else /* TEST_OUTPUT: --- fail_compilation/fail4375e.d(14): Warning: else is dangling, add { } after condition at fail_compilation/fail4375e.d(11) --- */ void main() { version (A) if (true) assert(24); else ...
D
/* DSFML - The Simple and Fast Multimedia Library for D Copyright (c) <2013> <Jeremy DeHaan> 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. Permission is granted to anyone to use this softw...
D
INSTANCE Info_Mod_Suchender_DT_Hi (C_INFO) { npc = Mod_7543_DMT_Suchender_DT; nr = 1; condition = Info_Mod_Suchender_DT_Hi_Condition; information = Info_Mod_Suchender_DT_Hi_Info; permanent = 0; important = 0; description = "Ha. Wieder erwischt."; }; FUNC INT Info_Mod_Suchender_DT_Hi_Condition() { return 1; }...
D
/Users/edward.wangcrypto.com/study/substrate_lesson_homework_template/node-template-benchmark/target/release/wbuild/node-template-runtime/target/release/build/zstd-safe-7c5735ffb58c0ef6/build_script_build-7c5735ffb58c0ef6: /Users/edward.wangcrypto.com/.cargo/registry/src/github.com-1ecc6299db9ec823/zstd-safe-3.0.1+zstd...
D
module buffer.compiler; import std.string; import std.conv; import std.array; import std.typecons; import std.algorithm.searching; import std.uni; import std.exception; template LoadBufferFile(const string fileName) { pragma(msg, "Compiling file: ", fileName, "..."); const char[] LoadBufferFile = compiler!(im...
D
import std.stdio; import core.thread; import std.datetime; // Yield count should be larger for a // more accurate measurment, but this // is just a unit tests, so don't spin // for long immutable uint yield_count = 1000; immutable uint worker_count = 10; uint stack_check() { uint x; asm { mov x,ESP; } return ...
D
/Users/godemodegame/Desktop/ATMApp/.build/x86_64-apple-macosx10.10/debug/Bits.build/ByteBuffer+require.swift.o : /Users/godemodegame/Desktop/ATMApp/.build/checkouts/core.git-9210800844849382486/Sources/Bits/Deprecated.swift /Users/godemodegame/Desktop/ATMApp/.build/checkouts/core.git-9210800844849382486/Sources/Bits/By...
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 Software, an...
D
module url; import core.stdc.stdio; import core.stdc.ctype; /********************************* * Determine if c is a valid URL character. */ int isURLchar(char c) { if (isalnum(c)) return 1; switch (c) { case '-': case '_': case '?': case '=': case '%': case '&': case '/': ...
D
module deimos.cef1.request_handler; // Copyright (c) 2012 Marshall A. Greenblatt. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the abo...
D
/* * Copyright 2015-2018 HuntLabs.cn. * * 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 l...
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_3_MobileMedia-...
D
module android.java.java.lang.invoke.LambdaConversionException; public import android.java.java.lang.invoke.LambdaConversionException_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!LambdaConversionException; import import4 = android.java.java.lang.Class; import import3 = android.java.java.lan...
D
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/release/build/syn-d1407df2b9a0b93d/build_script_build-d1407df2b9a0b93d: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/syn-1.0.3/build.rs /mnt/c/Users/zeliwang/hello_world/digital_signature/target/release/build/syn-d1407df2b9a0b93d/bui...
D
module engine.thirdparty.imageformats.png; import etc.c.zlib; import std.algorithm : min, reverse; import std.bitmanip : bigEndianToNative, nativeToBigEndian; import std.stdio : File, SEEK_SET; import std.digest.crc : CRC32, crc32Of; import std.typecons : scoped; import engine.thirdparty.imageformats; priva...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2018 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Bo...
D
import std.stdio, std.algorithm, std.conv, std.array, std.string, std.math, std.typecons, std.numeric, std.container, std.range; enum P = 1000000007L; void main() { auto N = readln.chomp.to!int; long r = 1, d = 1, c = 1, o; foreach (i; 0..N) { auto a = readln.chomp.to!long; (c += a * d % P...
D
/* Copyright (C) 2009-2010 Grame This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distribu...
D
module symmetry.api.libzfs_core; import core.stdc.config; import core.stdc.stdarg: va_list; static import core.simd; template __from(string moduleName) { mixin("import from = " ~ moduleName ~ ";"); } struct DppOffsetSize{ long offset; long size; } s...
D
module RuleTokenTest; import RuleTranslatorLexer; import RuleTranslatorParser: RuleTranslatorParser; import RuleTranslatorBaseListener; import antlr.v4.runtime.ANTLRInputStream; import antlr.v4.runtime.CommonToken; import antlr.v4.runtime.CommonTokenFactory; import antlr.v4.runtime.TokenFactory; import antlr.v4.runtim...
D
a pedal that controls the throttle valve a valve that regulates the supply of fuel to the engine (chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected a scientific instrument that increases the kinetic energy of charged particles
D
/** * Defines declarations of various attributes. * * The term 'attribute' refers to things that can apply to a larger scope than a single declaration. * Among them are: * - Alignment (`align(8)`) * - User defined attributes (`@UDA`) * - Function Attributes (`@safe`) * - Storage classes (`static`, `__gshared`) ...
D
/Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/x86_64-apple-macosx/debug/Redis.build/Client/Commands/Redis+List.swift.o : /Users/panartem/Developer/Study/Microservices-vapor/TILAppUsers/.build/checkouts/redis/Sources/Redis/Channel/RedisChannelData.swift /Users/panartem/Developer/Study/Microservi...
D
/Users/aligame/work/rust_repository/rutils/target/x86_64-unknown-linux-musl/release/rutils: /Users/aligame/work/rust_repository/rutils/src/main.rs
D
instance BAU_960_Bengar(Npc_Default) { name[0] = "Бенгар"; guild = GIL_BAU; id = 960; voice = 10; flags = 0; npcType = npctype_main; B_SetAttributesToChapter(self,2); level = 1; fight_tactic = FAI_HUMAN_STRONG; EquipItem(self,ItMw_1h_Bau_Axe); EquipItem(self,ItRw_Sld_Bow); CreateInvItems(self,ItRw_Arrow,10...
D
module logic.game.state; interface IState { // ... }
D
/* TEST_OUTPUT: --- fail_compilation/diag1730.d(38): Error: mutable method `diag1730.S.func` is not callable using a `inout` object fail_compilation/diag1730.d(40): Error: `immutable` method `diag1730.S.iFunc` is not callable using a `inout` object fail_compilation/diag1730.d(41): Error: `shared` mutable method `diag17...
D
/++ $(SCRIPT inhibitQuickIndex = 1;) This is a submodule of $(LINK2 mir_ndslice.html, mir.ndslice). License: $(LINK2 http://boost.org/LICENSE_1_0.txt, Boost License 1.0). Authors: Ilya Yaroshenko +/ module mir.glas.trsm; import std.typecons: Flag; import std.traits; import mir.internal.utility; import mir.glas.comm...
D
/// module std.experimental.allocator.building_blocks.quantizer; import std.experimental.allocator.common; /** This allocator sits on top of $(D ParentAllocator) and quantizes allocation sizes, usually from arbitrary positive numbers to a small set of round numbers (e.g. powers of two, page sizes etc). This technique...
D
// Written in the D programming language // License: http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0 module ast.error; import std.stdio; import std.string, std.range, std.array, std.uni; import ast.lexer, util, options; abstract class ErrorHandler{ //string source; //string code; int nerrors=0; private ...
D
instance DIA_IdolKadar_EXIT(DIA_Proto_End) { npc = PC_IdolKadar; }; //===================================================== var int DIA_IdolKadar_Hallo_Once; instance DIA_IdolKadar_Hallo(C_INFO) { npc = PC_IdolKadar; nr = 1; condition = DIA_IdolKadar_Hallo_cond; information = DIA_IdolKadar_Hallo_info; important...
D
module android.java.android.bluetooth.BluetoothClass_Device; public import android.java.android.bluetooth.BluetoothClass_Device_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!BluetoothClass_Device; import import0 = android.java.java.lang.Class;
D
instance DIA_PAL_9168_NATAN_EXIT(C_Info) { npc = pal_9168_natan; nr = 999; condition = dia_pal_9168_natan_exit_condition; information = dia_pal_9168_natan_exit_info; permanent = TRUE; description = Dialog_Ende; }; func int dia_pal_9168_natan_exit_condition() { return TRUE; }; func void dia_pal_9168_natan_exi...
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
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) ?-1998 by Symantec * Copyright (C) 2000-2020 by The D Language Foundation, All Rights Reserved * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright) * License: ...
D
/* Copyright (c) 2017-2018 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
/Users/GMoran/Desktop/ClassicPlayer/DerivedData/ClassicPlayer/Build/Intermediates/ClassicPlayer.build/Debug-iphonesimulator/ClassicPlayer.build/Objects-normal/x86_64/MusicMenuVC.o : /Users/GMoran/Desktop/ClassicPlayer/ClassicPlayer/NowPlayingVC.swift /Users/GMoran/Desktop/ClassicPlayer/ClassicPlayer/AboutScreenVC.swift...
D
int[] array; void foo(int[] a, int x); unittest { foo(array, 3); array.foo(3); // means the same thing }
D
/Users/endotsuyoshi/Documents/ios/shoanaorigin2/shoana/Build/Intermediates/Charts.build/Debug-iphonesimulator/Charts.build/Objects-normal/x86_64/ChevronUpShapeRenderer.o : /Users/endotsuyoshi/Documents/ios/shoanaorigin2/Charts/Source/Charts/Renderers/LineScatterCandleRadarRenderer.swift /Users/endotsuyoshi/Documents/io...
D
module biotronic.DCC.controlcontainer; import biotronic.DCC.control; import biotronic.DCC.containercontrol; import std.exception : enforce; struct ControlContainer { public: @disable this(); this(ContainerControl owner) { _owner = owner; } void add(Control value) { if (!value) { return; } if (auto cc...
D