text stringlengths 9 948k |
|---|
/*
Copyright 2015 Bloomberg Finance L.P.
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 agree... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:20:20 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/Frameworks/CoreData.framewor... |
/*****************************************************************************
Copyright (c) 2014, Intel Corp.
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 cod... |
//
// AKVariableFrequencyResponseBandPassFilter.h
// AudioKit
//
// Auto-generated on 2/19/15.
// Customized by Aurelius Prochazka to add type helpers
// Copyright (c) 2015 Aurelius Prochazka. All rights reserved.
//
#import "AKAudio.h"
#import "AKParameter+Operation.h"
/** A second-order resonant filter.
This... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The GalaxyCash Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
//
// Why base-58 instead of standard base-64 encoding?
// - Don't want 0OIl c... |
////////////////////////////////////////////////////////////////////////////////////////////////
//
// LuaState.h
// LuaState
//
// Created by Simon Mikuda on 18/03/14.
//
// See LICENSE and README.md files
//////////////////////////////////////////////////////////////////////////////////////////////
#pragma once
... |
#ifndef PREP_PREP_H__
#define PREP_PREP_H__
#include <prep/include/compiler.h>
#include <prep/include/cpp_std.h>
#endif |
#pragma once
#ifndef HEADER_LIBVLCX_OBJECT
# define HEADER_LIBVLCX_OBJECT 1
# include "vlcx_def.h"
LIBVLCX_NAMESPACE(START)
// all possible types of vlc objects.
enum VLCX_ENUM_CLASS VLCKind VLCX_ENUM_INT {
Null = 0,
Instance = 1,
Media = 2,
MediaPlayer = 3,
};
// return the number of named entries in VLCKind (... |
/* Implementation of -Wmisleading-indentation
Copyright (C) 2015-2020 Free Software Foundation, Inc.
This file is part of GCC.
GCC 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 Foundation; either version 3, or (at your... |
/*-----------------------------------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2014-2015 Kim Kulling
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 ... |
/******************************************************************************
*
* Copyright (C) 2015 Xilinx, Inc. All rights reserved.
*
* 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 Softwa... |
/** @file
PCI emumeration support functions implementation for PCI Bus module.
Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials
are licensed and made available under the terms and condit... |
//
// UIViewController+Stripe_ParentViewController.h
// Stripe
//
// Created by Jack Flintermann on 1/12/16.
// Copyright © 2016 Stripe, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIViewController (Stripe_ParentViewController)
- (nullable UIViewController *)stp_parentViewControllerOfClass:(n... |
/*
* Tencent is pleased to support the open source community by making Puerts available.
* Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
* Puerts is licensed under the BSD 3-Clause License, except for the third-party components listed in the file 'LICENSE' which may
* be subject to th... |
#pragma once
#include "oxenmq.h"
// Inside some method:
// OMQ_LOG(warn, "bad ", 42, " stuff");
//
#define OMQ_LOG(level, ...) log(LogLevel::level, __FILE__, __LINE__, __VA_ARGS__)
#ifndef NDEBUG
// Same as OMQ_LOG(trace, ...) when not doing a release build; nothing under a release build.
# define OMQ_TRACE(...)... |
/* Copyright JS Foundation and other contributors, http://js.foundation
*
* 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 r... |
/*
* Copyright 2017-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "... |
#pragma once
#ifndef _MSDB_OP_LOAD_ACTION_H_
#define _MSDB_OP_LOAD_ACTION_H_
#include <pch.h>
#include <array/arrayMgr.h>
#include <query/opAction.h>
namespace msdb
{
namespace core
{
class load_action : public opAction
{
public:
load_action();
~load_action();
public:
virtual const char* name() override;
virtual... |
#include <stdio.h>
// Function to sort the numbers using pointers
void sort(int n, int* ptr)
{
int i, j, t;
// Sort the numbers using pointers
for (i = 0; i < n; i++) {
for (j = i + 1; j < n; j++) {
if (*(ptr + j) < *(ptr + i)) {
t = *(ptr + i);
*(ptr + i) = *(ptr + j);
*(ptr + j) = t;
}
}... |
//
// PlaceTableViewCellProtocol.h
// Singapore Travel Mate
//
// Created by Shrikant Chidgopkar on 24/7/20.
// Copyright © 2020 Shrikant Chidgopkar. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol PlaceTableViewCellProtocol <NSObject>
-(void)setPlaceName:(NSString*)placeName;
-(void)setPlac... |
#pragma once
#include "BlackjackPoints.h"
#include "BlackjackStrategy.h"
#include "Card52.h"
#include "Hand.h"
#include "UtilInternal.h"
#include "evol/Rng.h"
#include <stdexcept>
#include <vector>
namespace blackjack{
enum class PlayMode{
All,
DoubleDown,
Draw,
};
template<class Deck>
// returns the... |
/*
* nxu, by Newnix of Exile Heavy Industries
* meant to be a minimalistic statically compiled
* multi-call binary like busybox or toybox.
*
* It will not be compatible with any other binary utilities
* but will have similar commands and flags with similar
* utility, if not compatible utility.
*/ |
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test_ft_atoli_base.c :+: :+: :+: ... |
// MatrixGraph.h
#ifndef __DS_COMMON_MATRIXGRAPH_H__
#define __DS_COMMON_MATRIXGRAPH_H__
/* Information */
//====================================================================================================
/*!
* @file MatrixGraph.h
*
* @brief The Definition of Graph and its template
*
* @author Po-Wei Huan... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 28, 2021 at 9:12:29 PM Mountain Standard Time
* Operating System: Version 14.5 (Build 18L204)
* Image Source: /System/Library/PrivateFrameworks/SeymourUI.... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import <CloudDocsDaemon/BRCPersistedState.h>
@class CKOperationGroup, CKServerChangeToken, NSDate;
__attribute__((visibility("hidden")))
@interface BRCZoneHealthSyncPersistedStat... |
/*
* Generated by asn1c-0.9.24 (http://lionet.info/asn1c)
* From ASN.1 module "S1AP-IEs"
* found in "S1AP-IEs.asn"
*/
#include "S1ap-Cdma2000OneXMEID.h"
int S1ap_Cdma2000OneXMEID_constraint(asn_TYPE_descriptor_t *td,
const void *sptr,
asn_... |
#ifndef Footprint2DView_h
#define Footprint2DView_h
/**
* @file
* $Date$
* $Revision$
*
* Unless noted otherwise, the portions of Isis written by the USGS are
* public domain. See individual third-party library and package descriptions
* for intellectual property information, user agreements, and related
... |
//=--------------------------------------------------------------------------=
// dest.H
//=--------------------------------------------------------------------------=
// Copyright 2000 Microsoft Corporation. All Rights Reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EI... |
/*
* Copyright (C) 2014 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 app... |
// Tencent is pleased to support the open source community by making Mars available.
// Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved.
// Licensed under the MIT License (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the Licens... |
/* This file is part of Into.
* Copyright (C) Intopii 2013.
* All rights reserved.
*
* Licensees holding a commercial Into license may use this file in
* accordance with the commercial license agreement. Please see
* LICENSE.commercial for commercial licensing terms.
*
* Alternatively, this file may be used und... |
//
// GKTabBarController.h
// Quketi
//
// Created by ChiHo on 14-7-3.
// Copyright (c) 2014年 YouthMBA. All rights reserved.
//
#import <UIKit/UIKit.h>
/**
* 控制tabbar
*/
@interface GKTabBarController : UITabBarController
@end |
// Copyright © 2017 by Donald King <chronos@chronos-tachyon.net>
// Available under the MIT License. See LICENSE for details.
#ifndef CONTAINER_CACHE_H
#define CONTAINER_CACHE_H
#include <iosfwd>
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "base/options.h"
#include "base/r... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, August 24, 2019 at 9:47:55 PM Mountain Standard Time
* Operating System: Version 12.4 (Build 16M568)
* Image Source: /System/Library/Frameworks/GameplayKit.framework/GameplayKit
* classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Li... |
//
// KKBDatePickerViewController.h
// KaiKeBa
//
// Created by Duane on 2019/5/5.
// Copyright © 2019 kaikeba. All rights reserved.
//
#import "KKBPickerViewController.h"
NS_ASSUME_NONNULL_BEGIN
typedef void(^KKBDatePickerViewBlock)(NSDate *date);
@interface KKBDatePickerViewController : KKBPickerViewControlle... |
/*
FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
All rights reserved
VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
***************************************************************************
* ... |
#include "chip.h"
#include <stdio.h>
const uint32_t OscRateIn = 12000000;
#define LED_PIN 7
#define TICKRATE_HZ1 (10) /* 10 ticks per second */
#define TICKRATE_HZ2 (11) /* 11 ticks per second */
static void GPIO_Config(void) {
Chip_GPIO_Init(LPC_GPIO);
}
static void LED_Config(void) {
Chip_GPIO_WriteDirBit(LPC_... |
/*
* Copyright 2018 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing ... |
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*
* Tom St Denis, tomstdenis@gmail.com, http://l... |
// -*- C++ -*-
//=============================================================================
/**
* @file Endpoint_Value_Impl.h
*
* $Id: Endpoint_Value_Impl.h 81982 2008-06-16 17:52:07Z sowayaa $
*
* Implementation of the IIOP-Specific endpoint policy value
*
* @author Phil Mesnier <mesnier_p@ociweb.co... |
/* Copyright 2019 NXP
*
* This software is owned or controlled by NXP and may only be used
* strictly in accordance with the applicable license terms. By expressly
* accepting such terms or by downloading, installing, activating and/or
* otherwise using the software, you are agreeing that you have read, and
* th... |
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* libft.h :+: :+: :+: ... |
/*
* command_system.h
*
* Created on: Oct 7, 2020
* Author: zamfi
*/
#ifndef SYSTEMS_COMMAND_SYSTEM_H_
#define SYSTEMS_COMMAND_SYSTEM_H_
#include <unordered_map>
#include <list>
#include <functional>
#include "../utilities.h"
#include "../commands/null_command.h"
#include <iostream>
#include <string>
#incl... |
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2015-2016 Intel Corporation
* Copyright(c) 2019 Nippon Telegraph and Telephone Corporation
*/
#ifndef _PRIMARY_ARGS_H_
#define _PRIMARY_ARGS_H_
#include <stdint.h>
#include "shared/common.h"
extern uint16_t num_rings;
extern char *server_ip;
extern int serve... |
#include "../include/driver_framebuffer.h"
const uint8_t org_0113pt7bBitmaps[] = {
0x00, 0xFF, 0xC3, 0xC0, 0xDE, 0xC0, 0x36, 0x1B, 0x3F, 0xFF, 0xF3, 0x67,
0xFF, 0xFE, 0x6C, 0x36, 0x00, 0xFF, 0xFF, 0xFC, 0xC3, 0xFF, 0xFF, 0xC3,
0x30, 0xCF, 0xFF, 0xFF, 0xC0, 0xC0, 0xF0, 0x30, 0x30, 0x0C, 0x0C, 0x03,
0x03, 0x00, 0... |
/*
* uninorth.h: definitions for using the "UniNorth" host bridge chip
* from Apple. This chip is used on "Core99" machines
* This also includes U2 used on more recent MacRISC2/3
* machines and U3 (G5)
*
*/
#ifdef __KERNEL__
#ifndef __ASM_UNINORTH_H__
#define __ASM_UNINORTH_H__
/*... |
// SKIP!
#include<stdio.h>
#include<assert.h>
int t;
void rec1 (int x) {
if (x) {
t = 3;
rec1(0);
} else
t = 5;
}
void rec2 (int *p, int x) {
int i = 0;
// the first call
if (x == 0) {
rec2(&i, 1);
*p = i;
// the second call
} else {
*p = 9;
i = 0;
}
}
int fact(int x) {... |
// Copyright 2018 marcusolini@outlook.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// References
// Doctor Dobbs - A lightweight logger
// A Thread-Safe Logger
#pragma once
#include "LogPolicy.h"
#include <fstream>
clas... |
#ifndef _USUAL_CARD_H
#define _USUAL_CARD_H
#include "card.h"
enum Suits {
Clubs = 1,
Hearts,
Spades,
Diamonds
};
class UsualCard : public Card {
private:
Suits _suit;
public:
UsualCard(Rank rank, Suits suit); //Constructor
UsualCard(int rank, int suit); //Constructor
... |
// Copyright (c) 2019-2020 Ricardo Tonet
// Use of this header code is governed by the MIT license, see LICENSE
/**
* \file uart.h
* \brief Header file for uart communication with Bluetooth module.
*/
#ifndef SMALLDROP_PHEAD_UART_H
#define SMALLDROP_PHEAD_UART_H
#include "main.h"
/**
* \fn void receive_command... |
///////////////////////////////////////////////////////////
// SimpleValue.h
// Declaration of the class SimpleValue
// Created on: 20-Mar-2018 18:47:28
// Original author: Vitalij
///////////////////////////////////////////////////////////
#ifndef SIMPLEVALUE_H
#define SIMPLEVALUE_H
#include "mbed-client/m2... |
/*
* This is the LDRAW parts synthesis library.
* By Kevin Clague and Don Heyse
*/
#include <math.h>
#include "lsynthcp.h"
#include "hose.h"
#include "curve.h"
#include "mathlib.h"
#define PI 2*atan2(1,0)
/*
* 0 SYNTH BEGIN DEFINE HOSE <fill> PNEUMATIC_HOSE "descr" <diameter> <stiffness> <twist>
* 1 <length> a... |
/*-------------------------------------------------------------------------
* txid.c
*
* Export internal transaction IDs to user level.
*
* Note that only top-level transaction IDs are ever converted to TXID.
* This is important because TXIDs frequently persist beyond the global
* xmin horizon, or may even be sh... |
/*
* Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the OpenSSL license (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/lice... |
/*
* Copyright (C) 2005-2020 Centre National d'Etudes Spatiales (CNES)
*
* This file is part of Orfeo Toolbox
*
* https://www.orfeo-toolbox.org/
*
* 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 ... |
/*
* This file is part of the VanitySearch distribution (https://github.com/JeanLucPons/VanitySearch).
* Copyright (c) 2019 Jean Luc PONS.
*
* This program 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 Foundation,... |
// Copyright 2019 The Beam Team
//
// 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... |
//---------------------------------------------------------------------------
// Greenplum Database
// Copyright 2011 EMC Corp.
//
// @filename:
// CLogicalInnerApply.h
//
// @doc:
// Logical Inner Apply operator
//---------------------------------------------------------------------------
#ifndef GPOPT_CLogicalInner... |
/*
BASS 2.4 C/C++ header file
Copyright (c) 1999-2019 Un4seen Developments Ltd.
See the BASS.CHM file for more detailed documentation
*/
#ifndef BASS_H
#define BASS_H
#ifdef _WIN32
#include <wtypes.h>
typedef unsigned __int64 QWORD;
#else
#include <stdint.h>
#define WINAPI
#define CALLBACK
typedef uint8_t BYTE;
t... |
/****************************************************************************
Copyright (c) 2020-2022 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated engine source code (the "Software"), a limited,
wo... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:23:47 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/PrivateFrameworks/iCalendar.... |
//
// Academic License - for use in teaching, academic research, and meeting
// course requirements at degree granting institutions only. Not for
// government, commercial, or other organizational use.
// File: polyfit_initialize.h
//
// MATLAB Coder version : 4.3
// C/C++ source code generated on : 04-Aug... |
#ifndef VERTEX_CACHE_H
#define VERTEX_CACHE_H
class VertexCache
{
public:
VertexCache( int size )
{
numEntries = size;
entries = new int[ numEntries ];
for( int i = 0; i < numEntries; i++ )
entries[ i ] = -1;
}
VertexCache() { VertexCache( 16 ); }
~VertexCache() { delete[] entries; entries ... |
/*
-Procedure spk14e_c ( SPK, end a type 14 segment )
-Abstract
End the type 14 SPK segment currently being written to the SPK
file associated with handle. See also spk14a_c and spk14b_c.
-Disclaimer
THIS SOFTWARE AND ANY RELATED MATERIALS WERE CREATED BY THE
CALIFORNIA INSTITUTE OF TECHNOLOGY (CAL... |
/* Copyright (C) 2014 InfiniDB, Inc.
This program 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 Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but W... |
//===- llvm/LLVMContext.h - Class for managing "global" state ---*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... |
/*
The MIT License (MIT)
Copyright (c) [2016] [BTC.COM]
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, me... |
#pragma once
#include <array>
#include "locus.h"
#include "squareState.hpp"
class Board;
using ZobristHash = uint64_t;
class Zobrist
{
std::array<std::array<uint64_t, 12>, 64> hashTable_;
std::array<uint64_t, 2> colourHash_;
std::array<uint64_t, 16> castlingHash_;
std::array<uint64_t, 8> epHash_;
... |
/*********************************************************************
* Copyright 2016, UCAR/Unidata
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
*********************************************************************/
#include "d4includes.h"
#include <stdarg.h>
#include <assert.h>
#inc... |
/*
* Copyright (C) 2015 University of Oregon
*
* You may distribute under the terms of either the GNU General Public
* License or the Apache License, as specified in the LICENSE file.
*
* For more information, see the LICENSE file.
*/
#ifndef LINT
#endif
/*
*/
/************************************************... |
/*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*/
int global;
void foo(void)
{
void bar(void);
bar();
}
/** FNSPEC
some_ext... |
/**
*
* callbacks.h
* An Tao
*
* Public header file in trantor lib.
*
* Copyright 2018, An Tao. All rights reserved.
* Use of this source code is governed by a BSD-style license
* that can be found in the License file.
*
*
*/
#pragma once
#include <functional>
#include <memory>
namespace trantor
{
... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "S1AP-PDU-Contents"
* found in "../support/r14.4.0/36413-e40.asn"
* `asn1c -pdu=all -fcompound-names -findirect-choice -fno-include-deps`
*/
#ifndef _S1AP_KillRequest_H_
#define _S1AP_KillRequest_H_
#include <asn_application.h>
/* ... |
#ifndef NCHAN_REAPER_H
#define NCHAN_REAPER_H
typedef enum {RESCAN, ROTATE, KEEP_PLACE} nchan_reaper_strategy_t;
typedef struct {
char *name;
ngx_int_t count;
int next_ptr_offset;
int prev_ptr_offset;
void ... |
#pragma once
#include "il2cpp.h"
void NexPlugin_DataStoreRateObjectParam___ctor (NexPlugin_DataStoreRateObjectParam_o* __this, const MethodInfo* method_info);
void NexPlugin_DataStoreRateObjectParam__SetRatingValue (NexPlugin_DataStoreRateObjectParam_o* __this, int32_t ratingValue_, const MethodInfo* method_info);
in... |
/*
Copyright (c) 2014 NicoHood
See the readme for credit to other people.
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,... |
#pragma once
#include "../BaseRNGSystem.h"
#include <array>
class ColosseumRNGSystem final : public BaseRNGSystem
{
public:
enum QuickBattleTeamLeader
{
Blaziken = 0,
Entei,
Swampert,
Raikou,
Meganium,
Suicune,
Metagross,
Heracross
};
enum QuickBattlePlayerName
{
Wes = ... |
// Lean compiler output
// Module: Lean.Compiler.NameMangling
// Imports: Init Lean.Data.Name
#include <lean/lean.h>
#if defined(__clang__)
#pragma clang diagnostic ignored "-Wunused-parameter"
#pragma clang diagnostic ignored "-Wunused-label"
#elif defined(__GNUC__) && !defined(__CLANG__)
#pragma GCC diagnostic ignore... |
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the JUCE 5 End-User Lic... |
/*
* Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
*
* 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) any later v... |
#ifndef BITCOIN_CHAINPARAMSSEEDS_H
#define BITCOIN_CHAINPARAMSSEEDS_H
/**
* List of fixed seed nodes for the bitcoin network
* AUTOGENERATED by contrib/seeds/generate-seeds.py
*
* Each line contains a 16-byte IPv6 address and a port.
* IPv4 as well as onion addresses are wrapped inside a IPv6 address accordingly.
... |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
/*
* libwebsockets - small server side websockets and web server implementation
*
* Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
*
* 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 Sof... |
// Copyright 2013 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef V8_ARM64_ASSEMBLER_ARM64_H_
#define V8_ARM64_ASSEMBLER_ARM64_H_
#include <list>
#include <map>
#include <vector>
#include "src/arm64/instructi... |
// Archive/UdfIn.h -- UDF / ECMA-167
#ifndef __ARCHIVE_UDF_IN_H
#define __ARCHIVE_UDF_IN_H
#include "../../../Common/IntToString.h"
#include "../../../Common/MyBuffer.h"
#include "../../../Common/MyCom.h"
#include "../../../Common/MyMap.h"
#include "../../../Common/MyString.h"
#include "../../IStream.h"
namespace N... |
/*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* ... |
#include <ctype.h>
#include "aggregates.h"
#include "arithmetic.h"
#include "array.h"
#include "bits-builtins.h"
#include "cidr.h"
#include "conversions.h"
#include "encoding.h"
#include "glob.h"
#include "graphs.h"
#include "json.h"
#include "malloc.h"
#include "memoize.h"
#include "mpd.h"
#include "numbers.h"
#inclu... |
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// 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)
//
#pragma once
#include "td/utils/common.h"
#include "td/utils... |
/*
* Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
* Copyright (c) 2020-2021 Huawei Device Co., Ltd. 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. Redist... |
/*
* main.c -- the bare scull char module
*
* Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
* Copyright (C) 2001 O'Reilly & Associates
*
* The source code in this file can be freely used, adapted,
* and redistributed in source or binary form, so long as an
* acknowledgment appears in derived source f... |
//
// JGActionSheet.h
// JGActionSheet
//
// Created by Jonas Gessner on 25.07.14.
// Copyright (c) 2014 Jonas Gessner. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
/**
Button styles for JGActionSheetSection.
@sa JGActionSheetSection.
*/
typedef NS_ENUM(NSUInteger, JGAction... |
/*
* Linux INET6 implementation
*
* Authors:
* Pedro Roque <roque@di.fc.ul.pt>
*
* This program 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 Foundation; either version
* 2 of the License, or (a... |
//
// yas_playing_timeline_exporter.h
//
#pragma once
#include <chaining/yas_chaining_umbrella.h>
#include <cpp_utils/yas_base.h>
#include <cpp_utils/yas_result.h>
#include <cpp_utils/yas_task.h>
#include <processing/yas_processing_timeline.h>
#include "yas_playing_timeline_container.h"
namespace yas::playing {
str... |
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
//
// 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 app... |
/*
Scrivere un sottoprogramma che riceve in ingresso una stringa e due
doppi puntatori a char. Il sottoprogramma divide la stringa in
esattamente due parti di lunghezza uguale (se il numero di caratteri
è dispari lascia il carattere in eccesso nella seconda sottostringa)
e le salva in due array allocati dinamicamente... |
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Misc/Attribute.h"
#include "Layout/Visibility.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Widgets/SWidget.h"
#include "Widgets/SCompoundWidget.h"
#include "Styling/CoreStyle.h"
#include "Widgets... |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/Home.framework/Home
*/
@interface HFItemManager : NSObject <HFAccessoryObserver, HFHomeManagerObserver, HFHomeObserver, HFTemperatureUnitObserver> {
<HFItemManagerDelegate> * _delegate;
NSMutableSet * _disableUpdateReasons;
NAFutur... |
///////////////////////////////// License //////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Copyright 2015 Nicolas BESSON - BeeAtHome
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compli... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.