text stringlengths 9 948k |
|---|
#ifndef NODE_H_INCLUDED
#define NODE_H_INCLUDED
#include <string>
struct Node{
std::string Chars;
int NumOfOcc;
Node *NodeL;
Node *NodeR;
};
#endif // NODE_H_INCLUDED |
/* libUIOHook: Cross-platfrom userland keyboard and mouse hooking.
* Copyright (C) 2006-2015 Alexander Barker. All Rights Received.
* https://github.com/kwhat/libuiohook/
*
* libUIOHook is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as publish... |
/*
* Copyright (c) 2014 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUT... |
#ifndef NTL_fileio__H
#define NTL_fileio__H
#include <NTL/tools.h>
#include <NTL/vector.h>
#include <fstream>
#include <string>
NTL_OPEN_NNS
class FileList {
private:
Vec< Vec<char> > data;
FileList(const FileList&); // disable
void operator=(... |
//
// HPFaceData.h
// AwemeLike
//
// Created by wang on 2019/11/21.
// Copyright © 2019 Hytera. All rights reserved.
//
#import "GPUImage.h"
#ifndef HPFaceData_h
#define HPFaceData_h
#pragma mark - face Texture Coordinates
NSString *faceTextureCoordinatesString = SHADER_STRING
(
0.302451 0.384169
0.302986 0.4... |
//
// SKDownloadController.h
// Skim
//
// Created by Christiaan Hofman on 8/11/07.
/*
This software is Copyright (c) 2007-2010
Christiaan Hofman. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
... |
// (C) Copyright 2018, Nanbo Sun (nanbosun@u.nus.edu), Xiuming Zhang
// This file is part of POLARLDA-C.
// POLARLDA-C 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... |
// ----------------------------------------------------------------------------
//
//
// OpenSteer -- Steering Behaviors for Autonomous Characters
//
// Copyright (c) 2002-2003, Sony Computer Entertainment America
// Original author: Craig Reynolds <craig_reynolds@playstation.sony.com>
//
// Permission is hereby grante... |
/*
* ArtifactMenuComponent.h
*/
#ifndef ArtifactMENUCOMPONENT_H_
#define ArtifactMENUCOMPONENT_H_
#include "TangibleObjectMenuComponent.h"
class ArtifactMenuComponent : public TangibleObjectMenuComponent {
public:
virtual int handleObjectMenuSelect(SceneObject* sceneObject, CreatureObject* player, byte selectedID... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
//
// Created by Александр Баташев on 09.12.16.
//
#include "../src/algorithms.h"
#include "../src/utils.h"
#include <stdio.h>
#include <stdlib.h>
extern int CONSTANT_ARRAY[17];
#define N N_CONST
int main()
{
int *arr = CONSTANT_ARRAY; // для удобсва
// FILE *fp = fopen("array.dat", "r");
// int i;
// ... |
//
// AppDelegate.h
// Sprout
//
// Created by Jeff Morris on 10/9/16.
// Copyright © 2016 sprout. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate> {
}
@property (strong, nonatomic) UIWindow *window;
@end |
//
// Created by maxim on 9/11/19.
//
#ifndef DEEPCARS_MODEL_H
#define DEEPCARS_MODEL_H
#define GL_GLEXT_PROTOTYPES
#include "../coredefs.h"
#include <GL/gl.h>
#include <errno.h>
#include "../graphics/gmath.h"
#include "../graphics/material.h"
// Max count of vertices per face
#define MAX_FACE_LEN 10
struct _mod... |
///////////////////////////////////////////////////////////////////////////////
// Name: wx/evtloopsrc.h
// Purpose: declaration of wxEventLoopSource class
// Author: Vadim Zeitlin
// Created: 2009-10-21
// RCS-ID: $Id: evtloopsrc.h 62475 2009-10-22 11:36:35Z VZ $
// Copyright: (c) 2009 Vadim... |
//
// MutexConditionDemo.h
// Multi-ThreadDemo
//
// Created by Twisted Fate on 2022/4/2.
//
#import "BaseDemo.h"
NS_ASSUME_NONNULL_BEGIN
@interface MutexConditionDemo : BaseDemo
- (void)conditionTest;
@end
NS_ASSUME_NONNULL_END |
#ifndef __MODULE_SCENE_RENDERER_H__
#define __MODULE_SCENE_RENDERER_H__
#include "Module.h"
class Renderer;
class LineRenderer;
class QuadRenderer;
class DinamicTriangleRenderer;
class DynamicGridRenderer;
class StaticRenderer;
class Camera2D;
class LayerSpace
{
friend class ModuleSceneRenderer;
private:
LayerSpa... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 28, 2021 at 9:14:17 PM Mountain Standard Time
* Operating System: Version 14.5 (Build 18L204)
* Image Source: /System/Library/PrivateFrameworks/VideosUI.f... |
/*-
* BSD LICENSE
*
* Copyright (c) Intel Corporation.
* 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 above copyri... |
// This code contains NVIDIA Confidential Information and is disclosed to you
// under a form of NVIDIA software license agreement provided separately to you.
//
// Notice
// NVIDIA Corporation and its licensors retain all intellectual property and
// proprietary rights in and to this software and related documentation... |
/*
* Copyright 2013-2015 Samy Al Bahra.
* 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 cond... |
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2016 The PHP Group |
+--------------... |
#pragma once
#include <util/system/defaults.h>
enum HttpCodes {
HTTP_CONTINUE = 100,
HTTP_SWITCHING_PROTOCOLS = 101,
HTTP_OK = 200,
HTTP_CREATED = 201,
HTTP_ACCEPTED = 202,
HTTP_NON_AUTHORITAT... |
#ifndef INCLUDE_UI_RENDERER_H
#define INCLUDE_UI_RENDERER_H
#include "mez.h"
#include "ui/render/shader.h"
#include "ui/render/framebuffer.h"
#include "util/log.h"
static Channel Renderer;
typedef struct VertexBuffer {
u32 ID;
} VertexBuffer;
void CreateVertexBuffer(struct VertexBuffer *vbo, u32 size, const f32 *da... |
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... |
/*
* Copyright (c) 2014, Freescale Semiconductor, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* o Redistributions of source code must retain the above copyright notice, this list... |
// Copyright (c) 2011-2020 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_GUICONSTANTS_H
#define BITCOIN_QT_GUICONSTANTS_H
#include <cstdint>
/* Milliseconds between model update... |
/*
* MMU context allocation for 64-bit kernels.
*
* Copyright (C) 2004 Anton Blanchard, IBM Corp. <anton@samba.org>
*
* 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
... |
/*
* Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (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/l... |
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "QQAIOBaseEventHandler.h"
@interface QQAIOQZoneFeedEventHandler : QQAIOBaseEventHandler
{
}
- (_Bool)AIOTouchesEnded:(id)arg1 withEvent:(id)arg2 aioCell:(id)arg3;
@end |
/******************************************************************************
* *
* Copyright 2018 Jan Henrik Weinstock *
* *
... |
/*
* Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided t... |
// Copyright 2021 Herald Project Contributors
// SPDX-License-Identifier: Apache-2.0
//
#ifndef HERALD_DISTANCE_H
#define HERALD_DISTANCE_H
#include <cstddef>
namespace herald {
namespace datatype {
/// Simple distance value in metres
/// Has to be a class/struct type to allow template resolution
struct Distance ... |
/*
* Copyright 2000, International Business Machines Corporation and others.
* All Rights Reserved.
*
* This software has been released under the terms of the IBM Public
* License. For details, see the LICENSE file in the top-level source
* directory or online at http://www.openafs.org/dl/license10.html
*/
/*
... |
/*
* Copyright (C) 2014 BlueKitchen GmbH
*
* 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 the follo... |
/*
*
* device driver for philips saa7134 based TV cards
* driver core
*
* (c) 2001-03 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
*
* 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; ei... |
/*
* Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2004, 2005, 2006 Rob Buis <buis@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 Foundatio... |
/*
* Copyright (c) 2005-2017 National Technology & Engineering Solutions
* of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
* NTESS, the U.S. Government retains certain rights in this software.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitt... |
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import <MAMapKit/MAMapKit.h>
#import <AMapFoundationKit/AMapFoundationKit.h>
#import <Masonry/Masonry.h> |
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright 2000 by PostgreSQL Global Development Group
*
* $Header: /home/hjcvs/OB-CCM-1.0/postgresql/src/bin/psql/input.c,v 1.2 2004/07/05 08:55:54 SuLiang Exp $
*/
#include "postgres_fe.h"
#include "input.h"
#include <errno.h>
#include "pqexpbuffer.h"
#includ... |
struct buf;
struct context;
struct file;
struct inode;
struct pipe;
struct proc;
struct spinlock;
struct sleeplock;
struct stat;
struct superblock;
// bio.c
void binit(void);
struct buf* bread(uint, uint);
void brelse(struct buf*);
void bwrite(struct buf*);
void bpin(str... |
//===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... |
// 自动生成全部头文件
#import <Tetris/TSTree.h>
#import <Tetris/Tetris.h>
#import <Tetris/TSTetrisDefine.h>
#import <Tetris/TSTetris.h>
#import <Tetris/TSModule.h>
#import <Tetris/TSBaseApplicationDelegate.h>
#import <Tetris/TSStream.h>
#import <Tetris/TSLogger.h>
#import <Tetris/TSCreatable.h>
#import <Tetris/TSLinkNode.h>
#im... |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <functional>
#include "Configurable.h"
#include "InlinerConfig.h"
struct InlinerConfig : public inliner::I... |
/***************************************************************************
Copyright (c) 2013, The OpenBLAS Project
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... |
#import <JavaScriptCore/JavaScriptCore.h>
#import "allheaders.h"
#import "allprotos.h"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#pragma clang diagnostic ignored "-Wobjc-property-no-attribute"
#pragma clang diagnostic ignored "-Wnullability-completeness"
void load_CoreFo... |
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
#pragma once
#include <vector>
#include "Reader.h"
namespace Microsoft { namespace MSR { namespace CNTK {
// Sequence key, used for correlations of sequence... |
#ifndef foomemoryhfoo
#define foomemoryhfoo
/***
This file is part of PulseAudio.
Copyright 2004-2006 Lennart Poettering
PulseAudio 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 versio... |
/******************************************************************************/
/******************************************************************************/
#ifndef __DEVS_H__
#define __DEVS_H__
/* char storage */
extern RET_CODE charsto_win32_attach(char *name);
#define CHARSTO_ATTACH charsto_win32_attach
#def... |
/*
// Copyright (c) 2016 Intel Corporation
//
// 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 o... |
#undef CONFIG_ARCNET |
#pragma once
#include "ray/core.h"
namespace ray {
namespace api {
template <typename ReturnType>
class ActorTaskCaller {
public:
ActorTaskCaller();
ActorTaskCaller(RayRuntime *runtime, ActorID id, RemoteFunctionPtrHolder ptr,
std::shared_ptr<msgpack::sbuffer> args);
ObjectRef<ReturnType> ... |
const unsigned char HotDance[813]={
0x0b,0x11,0x0b,0x1f,0xb0,0xb1,0xb2,0xb3,0x83,0xb0,0xb1,0xb2,0xb3,0x83,0x01,0x8f,
0x83,0x0b,0x07,0x8f,0x01,0x83,0xb0,0xb1,0xb2,0xb3,0x83,0xb0,0xb1,0xb2,0xb3,0xc0,
0xc1,0xc2,0xc3,0x83,0xc0,0xc1,0xc2,0xc3,0x83,0x01,0x83,0x04,0x05,0x06,0x07,0x02,
0x03,0x08,0x09,0x83,0x01,0x83,0xc0,0xc1,0... |
/*
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at w... |
//=========================================================================
// Copyright (C) 2012 The Elastos 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
//
// ... |
//
// Generated by class-dump 3.5 (64 bit) (Debug version compiled Mar 11 2021 20:53:35).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <LunaKit/LKTextFieldCell.h>
@interface LKPaneCapLabelCell : LKTextFieldCell
{
}
@end |
/******************************************************************************
*
* Copyright (C) 2001 - 2014 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 Softw... |
/*
* Unix SMB/CIFS implementation.
* RPC Pipe client / server routines
* Copyright (C) Andrew Tridgell 1992-1997,
* Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
* Copyright (C) Paul Ashton 1997.
* Copyright (C) Jeremy Allison 1999.
*
* Thi... |
// Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers
// Copyright (c) 2018-2019, The TurtleCoin Developers
// Copyright (c) 2020, The Proximus Project
// Please see the included LICENSE file for more information.
#pragma once
#include "ConfigurationManager.h"
#include "logging/ConsoleLogger.... |
//
// Created by bkg2k on 13/08/2020.
//
#pragma once
#include <utils/storage/HashMap.h>
#include <string>
class IAudioController
{
public:
virtual ~IAudioController() = default;
/*!
* @brief Get playback list
* @return Map identifier : playback name
*/
virtual HashMap<int, std::string> ... |
#pragma once
#include "MyGUI_Prerequest.h"
#include "MyGUI_ITexture.h"
#include "MyGUI_RenderFormat.h"
#include "MyGUI_IRenderTarget.h"
namespace MyGUI
{
class OpenGLESRTTexture :
public IRenderTarget
{
public:
OpenGLESRTTexture(unsigned int _texture);
~OpenGLESRTTexture() override;
void begin() override... |
#ifndef FIGUREWITHANGLES_H
#define FIGUREWITHANGLES_H
#include "Figure.h"
class FigureWithAngles : public Figure
{
public:
std::map<char, double> side;
};
#endif /* FIGUREWITHANGLES_H */ |
#pragma once
#include "JSONdom.h"
namespace et {
namespace core {
namespace JSON {
//---------------------------------
// Writer
//
// Main class for this project
//
class Writer
{
public:
Writer(bool compact) : m_Compact(compact) {}
bool Write(Object const* const rootObj);
std::string const& GetResult() cons... |
/*
* Copyright 2009-2017 Alibaba Cloud 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required... |
#ifndef __EEMCS_EXPT_UT_API_H__
#define __EEMCS_EXPT_UT_API_H__
#ifdef _EEMCS_EXCEPTION_UT
/* UL APIs */
int exception_ut_UL_write_skb_to_swq(MTLTE_DF_TX_QUEUE_TYPE qno , struct sk_buff *skb);
int exception_ut_UL_swq_space(MTLTE_DF_TX_QUEUE_TYPE qno);
int exception_ut_register_swint_callback(MTLTE_DF_TO_DEV_CALLBACK ... |
/*
* GPL HEADER START
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 only,
* as published by the Free Software Foundation.
*
* This program is distributed... |
#ifndef MC_SPIN_C
#define MC_SPIN_C MC_SPIN_C
///////////////////////////////////////////////////////////////
typedef volatile int myspin_t;
#define MY_SPIN(x) myspin_t spin_##x = 0x00, *x = &spin_##x
void lock(volatile int *spin__) { //argument MUST take address to global volatile int
while (__sync_lock_test_an... |
/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
nlsat_solver.h
Abstract:
Nonlinear arithmetic satisfiability procedure. The procedure is
complete for nonlinear real arithmetic, but it also has limited
support for integers.
Author:
Leonardo de Moura (leonardo) 2012-01-02.
Revision ... |
/*-
* Copyright (c) 2009-2010 The FreeBSD Foundation
* All rights reserved.
*
* This software was developed by Semihalf under sponsorship from
* the FreeBSD Foundation.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* ... |
// This is an open source non-commercial project. Dear PVS-Studio, please check
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
/// @file diff.c
///
/// Code for diff'ing two, three or four buffers.
///
/// There are three ways to diff:
/// - Shell out to an external diff program, using... |
/******************************************************************************/
/* reader-libpcap.c -- Reader using libpcap
*
* Copyright 2012-2017 AOL Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this Software except in compliance with the Licen... |
//
// AndyVideoDetailOperateButton.h
// EnSight
//
// Created by Hollie Bradley on 10/15/15.
// Copyright © 2015 Hollie Bradley. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AndyVideoDetailOperateButton : UIButton
@end |
/* Copyright (c) 2000, 2001, 2005-2007 MySQL AB
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,
... |
/*
* This header is generated by classdump-dyld 1.5
* on Tuesday, November 10, 2020 at 10:21:59 PM Mountain Standard Time
* Operating System: Version 14.2 (Build 18K57)
* Image Source: /System/Library/PrivateFrameworks/TrialServ... |
//==================================================================================
// BSD 2-Clause License
//
// Copyright (c) 2014-2022, NJIT, Duality Technologies Inc. and other contributors
//
// All rights reserved.
//
// Author TPOC: contact@openfhe.org
//
// Redistribution and use in source and binary forms, wi... |
/*
*
* Copyright (C) 2018 Attila Gyulassy <jediati@sci.utah.edu>
* All rights reserved.
*
* This software may be modified and distributed under the terms
* of the BSD license. See the LICENSE file for details.
*/
#ifndef DISCRETE_GRADIENT_LABELING_H
#define DISCRETE_GRADIENT_LABELING_H
#include "gi_basic_types.h"
//... |
/*!
* \file LoRaMac.h
*
* \brief LoRa MAC layer implementation
*
* \copyright Revised BSD License, see section \ref LICENSE.
*
* \code
* ______ _
* / _____) _ | |
* ( (____ _____ ____ _| |_ _____ ____| |... |
//
// MPMediaItem.h
// MediaPlayer
//
// Copyright 2008 Apple, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
#import <MediaPlayer/MediaPlayerDefines.h>
#import <MediaPlayer/MPMediaEntity.h>
NS_ASSUME_NONNULL_BEGIN
@class NSImage, UIImage, MPMediaItemArtwork;
... |
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2016 Mark Shannon
* Copyright (c) 2017 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (... |
/*
* Copyright 2019 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrTextureResolveRenderTask_DEFINED
# define GrTextureResolveRenderTask_DEFINED
# include "src/gpu/GrRenderTask.h"
class GrTextureResolveRenderTask final : public GrRen... |
// Generated by Apple Swift version 4.1 (swiftlang-902.0.48 clang-902.0.37.1)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# def... |
//------------------------------------------------------------------------------
// GB_AxB__land_gt_uint16.c: matrix multiply for a single semiring
//------------------------------------------------------------------------------
// SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved.
// SPDX-Li... |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems.
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 ... |
#import <Foundation/Foundation.h>
#import "PSHCampaignDAO.h"
#import "PSHCustomDAO.h"
typedef NS_ENUM(NSUInteger, PSHNotificationDefaultAction) {
PSHNotificationDefaultActionLandingPage,
PSHNotificationDefaultActionNone
};
@interface PSHNotification : NSObject
@property (nonatomic, strong) NSDictionary *user... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Enum4135868527.h"
#include "UnityEngine_UnityEngine_CursorMode4010326064.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic igno... |
#ifndef VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#define VALUE_TYPE_H_62B23520_7C8E_11DE_8A39_0800200C9A66
#if defined(_MSC_VER) || \
(defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
(__GNUC__ >= 4)) // GCC supports "pragma once" correctly ... |
/*
* @file
* @author Benny Bobaganoosh <thebennybox@gmail.com>
* @section LICENSE
*
* Copyright (C) 2014 Benny Bobaganoosh
*
* 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:... |
// Copyright (c) 2018-2019 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef CHN_QUORUMS_UTILS_H
#define CHN_QUORUMS_UTILS_H
#include "consensus/params.h"
#include "net.h"
#include "evo/determini... |
/**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE... |
/*
* Copyright (c) 2017 ETH Zurich.
* All rights reserved.
*
* This file is distributed under the terms in the attached LICENSE file.
* If you do not find this file, copies can be found by writing to:
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
*/
#include <barrelfish/barrel... |
/************************************************************************************
* configs/arduino-due/src/sam_boot.c
*
* Copyright (C) 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modifica... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:36:52 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/PrivateFrameworks/TrustedPee... |
//
// ofxQCAR.h
// emptyExample
//
// Created by lukasz karluk on 14/12/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#pragma once
#import "ofMain.h"
#import "ofxQCAR_App.h"
#import <QCAR/DataSet.h>
class ofxQCAR_UpdateCallback;
@class ofxVuforiaSession;
//--------------------------------... |
// Copyright 2018 The Fuchsia 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 TOOLS_FIDL_FIDLC_INCLUDE_FIDL_NAMES_H_
#define TOOLS_FIDL_FIDLC_INCLUDE_FIDL_NAMES_H_
#include <string>
#include <string_view>
#include "c_genera... |
#pragma once
#include <cstddef>
namespace scratch {
// priority_tag is NOT a standard library type.
template<size_t I> struct priority_tag : priority_tag<I-1> {};
template<> struct priority_tag<0> {};
} // namespace scratch |
#include "../rasbase/rasbase.h"
#include "../rasbase/rasprobe.h"
#include "../rasbase/rasproc.h"
#include <linux/kernel.h>
#include <linux/bio.h>
#include <linux/genhd.h>
#include <linux/module.h>
#include <linux/blk_types.h>
#include <linux/blkdev.h>
#include <linux/delay.h>
#include <linux/random.h>
#include <linux/a... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, October 27, 2021 at 3:23:39 PM Mountain Standard Time
* Operating System: Version 13.5.1 (Build 17F80)
* Image Source: /System/Library/PrivateFrameworks/SafariS... |
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/tcp.h>
#include <net/gen/in.h>
#include <net/gen/tcp.h>
#include <net/gen/tcp_io.h>
#include <net/gen/udp.h>
#include <net/gen/udp_io.h>
#define DEBUG 0... |
//NPC priest for newbietown temples - describe & name thanks to HM Lliira's player
#include <std.h>
inherit NPC;
void create() {
::create();
set_name("Aemilia Malfour");
set_short("Aemilia Malfour, Nightcloak of Shar");
set_id(({"npc cleric","cleric", "aemilia", "Aemilia", "priestess"}));
set_long(
@STYX
%^ORAN... |
/*
* Copyright 2011 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 or agr... |
#ifndef PHOENIX_MODEL_INSTANCE_H
#define PHOENIX_MODEL_INSTANCE_H
#include "Utility/Misc/Primitives.h"
#include "Utility/Misc/String.h"
#include "Math/Quaternion.h"
#include "Math/Vector3D.h"
#include "Rendering/Material.h"
namespace Phoenix
{
class FModelInstance
{
public:
void SetMaterial(const FMaterial& Mate... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.