code
stringlengths
3
10M
language
stringclasses
31 values
.source T_if_eqz_9.java .class public dot.junit.opcodes.if_eqz.d.T_if_eqz_9 .super java/lang/Object .method public <init>()V .limit regs 1 invoke-direct {v0}, java/lang/Object/<init>()V return-void .end method .method public run(I)Z .limit regs 6 if-eqz v5, Label8 const/4 v5, 0 r...
D
/* REQUIRED_ARGS: -g PERMUTE_ARGS: GDB_SCRIPT: --- b gdb4149.d:17 r echo RESULT= p x --- GDB_MATCH: RESULT=.*33 */ void foo(ref int x) { ++x; // BP } void main() { auto x = 32; foo(x); }
D
/* Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) an...
D
/// People name generator module namegen.people; struct Name { string first; string last; string full() const { return first~" "~last; } alias full this; } Name createName(bool isFemale = false) { Name ret; ret.first = selectName(isFemale ? femaleFirst : maleFirst); ret....
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_1_BeT-57965629...
D
module api.v1.Matches; import vibe.data.json; import vibe.http.rest; import vibe.http.server; import api.Common; import api.v1.Auth; import db.User; @rootPathFromName interface Matches { @after!setHTTPStatusCode() Json get(); @before!authenticate("user") @after!setHTTPStatusCode() Json create(...
D
/******************************************************************************* copyright: Copyright (c) 2006 Juan Jose Comellas. All rights reserved license: BSD style: $(LICENSE) author: Juan Jose Comellas <juanjo@comellas.com.ar> Converted to use core.sync by Sean Kelly <sean@f4....
D
/home/oscar/Documents/git_repo/e7020e_2019/target/release/build/proc-macro2-1e770b00b657a261/build_script_build-1e770b00b657a261: /home/oscar/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.27/build.rs /home/oscar/Documents/git_repo/e7020e_2019/target/release/build/proc-macro2-1e770b00b657a261/build_sc...
D
an extra component of a machine or other apparatus an extra car wheel and tire for a four-wheel vehicle a score in tenpins refrain from harming save or relieve from an experience or action give up what is not strictly needed use frugally or carefully thin and fit more than is needed, desired, or required not taken up b...
D
// ************************************************************ // EXIT // ************************************************************ INSTANCE DIA_Rod_EXIT(C_INFO) { npc = Sld_804_Rod; nr = 999; condition = DIA_Rod_EXIT_Condition; information = DIA_Rod_EXIT_Info; permanent = TRUE; description ...
D
catch up with and possibly overtake travel past overcome, as with emotions or perceptual stimuli
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 nm = readln.split.to!(long[]); auto N = nm[0]; auto M = nm[1]; long[] xs; foreach (_; 0..M) xs ~= readln.chomp.to!long; if (N == M) { writ...
D
/** * * THIS FILE IS AUTO-GENERATED BY ./parse_specs.d FOR MCU atmega323 WITH ARCHITECTURE avr5 * */ module avr.specs.specs_atmega323; enum __AVR_ARCH__ = 5; enum __AVR_ASM_ONLY__ = false; enum __AVR_ENHANCED__ = true; enum __AVR_HAVE_MUL__ = true; enum __AVR_HAVE_JMP_CALL__ = true; enum __AVR_MEGA__ = true; enu...
D
# FIXED Full_Demo/Standard_Demo_Tasks/sp_flop.obj: C:/FreeRTOSv10.1.1/FreeRTOS/Demo/Common/Minimal/sp_flop.c Full_Demo/Standard_Demo_Tasks/sp_flop.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.1.LTS/include/stdlib.h Full_Demo/Standard_Demo_Tasks/sp_flop.obj: C:/ti/ccsv7/tools/compiler/ti-cgt-arm_16.9.1.LTS/include/l...
D
/** * */ module hunt.wechat.bean.shakearound.relation.search.RelationSearch; import hunt.wechat.bean.shakearound.device.DeviceIdentifier; //import com.alibaba.fastjson.annotation.JSONField; /** * 微信摇一摇周边-查询设备与页面的关联关系-请求参数 * * */ class RelationSearch { /** * 查询方式。1: 查询设备的关联关系;2:查询页面的关联关系...
D
extern(C) int printf(const char*, ...); extern(C) int sprintf(char*, const char*, ...); /**************************************/ void test1() { bool x; int i; i = !("bar" == "bar"); assert(i == 0); i = "bar" != "bar"; assert(i == 0); i = "bar" == "bar"; assert(i == 1); ...
D
module dnes.rom.mapper.mapper0; import dnes.rom.header; import dnes.rom.mapper.mapper; import std.stdio; /** * Class representing Mapper 0 (NROM) * <https://wiki.nesdev.com/w/index.php/NROM> */ class Mapper0 : Mapper { public: /** * Constructor * * Params: * header = The header of the ...
D
module windows.automation; public import system; public import windows.com; public import windows.systemservices; public import windows.windowsandmessaging; public import windows.windowsprogramming; extern(Windows): @DllImport("OLEAUT32.dll") uint BSTR_UserSize(uint* param0, uint param1, BSTR* param2); @DllImport("...
D
/** * A $(LINK2 http://en.wikipedia.org/wiki/Universally_unique_identifier, UUID), or * $(LINK2 http://en.wikipedia.org/wiki/Universally_unique_identifier, Universally unique identifier), * is intended to uniquely identify information in a distributed environment * without significant central coordination. It can b...
D
/* * Copyright (c) 2017-2020 sel-project * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, pu...
D
// EXTRA_CPP_SOURCES: cpp_abi_tests.cpp // CXXFLAGS(linux freebsd osx netbsd dragonflybsd): -std=c++11 // N.B MSVC doesn't have a C++11 switch, but it defaults to the latest fully-supported standard // N.B MSVC 2013 doesn't support char16_t/char32_t version(Posix) enum __c_wchar_t : dchar; else version(Windows) ...
D
/home/ukasha/Desktop/PIAIC-IoT-Repos/Quarter-1_3.30-6.30/Class_Tasks/Task_27-10-2019/task2/target/debug/deps/task2-dcdbdc8c8cb1e2b1: src/main.rs /home/ukasha/Desktop/PIAIC-IoT-Repos/Quarter-1_3.30-6.30/Class_Tasks/Task_27-10-2019/task2/target/debug/deps/task2-dcdbdc8c8cb1e2b1.d: src/main.rs src/main.rs:
D
/** * @file font.h * @brief Font loading and management */ module citro2d.font; import citro2d.base; import ctru.font; import ctru.types; import ctru.services.cfgu; import citro3d.texture; extern (C): nothrow: @nogc: // #include <stdio.h> struct C2D_Font_s { CFNT_s* cfnt; C3D_Tex* glyphSheets; float textS...
D
module dcv.features.corner.fast; /** * Authors: Edward Rosten, Relja Ljubobratovic * Copyright: Copyright (c) 2006, 2008 Edward Rosten, All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * ...
D
/Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/x86_64-apple-macosx10.10/debug/Cookies.build/Response+Cookies.swift.o : /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/checkouts/engine.git-3311994267206676365/Sources/Cookies/Cookie.swift /Users/AleixDiaz/Documents/VaporProject/HerokuChat/.build/chec...
D
module dwt.internal.mozilla.nsIDocShellTreeOwner; import dwt.internal.mozilla.Common; import dwt.internal.mozilla.nsID; import dwt.internal.mozilla.nsISupports; import dwt.internal.mozilla.nsIDocShellTreeItem; import dwt.internal.mozilla.nsStringAPI; /********************************************************...
D
import cgi.cgi; import cgi.router; import std.stdio; import std.algorithm; import std.file; import std.conv; // // curl examples for posting a file since there is no form displayed replace <..> with approprate values // // curl -F test=123 -F test=another_test -F test="this is a Third Test" -F bob=1 -F file=@./<some f...
D
/Users/Vishnu/QBurst/Internal/Pod/QAHelper/DerivedData/QAHelper/Build/Intermediates/Pods.build/Debug-iphonesimulator/ObjectMapper.build/Objects-normal/x86_64/HexColorTransform.o : /Users/Vishnu/QBurst/Internal/Pod/QAHelper/Pods/ObjectMapper/Sources/CustomDateFormatTransform.swift /Users/Vishnu/QBurst/Internal/Pod/QAHel...
D
instance Info_Mine_Org_7_EXIT(C_Info) { nr = 999; condition = Info_Mine_Org_7_EXIT_Condition; information = Info_Mine_Org_7_EXIT_Info; permanent = 1; description = "ЗАКОНЧИТЬ РАЗГОВОР"; }; func int Info_Mine_Org_7_EXIT_Condition() { return 1; }; func void Info_Mine_Org_7_EXIT_Info() { AI_StopProcessInfos(sel...
D
/** Mime header parsing according to RFC5322 Copyright: © 2012 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.inet.rfc5322; import vibe.core.log; import vibe.http.common : StrMapCI; import vibe.stream.stream...
D
module dna.platform; // public import dna.platform.audio; public import dna.platform.input; public import dna.platform.timer; public import dna.platform.window;
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 ...
D
/* * Copyright 2002-2018 the original author or authors. * * 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 ap...
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 android.java.android.bluetooth.le.ScanSettings; public import android.java.android.bluetooth.le.ScanSettings_d_interface; import arsd.jni : ImportExportImpl; mixin ImportExportImpl!ScanSettings; import import1 = android.java.java.lang.Class;
D
/******************************************************************************* * Copyright (c) 2000, 2005 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 common; import std.algorithm; import std.array; import std.exception; import std.file; import std.process; import std.stdio; import std.string; import ae.sys.d.manager; import ae.sys.file; import ae.sys.log; import ae.utils.meta : singleton; import ae.utils.sini; class Test { /// Unique ID. Should change if ...
D
// Copyright 2019, University of Freiburg. // Chair of Algorithms and Data Structures. // Markus Näther <naetherm@informatik.uni-freiburg.de> module dgenerator;
D
/////////////////////////////////////////////////////////////////////// // Info EXIT /////////////////////////////////////////////////////////////////////// INSTANCE DIA_Rukhar_EXIT (C_INFO) { npc = BAU_973_Rukhar; nr = 999; condition = DIA_Rukhar_EXIT_Condition; information = DIA_Rukhar_EXIT_I...
D
/** * cl4d - object-oriented wrapper for the OpenCL C API * written in the D programming language * * Copyright: * (C) 2009-2011 Andreas Hollandt * * License: * see LICENSE.txt */ module opencl.buffer; import opencl.c.cl; import opencl.c.cl_gl; import opencl.context; import opencl.error; import opencl.memor...
D
import std.stdio, std.typetuple; void main() { foreach (T; TypeTuple!(int, string, bool, int)) { write( typeid( T ) ); static if ( is( T == int ) ) { T i = 3 + 7; writeln( " eg. 3 + 7 = ", i ); } else static if ( is( T == bool ) ) { T old = false; writeln( " eg. old = ", old ); } else static i...
D
/Users/oslo/code/swift_vapor_server/.build/debug/SocksCore.build/SocketOptions+Deprecated.swift.o : /Users/oslo/code/swift_vapor_server/Packages/Socks-1.2.7/Sources/SocksCore/Address+C.swift /Users/oslo/code/swift_vapor_server/Packages/Socks-1.2.7/Sources/SocksCore/Address.swift /Users/oslo/code/swift_vapor_server/Pack...
D
instance ORG_859_Aidan(Npc_Default) { name[0] = "Aidan"; npcType = npctype_main; guild = GIL_ORG; level = 15; voice = 13; id = 859; attribute[ATR_STRENGTH] = 50; attribute[ATR_DEXTERITY] = 50; attribute[ATR_MANA_MAX] = 0; attribute[ATR_MANA] = 0; attribute[ATR_HITPOINTS_MAX] = 192; attribute[ATR_HITPOINTS]...
D
/** * * THIS FILE IS AUTO-GENERATED BY ./parse_specs.d FOR MCU atxmega8e5 WITH ARCHITECTURE avrxmega2 * */ module avr.specs.specs_atxmega8e5; enum __AVR_ARCH__ = 102; enum __AVR_ASM_ONLY__ = false; enum __AVR_ENHANCED__ = true; enum __AVR_HAVE_MUL__ = true; enum __AVR_HAVE_JMP_CALL__ = true; enum __AVR_MEGA__ = ...
D
// Written in the D programming language. /** This module implements object collection. Wrapper around array of objects, providing a set of useful operations, and handling of object ownership. Optionally can be owner of its items if instanciated with ownItems=true - will destroy removed items. Synopsis: ---- imp...
D
/mnt/c/Users/zeliwang/hello_world/digital_signature/target/debug/deps/rustc_demangle-d6a472091a40d209.rmeta: /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rustc-demangle-0.1.16/src/lib.rs /home/zeliwang/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/rustc-demangle-0.1.16/src/legacy.r...
D
module dau.graphics.color; import std.algorithm, std.conv, std.string, std.array; import dau.allegro; import dau.util.math; alias color = Color; struct Color { ALLEGRO_COLOR color; alias color this; //TODO: opAssign from ALLEGRO_COLOR? this(float r, float g, float b, float a = 1.0f) { color = ALLEGRO_CO...
D
/Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/x86_64-apple-macosx/debug/Crypto.build/RSA/RSAKey.swift.o : /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/Crypto/Utilities/Base32.swift /Users/weirujian/Desktop/WeiRuJian/Vapor/AuthServer/.build/checkouts/crypto/Sources/Cry...
D
module dwinbar.widgets.notifications; import dwinbar.backend.dbus; import dwinbar.backend.xbackend; import dwinbar.backend.icongen; import dwinbar.widget; import dwinbar.bar; import derelict.freetype.ft; import std.algorithm; import std.array; import std.stdio; import std.typecons; import std.exception; import std.d...
D
/* Copyright (c) 2020 Rasmus Thomsen <oss@cogitri.dev> This file is part of apk-polkit (see https://gitlab.alpinelinux.org/Cogitri/apk-polkit). apk-polkit is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software ...
D
instance DIA_Cipher_EXIT(C_Info) { npc = Sld_803_Cipher; nr = 999; condition = DIA_Cipher_EXIT_Condition; information = DIA_Cipher_EXIT_Info; permanent = TRUE; description = Dialog_Ende; }; func int DIA_Cipher_EXIT_Condition() { return TRUE; }; func void DIA_Cipher_EXIT_Info() { AI_StopProcessInfos(self); }...
D
tty22qd1 tty22qd2 tty22q1q tty22q1w tty22q1e tty22q1r tty22q1t tty22q1y tty22q1a tty22q1s tty22q1d tty22q11 tty22q12 tty22q2q tty22q2w tty22q2e tty22q2r tty22q2t tty22q2y tty22q2a tty22q2s tty22q2d tty22q21 tty22q22 tty22wqq tty22wqw tty22wqe tty22wqr tty22wqt tty22wqy tty22wqa tty22wqs tty22wqd tty22wq1 tty22wq2 tty22...
D
module android.java.android.net.VpnService_Builder_d_interface; import arsd.jni : IJavaObjectImplementation, JavaPackageId, JavaName, IJavaObject, ImportExportImpl, JavaInterfaceMembers; static import arsd.jni; import import0 = android.java.android.net.VpnService_d_interface; import import2 = android.java.android.app....
D
module app; import std.experimental.logger; import dlangui.core.logger; import dlangui.platforms.common.platform; import dlangui.core.files; import dds.ui.IdeFrame; mixin APP_ENTRY_POINT; extern(C) int UIAppMain(string[] args) { string[] resourceDirs = [ appendPath(exePath, "res/") ]; Platform.in...
D
obj_xwr14xx/framework_xwr14xx.oer4f: C:/ti/mmwave_sdk_02_01_00_04/packages/ti/drivers/test/common/framework_xwr14xx.c obj_xwr14xx/framework_xwr14xx.oer4f: C:/ti/ti-cgt-arm_16.9.6.LTS/include/stdint.h obj_xwr14xx/framework_xwr14xx.oer4f: C:/ti/mmwave_sdk_02_01_00_04/packages/ti/common/sys_common.h obj_xwr14xx/framewo...
D
class Entity { extern EntityIsNotEnabledException; extern EntityAlreadyHasComponentException; extern EntityDoesNotHaveComponentException; extern EntityIsAlreadyReleasedException; int _count; int _refCount; int _creationIndex; bool _isEnabled; int[20] components; /** *...
D
// EXTRA_CPP_SOURCES: test6716.cpp version(LDC) {} else version(Windows) { // without main, there is no implicit reference to the runtime library // other platforms pass the runtime library on the linker command line version(CRuntime_Microsoft) version(Win64) pragma(lib, "phobos64"); ...
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="animation.notation#_wZB20EAnEeS1D_...
D
module direntry; import std.algorithm : canFind; import std.algorithm : sort; import std.array : array; import std.datetime.systime : Clock, SysTime, unixTimeToStdTime; import std.internal.cstring; import std.meta; import std.range.primitives; import std.stdio : writeln; import std....
D
module zug.matrix.cartesian; import zug.matrix; debug import std.stdio: writeln; struct CartesianCoordinates { long x; long y; } struct CartesianMatrix(T) { private Matrix!T matrix; private Offset center; this(T[] data, size_t width, Offset center_offset) { this.matrix = Matrix!T(data, w...
D
import std.conv, std.getopt, std.stdio, core.time; import thrift.server.nonblocking; import thrift.protocol.binary; import thrift.transport.buffered; import thrift.codegen.processor; import LoadHandler; void main(string[] args) { string serviceName = ""; string port = "1234"; string num_threads = "0"; string n...
D
/******************************************************************************* * Copyright (c) 2000, 2005 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
instance VLK_544_Buddler (Npc_Default) { //-------- primary data -------- name = Name_Buddler; npctype = npctype_mine_ambient; guild = GIL_VLK; level = 3; voice = 2; id = 544; //-------- abilities -------- attribute[ATR_STRENGTH] = 15; attribute[ATR_DEXTERIT...
D
module d_do_test; import std.algorithm; import std.array; import std.conv; import std.exception; import std.file; import std.format; import std.process; import std.random; import std.regex; import std.stdio; import std.string; import core.sys.posix.sys.wait; void usage() { write("d_do_test <input_dir> <test_name>...
D
// REQUIRED_ARGS: -c -w /* TEST_OUTPUT: --- fail_compilation/testpull1810.d(21): Warning: statement is not reachable Error: warnings are treated as errors Use -wi if you wish to treat warnings only as informational. --- */ uint foo(uint i) { try { ++i; return 3; } catch (Exceptio...
D
/** Interface for the VibeDist load balancer Copyright: © 2012-2013 Sönke Ludwig License: Subject to the terms of the MIT license, as written in the included LICENSE.txt file. Authors: Sönke Ludwig, Jan Krüger */ module vibe.http.dist; import vibe.core.log; import vibe.data.json; import vibe.inet.url; ...
D
/Users/brunodaluz/Desktop/project/Build/Intermediates/project.build/Debug/Console.build/Objects-normal/x86_64/ConsoleTextFragment.o : /Users/brunodaluz/Desktop/project/.build/checkouts/console.git-1708081412620427180/Sources/Console/Terminal/ANSI.swift /Users/brunodaluz/Desktop/project/.build/checkouts/console.git-1708...
D
a field planted with corn
D
// REQUIRED_ARGS: -de // PERMUTE_ARGS: /* TEST_OUTPUT: --- fail_compilation/test15785b.d(15): Deprecation: imports.test15785.Base.T is not visible from module test15785b fail_compilation/test15785b.d(16): Deprecation: imports.test15785.Base.T is not visible from module test15785b fail_compilation/test15785b.d(17): Depr...
D
module UnrealScript.TribesGame.TrFamilyInfo_Heavy_Brute_BE; import ScriptClasses; import UnrealScript.Helpers; import UnrealScript.TribesGame.TrFamilyInfo_Heavy_Brute; extern(C++) interface TrFamilyInfo_Heavy_Brute_BE : TrFamilyInfo_Heavy_Brute { public extern(D): private static __gshared ScriptClass mStati...
D
/Users/justinvincelette/Software/myFitProgress/Intermediates/myFitProgress.build/Debug-iphoneos/myFitProgress.build/Objects-normal/arm64/ViewController.o : /Users/justinvincelette/Software/myFitProgress/myFitProgress/ViewController.swift /Users/justinvincelette/Software/myFitProgress/myFitProgress/ExercisesViewControll...
D
/root/github/compiler/week4_even_more_binary_operators/parser_lib/target/debug/deps/lexer_lib-3ae41b47ed99928f.rmeta: /root/github/compiler/week4_even_more_binary_operators/lexer_lib/src/lib.rs /root/github/compiler/week4_even_more_binary_operators/parser_lib/target/debug/deps/lexer_lib-3ae41b47ed99928f.d: /root/githu...
D
/** * Contains the `Id` struct with a list of predefined symbols the compiler knows about. * * Copyright: Copyright (C) 1999-2021 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, Boost ...
D
/* Digital Mars DMDScript source code. * Copyright (c) 2000-2002 by Chromium Communications * D version Copyright (c) 2004-2010 by Digital Mars * 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) * written by Walter ...
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, core.stdc.string; alias Tuple!(long, "v", long, "cnt") V; real EPS = 0.0000000000001; void main() { auto s = readln.split.map!(to!int);...
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_19_agm-6199537...
D
/**************************************************************************** * Copyright 2018,2020 Thomas E. Dickey * * Copyright 2009,2014 Free Software Foundation, Inc. * * * * Permi...
D
/home/albertfega/Desktop/LaSalleChat/.build/x86_64-unknown-linux/debug/HTTP.build/FoundationClient/Response+Foundation.swift.o : /home/albertfega/Desktop/LaSalleChat/.build/checkouts/engine.git--7533756970564908605/Sources/HTTP/Async/Response+Async.swift /home/albertfega/Desktop/LaSalleChat/.build/checkouts/engine.git-...
D
// PERMUTE_ARGS: -inline template compiles(int T) { bool compiles = true; } alias TypeTuple(T...) = T; /************************************************** 3901 Arbitrary struct assignment, ref return **************************************************/ struct ArrayRet { int x; } int arrayRetTest(int z) ...
D
/***********************************************************************\ * mshtml.d * * * * Windows API header module * * ...
D
a pit or hole produced by wear or weathering (especially in a road surface)
D
module s2.util.math.s2const; import std.math; enum double M_PI = cast(double) PI; enum double M_PI_2 = cast(double) PI_2; enum double M_PI_4 = cast(double) PI_4; enum double M_SQRT1_2 = cast(double) SQRT1_2; enum double M_SQRT2 = cast(double) SQRT2;
D
//Problem 1: Write a program that converts a number to string. import std.stdio; import std.conv; int main(){ int num = 10; string strnum = to!string(num); writeln(strnum); return 0; }
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
/Users/deepansh/Desktop/ForexWatchlist/DerivedData/ForexWatchlist/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RxSwift.build/Objects-normal/x86_64/ObserverType.o : /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwift/Observables/Amb.swift /Users/deepansh/Desktop/ForexWatchlist/Pods/RxSwift/RxSwif...
D
import std.stdio; import derelict.sdl2.sdl; import window_wrapper; import bitmap_drawing_utils; import color_utils; void main() { DerelictSDL2.load(); if(SDL_Init(SDL_INIT_VIDEO) != 0) writefln("Error loading SDL :'("); else { Window window = new Window; scope(exit) { window.destroy(); } bool leave...
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
/++ $(H2 Lagrange Barycentric Interpolation) See_also: $(REF_ALTTEXT $(TT interp1), interp1, mir, interpolate) License: $(HTTP www.apache.org/licenses/LICENSE-2.0, Apache-2.0) Copyright: 2020 Ilya Yaroshenko, Kaleidic Associates Advisory Limited, Symmetry Investments Authors: Ilya Yaroshenko Macros: SUBREF = $(REF_A...
D
/Users/sol369/Desktop/curben-oc/DerivedData/curben/Build/Intermediates/Pods.build/Debug-iphonesimulator/ImageViewer.build/Objects-normal/x86_64/UIViewController.o : /Users/sol369/Desktop/curben-oc/Pods/ImageViewer/ImageViewer/Source/GalleryPagingDataSource.swift /Users/sol369/Desktop/curben-oc/Pods/ImageViewer/ImageVie...
D
module kerisy.i18n.I18n; import std.path; import std.file; import std.algorithm; import std.array; import std.stdio; import std.string; import std.json; import hunt.logging; alias StrStrStr = string[string][string]; enum I18N_DEFAULT_LOCALE = "en-us"; /** * */ class I18n { private { StrStrStr _res; ...
D
module workspaced.com.dcd; import std.file : tempDir; import core.thread; import std.algorithm; import std.conv; import std.datetime; import std.json; import std.path; import std.process; import std.random; import std.stdio; import std.string; import painlessjson; import workspaced.api; version (OSX) version = hav...
D
/** Cyclic Redundancy Check (32-bit) implementation. $(SCRIPT inhibitQuickIndex = 1;) $(DIVC quickindex, $(BOOKTABLE , $(TR $(TH Category) $(TH Functions) ) $(TR $(TDNW Template API) $(TD $(MYREF CRC32) ) ) $(TR $(TDNW OOP API) $(TD $(MYREF CRC32Digest)) ) $(TR $(TDNW Helpers) $(TD $(MYREF crcHexString) $(MYREF crc32...
D
// Copyright Brian Schott (Sir Alaran) 2012. // 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 imports; import stdx.d.ast; import std.stdio; class ImportPrinter : ASTVisitor { overri...
D
// Generated from doc/examples/simple_expression/Expr.g4 by ANTLR 4.7.2 module ImplExprVisitor; import ExprBaseVisitor; import std.variant : Variant; import ExprParser : ExprParser; /** * This class provides an empty implementation of {@link ExprVisitor}, * which can be extended to create a visitor which only needs...
D
// Copyright Ahmet Sait Koçak 2020. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // https://www.boost.org/LICENSE_1_0.txt) module bindbc.hb.bind.directwrite; version(Windows): version(HB_with_directwrite): version(Have_aurora_...
D
/** * Compiler implementation of the * $(LINK2 http://www.dlang.org, D programming language). * * Copyright: Copyright (C) 1999-2020 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
/Users/jackwong/Desktop/Developer/MercaniStyleSample/Build/Intermediates.noindex/MercaniStyleSample.build/Debug-iphonesimulator/MercaniStyleSample.build/Objects-normal/x86_64/AppDelegate.o : /Users/jackwong/Desktop/Developer/MercaniStyleSample/MercaniStyleSample/UIStoryboard+Instance.swift /Users/jackwong/Desktop/Devel...
D
/******************************************************************************* copyright: Copyright (c) 2007 Kris Bell. All rights reserved license: BSD style: $(LICENSE) version: Initial release: Oct 2007 author: Kris ************************...
D
/** * C preprocessor * Copyright: 2013 by Digital Mars * License: $(LINK2 http://boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright */ module macros; import core.stdc.stdlib; import core.stdc.string; import std.algorithm; import std.array; import std.ascii; import std.range; import std.std...
D
.build_1i2o2_lin33_48k_usbctl_farenddsp/_m_usb_audio/locks/lock.s.d .build_1i2o2_lin33_48k_usbctl_farenddsp/_m_usb_audio/locks/lock.s.o .build_1i2o2_lin33_48k_usbctl_farenddsp/_m_usb_audio/locks/lock.S.pca.xml: C:/Users/user/workspace/module_usb_audio/locks/lock.S
D