text stringlengths 4 6.14k |
|---|
//
// PKHUDWideBaseView.h
// PKHUD
//
// Created by djzhang on 8/10/15.
// Copyright (c) 2015 djzhang. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
/// Provides a wide base view, which you can subclass and add additional views to.
@interface PKHUDWideBaseView : UIView
@end
|
/**
* @license Apache-2.0
*
* Copyright (c) 2020 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
/*
* Copyright [2016] [Subhabrata Ghosh]
*
* 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 applicabl... |
// Copyright 2017 Google Inc.
//
// 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 ... |
#ifndef ReachMap_VISUAL_H
#define ReachMap_VISUAL_H
#include <map_creator/WorkSpace.h>
namespace Ogre
{
class Vector3;
class Quaternion;
}
namespace rviz
{
class Arrow;
class Shape;
}
namespace workspace_visualization
{
class ReachMapDisplay;
class ReachMapVisual
{
public:
ReachMapVisual(Ogre::SceneManager* scene... |
#ifndef IU_ATLHEADERS_H
#define IU_ATLHEADERS_H
#pragma once
#ifndef _UNICODE
#define UNICODE
#define _UNICODE
#endif
//#define _WTL_USE_CSTRING
#ifndef _WTL_NO_CSTRING
#define _WTL_NO_CSTRING
#endif
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#ifndef NOMINMAX
#define NOMINMAX
#end... |
// Copyright (C) 2019 - 2020 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
// Copyright (C) 2017 - 2018 by Pedro Mendes, Virginia Tech Intellectual
// Properties, Inc., University of Heidelbe... |
/**
* @file
* @brief
*
* @date 26.11.13
* @author Ilia Vaprol
*/
#ifndef ARM_HAL_MMU_H_
#define ARM_HAL_MMU_H_
/**
* First-level descriptor format (VMSAv6, subpages disabled)
*/
#define L1D_TYPE_SD 0x00002 /* section descriptor */
#define L1D_B 0x00004 /* bufferable */
#define L1D_C 0x00008 /* cac... |
//
// Copyright (c) 2009, Markus Rickert
// 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 list of condit... |
/**
* @file
*
* @date 25.11.2011
* @author Alexander Kalmuk
*/
#ifndef NET_L3_IPV4_IP_FRAGMENT_H
#define NET_L3_IPV4_IP_FRAGMENT_H
#include <stdint.h>
#include <net/skbuff.h>
/* 1 second - Minimum Segment Lifetime. Just some suitable constant,
* not from any document */
#define MSL 1
struct sk_buf... |
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "CoreUObject.h"
#include "Engine.h"
#include "KismetCompiler.h"
#include "SourceCodeNavigation.h"
#include "DefaultValueHelper.h"
// You should place include statements to your module's private header files here. You only need to
// add includes f... |
// Copyright (c) 2020 The Orbit 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 ORBIT_GL_TIME_GRAPH_LAYOUT_H_
#define ORBIT_GL_TIME_GRAPH_LAYOUT_H_
#include <math.h>
#include <stdint.h>
#include <algorithm>
#include "Orbit... |
/*-
* Copyright (c) 2012 Oleksandr Tymoshenko <gonzo@bluezbox.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 of source code must retain the above copyright
* ... |
/*
* Copyright (c) 2014 Ambroz Bizjak
* 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 conditio... |
#ifndef AT_NOISE_PERLIN_H
#define AT_NOISE_PERLIN_H
#include "pstdint.h"
struct at_perlin {
unsigned char _state[256];
};
#ifdef __cplusplus
extern "C" {
#endif
void at_perlin_seed(struct at_perlin *per, uint32_t (*f)(void *), void *v);
double at_perlin_get_2d(struct at_perlin *per, double x, double y);
double at... |
/**
* @file /Tzar/src/libc/stdio/setbuf.c
* @author zanethorn
* @version 1.0
* @date Feb 22, 2018
*
* @section LICENSE
*
* BSD 2-clause License
*
* Copyright (c) 2018 Zane Thorn
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following ... |
/* @LICENSE(MUSLC_MIT) */
#include "stdio_impl.h"
/* This function makes no attempt to protect the user from his/her own
* stupidity. If called any time but when then ISO C standard specifically
* allows it, all hell can and will break loose, especially with threads!
*
* This implementation ignores all arguments ... |
/*
==== Author:
Relja Arandjelovic (relja@robots.ox.ac.uk)
Visual Geometry Group,
Department of Engineering Science
University of Oxford
==== Copyright:
The library belongs to Relja Arandjelovic and the University of Oxford.
No usage or redistribution is allowed without explicit permission.
*/
#ifndef _MEDIAN_COMPU... |
#pragma once
#include <stdexcept>
#include <sqlite3.h>
// An exception in sqlite.
struct SqliteError : std::runtime_error {
SqliteError(int result)
: std::runtime_error(sqlite3_errstr(result)) {
}
SqliteError(int result, const std::string &context)
: std::runtime_error(
... |
/*
* Copyright (C) 2010. sparkling.liang@hotmail.com, barbecue.jb@gmail.com.
* All rights reserved.
*/
#ifndef __TIME_UTIL_H_
#define __TIME_UTIL_H_
#include "HP_Config.h"
#ifdef WIN32
#define WIN32_LEAN_AND_MEAN
#include <winsock2.h>
#include <sys/timeb.h>
#else
#include <sys/time.h>
#endif
namespace hpsl
{
... |
#ifndef CVRP_INTRA_CROSS_EXCHANGE_H
#define CVRP_INTRA_CROSS_EXCHANGE_H
/*
This file is part of VROOM.
Copyright (c) 2015-2021, Julien Coupey.
All rights reserved (see LICENSE).
*/
#include "algorithms/local_search/operator.h"
namespace vroom {
namespace cvrp {
class IntraCrossExchange : public ls::Operator {
pr... |
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
//#include <stdio.h>
//#include <tchar.h>
// TODO: reference additional headers your program requires here
|
#pragma once
#include <gtkmm/drawingarea.h>
#include "litehtml/containers/linux/container_linux.h"
#include "http_loader.h"
class browser_window;
class html_widget : public Gtk::DrawingArea,
public container_linux
{
litehtml::tstring m_url;
litehtml::tstring m_base_url;
litehtml::document::ptr m_html;... |
#import "FDNullOrEmpty.h"
#pragma mark Enumerations
typedef NS_ENUM(NSInteger, FDKeychainAccessibility)
{
FDKeychainAccessibleWhenUnlocked,
FDKeychainAccessibleAfterFirstUnlock,
};
#pragma mark - Class Interface
@interface FDKeychain : NSObject
#pragma mark - Static Methods
+ (NSData *)rawDataForKey: (NSStri... |
/****************************************************************************
**This file is part of the Motorcar 3D windowing framework
**
**
**Copyright (C) 2014 Forrest Reiling
**
**
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with... |
/*
Copyright (c) 2015-2016 Kamil Rytarowski
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 an... |
/*
* Generated by class-dump 3.3.4 (64 bit).
*
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2011 by Steve Nygard.
*/
#import "NSObject.h"
@class NSMutableArray, NSString, NSTask;
@interface XCSSHAgent : NSObject
{
NSString *sshAgentSocket;
NSTask *sshAgentTask;
NSMutableArray *val... |
#pragma once
#include "TArc/Controls/ControlProxy.h"
#include <QWidget>
namespace DAVA
{
class EmptyWidget : public ControlProxyImpl<QWidget>
{
using TBase = ControlProxyImpl<QWidget>;
public:
enum class Fields : uint32
{
FieldCount
};
DECLARE_CONTROL_PARAMS(Fields);
EmptyWidget(con... |
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE134_Uncontrolled_Format_String__wchar_t_file_snprintf_22b.c
Label Definition File: CWE134_Uncontrolled_Format_String.label.xml
Template File: sources-sinks-22b.tmpl.c
*/
/*
* @description
* CWE: 134 Uncontrolled Format String
* BadSource: file Read input from ... |
/*
Copyright (c) 1999 - 2010, Vodafone Group Services 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:
* Redistributions of source code must retain the above copyright notice, this list of condit... |
/*
* 2007 2013 Copyright Northwestern University
*
* Distributed under the OSI-approved BSD 3-Clause License.
* See http://ncip.github.com/annotation-and-image-markup/LICENSE.txt for details.
*/
// stdafx.h : include file for standard system include files,
// or project specific include files that are u... |
// 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_AUTOFILL_WALLET_WALLET_TEST_UTIL_H_
#define CHROME_BROWSER_AUTOFILL_WALLET_WALLET_TEST_UTIL_H_
#include "base/memory/scoped_pt... |
#pragma once
#include <AglVector3.h>
#include <AglVector4.h>
#include <AglMatrix.h>
#include <AglParticleSystemHeader.h>
#include "RendererSceneInfo.h"
// =======================================================================================
// ParticleCBuffer
// ==================... |
/*=========================================================================
Program: Visualization Toolkit
Module: vtkOpenGLImageAlgorithmHelper.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
Th... |
/**
* @file
*
* @brief
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#include <kdbplugin.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#define BACKENDNAME "timeofday"
#define BACKENDVERSION "0.0.1"
struct _TimeofdayInfo
{
struct timeval start;
struct timeval... |
/*
Erica Sadun, http://ericasadun.com
https://github.com/erica/iOS-Drawing/tree/master/C08/Quartz%20Book%20Pack/Bezier
*/
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#define ABI38_0_0RNSVGNULLPOINT CGRectNull.origin
@interface ABI38_0_0RNSVGBezierElement : NSObject
// Element storage
@property (no... |
/****************************************************************************************
Copyright (C) 2015 Autodesk, Inc.
All rights reserved.
Use of this software is subject to the terms of the Autodesk license agreement
provided at the time of installation or download, or which otherwise accompanies... |
/*------------------------------------------------------------------------------
*
* Copyright (c) 2011, EURid. All rights reserved.
* The YADIFA TM software product is provided under the BSD 3-clause license:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provide... |
#ifndef GTRN_TRACKER_H
#define GTRN_TRACKER_H
#include <opencv/cv.h>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include "mtf/ThirdParty/GOTURN/helper/bounding_box.h"
#include "mtf/ThirdParty/GOTURN/train/example_generator.h"
#include "mtf/ThirdParty/GOTURN/network/regressor.h"
class Got... |
/*============================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center (DKFZ)
All rights reserved.
Use of this source code is governed by a 3-clause BSD license that can be
found in the LICENSE file.
=================... |
#ifndef BALL_H
#define BALL_H
#include "cvec.h"
#include <iostream>
class Ball
{
Cvec3 accel; //accel
Cvec3 pos; //current position
Cvec3 prevPos; //old position
Cvec3 normal; // normal
bool canMove;
public:
Ball() {}
Ball(Cvec3 pos) : accel(Cvec3()), pos(pos), prevPos(pos), normal(Cvec3()... |
#ifndef SPECIES_H
#define SPECIES_H
#include <string>
#include <cmath>
#include "poly.h"
#include "ffm_settings.h"
/*!\brief The Species class holds and manipulates data representing individual plant species.
*/
class Species{
public:
/*!\brief Categorises leaf type*/
enum LeafFormType {ROUND_LEAF, FLAT_LEAF};... |
// Copyright (c) 2012 The Chromium Embedded Framework 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 CEF_LIBCEF_COMMON_COMMAND_LINE_IMPL_H_
#define CEF_LIBCEF_COMMON_COMMAND_LINE_IMPL_H_
#pragma once
#include "include/cef_c... |
#ifndef MANIFOLD_MCP_CACHE_DEBUG_H
#define MANIFOLD_MCP_CACHE_DEBUG_H
#ifndef MCP_DBG_FILTER
#define MCP_DBG_FILTER true
#endif
#ifdef DBG_MCP_CACHE_L1_CACHE
#define DBG_L1_CACHE(ostr, s) \
if (MCP_DBG_FILTER) { \
ostr << s; \
}
#define DBG_L1_CACHE_ID(ostr, s) \
if (MCP_DBG_FILTER) { \
os... |
/* Copyright (c) 2011 The WebM 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 con... |
/* $OpenBSD: x_sig.c,v 1.7 2014/06/12 15:49:27 deraadt Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
* This package is an SSL implementation written
* by Eric Young (eay@cryptsoft.com).
* The implementation was written so as to conform with Netscapes SSL.
*
* This li... |
#ifndef MVMAIN_H
#define MVMAIN_H
#include "ui_SVMainUI.h"
#include "NetStateList.h"
#include <QFileSystemWatcher>
class SVMain : public QMainWindow, private Ui::SVMainUI {
Q_OBJECT
public:
SVMain(QWidget *parent = 0);
void set_scroll_pos_range(int xc, int yc, int xm, int ym);
void set_steps(int x1, int y1,... |
// Copyright 2016-present 650 Industries. All rights reserved.
#import <EXGL_CPP/UEXGL.h>
#import <ABI44_0_0EXGL/ABI44_0_0EXGLContext.h>
#import <ABI44_0_0ExpoModulesCore/ABI44_0_0EXModuleRegistry.h>
NS_ASSUME_NONNULL_BEGIN
@interface ABI44_0_0EXGLView : UIView <ABI44_0_0EXGLContextDelegate>
- (instancetype)initWit... |
////////////////////////////////////////////////////////////////////////////////////
///
/// \file globalwaypointlistdriver.h
/// \brief This file contains the implementation of the Global Waypoint List
/// Driver service.
///
/// <br>Author(s): Daniel Barber
/// <br>Created: 23 April 2010
/// <br>... |
/* BFD support for the FRV processor.
Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of BFD, the Binary File Descriptor library.
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 F... |
// 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 CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATION_REGISTRY_H_
#define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_OPERATION_REGISTRY_H_
#pragma once
#inc... |
/*
LUFA Library
Copyright (C) Dean Camera, 2012.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
#ifndef _NPY_PRIVATE__UFUNC_TYPE_RESOLUTION_H_
#define _NPY_PRIVATE__UFUNC_TYPE_RESOLUTION_H_
NPY_NO_EXPORT int
PyUFunc_SimpleBinaryComparisonTypeResolver(PyUFuncObject *ufunc,
NPY_CASTING casting,
PyArrayObject **operands,
... |
/*
* Copyright (c) 2016, SRCH2
* 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 list of conditions ... |
#pragma once
#include "gloox/gloox.h"
#include "gloox/client.h"
#include "gloox/message.h"
#include "gloox/rostermanager.h"
#include "gloox/messagehandler.h"
#include "gloox/messagesession.h"
#include "gloox/rosterlistener.h"
#include "gloox/connectionlistener.h"
#include "gloox/presencehandler.h"
#include "gloox/mess... |
/*
* Copyright (c) 2014 The WebM 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 contributin... |
/*
* Copyright (c) 2017, The OpenThread Authors.
* 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 ... |
#ifndef __TB_AADL_UART_Driver_types__H
#define __TB_AADL_UART_Driver_types__H
#include "tb_smaccmcopter_types.h"
/**************************************************************************
Copyright (c) 2013-2016 Rockwell Collins and the University of
Minnesota. Developed with the sponsorship of the Defense Advan... |
/*
* logsumexp2_emxutil.c
*
* Code generation for function 'logsumexp2_emxutil'
*
* C source code generated on: Tue Jan 14 10:28:31 2014
*
*/
/* Include files */
#include "rt_nonfinite.h"
#include "logsumexp2.h"
#include "logsumexp2_emxutil.h"
/* Function Definitions */
void emxEnsureCapacity(const emlrtStack ... |
// Copyright (c) 2009 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 VIEWS_CONTROLS_MENU_MENU_HOST_ROOT_VIEW_H_
#define VIEWS_CONTROLS_MENU_MENU_HOST_ROOT_VIEW_H_
#include "views/widget/root_view.h"
namespace ... |
/*-
* Copyright (c) 2005-2006 The FreeBSD Project
* All rights reserved.
*
* Author: Victor Cruceru <soc-victor@freebsd.org>
*
* Redistribution of this software and documentation and use in source and
* binary forms, with or without modification, are permitted provided that
* the following conditions are met:
... |
/*
* 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 <ABI43_0_0React/ABI43_0_0renderer/components/root/RootShadowNode.h>
#include <ABI43_0_0React/ABI43_0_0render... |
/*
+-----------------------------------------------------------+
| Copyright (c) 2017 Collet Valentin |
+-----------------------------------------------------------+
| This source file is subject to version the BDS license, |
| that is bundled with this package in the file LICENSE ... |
//
// ILMPushProvider.h
// InLocoMedia-iOS-SDK-Engage
//
// Created by Gabriel Falcone on 1/20/18.
// Copyright © 2018 InLocoMedia. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
This class holds the properties to request a device register.
*/
@interface ILMPushProvider :... |
#pragma once
#include <Arduino.h>
#include <Wire.h>
#include "lightness.h"
/* Section 7.3: Register definitions */
#define PCA9685_BASE_ADDRESS 0x40
#define PCA9685_MODE1 0x00
#define PCA9685_MODE2 0x01
#define PCA9685_ALLCALLADR 0x05
#define PCA9685_PRESCALE 0xFE
#define PCA9685_LED0 0x06
class PCA9685_RGB {
publ... |
// 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 TOOLS_GN_IMPORT_MANAGER_H_
#define TOOLS_GN_IMPORT_MANAGER_H_
#include <map>
#include <memory>
#include <mutex>
#include <string>
#include <u... |
// RXObjectType.m
// Created by Rob Rix on 2010-04-19
// Copyright 2010 Monochrome Industries
#include "RXObjectType.h"
__strong const char *RXObjectTypeGetName(RXObjectTypeRef self) {
return self->name;
} |
/* +------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| https://www.mrpt.org/ |
| |
| Cop... |
//
// test_AMService.h
// SDM_MD_Tests
//
// Created by Sam Marshall on 3/29/14.
// Copyright (c) 2014 Sam Marshall. All rights reserved.
//
#ifndef SDM_MD_Tests_test_AMService_h
#define SDM_MD_Tests_test_AMService_h
#include "test_Type.h"
void Test_Compatibility_AMService(struct am_device *apple, SDMMD_AMDevice... |
/*
Copyright (c) 2008-2013, Northwestern University
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 list of conditions a... |
/*
* Copyright (c) 2013-2015 Chun-Ying Huang
*
* This file is part of Smart Beholder (SB).
*
* SB is free software; you can redistribute it and/or modify it
* under the terms of the 3-clause BSD License as published by the
* Free Software Foundation: http://directory.fsf.org/wiki/License:BSD_3Clause
*
* SB is ... |
/* $OpenBSD: phantomas.c,v 1.1 2002/12/18 23:52:45 mickey Exp $ */
/*
* Copyright (c) 2002 Michael Shalayeff
* 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 sourc... |
/*
* Copyright (C) 2009 Google 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 list of conditio... |
//
// PatternFormatterTest.h
//
// $Id$
//
// Definition of the PatternFormatterTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompa... |
// 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 ASH_COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_LIFE_CYCLE_IMPL_H_
#define ASH_COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_LIFE_CYCLE_IMPL_H_
#include <m... |
// 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.
// The pure virtual class for send side loss detection algorithm.
#ifndef QUICHE_QUIC_CORE_CONGESTION_CONTROL_LOSS_DETECTION_INTERFACE_H_
#define QUICHE_... |
/*
* The Amsterdam Compiler Kit
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#ifndef LANG_CEM_CEMCOM_ANSI_INIT_H
#define LANG_CEM_CEMCOM_ANSI_INIT_H
/* lang/cem/cemcom.ansi/init.c */
void init_pp();
#endif /* LANG_CEM_CEMCOM_ANSI_INIT_H */
|
// 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_SIGNIN_CORE_BROWSER_SIGNIN_STATUS_METRICS_PROVIDER_BASE_H_
#define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_STATUS_METRICS_PROVIDER_BASE_H... |
/*
* Copyright 2014 The guava 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 __GUAVA_MODULE_H__
#define __GUAVA_MODULE_H__
#include "guava.h"
#include "guava_router/guava_router.h"
#include "guava_handler.h"
#include "... |
// Copyright 2018 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_OZONE_PLATFORM_WAYLAND_HOST_ZWP_TEXT_INPUT_WRAPPER_V1_H_
#define UI_OZONE_PLATFORM_WAYLAND_HOST_ZWP_TEXT_INPUT_WRAPPER_V1_H_
#include <text-in... |
/***********************************************************************************************************************
**
** Copyright (c) 2011, 2014 ETH Zurich
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
** following c... |
#import <Foundation/Foundation.h>
@interface HYDProperty : NSObject
@property (strong, nonatomic) NSString *name;
@property (strong, nonatomic) NSDictionary *attributes;
- (id)initWithName:(NSString *)name attributes:(NSDictionary *)attributes;
- (NSString *)encodingType;
- (NSString *)ivarName;
- (Class)classType... |
/*
Generates contents of opcode switch from ip_spec.t
Call is:
mkswitch prefix ip_spec.t cases [ functions ]
Note:
The u flag has been implemented by just copying and adjusting the
code for 2, which is almost identical to that for 4. When this has
stabilized, combine.
*/
/* $Id$ */
#include <stdio.h>
exter... |
/*
Copyright (c) 2008-2013, Northwestern University
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 list of conditions a... |
// Simple program to send and record ping packets from neighbors over time.
// No complicated MAC or timing is used. Rahter, this is meant to discover
// asymmetric paths present in the environment.
//
// Temporary results are stored into flash. Writting to flash is known to be
// expensive, but with fresh batteries ... |
/*
* Copyright (c) 2008,2009, Yale Laboratory of Networked Systems
* 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... |
// Copyright 2010-2016, Google 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 list of condit... |
/* ========================================================================= */
/* ------------------------------------------------------------------------- */
/*!
\file template.c
\date March 2014
\author Nicu Tofan
\brief implementation of a template
*/
/* --------------------------------------... |
/*******************************************************************************
* Copyright (C) ST-Ericsson SA 2011
* License terms: 3-clause BSD license
******************************************************************************/
#ifndef INCLUSION_GUARD_R_Z_TRANSPORT_LAYER_H
#define INCLUSION_GUARD_R_Z_TRANSPOR... |
#import "GPUImageTwoInputFilter.h"
@interface GPUImageLookupFilter : GPUImageTwoInputFilter
// How To Use:
// 1) Use your favourite photo editing application to apply a filter to lookup.png
// For this to work properly each pixel color must not depend on other pixels (e.g. blur will not work).
// If you need more com... |
#ifndef TH_GENERIC_FILE
#define TH_GENERIC_FILE "generic/THLapack.c"
#else
void THLapack_(gesv)(int n, int nrhs, real *a, int lda, int *ipiv, real *b, int ldb, int* info)
{
#ifdef __LAPACK__
#if defined(TH_REAL_IS_DOUBLE)
extern void dgesv_(int *n, int *nrhs, double *a, int *lda, int *ipiv, double *b, int *ldb, int ... |
// Copyright 2018 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_WEB_APPLICATIONS_PENDING_APP_MANAGER_IMPL_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_PENDING_APP_MANAGER_IMPL_H_
#include <memory>... |
/* ECE-C433 Project 2
* Part 1b
* Author: Sean Barag
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <pcap/pcap.h>
void main()
{
/* check for root uid :) */
if( getuid() != 0 )
{
fprintf(stderr, "... |
/*
* 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 <ABI44_0_0React/ABI44_0_0renderer/components/legacyviewmanagerinterop/LegacyViewManagerInteropShadowNode.h>
... |
/***********************************************************************************************************************
**
** Copyright (c) 2011, 2014 ETH Zurich
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
** follo... |
// Copyright 2019 The Cobalt 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 ap... |
// Copyright(C) 1999-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 permitted p... |
/*
* Copyright (C) 2003 Fujio Nobori (toh@fuji-climb.org)
* 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,... |
// 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 EXTENSIONS_BROWSER_API_BLUETOOTH_LOW_ENERGY_BLUETOOTH_LOW_ENERGY_CONNECTION_H_
#define EXTENSIONS_BROWSER_API_BLUETOOTH_LOW_ENERGY_BLUETOOTH_LOW_E... |
#include <pthread.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <assert.h>
#define THREAD_SIZE 8
void *job1(void *arg)
{
pthread_t pid = pthread_self();
sleep(1);
printf("job1: print %p\n", arg);
printf("job1: pthread_self: %lu\n", pid);
sleep(1);
r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.