text
stringlengths
4
6.14k
/* * OSPF AS Boundary Router functions. * Copyright (C) 1999, 2000 Kunihiro Ishiguro, Toshiaki Takada * * This file is part of GNU Zebra. * * GNU Zebra 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; e...
/* * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code 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 Softwa...
/* * This file is part of the UCB release of Plan 9. It is subject to the license * terms in the LICENSE file found in the top-level directory of this * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No * part of the UCB release of Plan 9, including this file, may be copied, * modified, pro...
/* * Copyright (c) 2003, 2007-11 Matteo Frigo * Copyright (c) 2003, 2007-11 Massachusetts Institute of Technology * * 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 ...
/* * Copyright (c) 2009 Cyrille Berger <cberger@cberger.net> * * This library 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, or (at your option) any later version of the Lice...
/* * linux/mm/page_io.c * * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds * * Swap reorganised 29.12.95, * Asynchronous swapping added 30.12.95. Stephen Tweedie * Removed race in async swapping. 14.4.1996. Bruno Haible * Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie ...
// VirtualDub - Video processing and capture application // Copyright (C) 1998-2001 Avery Lee // // 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 // (at you...
/* $Id: string_colours.h 27378 2015-08-10 10:04:14Z alberth $ */ /* * This file is part of OpenTTD. * OpenTTD 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. * OpenTTD is distributed in the hope tha...
/* * Copyright (c) 2008, Atheros Communications Inc. * * Permission to use, copy, modify, and/or 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 T...
//============================================================================= // MuseScore // Music Composition & Notation // $Id: palette.cpp 5576 2012-04-24 19:15:22Z wschweer $ // // Copyright (C) 2011 Werner Schweer and others // // This program is free software; you can redistribute it and/or modify // it ...
///////////////////////////////////////////////////////////////////////////// // Name: wx/msw/icon.h // Purpose: wxIcon class // Author: Julian Smart // Modified by: // Created: 01/02/97 // RCS-ID: $Id: icon.h 56644 2008-11-02 02:39:52Z VZ $ // Copyright: (c) Julian Smart // Licence: wxWi...
/* * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> * * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> #include <errno.h> #include <asm/io.h> #include <asm/mrccache.h> #include <asm/post.h> #include <asm/processor.h> #include <asm/fsp/fsp_support.h> DECLARE_GLOBAL_DATA_PTR; int print_cpuinfo(void) {...
/****************************************************************************** * * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the ...
/* Test accepting a connection to a server socket. Copyright (C) 2011-2016 Free Software Foundation, 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; either version 3 of the License, ...
/* $Id: setup.c,v 1.10 1999/01/04 16:03:59 ralf Exp $ * * Setup pointers to hardware-dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 1996, 1997, 1998 ...
/* * Copyright (C) 2003-2010 The Music Player Daemon Project * http://www.musicpd.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 2 of the License, or * (at your opti...
#ifndef FONTPICKERDLG_H #define FONTPICKERDLG_H #include "wxcrafter.h" class FontPickerDlg : public FontPickerDlgBaseClass { wxString m_fontname; protected: virtual void OnUseCustomFont(wxCommandEvent& event); virtual void OnUseCustomFontUI(wxUpdateUIEvent& event); virtual void OnUsePreDefinedFontUI(w...
/* * Copyright (c) 2010 Cyrille Berger <cberger@cberger.net> * * 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 * (at your option) any later version...
/* SPDX-License-Identifier: GPL-2.0-only */ #include <device/i2c_simple.h> #include <stdint.h> int i2c_read_field(unsigned int bus, uint8_t chip, uint8_t reg, uint8_t *data, uint8_t mask, uint8_t shift) { int ret; uint8_t buf = 0; ret = i2c_readb(bus, chip, reg, &buf); buf &= (mask << shift); *data = (buf...
#ifndef __BACKPORT_LINUX_IF_ETHER_H_TO_2_6_21__ #define __BACKPORT_LINUX_IF_ETHER_H_TO_2_6_21__ #include_next <linux/if_ether.h> #define ETH_FCS_LEN 4 /* Octets in the FCS */ #endif
#include "24c16.h" #include "ult.h" #include "config.h" void at24c16_init(void) { GPIO_InitTypeDef GPIO_InitStructure; //Port B bidirection SDA GPIO_InitStructure.GPIO_Pin = I2C_SDA; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD; GPIO_Init(GPIO...
void test_postscript_comment_entities(){ test_parser_verify_entity( test_parser_sourcefile("postscript", "%comment"), "comment", "%comment" ); } void all_postscript_tests(){ test_postscript_comment_entities(); }
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2020 Neal Gompa <ngompa13@gmail.com> * based on dnf-backend-vendor-mageia.c * * Licensed under the GNU Lesser General Public License Version 2.1 * * This library is free software; you can redistribute it and/or * modify i...
#ifndef _METHNUM_H_ #define _METHNUM_H_ // Derivation double deriv( double f(double) , double x , double step ); // Integration double integ_qags ( double f(double),double lo,double hi); // singtab : tableau des singularité trié par ordre croissant // nbsing : nombre de singularité double integ_qagp ( double f(doubl...
#ifndef AUXILIARYFUNCS_H_ #define AUXILIARYFUNCS_H_ string intToStr(int tmp); #endif /* AUXILIARYFUNCS_H_ */
// // YCProblem.h // YCML // // Created by Ioannis (Yannis) Chatzikonstantinou on 19/3/15. // Copyright (c) 2015 Ioannis (Yannis) Chatzikonstantinou. All rights reserved. // // This file is part of YCML. // // YCML is free software: you can redistribute it and/or modify // it under the terms of the GNU General Publ...
/** * Orthanc - A Lightweight, RESTful DICOM Store * Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * * 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...
#ifndef _GCPAD_ #define _GCPAD_ typedef struct { union { struct { bool ErrorStatus :1; bool ErrorLatch :1; u32 Reserved :1; bool Start :1; bool Y :1; bool X :1; bool B :1; bool A :1; u32 AlwaysSet :1; bool R :1; bool L :...
/* * Copyright 2011-2012 Jason Rush and John Flanagan. All rights reserved. * * 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 3 of the License, or * (at your option) any lat...
/******************************************************************************* Copyright (C) The University of Auckland OpenCOR 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 of the License, ...
/******************************************************************** * * * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. * * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS * * GOVERNED BY A BSD-STYLE SOURCE LICENS...
/* Copyright 2005-2009 Last.fm Ltd. - Primarily authored by Max Howell, Jono Cole, Erik Jaelevik, Christian Muehlhaeuser This file is part of the Last.fm Desktop Application Suite. lastfm-desktop is free software: you can redistribute it and/or modify it under the terms of the GNU General ...
/**************************************************************** The author of this software is David M. Gay. Copyright (C) 1998, 2000 by Lucent Technologies All Rights Reserved Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, pro...
// This file is part of SilentEye. // // SilentEye 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 of the License, or // (at your option) any later version. // // SilentEye is distribu...
#pragma once #include "DomoticzHardware.h" #include "hardwaretypes.h" class csocket; class Action { public: std::string m_strCommand; std::string m_strName; std::string m_strLabel; std::string toString() { return m_strCommand; } }; class Function { public: std::string m_strName;...
/* Copyright 2011 Last.fm Ltd. - Primarily authored by Michael Coffey This file is part of the Last.fm Desktop Application Suite. lastfm-desktop 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 Foundatio...
/* * Generated by asn1c-0.9.24 (http://lionet.info/asn1c) * From ASN.1 module "InformationElements" * found in "../asn/InformationElements.asn" * `asn1c -fcompound-names -fnative-types` */ #include "SynchronisationParameters-r4.h" static int memb_sync_UL_CodesBitmap_constraint_1(asn_TYPE_descriptor_t *td, cons...
/* 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. This file is part of the FreeRTOS distribution. FreeRTOS is free software; you can redistribute it and/or modify it under the terms of...
/*! @file RoboPedestrianState.h @brief RoboPedestrian State @author Jason Kulk, Aaron Wong Copyright (c) 2010 Jason Kulk This file 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 ...
/* * This file is part of Espruino, a JavaScript interpreter for Microcontrollers * * Copyright (C) 2015 Gordon Williams <gw@pur3.co.uk> * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http...
/* * Copyright (C) 1994-2016 Altair Engineering, Inc. * For more information, contact Altair at www.altair.com. * * This file is part of the PBS Professional ("PBS Pro") software. * * Open Source License Information: * * PBS Pro is free software. You can redistribute it and/or modify it under the * terms ...
// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/> // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version ...
/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this f...
/* Generated from /home/skimo/git/cloog/test/./reservoir/mg-psinv.cloog by CLooG 0.14.0-284-ga90f184 gmp bits in 0.02s. */ if ((M >= 1) && (N >= 3) && (O >= 3)) { if (M >= 3) { for (c2=2;c2<=O-1;c2++) { for (c6=1;c6<=M;c6++) { S1(c2,2,c6); S2(c2,2,c6); } for (c4=4;c4<=2*N-3;c4++)...
/************************************************************************** ** ** Copyright (C) 2015 Lorenz Haas ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the comm...
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* Copyright (C) 2012 Red Hat, Inc. This library 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 Lic...
// The libMesh Finite Element Library. // Copyright (C) 2002-2019 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner // This library 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 ...
/* * AuthenTec AES4000 driver for libfprint * * AES4000 is a press-typed sensor, which captures image in 96x96 * pixels. * * This work is derived from Daniel Drake's AES4000 driver. * * Copyright (C) 2013 Juvenn Woo <machese@gmail.com> * Copyright (C) 2007-2008 Daniel Drake <dsd@gentoo.org> * * This library ...
/* SERIAL CONSOLE * For PIC24F * * Copyright 2012, Francisco Reyes Aspe, komodotas@gmail.com * Copyright 2012, Carlos Gonzalez Cortes, carlgonz@ug.uchile.cl * * This program is free software: you can redistribute it and/or modify * it under the t...
/****************************************************************/ /* DO NOT MODIFY THIS HEADER */ /* MOOSE - Multiphysics Object Oriented Simulation Environment */ /* */ /* (c) 2010 Battelle Energy Alliance, LLC ...
//************************************************ //¡ó×÷ÕߣºCUCKOO0615 //¡óÈÕÆÚ£º2014Äê8ÔÂ14ÈÕ //¡ó˵Ã÷£ºSocket¹¤¾ß //************************************************* #pragma once #ifndef CUCKOO0615_UTILS_MACRO #define CUCKOO0615_UTILS_MACRO #ifndef MAX_PATH #define MAX_PATH 260 #endif #ifndef ERRMSG...
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Copyright (c) 2014-2021 The plumed team (see the PEOPLE file at the root of the distribution for a list of names) See http://www.plumed.org for more information. This file is part of plumed, version 2. plumed is free software...
/*! \file */ #ifndef GDB_CLIENT_CORE_H #define GDB_CLIENT_CORE_H #include "r_types.h" #include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include "../libgdbr.h" #include "../utils.h" #include "../arch.h" #define CMD_ATTACH "vAttach;" #define CMD_DETACH_MP "D;" #define CMD_KILL_MP "vKill;...
/* * This file is part of nanocoop. * * Copyright (C) 2014 Nenad Radulovic * * nanocoop is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any...
/****************************************************************************** * FileName: spi_flash.h * Description: FLASH * Alternate SDK * Author: PV` * (c) PV` 2015 *******************************************************************************/ #ifndef SPI_FLASH_H #define SPI_FLASH_H #include "sdk_config.h...
/** @file ComboBoxMap.h @brief Class for integer input using slider or text field @author Lime Microsystems (www.limemicro.com) */ #ifndef NUMERIC_SLIDER_H #define NUMERIC_SLIDER_H #include <wx/wx.h> #include <wx/panel.h> class wxSpinCtrl; class wxScrollBar; class NumericSlider : public wxPanel { public: Numeri...
/* 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 may not...
// Copyright © Microsoft Open Technologies, Inc. // // 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 // // THIS CODE...
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. 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 ...
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/servicecatalog/ServiceCatalog_EXPORTS.h> #include <aws/servicecatalog/ServiceCatalogRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace...
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/workmail/WorkMail_EXPORTS.h> #include <aws/workmail/WorkMailRequest.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace WorkMai...
/* * Copyright 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" f...
/****************************************************************************** * Copyright 2017 The Apollo Authors. 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 ...
// // SPSubject.h // Snowplow // // Copyright (c) 2013-2015 Snowplow Analytics Ltd. All rights reserved. // // This program is licensed to you under the Apache License Version 2.0, // and you may not use this file except in compliance with the Apache License // Version 2.0. You may obtain a copy of the Apache Lic...
/* This file contains the implementation of the VBFS file system server. */ /* * The architecture of VBFS can be sketched as follows: * * +-------------+ * | VBFS | This file * +-------------+ * | * +-------------+ * | libsffs | Shared Folder File System library * ...
/* 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 (c) 2017 Florian Vaussard, HEIG-VD * * SPDX-License-Identifier: Apache-2.0 */ #include <kernel.h> #include <device.h> #include <init.h> #include <pinmux.h> #include <sys_io.h> #include <pinmux/stm32/pinmux_stm32.h> /* pin assignments for NUCLEO-F412ZG board */ static const struct pin_config pincon...
#pragma once #include "GuiElement.h" class Button : public GuiElement { public: char filler [96 - 46]; // 46 std::string msg; // 96 int id; // 100 bool flip; // 104 bool pressed; // 105 bool overrideScreenRendering; // 106 virtual ~Button(); virtual void render(MinecraftGame*, int, int); virtual void pointe...
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/mediaconvert/MediaConvert_EXPORTS.h> #include <aws/mediaconvert/model/Queue.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResul...
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/waf/WAF_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespa...
/* $NetBSD: cdefs.h,v 1.3 2012/01/20 14:08:05 joerg Exp $ */ #ifndef _X86_64_CDEFS_H_ #define _X86_64_CDEFS_H_ #define __ALIGNBYTES (sizeof(long) - 1) #endif /* !_X86_64_CDEFS_H_ */
// // CXMLNode.h // TouchCode // // Created by Jonathan Wight on 03/07/08. // Copyright 2011 toxicsoftware.com. 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 ...
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/ec2/EC2_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSStreamFwd.h> #include <aws/core/utils/memory/stl/AWSVector.h> #include <aws/ec2/model/FpgaDeviceInfo.h> #include <u...
/* * 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 may ...
/**************************************************************************** * * Copyright (c) 2014 - 2016 Samsung Electronics Co., Ltd. All rights reserved * ****************************************************************************/ #ifndef __SAP_MLME_H__ #define __SAP_MLME_H__ int sap_mlme_init(void); int s...
// // MOBFHttpService.h // MOBFoundation // // Created by vimfung on 15-1-20. // Copyright (c) 2015年 MOB. All rights reserved. // #import <Foundation/Foundation.h> @class MOBFHttpService; /** * GET方式 */ extern NSString *const kMOBFHttpMethodGet; /** * POST方式 */ extern NSString *const kMOBFHttpMethodPost; ...
#ifndef _SERIAL_H_ #define _SERIAL_H_ #include <inttypes.h> #ifndef PORTNAME #define PORTNAME "/dev/ttyAMA0" #endif void serial_init(void); void serial_config(void); void serial_println(const char *, int); void serial_readln(char *, int); void serial_close(void); #endif
../radeon/radeon_texture.h
/* SPDX-License-Identifier: BSD-2-Clause */ /*********************************************************************** * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG * Copyright (c) 2017-2018, Intel Corporation * * All rights reserved. ****************************************************...
// Copyright (c) 2011 The Chromium 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 CONTENT_BROWSER_GEOLOCATION_WIN7_LOCATION_PROVIDER_WIN_H_ #define CONTENT_BROWSER_GEOLOCATION_WIN7_LOCATION_PROVIDER_WIN_H_ #include "base/me...
// Copyright 2016 The Chromium 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 BASE_THREADING_THREAD_TASK_RUNNER_HANDLE_H_ #define BASE_THREADING_THREAD_TASK_RUNNER_HANDLE_H_ #include "base/base_export.h" #include "base/call...
// Copyright 2015 The Chromium 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 UI_GL_ANGLE_PLATFORM_IMPL_H_ #define UI_GL_ANGLE_PLATFORM_IMPL_H_ // Implements the ANGLE platform interface, for functionality like // histogram...
// // SLSOpenGLES11Renderer.h // Molecules // // The source code for Molecules is available under a BSD license. See License.txt for details. // // Created by Brad Larson on 4/12/2011. // // This is the old renderer, split out into a separate class for OpenGL ES 1.1 devices #import "SLSOpenGLESRenderer.h" @inte...
/*** Copyright (c), The Unregents of the University of California *** *** For more information please refer to files in the COPYRIGHT directory ***/ /* unregDataObj.c */ #include "modDataObjMeta.h" #include "icatHighLevelRoutines.h" #include "objMetaOpr.h" #include "dataObjOpr.h" #include "miscServerFunct...
/* * Copyright (C) 2005, 2006, 2008 Apple 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: * 1. Redistributions of source code must retain the above copyright * notice, this list of ...
// Copyright 2014 The Chromium 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 COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_H_ #define COMPONENTS_ENHANCED_BOOKMARKS_BOOKMARK_SERVER_CLUSTER_SERVICE_H_ #includ...
/*- * Copyright (c) 2014 Juniper Networks, 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: * 1. Redistributions of source code must retain the above copyright * notice, this list...
// Copyright (c) 2012 The Chromium 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 MEDIA_VIDEO_CAPTURE_SCREEN_DIFFER_H_ #define MEDIA_VIDEO_CAPTURE_SCREEN_DIFFER_H_ #include <vector> #include "base/basictypes.h" #include "b...
// // MCOAddress+Private.h // mailcore2 // // Created by DINH Viêt Hoà on 3/11/13. // Copyright (c) 2013 MailCore. All rights reserved. // #ifndef __MAILCORE_MCOADDRESS_PRIVATE_H_ #define __MAILCORE_MCOADDRESS_PRIVATE_H_ #ifdef __cplusplus namespace mailcore { class Address; } @interface MCOAddress (Private...
// Copyright (c) 2013 The Chromium 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 CHROME_BROWSER_UI_TOOLBAR_WRENCH_ICON_PAINTER_H_ #define CHROME_BROWSER_UI_TOOLBAR_WRENCH_ICON_PAINTER_H_ #include "base/compiler_specific.h"...
// // SKNotesDocument.h // Skim // // Created by Christiaan Hofman on 4/10/07. /* This software is Copyright (c) 2007-2014 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: - R...
// Copyright (c) 2012 The Chromium 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 NET_BASE_UPLOAD_ELEMENT_H_ #define NET_BASE_UPLOAD_ELEMENT_H_ #include <vector> #include "base/basictypes.h" #include "base/file_path.h" #in...
/*========================================================================= Program: Visualization Toolkit Module: vtkTransmitRectilinearGridPiece.h Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/Copyright.htm for details. ...
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "GameFramework/Actor.h" #include "MyActor.generated.h" /** * */ UCLASS() class SQLITE_API AMyActor : public AActor { GENERATED_BODY() public: UFUNCTION(BlueprintCallable, Category = "My Acto...
#include "platform.h"
// This file was generated based on 'C:\ProgramData\Uno\Packages\Fuse.Entities\0.19.3\$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Entities.TriangleMeshIntersecter.h> namespace g{namespace Fuse{namespace Entities{struct ModelMeshCollision__Indexed;}}} namespace ...
#include<stdio.h> #include<stdlib.h> int main() { int x,i,n,y; printf("n=");scanf("%d",&n); for(i=0;i<=n;i++) { for(y=0, x=n-i;y<=2*n;y++) { if(y>=x && y<=n+i) { printf("0"); } else { printf(""); } } printf("\n"); } }
//****************************************************************************** // // Copyright (c) 2015 Microsoft Corporation. All rights reserved. // // This code is licensed under the MIT License (MIT). // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LI...
//===- SystemUtils.h - Utilities to do low-level system stuff ---*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
// This file was generated based on 'C:\ProgramData\Uno\Packages\Fuse.Scripting.V8\0.19.3\$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Scripting.V8.Internal.Debug.h> #include <include/v8-debug.h> #include <Uno.IDisposable.h> #include <Uno.Object.h> namespace g{n...