repo_name stringlengths 6 97 | path stringlengths 3 341 | text stringlengths 8 1.02M |
|---|---|---|
axispod/vmpl | include/vmpl/split.h | <reponame>axispod/vmpl<filename>include/vmpl/split.h
#pragma once
#include "holder.h"
namespace vmpl
{
namespace
{
template<unsigned int Position, typename ... Args>
struct split_helper;
template<unsigned int Position, typename T, typename ... Args>
struct split_helper<Position, T, Args...>
{
typedef ... |
gamestake/frames-ios | iOS Example Frame Carthage/Frames/Frames.h | //
// Frames.h
// Frames
//
// Created by Harry.Brown on 01/04/2021.
// Copyright © 2021 Checkout. All rights reserved.
//
#import <Foundation/Foundation.h>
//! Project version number for Frames.
FOUNDATION_EXPORT double FramesVersionNumber;
//! Project version string for Frames.
FOUNDATION_EXPORT const unsigned... |
pyshx/serenity | Userland/Libraries/LibIPC/Encoder.h | /*
* Copyright (c) 2018-2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Concepts.h>
#include <AK/StdLibExtras.h>
#include <LibIPC/Forward.h>
#include <LibIPC/Message.h>
namespace IPC {
template<typename T>
bool encode(Encoder&, T&)
{
static_assert(DependentFalse... |
pyshx/serenity | Kernel/Module.h | /*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/Vector.h>
#include <Kernel/KBuffer.h>
namespace Kernel {
typedef void* (*ModuleInitPtr)();
typedef void* (*ModuleFiniPtr)();
struct Module {
String name;
NonnullO... |
pyshx/serenity | Userland/Applications/Magnifier/MagnifierWidget.h | <filename>Userland/Applications/Magnifier/MagnifierWidget.h
/*
* Copyright (c) 2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGUI/Frame.h>
class MagnifierWidget final : public GUI::Frame {
C_OBJECT(MagnifierWidget);
public:
virtual ~MagnifierWidget();
v... |
pyshx/serenity | Kernel/Net/LocalSocket.h | <reponame>pyshx/serenity
/*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/IntrusiveList.h>
#include <Kernel/DoubleBuffer.h>
#include <Kernel/Net/Socket.h>
namespace Kernel {
class OpenFileDescription;
struct SocketPair {
NonnullRefPtr<Ope... |
pyshx/serenity | Userland/Applications/PixelPaint/RectangleTool.h | /*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
* Copyright (c) 2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "Tool.h"
#include <LibGUI/Forward.h>
#include <LibGfx/Point.h>
namespace PixelPaint {
class RectangleTool final : public Tool {
public:
RectangleTool();
... |
pyshx/serenity | Userland/Applications/Piano/Music.h | /*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
* Copyright (c) 2019-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <LibGfx/Color.h>
namespace Music {
// CD quality
// - Stereo
// - 16 bit
// - 44,100 samples/sec
// - 1,411.2 kbps
struct Sample {... |
pyshx/serenity | Kernel/Devices/SerialDevice.h | <reponame>pyshx/serenity
/*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/IO.h>
namespace Kernel {
class SerialDevice final : public CharacterDevice {
AK_MAKE_ETERNAL
public:
static Nonnu... |
pyshx/serenity | Userland/Libraries/LibCrypto/Cipher/Mode/GCM.h | /*
* Copyright (c) 2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/OwnPtr.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <AK/StringView.h>
#include <LibCrypto/Authentication/GHash.h>
#include <LibCrypto/Cipher/Mode/CTR.h>
#include <LibCrypto/Verifica... |
pyshx/serenity | Userland/Services/AudioServer/ClientConnection.h | <gh_stars>1-10
/*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashMap.h>
#include <AudioServer/AudioClientEndpoint.h>
#include <AudioServer/AudioServerEndpoint.h>
#include <LibIPC/ClientConnection.h>
namespace Audio {
class Buffer;
}
namespa... |
pyshx/serenity | Userland/Libraries/LibCore/GetPassword.h | /*
* Copyright (c) 2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/OSError.h>
#include <AK/Result.h>
#include <AK/String.h>
namespace Core {
Result<String, OSError> get_password(const StringView& prompt = "Password: ");
}
|
pyshx/serenity | Userland/Libraries/LibWeb/HTML/HTMLScriptElement.h | <reponame>pyshx/serenity<gh_stars>0
/*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Function.h>
#include <LibWeb/HTML/HTMLElement.h>
namespace Web::HTML {
class HTMLScriptElement final : public HTMLElement {
public:
using WrapperType = Bi... |
pyshx/serenity | Userland/Libraries/LibWeb/WebContentClient.h | <reponame>pyshx/serenity
/*
* Copyright (c) 2020-2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/HashMap.h>
#include <LibIPC/ServerConnection.h>
#include <LibWeb/Cookie/ParsedCookie.h>
#include <WebContent/WebContentClientEndpoint.h>
#include <WebContent/WebContentSer... |
pyshx/serenity | Kernel/ACPI/Parser.h | <reponame>pyshx/serenity
/*
* Copyright (c) 2020, <NAME>. <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <Kernel/ACPI/Definitions.h>
#include <Kernel/ACPI/Initialize.h>
#include <Kernel/FileSystem/SysFSComponent.h>
#include <Kernel/Memory/Region.h>
#include <Ker... |
pyshx/serenity | Kernel/TimerQueue.h | /*
* Copyright (c) 2018-2020, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Function.h>
#include <AK/IntrusiveList.h>
#include <AK/NonnullRefPtr.h>
#include <AK/OwnPtr.h>
#include <AK/RefCounted.h>
#include <AK/Time.h>
#include <Kernel/Time/TimeManagement.h>
namespace Ke... |
pyshx/serenity | Userland/Services/WebContent/PageHost.h | /*
* Copyright (c) 2020-2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGfx/Rect.h>
#include <LibWeb/Page/Page.h>
namespace WebContent {
class ClientConnection;
class PageHost final : public Web::PageClient {
AK_MAKE_NONCOPYABLE(PageHost);
AK_MAKE_NONMOVABL... |
pyshx/serenity | Userland/Applications/PixelPaint/ProjectLoader.h | /*
* Copyright (c) 2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include "Image.h"
#include <AK/JsonArray.h>
#include <AK/Result.h>
#include <AK/StringView.h>
namespace PixelPaint {
class ProjectLoader {
public:
ProjectLoader() = default;
~ProjectLoader() = default;
... |
pyshx/serenity | Kernel/Arch/x86/Processor.h | <reponame>pyshx/serenity<gh_stars>0
/*
* Copyright (c) 2018-2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Array.h>
#include <AK/Concepts.h>
#include <AK/Function.h>
#include <AK/Types.h>
#include <Kernel/Arch/x86/ASM_wrapper.h>
#include <Kernel/Arch/x86/CPUID.h>
#i... |
pyshx/serenity | Userland/Libraries/LibJS/Runtime/Intl/LocalePrototype.h | /*
* Copyright (c) 2021, <NAME> <<EMAIL>>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Runtime/Object.h>
namespace JS::Intl {
class LocalePrototype final : public Object {
JS_OBJECT(LocalePrototype, Object);
public:
explicit LocalePrototype(GlobalObject&);
virtual void ... |
Ric92/frustum_clipping | include/ConvexPolyhedron.h | #ifndef CONVEXPOLYHEDRON_H_
#define CONVEXPOLYHEDRON_H_
#include <Eigen/Eigen>
#include "Facet.h"
#include <pcl/point_types.h>
#include <pcl/surface/convex_hull.h>
class ConvexPolyhedron
{
public:
ConvexPolyhedron();
std::unordered_map<std::string, std::shared_ptr<Facet>> getFacets();
void setFacets(std::unord... |
Ric92/frustum_clipping | include/Frustum.h | #ifndef FRUSTUM_H_
#define FRUSTUM_H_
#include <Eigen/Eigen>
#include <utility>
#include "Facet.h"
#include <unordered_map>
#include "ConvexPolyhedron.h"
class Frustum : public ConvexPolyhedron
{
public:
// _pose: Pose of Frustum
// _hfov,_vfov: Vertical and horizontal FOV in degrees
// _npDistance,fpDistance: Di... |
Ric92/frustum_clipping | include/Cube.h | #ifndef CUBE_H_
#define CUBE_H_
#include <Eigen/Eigen>
#include <utility>
#include "Facet.h"
#include <unordered_map>
#include "ConvexPolyhedron.h"
class Cube : public ConvexPolyhedron {
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// _pose: Pose of Frustum
// _hfov,_vfov: Vertical and horizontal FOV in degr... |
Ric92/frustum_clipping | include/Facet.h | #ifndef FACET_H_
#define FACET_H_
#include <Eigen/Eigen>
struct Facet
{
public:
Facet(Eigen::Vector4f _plane, std::vector<Eigen::Vector3f> _vertex) : plane(_plane), vertex(_vertex){}
Eigen::Vector4f plane;
std::vector<Eigen::Vector3f> vertex;
};
#endif |
Ric92/frustum_clipping | include/Clipper.h | <reponame>Ric92/frustum_clipping
#ifndef FRUSTUM_CLIPPING_CLIPPER_H_
#define FRUSTUM_CLIPPING_CLIPPER_H_
#include <Eigen/Eigen>
#include "Frustum.h"
#include "Facet.h"
#include "Drawer.h"
class Clipper
{
public:
Clipper();
void clipFrustumFrustum(std::shared_ptr<Frustum> _frustum1, std::shared_ptr<Frustum> _fr... |
Ric92/frustum_clipping | include/Drawer.h | #ifndef DRAWER_H_
#define DRAWER_H_
#include <opencv2/opencv.hpp>
#include <pcl/io/pcd_io.h>
#include <pcl/visualization/pcl_visualizer.h>
#include <chrono>
#include <thread>
#include "Facet.h"
template <typename PointType_>
class Drawer
{
public:
static bool init();
static Drawer *get()
{
return mSingleto... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpmidext.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/kmsbasertpsession.h | <reponame>bjxagu/kms-core
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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
*
* U... |
bjxagu/kms-core | tests/check/element/agnosticbin.c | <filename>tests/check/element/agnosticbin.c
/*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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/L... |
bjxagu/kms-core | src/gst-plugins/kmsagnosticbin3.c | /*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | tests/check/element/passthrough.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmsisdppayloadmanager.h | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpcontext.c | <filename>src/gst-plugins/commons/sdpagent/kmssdpcontext.c
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpbundlegroup.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpconnectionext.c | <gh_stars>0
/*
* (C) Copyright 2016 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/kmsbitratefilter.c | <reponame>bjxagu/kms-core
/*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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
*
* U... |
bjxagu/kms-core | src/gst-plugins/commons/kmsbasertpsession.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | tests/check/element/audiomixerbin.c | /*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpagent.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdppayloadmanager.h | <gh_stars>0
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/kmsirtpsessionmanager.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpmediadirext.h | /*
* (C) Copyright 2016 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/kmsparsetreebin.c | <filename>src/gst-plugins/commons/kmsparsetreebin.c<gh_stars>1-10
/*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdprtpsavpfmediahandler.h | <reponame>bjxagu/kms-core<filename>src/gst-plugins/commons/sdpagent/kmssdprtpsavpfmediahandler.h
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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 th... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpagent.h | <filename>src/gst-plugins/commons/sdpagent/kmssdpagent.h<gh_stars>0
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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://w... |
bjxagu/kms-core | src/gst-plugins/commons/kmstreebin.c | /*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/kmsfilterelement.c | /*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdppayloadmanager.c | /*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/sdp_utils.h | /*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/kmshubport.h | /*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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... |
bjxagu/kms-core | src/gst-plugins/commons/kmsremb.c | <reponame>bjxagu/kms-core<gh_stars>1-10
/*
* (C) Copyright 2014 Kurento (http://kurento.org/)
*
* 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/LICEN... |
bjxagu/kms-core | src/gst-plugins/commons/sdpagent/kmssdpcontext.h | <reponame>bjxagu/kms-core
/*
* (C) Copyright 2015 Kurento (http://kurento.org/)
*
* 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
*
* U... |
bjxagu/kms-core | src/gst-plugins/commons/kmsutils.h | <filename>src/gst-plugins/commons/kmsutils.h
/*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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/... |
bjxagu/kms-core | src/gst-plugins/commons/kmshubport.c | /*
* (C) Copyright 2013 Kurento (http://kurento.org/)
*
* 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... |
atcg/cPWP | cPWP/calcCOVARchunks.h | <reponame>atcg/cPWP
//
// calcCOVARchunks.h
//
//
// Created by <NAME>-Melstad on 2/13/15.
//
//
#ifndef ____calcCOVARchunks__
#define ____calcCOVARchunks__
#include <iostream>
#include <vector>
int calcCOVARfromBinaryFile (std::string binaryFile, long long int numLoci, const int numIndividuals, std::string out... |
atcg/cPWP | cPWP/calcPWPchunks.h | <filename>cPWP/calcPWPchunks.h
//
// calcPWP.h
//
//
// Created by <NAME>-Melstad on 1/10/15.
//
//
#ifndef ____calcPWP__
#define ____calcPWP__
#include <vector>
#include <string>
int calcPWPfromBinaryFile (std::string binaryFile, unsigned long long int numLoci, const int numIndividuals, std::string outFile, int ... |
rengeln/nyx | src/Matrix.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_MATRIX_H__
#define __N... |
rengeln/nyx | src/Camera.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_CAMERA_H__
#define __N... |
rengeln/nyx | src/Profiler.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_PROFILER_H__
#define _... |
rengeln/nyx | assets/shaders/voxel_mesh.h | <reponame>rengeln/nyx<gh_stars>1-10
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////... |
rengeln/nyx | src/VoxelMesh.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_VOXELMESH_H__
#define ... |
rengeln/nyx | src/Prefix.h | <reponame>rengeln/nyx
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_... |
rengeln/nyx | src/GraphicsDevice.h | <reponame>rengeln/nyx
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_... |
rengeln/nyx | src/Noise.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_NOISE_H__
#define __NY... |
rengeln/nyx | src/VoxelProcessor.h | <reponame>rengeln/nyx<filename>src/VoxelProcessor.h
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
/////////////////////////////////////////////////////////////////... |
rengeln/nyx | src/RenderContext.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_RENDERCONTEXT_H__
#def... |
rengeln/nyx | src/SkyRenderer.h | <gh_stars>1-10
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_SKYREND... |
rengeln/nyx | assets/shaders/water.h | <gh_stars>1-10
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
cbuffer SceneConsta... |
rengeln/nyx | src/WaterManager.h | <reponame>rengeln/nyx<gh_stars>1-10
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
... |
rengeln/nyx | src/Frustum.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_FRUSTUM_H__
#define __... |
rengeln/nyx | assets/shaders/simplex_noise.h | <reponame>rengeln/nyx
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
Buffer<float3>... |
rengeln/nyx | assets/shaders/marching_cubes.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
//
// Shader constants.
//
cbuffe... |
rengeln/nyx | src/Font.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_FONT_H__
#define __NYX... |
rengeln/nyx | src/LineRenderer.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_LINERENDERER_H__
#defi... |
rengeln/nyx | src/WaterRenderer.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_WATERRENDERER_H__
#def... |
rengeln/nyx | src/VoxelRenderer.h | <filename>src/VoxelRenderer.h
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifnde... |
rengeln/nyx | src/VoxelManager.h | <reponame>rengeln/nyx
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_... |
rengeln/nyx | src/Vector.h | <reponame>rengeln/nyx
///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_... |
rengeln/nyx | src/SceneManager.h | ///////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2011 <NAME> (<EMAIL>) All rights reserved.
// See accompanying LICENSE file for full license information.
///////////////////////////////////////////////////////////////////////////////
#ifndef __NYX_SCENEMANAGER_H__
#defi... |
lancewalk87/CLSL-TcpIp-Client | src/CLNetworkingClient.h | #ifndef _CLNETWORKINGCLIENT_H
#define _CLNETWORKINGCLIENT_H
#include <cstlib>
#include <iostream>
#endif
|
YueShuai798/scaleView | ScaleView/ScaleView/YSScaleView.h | <reponame>YueShuai798/scaleView<gh_stars>1-10
//
// IDScaleView.h
// kvo
//
// Created by 悦帅 on 2018/4/27.
// Copyright © 2018年 悦帅. All rights reserved.
//
#import <UIKit/UIKit.h>
@class YSShowView;
typedef enum {
YSPanAtTopLeftCorner,//左上角
YSPanAtTopRightCorner,//右上角
YSPanAtBottomLeftCorner,//左下角
... |
cpgribble78/owl | owl/Buffer.h | <gh_stars>0
// ======================================================================== //
// Copyright 2019-2020 <NAME> //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); ... |
cpgribble78/owl | owl/Context.h | // ======================================================================== //
// Copyright 2019-2020 <NAME> //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
// you ... |
cpgribble78/owl | owl/include/owl/common/arrayND/array2D.h | // ======================================================================== //
// Copyright 2019-2020 <NAME> //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
// you ... |
husseinmaad/OmniSign | ios/build/Build/Intermediates/DocuSignReactNativeSample.build/Debug-iphonesimulator/DocuSignReactNativeSample.build/DerivedSources/DocuSignReactNativeSample_vers.c | extern const unsigned char DocuSignReactNativeSampleVersionString[];
extern const double DocuSignReactNativeSampleVersionNumber;
const unsigned char DocuSignReactNativeSampleVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:DocuSignReactNativeSample PROJECT:DocuSignReactNativeSample-1" "\n";
const double Docu... |
husseinmaad/OmniSign | ios/build/Build/Products/Debug-iphonesimulator/DocuSignReactNativeSample.app/Frameworks/XCTest.framework/Headers/XCTNSNotificationExpectation.h | <filename>ios/build/Build/Products/Debug-iphonesimulator/DocuSignReactNativeSample.app/Frameworks/XCTest.framework/Headers/XCTNSNotificationExpectation.h<gh_stars>10-100
//
// Copyright (c) 2016 Apple Inc. All rights reserved.
//
#import <XCTest/XCTestDefines.h>
#import <XCTest/XCTestExpectation.h>
#import <XCTest/XC... |
husseinmaad/OmniSign | node_modules/react-native/ReactCommon/cxxreact/CxxNativeModule.h | // Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
#include <cxxreact/CxxModule.h>
#include <cxxreact/NativeModule.h>
namespace facebook {
namespace react {
class Instance;
std::function<void(folly::dynamic)> makeCallback(
std::weak_ptr<Instance> instance, ExecutorToken token, const folly::dyn... |
husseinmaad/OmniSign | ios/build/Build/Products/Debug-iphonesimulator/DocuSignReactNativeSample.app/Frameworks/XCTest.framework/Headers/XCTWaiter.h | //
// Copyright (c) 2016 Apple Inc. All rights reserved.
//
#import <XCTest/XCTestDefines.h>
@class XCTestExpectation;
@protocol XCTWaiterDelegate;
NS_ASSUME_NONNULL_BEGIN
/*!
* @enum XCTWaiterResult
* Values returned by a waiter when it completes, times out, or is interrupted due to another waiter
* higher in ... |
husseinmaad/OmniSign | ios/build/Build/Products/Debug-iphonesimulator/DocuSignReactNativeSample.app/Frameworks/XCTest.framework/Headers/XCUISiriService.h | <reponame>husseinmaad/OmniSign
//
// Copyright © 2017 Apple Inc. All rights reserved.
//
#import <XCTest/XCUIElementTypeQueryProvider.h>
NS_ASSUME_NONNULL_BEGIN
#if XCT_UI_TESTING_AVAILABLE && TARGET_OS_IOS
/*!
* @class XCUISiriService
* Represents a device's Siri interface and allows issuing textual queries
* ... |
thiefsheep/fizzbuzz | c/fizzbuzz.c | /******************************************************************************
Hacktoberfest 2018
Write a program to do the Fizz Buzz Algorithm
Multiple of three == Fizz
Multiple of five == Buzz
... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/CubeProgram.h | <reponame>JMDMobileSolutions/vr6dof-ios
//
// CubeProgram.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Program.h"
@interface CubeProgram : Program
@property (assign, nonatomic) GLint transform;
@property (assign, nonatomic) GLint position;
@prop... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/Renderer.h | <filename>CubeHunt/Renderer.h
//
// Renderer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import <GVRKit/GVRKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface Renderer : GVRRenderer
-(void)updateTransform:(simd_float4x4)transform isTracking:(BOOL)isTracking;
@en... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/FloorProgram.h | //
// FloorProgram.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Program.h"
@interface FloorProgram : Program
@property (assign, nonatomic) GLint vertex;
@property (assign, nonatomic) GLint color;
@property (assign, nonatomic) GLint transform;
@... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/Buffer.h | <filename>CubeHunt/Buffer.h
//
// Buffer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import <GLKit/GLKit.h>
@interface Buffer : NSObject
@property (assign, nonatomic) GLuint buffer;
@property (assign, nonatomic) GLuint length;
-(GLuint)createWithData:(... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/CubeColorBuffer.h | <filename>CubeHunt/CubeColorBuffer.h
//
// CubeColorBuffer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Buffer.h"
NS_ASSUME_NONNULL_BEGIN
@interface CubeColorBuffer : Buffer
@end
NS_ASSUME_NONNULL_END
|
JMDMobileSolutions/vr6dof-ios | CubeHunt/Program.h | //
// Program.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import <GLKit/GLKit.h>
@interface Program : NSObject
@property (assign, nonatomic) GLuint program;
-(GLuint)loadShader:(GLenum)type withSource:(const char*)source;
-(GLuint)linkVertexShader:(GLu... |
JMDMobileSolutions/vr6dof-ios | CubeHunt/FloorBuffer.h | <filename>CubeHunt/FloorBuffer.h
//
// FloorBuffer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Buffer.h"
NS_ASSUME_NONNULL_BEGIN
@interface FloorBuffer : Buffer
@end
NS_ASSUME_NONNULL_END
|
JMDMobileSolutions/vr6dof-ios | CubeHunt/FloorColorBuffer.h | <gh_stars>0
//
// FloorColorBuffer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Buffer.h"
NS_ASSUME_NONNULL_BEGIN
@interface FloorColorBuffer : Buffer
@end
NS_ASSUME_NONNULL_END
|
JMDMobileSolutions/vr6dof-ios | CubeHunt/CubeBuffer.h | <filename>CubeHunt/CubeBuffer.h<gh_stars>0
//
// CubeBuffer.h
// CubeHunt
//
// Created by <NAME> on 3/16/19.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import "Buffer.h"
NS_ASSUME_NONNULL_BEGIN
@interface CubeBuffer : Buffer
-(BOOL)isFocusedInDirection:(GLKVector4)direction atPosition:(GLKVector4)pos... |
j00v/ZENZO-Core | src/denomination_functions.h | <gh_stars>1-10
/**
* @file denominations_functions.h
*
* @brief Denomination functions for the Zerocoin library.
*
* @copyright Copyright 2019 PIVX Developers
* @license This project is released under the MIT license.
**/
// Copyright (c) 2015-2019 The PIVX developers
#include "reverse_iterate.h"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.