text stringlengths 9 948k |
|---|
//
// UIColor+CCKLine.h
// CCKLine
//
// Created by 蔡一凡 on 2021/8/4.
//
#import <UIKit/UIKit.h>
@interface UIColor (CCKLine)
/// 所有图表的背景颜色
+ (UIColor *)backgroundColor;
/// 辅助背景色
+ (UIColor *)assistBackgroundColor;
/// 涨的颜色
+ (UIColor *)upColor;
/// 跌的颜色
+ (UIColor *)downColor;
/// 主文字颜色
+ (UIColor *)mainText... |
/***************************************************************************************************
* Copyright 2020 NVIDIA Corporation. All rights reserved.
**************************************************************************************************/
/// \file
/// \brief API component to interact with the clu... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 28, 2021 at 9:14:08 PM Mountain Standard Time
* Operating System: Version 14.5 (Build 18L204)
* Image Source: /System/Library/PrivateFrameworks/UIKitCore.... |
#pragma once
/*******************************************************************************
* Copyright 2019 FUJITSU LIMITED
*
* 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
*
* h... |
/* nbdkit
* Copyright (C) 2018-2019 Red Hat Inc.
*
* 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 and the f... |
#include <string>
using namespace std;
class Atoi {
private:
string beTrans;
public:
Atoi();
Atoi(string s);
void SetString(string s);
const string GetString();
int Length();
bool IsDigital();
int StringToInteger();
}; |
// Copyright (c) 2020 CS126SP20. All rights reserved.
#ifndef FINALPROJECT_APPS_MYAPP_H_
#define FINALPROJECT_APPS_MYAPP_H_
#include <cinder/app/App.h>
#include <cinder/audio/audio.h>
#include "../../../samples/_audio/BufferPlayer/include/Resources.h"
#include <../../../samples/_audio/common/AudioDrawUtils.h>
#includ... |
#include "util.h"
#include "sysfs.h"
static const char * const sysfs_known_mountpoints[] = {
"/sys",
0,
};
static int sysfs_found;
char sysfs_mountpoint[PATH_MAX + 1];
static int sysfs_valid_mountpoint(const char *sysfs)
{
struct statfs st_fs;
if (statfs(sysfs, &st_fs) < 0)
return -ENOENT;
else if (st_fs.f_t... |
#ifndef TASK_H
#define TASK_H
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
typedef struct task* Task;
typedef unsigned long TaskKey;
#include "linked_list.h"
struct task {
unsigned long ID;
char *description;
unsigned long duration;
struct task **dependencies;
unsigned long n_depe... |
#include "rosePublicConfig.h"
#ifdef ROSE_HAVE_DWARF_H
#include <dwarf.h>
#include <libdwarf.h>
#endif
// Main function to read dwarf.
// void build_dwarf_IR_nodes(Dwarf_Debug dbg, SgAsmInterpretation* asmInterpretation);
void readDwarf ( SgAsmGenericFile* asmFile ); |
/*
Fontname: -FreeType-FreeUniversal-Bold-R-Normal--68-680-72-72-P-335-ISO10646-1
Copyright: FreeUniveral (c) Stephen Wilson 2009 Original Font Sil-Sophia Copyright (c) SIL International, 1994-2008.
Glyphs: 18/243
BBX Build Mode: 0
*/
const uint8_t u8g2_font_fub49_tn[1135] U8G2_FONT_SECTION("u8g2_font_fub49... |
#include <stdbool.h>
#include <stdio.h>
int main() {
bool digit_seen[10] = {0};
int digit;
long n;
printf("Enter a number: ");
scanf("%ld", &n);
while (n > 0) {
digit = n % 10;
if (digit_seen[digit])
break;
digit_seen[digit] = true;
n /= 10;
}
if (n > 0)
printf("Repeated ... |
//
// AFOPLMainFolderManager.h
// AFOPlaylist
//
// Created by xueguang xian on 2018/1/6.
// Copyright © 2018年 AFO. All rights reserved.
//
#import <Foundation/Foundation.h>
#define AFO_PLAYLIST_THUMBNAILFOLDER @"MediaImages"
#define AFO_PLAYLIST_SCREENSHOTSVEDIOLIST @"Corresponding"
typedef NS_OPTIONS(... |
/* --------------------------------------------------------- */
/* --- File: cmaes_interface.h - Author: Nikolaus Hansen --- */
/* ---------------------- last modified: IV 2007 --- */
/* --------------------------------- by: Nikolaus Hansen --- */
/* --------------------------------------------------------- */
... |
/*++
Copyright (c) 2002 Microsoft Corporation
Module Name:
ulnamesp.c
Abstract:
This module implements the namespace reservation and registration
functions.
Author:
Anish Desai (anishd) 13-May-2002
Revision History:
--*/
#include "precomp.h"
#include "cgroupp.h"
#ifdef ALLOC_PRAGMA
#pragma ... |
/* Copyright (c) 2015-2020 ARM Limited
* 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/LICENSE-2.0
* Unless requi... |
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2018 NXP
* Author: Dong Aisheng <aisheng.dong@nxp.com>
*
* Implementation of the SCU IPC functions using MUs (client side).
*
*/
#include <linux/err.h>
#include <linux/firmware/imx/types.h>
#include <linux/firmware/imx/ipc.h>
#include <linux/firmware/imx/sci.h... |
/*
*
* Copyright (c) 2016-2019 Cisco Systems, 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... |
#include <errno.h>
#include "feature_collector.h"
#include "feature_extractor.h"
#include "mem.h"
#include "ssim.h"
#include "picture_copy.h"
typedef struct SsimState {
size_t float_stride;
float *ref;
float *dist;
} SsimState;
static int init(VmafFeatureExtractor *fex, enum VmafPixelFormat pix_fmt,
... |
/*Daala video codec
Copyright (c) 2006-2010 Daala project contributors. 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... |
/*
* Functions related to setting various queue properties from drivers
*/
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/bio.h>
#include <linux/blkdev.h>
#include "blk.h"
/*
* for max sense size
*/
#include <scsi/scsi_cmnd.h>
/**
* blk_end_sync_rq - executes a completion event on a request... |
/**
* \brief Component description for RXLP
*
* Copyright (c) 2019 Microchip Technology Inc. and its subsidiaries.
*
* Subject to your compliance with these terms, you may use Microchip software and any derivatives
* exclusively with Microchip products. It is your responsibility to comply with third party license... |
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* PowerPC64 LPAR Configuration Information Driver
*
* Dave Engebretsen engebret@us.ibm.com
* Copyright (c) 2003 Dave Engebretsen
* Will Schmidt willschm@us.ibm.com
* SPLPAR updates, Copyright (c) 2003 Will Schmidt IBM Corporation.
* seq_file updates, Copyr... |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/protobuf/util/internal/testdata/struct.proto
#ifndef PROTOBUF_google_2fprotobuf_2futil_2finternal_2ftestdata_2fstruct_2eproto__INCLUDED
#define PROTOBUF_google_2fprotobuf_2futil_2finternal_2ftestdata_2fstruct_2eproto__INCLUDED
#include <str... |
/*===================================================================
BlueBerry Platform
Copyright (c) German Cancer Research Center,
Division of Medical and Biological Informatics.
All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without
even the implied warranty of MERCHANTABILITY or FITNESS... |
//
// AppDelegate.h
// GMYConfettiView
//
// Created by 郭妙友 on 16/1/22.
// Copyright © 2016年 miaoyou.gmy. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end |
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* This program 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 Foundation;
*
* This program is distributed in the hope that it will be us... |
/* Generated by RuntimeBrowser
Image: /System/Library/Frameworks/AVFoundation.framework/AVFoundation
*/
@interface AVAudioSettingsValueConstrainer : NSObject {
NSMutableArray * _applicableOutputDataRatesForSampleRate;
NSMutableArray * _applicableOutputSampleRatesForDataRate;
struct OpaqueAudioConverter... |
/*
* Copyright 2020 The TensorFlow Runtime 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 applicab... |
/*
* ld9040 AMOLED LCD panel driver.
*
* Copyright (c) 2011 Samsung Electronics
* Author: Donghwa Lee <dh09.lee@samsung.com>
* Derived from drivers/video/backlight/s6e63m0.c
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as publis... |
// Copyright 2019 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 GPU_IPC_SHARED_IMAGE_INTERFACE_IN_PROCESS_H_
#define GPU_IPC_SHARED_IMAGE_INTERFACE_IN_PROCESS_H_
#include "base/memory/raw_ptr.h"
#include "buil... |
/*
* Log.h
*
* Created on: 2013-2-1
* Author: fasiondog
*/
#pragma once
#ifndef HIKUU_LOG_H_
#define HIKUU_LOG_H_
#include "config.h"
#include <string>
#include <spdlog/spdlog.h>
#include <spdlog/fmt/ostr.h>
#include <fmt/format.h>
#ifndef HKU_API
#define HKU_API
#endif
namespace hku {
/**
* @ingroup U... |
#ifndef _H_GL_PROJECTILE_H
#define _H_GL_PROJECTILE_H
#include "GLEmitter.h"
class GLProjectile : GLEmitter
{
public:
GLProjectile(double life);
virtual ~GLProjectile();
public:
virtual void Update(const long& lElapsedTicks);
void set_broadcast_period(int period);
public:
virtual bool IsDead() const;
public:
... |
#pragma once
#include "Environment/DirectX9/DirectX9RenderIncluder.h"
#include "DX9RenderTargetTexture.h"
namespace Mengine
{
//////////////////////////////////////////////////////////////////////////
class DX9RenderTargetOffscreen
: public DX9RenderTargetTexture
{
DECLARE_FACTORABLE( DX9... |
//===- OpenMPClause.h - Classes for OpenMP clauses --------------*- 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
//
//===---------------------------... |
/*************************************************************************/
/* canvas_item_editor_plugin.h */
/*************************************************************************/
/* This file is part of: */
/* ... |
/** @file
Set the socket options
Copyright (c) 2011-2012, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <Uefi.h>
#include <unistd.h>
#include <Library/DebugLib.h>
#include <Library/UefiLib.h>
#includ... |
//
// Generated by the J2ObjC translator. DO NOT EDIT!
// source: android/libcore/luni/src/main/java/java/net/URLConnection.java
//
#ifndef _JavaNetURLConnection_H_
#define _JavaNetURLConnection_H_
#include "J2ObjC_header.h"
#include "java/net/ContentHandler.h"
@class IOSObjectArray;
@class JavaIoInputStream;
@cl... |
/*
Copyright 2009, Volca
Licenced under Academic Free License version 3.0
Review OpenUsbLd README & LICENSE files for further details.
*/
#include "include/opl.h"
#include "include/ioman.h"
#include "include/gui.h"
#include "include/guigame.h"
#include "include/renderman.h"
#include "include/lang.h"
#include "in... |
/******************************************************************************
*
* Module Name: amlresrc.h - AML resource descriptors
*
*****************************************************************************/
/******************************************************************************
*
* 1. Copyright ... |
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef ICEBERGCOIN_INIT_H
#define ICEBERGCOIN_INIT_H
#include "wallet.h"
extern ... |
/* Copyright (c) 2006-2007 Christopher J. W. Lloyd
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, merge, publish... |
#include <mruby-aux/array.h>
#include <mruby-aux/compat/array.h>
MRB_API mrb_value
mrbx_ary_delete_at(mrb_state *mrb, struct RArray *ary, mrb_int idx)
{
mrb_int len = ARY_LEN(ary);
if (idx < 0) { idx += len; }
if (idx < 0 || idx >= len) { return mrb_nil_value(); }
mrb_value ret = ARY_PTR(ary)[idx];
mrb_int... |
#ifndef K_STREAMS_WINDOW_WINDOWINPUTSTREAM_H
#define K_STREAMS_WINDOW_WINDOWINPUTSTREAM_H
#include "WindowBuffer.h"
#include "../../streams/InputStream.h"
#include "../dict/DictHelper.h"
namespace K {
class WindowInputStream : public InputStream {
private:
WindowBuffer buf;
InputStream* is;
//std::string... |
/* This testcase is part of GDB, the GNU debugger.
Copyright 2011-2019 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, or
... |
// 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... |
#pragma once
#include <unordered_map>
#include <filesystem>
#include "Core/core.h"
#include "cereal/cereal.hpp"
#include "cereal/access.hpp"
class Texture
{
public:
enum class FilterMethod
{
Linear,
Nearest
};
enum class WrapMethod
{
Clamp,
Mirror,
Repeat
};
virtual ~Texture() = default;
virtual... |
#ifndef __CAMERA_H__
#define __CAMERA_H__
#include "JGE.h"
#include "Collision.h"
#ifdef WIN32
#include <math.h>
#else
#include <fastmath.h>
#endif
class Camera
{
private:
public:
float mX;
float mY;
float mTX;
float mTY;
float mA;
float mMinX;
float mMinY;
float mMaxX;
float mMaxY;
float mShakeX;
floa... |
#ifndef GRAPHEDITOR_H_INCLUDED
#define GRAPHEDITOR_H_INCLUDED
#include <set>
#include <wx/wx.h>
#include <boost/variant.hpp>
#include <unordered_set>
#include <unordered_map>
////FORWARD DECLARATIONS
class NodeOptions;
class GraphEditor;
class ProjectProperties;
class SmallPreview;
class NodeDescriptionDisplay;
class... |
#include <stdarg.h>
#include <string.h>
#include <time.h>
#include "std.h"
#include "types.h"
#include "state.h"
#include "sim.h"
#include "simmem.h"
#include "libsrs.h"
#include "libcore.h"
#include "libui.h"
#if 0
#include "libsym.h"
#endif
#define MAJVER 1
#define MINVER 1
#define NDWPERLN 4
#define MAXPROCS 1
... |
/*
* Driver interaction with Linux nl80211/cfg80211
* Copyright (c) 2002-2015, Jouni Malinen <j@w1.fi>
* Copyright (c) 2003-2004, Instant802 Networks, Inc.
* Copyright (c) 2005-2006, Devicescape Software, Inc.
* Copyright (c) 2007, Johannes Berg <johannes@sipsolutions.net>
* Copyright (c) 2009-2010, Atheros Commu... |
#pragma once
#include "CommonDevice.h"
class CXLabel : public CXControl
{
protected:
std::basic_string<TCHAR> m_Caption;
DWORD m_Colour;
/*LPD3DXFONT m_Font;*/
ICommonFont* m_pFont;
DWORD m_Format;
public:
CXLabel( const LOGFONT& Font, iz3d::uilib::CommonDevice* Device );
virtual ~CXLabel();
bool OnRender();
... |
/*
* Copyright 2003 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
/*
* lib/crypto/md4/rsa-md4.h
*
* Copyright 1991 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of... |
/*
* Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
* From ASN.1 module "NR-InterNodeDefinitions"
* found in "fixed_grammar.asn"
* `asn1c -gen-PER -fcompound-names -findirect-choice -no-gen-example`
*/
#include "FR-Info.h"
/*
* This type is implemented using NativeEnumerated,
* so here we adjust the DE... |
/*
* @Descripttion:
* @Version: 1.0
* @Author: hwdy
* @Date: 2021-02-23 10:31:02
* @LastEditors: hwdy
* @LastEditTime: 2021-03-30 14:35:54
*/
/*
* Copyright 2020 Huawei Technologies Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in c... |
#import <Foundation/Foundation.h>
#import <EXUpdates/EXUpdatesAppController.h>
#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>
#import <UMCore/UMAppDelegateWrapper.h>
@interface AppDelegate : UMAppDelegateWrapper <RCTBridgeDelegate, EXUpdatesAppControllerDelegate>
@property (nonatomic, strong) UIWindow *... |
/*
** $Id: lvm.h,v 2.41.1.1 2017/04/19 17:20:42 roberto Exp $
** Lua virtual machine
** See Copyright Notice in lua.h
*/
#ifndef lvm_h
#define lvm_h
#include "ldo.h"
#include "lobject.h"
#include "ltm.h"
#include "common.h"
#if !defined(LUA_NOCVTN2S)
#define cvt2str(o) ttisnumber(o)
#else
#define cvt2str(o) 0 /* ... |
/******************************************************************************
*
* Copyright (C) 2009-2012 Broadcom 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:
*
... |
#pragma once
#include "exceptions.h"
#include <string>
#include <set>
namespace base {
/**
* @namespace filesystem.
* @brief Interface for manipulating with file system.
*/
namespace filesystem
{
/// @brief Read and return file content.
/// @param file File name which must be read.
std::string read_f... |
//
// GCommonUtils.h
// GKit
//
// Created by GIKI on 2017/4/7.
// Copyright © 2017年 GIKI. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface GCommonUtils : NSObject
/// context是否合法
+ (void)inspectContextIfInvalidatedInDebugMode:(CGContextRef _Nonnull)context;
+ (BOOL)insp... |
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2017-2018 The Paxex developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef MASTERNODEHELPERS_H
#defin... |
/* ----------------------------------------------------------------------------
* ATMEL Microcontroller Software Support
* ----------------------------------------------------------------------------
* Copyright (c) 2008, Atmel Corporation
* All rights reserved.
*
* Redistribution and use in source and b... |
/*===================================================================
The Medical Imaging Interaction Toolkit (MITK)
Copyright (c) German Cancer Research Center,
Division of Medical and Biological Informatics.
All rights reserved.
This software is distributed WITHOUT ANY WARRANTY; without
even the implied warranty o... |
/*
* FIPS-180-1 compliant SHA-1 implementation
*
* Based on XySSL: Copyright (C) 2006-2008 Christophe Devine
*
* Copyright (C) 2009 Paul Bakker <polarssl_maintainer at polarssl dot org>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are ... |
/*
* Copyright (c) 2013-2016, Mellanox Technologies. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of th... |
/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
*
* Copyright (C) 1997 University of Chicago.
* See COPYRIGHT notice in top-level directory.
*/
#include "adio.h"
#include "adio_extern.h"
/* prototypes of functions used for collective writes only. */
static void ADIOI_Exch_and_write(ADIO_File fd, void *buf, MPI... |
/*
* 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 2016-2017 Uber Technologies, 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 applica... |
/********************************************************************/
/* SPAWNO v4.0 EMS/XMS/disk swapping replacement for spawn...() */
/* (c) Copyright 1990, 1991 Ralf Brown All Rights Reserved */
/* */
/* May be freely copied provided that this copyright notice is */
/* not altered or r... |
// 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... |
/*
* This file is part of the EaseWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
* (c) Jamie Pinkham
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import <TargetConditionals.h>
#ifdef __OBJC_GC__
#error EaseW... |
/*
* (C) Copyright 2008-2009
* Stefan Roese, DENX Software Engineering, sr@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* 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 Fr... |
/*-
* Copyright (c) 2013 Tycho Nightingale <tycho.nightingale@pluribusnetworks.com>
* Copyright (c) 2013 Neel Natu <neel@freebsd.org>
* Copyright (c) 2017 Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that th... |
//
// DBManager.h
//
// Created by jinxiaofei on 16/7/15.
// Copyright © 2016年 Guangzhou TalkHunt Information Technology Co., Ltd. All rights reserved.
//
#import "DBHelper.h"
//数据库打开成功事件
#define DBManagerDbOpenedNotification @"DBManagerShareDbOpenedNotification"// @{@"dbKind": @(dbKind)}
#define ShareDBHelp... |
/*
* This header is generated by classdump-dyld 1.0
* on Saturday, June 1, 2019 at 6:50:57 PM Mountain Standard Time
* Operating System: Version 12.1.1 (Build 16C5050a)
* Image Source: /System/Library/PrivateFrameworks/FamilyNotification.framework/FamilyNotification
* classdump-dyld is licensed under GPLv3, Copyright ©... |
/* This file is a part of MIR project.
Copyright (C) 2018-2021 Vladimir Makarov <vmakarov.gcc@gmail.com>.
*/
/* Optimization pipeline:
------------- -------------
---------- ----------- ----------- | Copy | | Global |
... |
/*
cparse.c -- Racc Runtime Core
Copyright (c) 1999-2006 Minero Aoki
This library is free software.
You can distribute/modify this program under the same terms of ruby.
$originalId: cparse.c,v 1.8 2006/07/06 11:39:46 aamine Exp $
*/
#include <ruby.h>
#ifndef FALSE
#define FALSE 0
#endif
#ifnd... |
#ifndef HUAWEICLOUD_SDK_SDRS_V1_MODEL_DetachProtectedInstanceReplicationResponse_H_
#define HUAWEICLOUD_SDK_SDRS_V1_MODEL_DetachProtectedInstanceReplicationResponse_H_
#include <huaweicloud/sdrs/v1/SdrsExport.h>
#include <huaweicloud/core/utils/ModelBase.h>
#include <huaweicloud/core/http/HttpResponse.h>
#include <s... |
#pragma once
#ifndef DSY_DRIP_H
#define DSY_DRIP_H
#include <stdint.h>
#ifdef __cplusplus
/** @file drip.h */
namespace daisysp
{
/**
Imitates the sound of dripping water via Physical Modeling Synthesis. \n
Ported from soundpipe by Ben Sergentanis, May 2020
@author Perry Cook
@date 2000
*/
cl... |
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class org_platanios_tensorflow_jni_RecordReader__ */
#ifndef _Included_org_platanios_tensorflow_jni_RecordReader__
#define _Included_org_platanios_tensorflow_jni_RecordReader__
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: o... |
// commands.h
/* Copyright 2009 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be... |
/*
This file is part of the PhantomJS project from Ofi Labs.
Copyright (C) 2011 Ivan De Marino <ivan.de.marino@gmail.com>
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 re... |
/**********************************************************************
*
* RLINK - Relocatable Linker - Pass 1b
*
* Compatible with Microware's 'rlink' linker for the 6809.
*
* Written because Allen Huffman wouldn't get off his lazy
* ass and send Tim those disks.
*
* Thanks for the motivation Allen!
*
* 2/... |
/////////////////////////////////////////////////////////////////////////////
// Name: wx/richtext/richtexthtml.h
// Purpose: HTML I/O for wxRichTextCtrl
// Author: Julian Smart
// Modified by:
// Created: 2005-09-30
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows lic... |
/*
* @(#)hprof_error.c 1.19 10/03/23
*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* -Redistribution of source code must retain t... |
#ifndef KEYBOARDSCANNER_H_
#define KEYBOARDSCANNER_H_
#define KEYBOARD_PORT PORTB
#define KEYBOARD_PIN PINB
#define KEYBOARD_DDR DDRB
/**
* Scans the matrix keyboard for pressed
* switches.
* @param scancode
* Data container for the scancode to store in
* @return
* Returns the scan code of the keyboard (ref... |
#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_StorageKit_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_StorageKit_TestsVers... |
/*
* The MIT License
*
* Copyright (c) 1997-2019 The University of Utah
*
* 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
* right... |
/* cacheQueue - a cache of synchronized message queues.
* ParaFlow uses these to implement the thread synchronization
* when parallel processing. */
#ifndef CACHEQUEUE_H
#define CACHEQUEUE_H
struct synQueue *cacheQueueAlloc();
/* Get a synQueue from cache */
void cacheQueueFree(struct synQueue **pQueue);
/* Fr... |
/*
* Copyright (c) 2018, Ford Motor Company
* 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... |
extern zend_class_entry *ice_i18n_plural_none_ce;
ZEPHIR_INIT_CLASS(Ice_I18n_Plural_None);
PHP_METHOD(Ice_I18n_Plural_None, getCategory);
ZEND_BEGIN_ARG_INFO_EX(arginfo_ice_i18n_plural_none_getcategory, 0, 0, 1)
ZEND_ARG_INFO(0, count)
ZEND_END_ARG_INFO()
ZEPHIR_INIT_FUNCS(ice_i18n_plural_none_method_entry) {
PHP... |
//////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004-2019 musikcube team
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redist... |
/*
* This header is generated by classdump-dyld 1.0
* on Sunday, September 27, 2020 at 11:40:45 AM Mountain Standard Time
* Operating System: Version 14.0 (Build 18A373)
* Image Source: /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
* classdump-dyld is licensed under GPLv3, Copyright © 2013-201... |
/* vi:set ts=8 sts=4 sw=4 noet:
*
* VIM - Vi IMproved by Bram Moolenaar
* GUI/Motif support by Robert Webb
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
* See README.txt for an overview of the Vim source code.
*/
/*
... |
/*
* Monostable.h
*
* Created on: May 28, 2016
* Author: denizcan
*/
#ifndef ART_MONOSTABLE_H_
#define ART_MONOSTABLE_H_
#include <Art/Device.h>
#include <Art/Pit.h>
namespace Art
{
class Monostable : public Device
{
public:
Bool defaultValue() const;
MatchChannel* port() const;
UWord interval()... |
//
// FsprgOrderItem.h
// FsprgEmbeddedStore
//
// Created by Lars Steiger on 2/24/10.
// Copyright 2010 FastSpring. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "FsprgFulfillment.h"
#import "FsprgLicense.h"
#import "FsprgFileDownload.h"
/*!
* Order item information. FsprgOrderItem is backed by a NSM... |
/* ----------------------------------------------------------------------------
* ATMEL Microcontroller Software Support - ROUSSET -
* ----------------------------------------------------------------------------
* Copyright (c) 2006, Atmel Corporation
* All rights reserved.
*
* Redistribution and use... |
// Copyright (c) 2015-2019 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 BADDCOIN_HTTPRPC_H
#define BADDCOIN_HTTPRPC_H
namespace util {
class Ref;
} // namespace util
/** Start HTTP RPC su... |
/****
Copyright 2005-2007, Moshe Looks and Novamente 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 applica... |
/*
* This header is generated by classdump-dyld 1.5
* on Wednesday, April 14, 2021 at 2:29:20 PM Mountain Standard Time
* Operating System: Version 14.4 (Build 18K802)
* Image Source: /System/Library/PrivateFrameworks/PassKitUI.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.