text
stringlengths
9
948k
// // UIColor+Modify.h // UIColorCategory // // Created by David Keegan on 9/24/13. // Copyright (c) 2013 1kLabs, Inc. All rights reserved. // #import <UIKit/UIKit.h> @interface UIColor(Modify) - (UIColor *)invertedColor; - (UIColor *)colorForTranslucency; - (UIColor *)lightenColor:(CGFloat)lighten; - (UIColor ...
/***************************************************************************** * ==> Underground demo -----------------------------------------------------* ***************************************************************************** * Description : An underground level demo based on ray casting engines like * * ...
// PARAM: --set ana.activated[+] "'file'" --enable ana.file.optimistic #include <stdio.h> int main(){ FILE *fp; fp = fopen("test.txt", "a"); // WARN: MAYBE file is never closed fprintf(fp, "Testing...\n"); fp++; // WARN: changed pointer fp (no longer safe) fp--; // WARN: changed pointer fp (no longer safe) f...
#pragma once #include "game_sv_deathmatch.h" class game_sv_TeamDeathmatch : public game_sv_Deathmatch { private: typedef game_sv_Deathmatch inherited; bool teams_swaped; protected: virtual bool checkForFragLimit (); virtual bool HasChampion (); virtual void ReadOptions (shared_str ...
/*************************************************************************** * This file is part of the ReViSy project * Copyright (C) 2007 by Neon ***************************************************************************/ #ifndef CAMERA_H #define CAMERA_H #include "mathUtils.h" #include "frustrum.h" #defin...
#include "CuTest.h" #include "sonLib.h" #include "cactus.h" #include "stPinchGraphs.h" #include "rescue.h" // Get a little-endian bed region array as an mmaped coverage array // would appear. static bedRegion *getBedRegionArray(int64_t name, bool *coverageArray, int64_t length, bedR...
/* * This header is generated by classdump-dyld 1.5 * on Friday, April 30, 2021 at 11:36:29 AM Mountain Standard Time * Operating System: Version 13.5.1 (Build 17F80) * Image Source: /System/Library/Frameworks/CoreSpotlight.fram...
/***************************************************************************//** * # License * * The licensor of this software is Silicon Laboratories Inc. Your use of this * software is governed by the terms of Silicon Labs Master Software License * Agreement (MSLA) available at * www.silabs.com/about-us/legal/...
/* * Copyright (c) 2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * 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/LICE...
/* * @Author: sxf * @Date: 2015-11-04 10:16:06 * @Last Modified by: sxf * @Last Modified time: 2015-11-04 22:06:49 */ #include "charsetdetect.h" #include "stdio.h" #include "exiconv.h" #define BUFFER_SIZE 4096 #define CHAR uint32_t int main(int argc, const char * argv[]) { FILE* f = fopen(argv[1], "r"); ...
// // AfpGraphsViewController.h // Server Admin // // Created by Ben Szymanski on 2/21/22. // #import <Cocoa/Cocoa.h> NS_ASSUME_NONNULL_BEGIN @interface AfpGraphsViewController : NSViewController @end NS_ASSUME_NONNULL_END
// Copyright (C) 2008 Danil Kirsanov, MIT License #pragma once // some constants and simple math functions namespace geodesic { #ifndef M_PI #define M_PI 3.14159265358979323846 #endif // double const GEODESIC_INF = std::numeric_limits<double>::max(); double const GEODESIC_INF = 1e100; // in order to avoid numerica...
30 mtime=1639777085.525355983 30 atime=1639777086.393355983 30 ctime=1639777128.944355983
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* Thi...
/* * Copyright 2019-2022 Diligent Graphics LLC * Copyright 2015-2019 Egor Yusov * * 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....
// Copyright 2015-2017 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 a...
#ifndef Py_MODSUPPORT_H #define Py_MODSUPPORT_H #ifdef __cplusplus extern "C" { #endif /* Module support interface */ #include <stdarg.h> /* If PY_SSIZE_T_CLEAN is defined, each functions treats #-specifier to mean Py_ssize_t */ #ifdef PY_SSIZE_T_CLEAN #define PyArg_Parse _PyArg_Parse_SizeT #define PyArg_ParseT...
// // Board.h // tetris // // Created by Xhacker Liu on 2/14/14. // Copyright (c) 2014 Xhacker. All rights reserved. // #ifndef __tetris__Board__ #define __tetris__Board__ class Board { private: int blocks[20][10]; public: Board(); void reset(); int num_of_points; bool has_collision(bool...
#ifndef COMMANDS_H #define COMMANDS_H #define MAX_BRIGHTNESS_PERCENT (default_brightness * 4) #define DIM_BRIGHTNESS_PERCENT (default_brightness / 2) #define BRIGHT_BRIGHTNESS_PERCENT (default_brightness * 2) #define FADE_TIMES 40 #define FADE_DELAY 10 #define DEMO_OBJECT_SIZE 1 #define DEMO_GAP_SIZE 0 #define DEMO_...
/* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2011-12-12 Yi Qiu first version */ #include <kernel/rtthread.h> #include <drivers/drivers/usb_host.h> #include "hid.h" #ifdef RT_USBH_HID static str...
#include "clingo/lang/expect.h" #include "clingo/type/uint64.h" int main( void ) { init_tap_c_(); expect_lt_c_( cmp_uint64_c( 0 , 9223372036854775807 ) ); expect_lt_c_( cmp_uint64_c( 9223372036854775806 , 9223372036854775807 ) ); expect_eq_c_( cmp_uint64_c( 9223372036854775807 , 92233...
/* PipeWire * * Copyright © 2019 Wim Taymans * * 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, merg...
#ifndef CS_BIGINTEGER_BIGINTEGER_H #define CS_BIGINTEGER_BIGINTEGER_H // system includes #include <algorithm> #include <iomanip> #include <iostream> // todo: remove #include <sstream> #include <vector> #include <memory> // unique_ptr // internal classes #include "Helper.hpp" // original specification: // https://ref...
#ifndef _CRC32_H #define _CRC32_H /* Returns crc32 of data block */ extern unsigned int ltree_crc32_sz(char *buf, int size); /* Returns crc32 of null-terminated string */ #define crc32(buf) ltree_crc32_sz((buf),strlen(buf)) #endif
#pragma once #include "GuiSettings.h" #include "RetroAchievements.h" class FileData; class GuiRetroAchievements : public GuiSettings { public: static void show(Window* window); bool input(InputConfig* config, Input input) override; std::vector<HelpPrompt> getHelpPrompts() override; static FileData* getFileDa...
/** @file RISC-V CPU library definitions. Copyright (c) 2016 - 2021, Hewlett Packard Enterprise Development LP. All rights reserved.<BR> SPDX-License-Identifier: BSD-2-Clause-Patent **/ #ifndef RISCV_CPU_LIB_H_ #define RISCV_CPU_LIB_H_ #include "RiscVImpl.h" /** RISCV_TRAP_HANDLER **/ typedef VOID (EFIAPI ...
/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2017, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file dirserv.h * \brief Header file for dirserv.c. **/ #ifndef TOR...
//======================================================================== // GLFW 3.4 - www.glfw.org //------------------------------------------------------------------------ // Copyright (c) 2002-2006 Marcus Geelnard // Copyright (c) 2006-2019 Camilla Löwy <elmindreda@glfw.org> // // This software is provided 'as-is...
/* $NetBSD: nsdispatch.c,v 1.9 1999/01/25 00:16:17 lukem Exp $ */ /*- * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Luke Mewburn. * * Redistribution and use in source and binary forms, with or ...
/* Copyright 2017 The TensorFlow 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 http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURP...
#ifndef IP_PS_SYSTEM_S02_DATA_FIFO_0_SC_H_ #define IP_PS_SYSTEM_S02_DATA_FIFO_0_SC_H_ // (c) Copyright 1995-2022 Xilinx, Inc. All rights reserved. // // This file contains confidential and proprietary information // of Xilinx, Inc. and is protected under U.S. and // international copyright and other intellectual prop...
#ifndef EFFECT_H_ #define EFFECT_H_ #include "Ref.h" #include "Vector2.h" #include "Vector3.h" #include "Vector4.h" #include "Matrix.h" #include "Texture.h" namespace gameplay { class Uniform; /** * Defines an effect which can be applied during rendering. * * An effect essentially wraps an OpenGL program object,...
/* * Copyright (c) 2007-2011 Nicira, Inc. * * 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 Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT...
/* * Copyright 2019 IBM * * 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 later version. * * This program is distributed in the...
// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2012 Freescale Semiconductor, Inc. * Author: Fabio Estevam <fabio.estevam@freescale.com> * * Copyright (C) 2013, 2014 TQ Systems (ported SabreSD to TQMa6x) * Author: Markus Niebel <markus.niebel@tq-group.com> */ #include <asm/io.h> #include <asm/arch/clock....
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.c * @brief : Main program body ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2019 ST...
/*- * Copyright (c) 2004 Mark R V Murray * 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 con...
// -*- Mode: C++; tab-width: 2; -*- // vi: set ts=2: // #ifndef BALL_CONCEPT_BASEFUNCTOR_H #define BALL_CONCEPT_BASEFUNCTOR_H #ifndef BALL_COMMON_GLOBAL_H # include <BALL/COMMON/global.h> #endif namespace BALL { /** @name Generic Functors. * \ingroup ConceptsMiscellaneous */ //@{ /** Generic Unary F...
// Copyright (C) 2002-2011 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h #ifndef __BUILD_IN_FONT_H_INCLUDED__ #define __BUILD_IN_FONT_H_INCLUDED__ #include "IrrCompileConfig.h" #ifdef _IRR_COMPILE_WITH_GUI_ // header fil...
#pragma once #include <algorithm> #include <stdint.h> #include <time.h> #include "Utils.h" #include "Settings.h" class Statistics { public: Statistics() { ResetAll(); m_current = time(NULL); } void ResetAll() { m_packetsSentTotal = 0; m_packetsSentInSecond = 0; m_packetsSentInSecondPrev = 0; m_bitsSe...
#ifndef GAINPUTDEV_H_ #define GAINPUTDEV_H_ #ifdef GAINPUT_DEV #include "GainputDevProtocol.h" namespace gainput { void DevInit(InputManager* inputManager); void DevShutdown(const InputManager* inputManager); void DevUpdate(InputDeltaState* delta); void DevNewMap(InputMap* inputMap); void DevNewUserButton(InputMap*...
/* * Copyright (c) 1995-2019, NVIDIA CORPORATION. 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 ...
////////////////////////////////////////////////////////////////////// // This file was auto-generated by codelite's wxCrafter Plugin // wxCrafter project file: wxcrafter.wxcp // Do not modify this file by hand! ////////////////////////////////////////////////////////////////////// #ifndef THERMALVIEW_THERMALVIEW_WXCR...
// // Vokoder.h // Vokoder // // Created by Carl Hill-Popper on 1/17/16. // Copyright © 2016 Vokal. // #ifndef Vokoder_h #define Vokoder_h //Xcode assumes a header file named the same as the module exists and includes it //in the autogenerated swift interface to Obj-C classes. //To allow for mixing Obj-C and Swif...
#ifndef CAMERA_H #define CAMERA_H #include <glad/glad.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <vector> // Defines several possible options for camera movement. Used as abstraction to stay away from window-system specific input methods enum Camera_Movement { FORWARD, BACKWAR...
#ifndef _WATERMOVE_H #define _WATERMOVE_H float4 watermove (float4 P) { float3 wave1 = float3(0.11f,0.13f,0.07f)*W_POSITION_SHIFT_SPEED ; float dh = sin (timers.x+dot((float3)P,wave1)) ; P.y += dh * W_POSITION_SHIFT_HEIGHT ; return P ; } float2 watermove_tc (float2 base, float2 P, float amp) { float2 w...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, June 7, 2020 at 11:17:23 AM Mountain Standard Time * Operating System: Version 13.4.5 (Build 17L562) * Image Source: /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices * classdump-dyld is licensed under GPLv3, Copyright ...
#ifndef TESTQUAZIPFILEINFO_H #define TESTQUAZIPFILEINFO_H #include <QObject> class TestQuaZipFileInfo : public QObject { Q_OBJECT public: explicit TestQuaZipFileInfo(QObject *parent = 0); private slots: void getNTFSTime(); void getExtTime_data(); void getExtTime(); void getExtTime_issue43(); ...
/* * Copyright (c) 2004, Bull SA. All rights reserved. * Created by: Laurent.Vivier@bull.net * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. */ /* * assertion: * * If prioritized I/O is supported asynchronou...
// Copyright (c) 2012 The Chromium OS 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 DEBUGD_SRC_PING_TOOL_H_ #define DEBUGD_SRC_PING_TOOL_H_ #include <string> #include <base/macros.h> #include <brillo/errors/error.h> #incl...
#import "GPUImageOutput.h" #import "GPUImageFilterGroup.h" #import "ALYCEVideoStyle.h" #import "ALYCEColorFilter.h" #import "ALYCESmoothingEffectType.h" #import "ALYCERendererState.h" @class ALYCEClientPreviewRenderer; @interface GPUImageALYCEFilter : GPUImageOutput <GPUImageInput> @property (nonatomic) NSUInteger u...
#include <glib.h> #include <mono/mini/mini.h> #include <mono/mini/mini-runtime.h> #include <mono/metadata/mono-debug.h> #include <mono/metadata/assembly.h> #include <mono/metadata/assembly-internals.h> #include <mono/metadata/metadata.h> #include <mono/metadata/metadata-internals.h> #include <mono/metadata/mono-endian....
/********************************************************************************* * Copyright (C) 1999,2006 by Ian C. Starnes All Rights Reserved. ********************************************************************************* * This library is free software; you can redistribute it and/or ...
//////////////////////////////////////////////////////////////////////////////// /// DISCLAIMER /// /// Copyright 2014-2021 ArangoDB GmbH, Cologne, Germany /// Copyright 2004-2014 triAGENS GmbH, Cologne, Germany /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except...
/* * File : rtc.h * This file is part of RT-Thread RTOS * COPYRIGHT (C) 2009, RT-Thread Development Team * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rt-thread.org/license/LICENSE * * Change Logs: * Date Author ...
/* * Amazon FreeRTOS PKCS #11 V1.0.1 * Copyright (C) 2018 Amazon.com, Inc. or its affiliates. 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 Software without restriction...
/* * CocosBuilder: http://www.CocosBuilder.com * * Copyright (c) 2012 Zynga Inc. * * 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...
/** -------------------------------------------------------------------------------------------------------------------- * <copyright company="Aspose" file="download_file_request.h"> * Copyright (c) 2022 Aspose.Cells for Cloud * </copyright> * <summary> * Permission is hereby granted, free of charge, to any person...
/* * Copyright (c) 2018 ISP RAS (http://www.ispras.ru) * Ivannikov Institute for System Programming of the Russian Academy of Sciences * * 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 *...
// // NSMutableDictionary+ECKit.h // ECKit // // Created by Chris Streeter on 3/11/14. // Copyright (c) 2014 Educreations, Inc. All rights reserved. // @import Foundation; @interface NSMutableDictionary (ECKit) - (void)eckit_safeSetObject:(id)obj forKey:(id)key; @end
/* USER CODE BEGIN Header */ /** ****************************************************************************** * @file stm32l4xx_it.c * @brief Interrupt Service Routines. ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) ...
/* * This header is generated by classdump-dyld 1.0 * on Saturday, August 24, 2019 at 9:44:29 PM Mountain Standard Time * Operating System: Version 12.4 (Build 16M568) * Image Source: /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias Lim...
// //Copyright (C) 2002-2005 3Dlabs Inc. Ltd. //Copyright (C) 2012-2013 LunarG, 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: // // Redistributions of source code must retain the ...
/* -*- linux-c -*- GTCO digitizer USB driver Use the err() and dbg() macros from usb.h for system logging TO CHECK: Is pressure done right on report 5? Copyright (C) 2006 GTCO CalComp This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as p...
// // NDIntroPageView.h // NDParallaxIntroView // // Created by Simon Wicha on 17/04/2016. // Copyright © 2016 Simon Wicha. All rights reserved. // #import <UIKit/UIKit.h> static NSString *const kNDIntroPageTitle = @"title"; static NSString *const kNDIntroPageDescription = @"description"; static NSString *const k...
/* * GENANN - Minimal C Artificial Neural Network * * Copyright (c) 2015-2018 Lewis Van Winkle * * http://CodePlea.com * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Per...
/* ** Id: //Department/DaVinci/BRANCHES/MT6620_WIFI_DRIVER_V2_3/include/precomp.h#2 */ /*! \file precomp.h \brief Collection of most compiler flags are described here. In this file we collect all compiler flags and detail the driver behavior if enable/disable such switch or adjust numeric parameters. *...
/* * This header is generated by classdump-dyld 1.0 * on Sunday, September 27, 2020 at 11:43:11 AM Mountain Standard Time * Operating System: Version 14.0 (Build 18A373) * Image Source: /System/Library/PrivateFrameworks/HealthUI.framework/HealthUI * classdump-dyld is licensed under GPLv3, Copyright © 2013-2016 by Elias...
/* Copyright 2005-2015 Intel Corporation. All Rights Reserved. This file is part of Threading Building Blocks. Threading Building Blocks is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Founda...
/**********************************************************************/ /* ____ ____ */ /* / /\/ / */ /* /___/ \ / */ /* \ \ \/ ...
#include <stdio.h> #include <string.h> void insertionSort(int array[],int length); int main(){ int array[]={3,2,8,6,9,4,1,7,5,0}; int i; insertionSort(array,10); for(i=0;i<10;i++){ printf("%d\n",array[i]); } return 0; } void insertionSort(int array[],int length){ int i,j,temp; for(i=0;i<length;i++){ /*f...
/* * rtwdemo_slcustcode.h * * Code generation for model "rtwdemo_slcustcode". * * Model version : 1.243 * Simulink Coder version : 8.12 (R2017a) 16-Feb-2017 * C source code generated on : Mon Jul 10 18:52:43 2017 * * Target selection: grt.tlc * Note: GRT includes extra infrastructure and instrume...
/***************************************************************************//** * # License * * The licensor of this software is Silicon Laboratories Inc. Your use of this * software is governed by the terms of Silicon Labs Master Software License * Agreement (MSLA) available at * www.silabs.com/about-us/legal/...
// // PDFAnnotation_SKExtensions.h // Skim // // Created by Christiaan Hofman on 4/1/08. /* This software is Copyright (c) 2008-2019 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 ...
/* * This header is generated by classdump-dyld 1.5 * on Friday, April 30, 2021 at 11:35:53 AM Mountain Standard Time * Operating System: Version 13.5.1 (Build 17F80) * Image Source: /System/Library/Frameworks/AVFoundation.frame...
/******************************************************************************** Copyright (C) 2016 Marvell International Ltd. SPDX-License-Identifier: BSD-2-Clause-Patent *******************************************************************************/ #ifndef __MVPP2_LIB_HW__ #define __MVPP2_LIB_HW__ #ifndef BIT ...
/** * @file * @brief * * @author Alexander Kalmuk * @date 25.06.2020 */ #include <config/custom_config_qspi.h> #include <hw_cpm.h> #include <hw_usb.h> #include <assert.h> #include <string.h> #include <util/log.h> #include <util/array.h> #include <util/math.h> #include <kernel/irq.h> #include <embox/unit.h>...
/************************************************************************************/ /* Copyright (c) 2010-2011 The Department of Arts and Culture, */ /* The Government of the Republic of South Africa. */ /* ...
/* Generated by Cython 0.23.4 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [ "yt/utilities/lib/platform_dep.h" ], "include_dirs": [ "yt/utilities/lib/" ], "libraries": [ "m" ] } } END: Cython Metadata */ #define ...
/**CFile**************************************************************** FileName [sclLiberty.c] SystemName [ABC: Logic synthesis and verification system.] PackageName [Standard-cell library representation.] Synopsis [Liberty parser.] Author [Alan Mishchenko, Niklas Een] Affiliation [UC ...
/* * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed...
//===--- DarwinSDKInfo.h - SDK Information parser for darwin ----*- 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 // //===---------------------------...
#ifndef __CURL_CURLVER_H #define __CURL_CURLVER_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | * / __| | | | |_) | | * | (__| |_| ...
#ifdef __OBJC__ #import <UIKit/UIKit.h> #else #ifndef FOUNDATION_EXPORT #if defined(__cplusplus) #define FOUNDATION_EXPORT extern "C" #else #define FOUNDATION_EXPORT extern #endif #endif #endif FOUNDATION_EXPORT double Pods_DynamicTypeShowcaseUITestsVersionNumber; FOUNDATION_EXPORT const unsigned char Pods_DynamicTyp...
//------------------------------------------------------------------------------ // GB_Asaxpy3B_noM: hard-coded saxpy3 method for a semiring //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-...
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved. */ #ifndef __LOPS_DOT_H__ #define __LOPS_DOT_H__ #include <linux/list.h> #include "incore.h" extern const struct gfs2_log_operations *...
/* * This header is generated by classdump-dyld 1.5 * on Wednesday, April 14, 2021 at 2:33:10 PM Mountain Standard Time * Operating System: Version 14.4 (Build 18K802) * Image Source: /System/Library/PrivateFrameworks/ActionKit....
/* * Copyright (c) 2009, Willow Garage, 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: * * * Redistributions of source code must retain the above copyright * notice, this l...
/* * Arena.h * * This source file is part of the FoundationDB open source project * * Copyright 2013-2018 Apple Inc. and the FoundationDB project 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 cop...
// // WithoutNavTestViewController.h // JLHideNavigationBarDemo // // Created by 王俊岭 on 2020/3/20. // Copyright © 2020 王俊岭. All rights reserved. // 无导航 #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @interface WithoutNavTestViewController : UIViewController @end NS_ASSUME_NONNULL_END
/* * Copyright 2021 Google LLC * * 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 ...
/*********************************************************************** Copyright (c) 2006-2012, Skype Limited. All rights reserved. Redistribution and use in source and binary forms, with or without modification, (subject to the limitations in the disclaimer below) are permitted provided that the following conditi...
/************************************************************************************ * arch/arm/src/s32k1xx/hardware/s32k1xx_pcc.h * * Copyright (C) 2019 Gregory Nutt. All rights reserved. * Author: Gregory Nutt <gnutt@nuttx.org> * * Redistribution and use in source and binary forms, with or without * modif...
// // (C) 2005 Vojtech Janota // // 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 of the License, or any later version. // The library is distributed in the hope...
/* * @copyright (c) 2008, Hedspi, Hanoi University of Technology * @author Huu-Duc Nguyen * @version 1.0 */ #include <stdio.h> #include <stdlib.h> #include "symtab.h" #include "debug.h" extern SymTab* symtab; /******************************************************************/ int main() { Object* obj; in...
#ifdef HAVE_CONFIG_H #include "../../../../ext_config.h" #endif #include <php.h> #include "../../../../php_ext.h" #include "../../../../ext.h" #include <Zend/zend_operators.h> #include <Zend/zend_exceptions.h> #include <Zend/zend_interfaces.h> #include "kernel/main.h" #include "kernel/object.h" #include "kernel/fcal...
/* Copyright (C) 2014, Jeffrey Lim. 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 conditions and the following...
#ifndef _TERMIOS_H #define _TERMIOS_H #define TTY_BUF_SIZE 1024 /* 0x54 is just a magic number to make these relatively uniqe ('T') */ #define TCGETS 0x5401 #define TCSETS 0x5402 #define TCSETSW 0x5403 #define TCSETSF 0x5404 #define TCGETA 0x5405 #define TCSETA 0x5406 #define TCSETAW 0x5407 #define TCSETAF 0...
/* * Generated by class-dump 3.4 (64 bit). * * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2012 by Steve Nygard. */ #import "NSObject.h" #import "DVTXMLUnarchiving.h" @class NSString; @interface IDEDeviceAppDataReference : NSObject <DVTXMLUnarchiving> { NSString *_resolvedPath; NSStri...