repo_name stringlengths 5 122 | path stringlengths 3 232 | text stringlengths 6 1.05M |
|---|---|---|
DrItanium/durandal | include/obsolete/ExpertSystem/KnowledgeConstructionEngine.h | #ifndef _knowledge_construction_engine_h
#define _knowledge_construction_engine_h
#include "ExpertSystem/CLIPSObjectBuilder.h"
#include "ExpertSystem/CLIPSValueBuilder.h"
#include "ExpertSystem/CLIPSUserBuilder.h"
#include "ExpertSystem/CLIPSArgumentBuilder.h"
#include "ExpertSystem/CLIPSBasicBlockBuilder.h"
#include ... |
DrItanium/durandal | include/electron/dffctdef.h | <gh_stars>1-10
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/22/14 */
/* */
... |
DrItanium/durandal | include/indirect/IndirectUniqueIdentifier.h | #ifndef _indirect_unique_identifier_h
#define _indirect_unique_identifier_h
/* This is a class that defines a pointer used to provide a unique ID useful
* for pass registration. Thanks goes to silvas on #llvm for providing me with
* this technique instead of my over the top static SSD GC idea.
*
* This class store... |
DrItanium/durandal | lib/maya/fsoverride.c | /*
maya
Copyright (c) 2012-2014, <NAME>
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 and the... |
DrItanium/durandal | lib/electron/tmpltdef.c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/22/14 */
/* */
/* ... |
DrItanium/durandal | include/obsolete/ExpertSystem/Types.h | <reponame>DrItanium/durandal
#ifndef _expert_system_types_h
#define _expert_system_types_h
typedef long long PointerAddress;
typedef long long ExecutionDuration;
#define CharBuffer(size) (char*)calloc(size, sizeof(char))
#endif
|
DrItanium/durandal | include/obsolete/ExpertSystem/LLVMFunctions.h | #ifndef _llvm_functions_h
#define _llvm_functions_h
/*
* Contains all of the CLIPS=>LLVM and LLVM=>CLIPS wrapper functions.
* These functions show up in CLIPS as various different things
*/
#include "ExpertSystem/Types.h"
extern "C" void RegisterExpertSystemFunctions(void *theEnv);
extern "C" void LLVMPrint(void *t... |
DrItanium/durandal | include/electron/factcom.h | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/20/14 */
/* */
/* ... |
DrItanium/durandal | lib/electron/genrcfun.c | <reponame>DrItanium/durandal
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* ... |
DrItanium/durandal | include/electron/insfile.h | <gh_stars>1-10
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* */
... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSUserBuilder.h | #ifndef _clips_user_builder_h
#define _clips_user_builder_h
#include "llvm/User.h"
#include "ExpertSystem/CLIPSValueBuilder.h"
using namespace llvm;
class CLIPSUserBuilder : public CLIPSValueBuilder {
public:
CLIPSUserBuilder(std::string nm, std::string ty, FunctionNamer& namer);
void addFields(User* us... |
DrItanium/durandal | include/pipeline/clips/CLIPSPassTemplates.h | #ifndef _clips_pass_templates_h
#define _clips_pass_templates_h
#include "indirect/IndirectPasses.h"
#include "pipeline/clips/CLIPSPass.h"
using namespace indirect;
namespace pipeline {
namespace clips {
class CLIPSModulePass : public IndirectModulePass, public CLIPSPass {
public:
CLIPSMod... |
DrItanium/durandal | lib/electron/prdctfun.c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* */
/* ... |
DrItanium/durandal | include/indirect/IndirectPassRegistry.h | <reponame>DrItanium/durandal<gh_stars>1-10
#ifndef _indirect_pass_registry_h
#define _indirect_pass_registry_h
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/StringMap.h"
#include "indirect/IndirectPassHeader.h"
#include "indirect/RegisterIndirectPass.h"
#include "indirect/IndirectPas... |
DrItanium/durandal | include/rampancy/CLIPSFunctions.h | <reponame>DrItanium/durandal<filename>include/rampancy/CLIPSFunctions.h
#ifndef _rampancy_llvm_h
#define _rampancy_llvm_h
// Contains the header interface between the Rampancy library and
// clips.
extern "C" void SetupRampancyExpertSystemInterfaces(void* ptr);
#endif
|
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSEnvironment.h | #ifndef _clips_environment_h
#define _clips_environment_h
#include "ExpertSystem/Types.h"
class CLIPSEnvironment {
private:
void* environment;
bool fullyOwned;
public:
CLIPSEnvironment(void* theEnv=0);
~CLIPSEnvironment();
bool environmentCreated();
void* getEnvironment();
... |
DrItanium/durandal | include/electron/insfun.h | <reponame>DrItanium/durandal
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* ... |
DrItanium/durandal | include/indirect/IndirectPasses.h | <gh_stars>1-10
#ifndef _indirect_module_pass_h
#define _indirect_module_pass_h
#include "llvm/ADT/StringRef.h"
#include "llvm/Pass.h"
#include "llvm/Module.h"
#include "llvm/Function.h"
#include "llvm/Analysis/RegionPass.h"
#include "llvm/Analysis/LoopPass.h"
#include "llvm/CallGraphSCCPass.h"
#include "llvm/CodeGen/Ma... |
DrItanium/durandal | include/rampancy/Compiler.h | <reponame>DrItanium/durandal
#ifndef _rampancy_compiler_h
#define _rampancy_compiler_h
/*
* The rampancy library is a standard way to access compilers and interpreters
* from within CLIPS. It assumes that you're going to generate a pass
*
* This class is abstract
*/
#include "llvm/Pass.h"
#include "llvm/Module.h"
... |
DrItanium/durandal | include/indirect/IndirectAnalysisUsageDeclaration.h | <gh_stars>1-10
#ifndef _indirect_analysis_usage_declaration_h
#define _indirect_analysis_usage_declaration_h
#include "llvm/Pass.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/SmallVector.h"
/* Defines the actions that would normally be provided by getAnalysisUsage but
* in an indirect manner.
*/
namespace ind... |
DrItanium/durandal | lib/electron/factrhs.c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/20/14 */
/* */
/* ... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSFunctionBuilder.h | #ifndef _clips_function_builder_h
#define _clips_function_builder_h
#include "ExpertSystem/CLIPSConstantBuilder.h"
using namespace llvm;
class CLIPSFunctionBuilder : public CLIPSGlobalValueBuilder {
public:
CLIPSFunctionBuilder(std::string nm, FunctionNamer& namer);
void setCallingConvention(CallingConv... |
DrItanium/durandal | include/indirect/IndirectPassGenerator.h | #ifndef _indirect_pass_generator_h
#define _indirect_pass_generator_h
#include "llvm/Pass.h"
#include "indirect/IndirectPassHeader.h"
#include "indirect/IndirectPasses.h"
namespace indirect {
class IndirectPassGeneratorBase {
public:
virtual llvm::Pass* createPass(IndirectPassHeader* header) = 0;
}... |
DrItanium/durandal | lib/electron/genrccom.c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/22/14 */
/* */
/* ... |
DrItanium/durandal | include/indirect/Indirector.h | #ifndef _indirect_indirector_h
#define _indirect_indirector_h
/*
* This file is a wrapper over the other include files that make up
* libindirect. It is meant to make libindirect easy to use
*/
#include "indirect/IndirectAnalysisUsageDeclaration.h"
#include "indirect/IndirectPasses.h"
#include "indirect/IndirectP... |
DrItanium/durandal | include/pipeline/clips/CLIPSPipelineFunctions.h | #ifndef _clips_pipeline_functions_h
#define _clips_pipeline_functions_h
extern "C" void RegisterCLIPSPipelineFunctions(void* theEnv);
namespace pipeline {
namespace clips {
void initializeCLIPSIndirector();
}
}
#endif
|
DrItanium/durandal | include/rampancy/CompilerManager.h | /*
* The CompilerManager is a custom pass manager that handles both dynamic
* compilation as well as knowledge construction in addition to being a
* standard pass manager.
*
* It also provides a standard way to register compilers with CLIPS through the
* IO router system. This makes it really easy to add new com... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSTypeBuilder.h | #ifndef _clips_type_builder_h
#define _clips_type_builder_h
#include "ExpertSystem/CLIPSObjectBuilder.h"
#include "llvm/Type.h"
using namespace llvm;
class CLIPSTypeBuilder : public CLIPSObjectBuilder {
public:
CLIPSTypeBuilder(std::string nm, FunctionNamer& namer, std::string ty = "LLVMType");
void addFields(Type... |
DrItanium/durandal | lib/electron/objrtbld.c | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* */
/* ... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSLoopBuilder.h | <gh_stars>1-10
#ifndef _loop_builder_h
#define _loop_builder_h
#include "ExpertSystem/CLIPSObjectBuilder.h"
#include "llvm/Analysis/LoopInfo.h"
class CLIPSLoopBuilder : public CLIPSObjectBuilder {
public:
CLIPSLoopBuilder(std::string nm, FunctionNamer& namer);
void addFields(Loop* loop, KnowledgeConstruc... |
DrItanium/durandal | include/maya/libmaya.h | /*
maya
Copyright (c) 2012-2014, <NAME>
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 and the... |
DrItanium/durandal | include/electron/genrccom.h | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/22/14 */
/* */
/* ... |
DrItanium/durandal | include/electron/rulebsc.h | <filename>include/electron/rulebsc.h
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/20/14 */
/* ... |
DrItanium/durandal | include/electron/cstrccom.h | <filename>include/electron/cstrccom.h<gh_stars>1-10
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/22/14 */
/* ... |
DrItanium/durandal | lib/maya/binops.c | <filename>lib/maya/binops.c
/*
maya
Copyright (c) 2012-2014, <NAME>
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, thi... |
DrItanium/durandal | include/knowledge/ClassSelector.h | <reponame>DrItanium/durandal
#ifndef CLASS_SELECTOR_H_
#define CLASS_SELECTOR_H_
#include "llvm/IR/Module.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/Operator.h"
#include "llvm/I... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSModuleBuilder.h | <reponame>DrItanium/durandal
#ifndef _clips_module_builder_h
#define _clips_module_builder_h
#include "ExpertSystem/CLIPSObjectBuilder.h"
using namespace llvm;
class CLIPSModuleBuilder : public CLIPSObjectBuilder {
public:
CLIPSModuleBuilder(std::string nm, std::string ty = "LLVMModule");
void build(Mo... |
DrItanium/durandal | include/knowledge/Engine.h | <reponame>DrItanium/durandal<gh_stars>1-10
#ifndef _ENGINE_H_
#define _ENGINE_H_
#include "llvm/IR/Module.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/Function.h"
#include "llvm/Analysis/RegionPass.h"
#include "llvm/Analysis/LoopPass.h"
extern "C" void RegisterEngineBookkeeping(void* theEnv);
namespace knowledg... |
DrItanium/durandal | include/knowledge/FunctionKnowledgeConversionPass.h | <reponame>DrItanium/durandal
#ifndef _function_knoledge_conversion_pass_h
#define _function_knoledge_conversion_pass_h
#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/Analysis/RegionInfo.h"
#include "llvm/Analysis/LoopInfo.h"
extern "C" {
#include "clips.h"
}
namespace knowledge {
struct FunctionKn... |
DrItanium/durandal | include/indirect/RegisterIndirectPass.h | #ifndef _register_indirect_pass_h
#define _register_indirect_pass_h
/* IndirectRegisterPass is a class used to register indirect passes in a fashion
* similar to how llvm::RegisterPass works.
*/
#include "llvm/Pass.h"
#include "indirect/IndirectPassHeader.h"
namespace indirect {
class RegisterIndirectPass : publ... |
DrItanium/durandal | include/indirect/IndirectPass.h | <filename>include/indirect/IndirectPass.h
#ifndef _indirect_pass_h
#define _indirect_pass_h
#include "indirect/IndirectPassHeader.h"
#include "llvm/Pass.h"
/* This class is meant to interface with the different template pass classes to
* provide the indirection functionality without having to reinvent the wheel
* fo... |
DrItanium/durandal | include/obsolete/ExpertSystem/KnowledgeConstructor.h | <filename>include/obsolete/ExpertSystem/KnowledgeConstructor.h<gh_stars>1-10
#ifndef _knowledge_construction_pass_h
#define _knowledge_construction_pass_h
#include "llvm/Module.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/Casting.h"
#include "llvm/Instruction.h"
#include "llvm/Instructions.h"
#includ... |
DrItanium/durandal | include/electron/sysdep.h | /*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.30 08/16/14 */
/* */
/* ... |
DrItanium/durandal | include/rampancy/Cortex.h | <gh_stars>1-10
#ifndef _rampancy_cortex_h
#define _rampancy_cortex_h
#include "rampancy/CompilerManager.h"
#include "rampancy/Compiler.h"
#include "rampancy/CompilerRegistry.h"
#include "llvm/Function.h"
#include "llvm/PassSupport.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/Compiler.h"
#include "... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSObjectBuilder.h | <filename>include/obsolete/ExpertSystem/CLIPSObjectBuilder.h<gh_stars>1-10
#ifndef _clips_object_builder_h
#define _clips_object_builder_h
#include <string.h>
#include "llvm/Support/raw_ostream.h"
#include "llvm/ADT/StringRef.h"
#include "ExpertSystem/Types.h"
#include "ExpertSystem/FunctionNamer.h"
#include "ExpertSys... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSInstructionBuilder.h | <reponame>DrItanium/durandal
#ifndef _instruction_construction_h
#define _instruction_construction_h
#include "ExpertSystem/CLIPSUserBuilder.h"
#include "llvm/Instruction.h"
#include "llvm/Instructions.h"
#include "llvm/IntrinsicInst.h"
class CLIPSInstructionBuilder : public CLIPSUserBuilder {
public:
CLIPSInstruct... |
DrItanium/durandal | include/pipeline/clips/CLIPSPass.h | <filename>include/pipeline/clips/CLIPSPass.h
#ifndef _clips_pass_h
#define _clips_pass_h
namespace pipeline {
namespace clips {
class CLIPSPass {
private:
void* envPtr;
public:
CLIPSPass();
~CLIPSPass();
void setEnvironment(void* theEnv);
... |
DrItanium/durandal | include/rampancy/ClangCompiler.h | #ifndef _rampancy_clang_compiler_h
#define _rampancy_clang_compiler_h
#include "clang/CodeGen/CodeGenAction.h"
#include "clang/Driver/Compilation.h"
#include "clang/Driver/Driver.h"
#include "clang/Driver/Tool.h"
#include "clang/Frontend/CompilerInvocation.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clan... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSConstantBuilder.h | #ifndef _constant_construction_h
#define _constant_construction_h
#include <string.h>
#include "ExpertSystem/CLIPSUserBuilder.h"
#include "llvm/Constant.h"
#include "llvm/Constants.h"
#include "llvm/GlobalVariable.h"
#include "llvm/GlobalValue.h"
#include "llvm/GlobalAlias.h"
using namespace llvm;
class CLIPSConstantB... |
DrItanium/durandal | include/rampancy/CompilerRegistry.h | <reponame>DrItanium/durandal
#ifndef _rampancy_compiler_registry_h
#define _rampancy_compiler_registry_h
#include "llvm/ADT/StringRef.h"
#include "rampancy/Compiler.h"
#include "llvm/ADT/StringMap.h"
namespace rampancy {
class CompilerRegistry {
typedef llvm::StringMap<rampancy::Compiler*> StringMapType;
... |
DrItanium/durandal | include/rampancy/LLVMIRCompiler.h | <reponame>DrItanium/durandal
#ifndef _rampancy_llvm_ir_compiler_h
#define _rampancy_llvm_ir_compiler_h
#include "llvm/Module.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ExecutionEngine/JIT.h"
#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include "llvm/Support/ManagedStatic.... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSBasicBlockBuilder.h | #ifndef _clips_basic_block_builder_h
#define _clips_basic_block_builder_h
#include "ExpertSystem/CLIPSValueBuilder.h"
#include "llvm/BasicBlock.h"
using namespace llvm;
class CLIPSBasicBlockBuilder : public CLIPSValueBuilder {
public:
CLIPSBasicBlockBuilder(std::string nm, FunctionNamer& namer);
void ad... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSArgumentBuilder.h | <gh_stars>1-10
#ifndef _argument_builder_h
#define _argument_builder_h
#include "ExpertSystem/CLIPSValueBuilder.h"
#include "ExpertSystem/KnowledgeConstructor.h"
#include "llvm/Argument.h"
using namespace llvm;
class CLIPSArgumentBuilder : public CLIPSValueBuilder {
public:
CLIPSArgumentBuilder(std::string nm... |
DrItanium/durandal | include/obsolete/ExpertSystem/CLIPSValueBuilder.h | #ifndef _clips_value_builder_h
#define _clips_value_builder_h
#include "llvm/Value.h"
#include "ExpertSystem/CLIPSObjectBuilder.h"
using namespace llvm;
class CLIPSValueBuilder : public CLIPSObjectBuilder {
public:
CLIPSValueBuilder(std::string nm, std::string ty, FunctionNamer& namer);
void setType(T... |
JankoLancer/uptime | ios/Classes/UptimePlugin.h | <gh_stars>1-10
#import <Flutter/Flutter.h>
@interface UptimePlugin : NSObject<FlutterPlugin>
@end
|
TriHardStudios/TSA-Software-2019 | Acrylic_Backend/UserInput/GLFWBackend.h | //
// Created by <NAME> on 3/11/20.
//
#ifndef ACRYLIC2D_GLFWBACKEND_H
#define ACRYLIC2D_GLFWBACKEND_H
#include "WindowBackend.hpp"
class GLFWBackend: public WindowBackend<void (GLFWwindow*, int, int, int, int),
void(GLFWwindow*, int, int, int), void(GLFWwindow*, double, double)> {
std::map<KeyTriple, Ke... |
TriHardStudios/TSA-Software-2019 | Acrylic_Backend/Timers/acrylic_frameTimer.h | <filename>Acrylic_Backend/Timers/acrylic_frameTimer.h<gh_stars>1-10
#ifndef PLEXI_FRAMETIMER_H
#define PLEXI_FRAMETIMER_H
#include <chrono>
namespace A2D::Timers{
class FrameTimer {
public:
std::chrono::time_point<std::chrono::system_clock> start;
void startTimer();
double getTime... |
TriHardStudios/TSA-Software-2019 | Acrylic_Backend/BackendAPIs/AcrylicSaveEngine/FileSystemBackend/acrylic_bitmap.h | <filename>Acrylic_Backend/BackendAPIs/AcrylicSaveEngine/FileSystemBackend/acrylic_bitmap.h
#ifndef ACRYLIC_BITMAP_H
#define ACRYLIC_BITMAP_H
#include <iostream>
#include <fstream>
#include <string>
#include <ths/log.hpp>
namespace A2D::Filesystem::Loaders::Bitmaps {
struct Image
{
int height;
... |
TriHardStudios/TSA-Software-2019 | Acrylic_Backend/acrylic_random.h | <reponame>TriHardStudios/TSA-Software-2019
//
// Created by coolh on 1/8/2020.
//
// Copyright (c) 2014, <NAME> <<EMAIL>>
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistribu... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/plugins/crypto_native/aes_cbc_neon.h | /*
*------------------------------------------------------------------
* Copyright (c) 2020 Cisco and/or its affiliates.
* 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... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/plugins/crypto_native/aes_cbc_aesni.h | <filename>src/plugins/crypto_native/aes_cbc_aesni.h<gh_stars>1-10
/*
*------------------------------------------------------------------
* Copyright (c) 2020 Cisco and/or its affiliates.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Licen... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/vppinfra/time.c | /*
* Copyright (c) 2015 Cisco and/or its affiliates.
* 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... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/plugins/srv6-mobile/node.c | /*
* Copyright (c) 2019 Arrcus Inc and/or its affiliates.
* 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 appl... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/vppinfra/cpu.c | <filename>src/vppinfra/cpu.c
/*
* Copyright (c) 2016 Cisco and/or its affiliates.
* 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
*
*... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/vnet/udp/udp.c | <gh_stars>10-100
/*
* Copyright (c) 2016-2019 Cisco and/or its affiliates.
* 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... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/plugins/crypto_native/aes_cbc.c | <gh_stars>1-10
/*
*------------------------------------------------------------------
* Copyright (c) 2019 Cisco and/or its affiliates.
* 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:
*
... |
OPENAIRINTERFACE/openair-spgwc-vpp-tp | src/plugins/crypto_native/aes.h | /*
*------------------------------------------------------------------
* Copyright (c) 2020 Cisco and/or its affiliates.
* 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... |
tnhmb/CustomRestManager | CustomRestManager/CustomRestManager.h | <gh_stars>0
//
// CustomRestManager.h
// CustomRestManager
//
// Created by <NAME> on 31/08/2019.
// Copyright © 2019 <NAME>. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for CustomRestManager.
FOUNDATION_EXPORT double CustomRestManagerVersionNumber;
//! Project version string for C... |
jacky00000000love/XMTest | Example/XMTest/XMAppDelegate.h | <gh_stars>0
//
// XMAppDelegate.h
// XMTest
//
// Created by oauth2 on 03/07/2022.
// Copyright (c) 2022 oauth2. All rights reserved.
//
@import UIKit;
@interface XMAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
jacky00000000love/XMTest | Example/Pods/Target Support Files/XMLYTest/XMLYTest-umbrella.h | <filename>Example/Pods/Target Support Files/XMLYTest/XMLYTest-umbrella.h
#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
#import "XMTestManager.h"
FOUNDATION_EXPORT double ... |
jacky00000000love/XMTest | Example/XMTest/XMViewController.h | <filename>Example/XMTest/XMViewController.h<gh_stars>0
//
// XMViewController.h
// XMTest
//
// Created by oauth2 on 03/07/2022.
// Copyright (c) 2022 oauth2. All rights reserved.
//
@import UIKit;
@interface XMViewController : UIViewController
@end
|
jacky00000000love/XMTest | XMTest/Classes/XMTestManager.h | <reponame>jacky00000000love/XMTest<gh_stars>0
//
// XMTestManager.h
// XMTest
//
// Created by xmly on 2022/3/7.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XMTestManager : NSObject
+ (XMTestManager*)shareInstance;
- (void)printArgs:(NSString*)str;
@end
NS_ASSUME_NONNULL_END
|
therodfather/Moonbounce | Moonbounce/Moonbounce-Bridging-Header.h | //
// Moonbounce-Bridging-Header.h
// Moonbounce
//
// Created by Dr. <NAME> on 9/14/20.
// Copyright © 2020 operatorfoundation.org. All rights reserved.
//
#ifndef Moonbounce_Bridging_Header_h
#define Moonbounce_Bridging_Header_h
#endif /* Moonbounce_Bridging_Header_h */
|
rding2454/vtr7 | ODIN_II/SRC/verilog_bison.h | /* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton interface for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU... |
vbouquet/tutoriel-ast-clang | exemples/file.c | <gh_stars>1-10
#include <stdio.h>
int somme(int a, int b) {
return a + b;
}
int division(int a, int b) {
return a / b;
}
void hello_world() {
printf("Hello World!\n");
}
int main(int argc, char *argv[]) {
int a=1, b=2;
hello_world();
somme(a, b);
division(a, b);
return 0;
} |
defuliu/ZGHubPods | Example/ZGPodsWorks/ZGViewController.h | <filename>Example/ZGPodsWorks/ZGViewController.h
//
// ZGViewController.h
// ZGPodsWorks
//
// Created by defuliu on 06/01/2020.
// Copyright (c) 2020 defuliu. All rights reserved.
//
@import UIKit;
@interface ZGViewController : UIViewController
@end
|
defuliu/ZGHubPods | ZGPodsWorks/Classes/Model/ZGEntityBase.h | <filename>ZGPodsWorks/Classes/Model/ZGEntityBase.h
//
// ZGEntityBase.h
// FatDogLogistics
//
// Created by Sandy on 16/11/8.
// Copyright © 2016年 Sandy. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface ZGEntityBase : NSObject
/** @解析
itemFromDict: 将 NSDictionary数据解析成本对象
@return ZGEntityBas... |
rue-ryuzaki/stopwatch | src/stopwatch.h | #ifndef STOPWATCH_H_
#define STOPWATCH_H_
#include <chrono>
#include <cstdint>
#include <string>
// -----------------------------------------------------------------------------
// -- Stopwatch ----------------------------------------------------------------
// --------------------------------------------------------... |
doomyster/cpp-misctools | src/cppmt-env.h | /*
Copyright © 2013-2015 <NAME> <<EMAIL>>. 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 a... |
doomyster/cpp-misctools | src/cppmt-zlib.h | <reponame>doomyster/cpp-misctools
#ifndef CPPMT_ZLIB_H_
#define CPPMT_ZLIB_H_
#include <iostream>
#include <string>
#include "zlib.h"
namespace cppmt
{
// Internal types. User won't need these
// Usage: avoid code duplication.
// {
typedef int (*flate_fn_t)(z_streamp, int);
template <flate_fn_t T>
class Z_handler
{... |
doomyster/cpp-misctools | src/cppmt-sqlite.h | /*
Copyright © 2014 <NAME> <<EMAIL>>. All Rights Reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and th... |
doomyster/cpp-misctools | src/cppmt-string.h | /*
Copyright © 2013-2014 <NAME> <<EMAIL>>. 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 a... |
doomyster/cpp-misctools | src/cppmt-encoding.h | <reponame>doomyster/cpp-misctools
#ifndef CPPMT_ENCODING_H_
#define CPPMT_ENCODING_H_
#include <string>
#include <iostream>
namespace cppmt
{
namespace base64
{
std::string encode(const char* in, size_t s);
std::string encode(const std::string& in);
void encode(const std::string& in, std::string& out);
void... |
doomyster/cpp-misctools | src/cppmt-exceptions.h | <filename>src/cppmt-exceptions.h
/*
Copyright © 2013-2014 <NAME> <<EMAIL>>. 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 ... |
doomyster/cpp-misctools | src/cppmt-getopt.h | /*
Copyright © 2013-2014 <NAME> <<EMAIL>>. 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 a... |
HiromuKato/UE4HoloSample | UE4HoloSample/Source/UE4HoloSample/Public/HoloLensWinrtDLL.h | #pragma once
class HoloLensWinrtDLL
{
public:
_declspec(dllexport) static void OpenFileDialogue();
}; |
Guitarheroua/quickflux | src/qfappscript.h | #ifndef QFAPPSCRIPT_H
#define QFAPPSCRIPT_H
#include <QObject>
#include <QJSValue>
#include <QQmlScriptString>
#include <QQuickItem>
#include <QQmlParserStatus>
#include <QPointer>
#include <QFAppDispatcher>
#include "priv/qfappscriptrunnable.h"
class QFAppScript : public QQuickItem
{
Q_OBJECT
Q_PROPERTY(QQml... |
Guitarheroua/quickflux | src/qfstore.h | #ifndef QFSTORE_H
#define QFSTORE_H
#include <QObject>
#include <QQmlListProperty>
#include <QJSValue>
#include <QPointer>
#include <QQmlParserStatus>
#include "qfactioncreator.h"
#include "qfdispatcher.h"
class QFStore : public QObject
{
Q_OBJECT
Q_PROPERTY(QObject* bindSource READ bindSource WRITE setBindSo... |
Guitarheroua/quickflux | src/qfdispatcher.h | #pragma once
#include <QObject>
#include <QVariantMap>
#include <QJSValue>
#include <QQueue>
#include <QPair>
#include <QQmlEngine>
#include <QPointer>
#include "priv/qflistener.h"
#include "priv/qfhook.h"
/// Message Dispatcher
class QFDispatcher : public QObject
{
Q_OBJECT
public:
explicit QFDispatcher(QObj... |
Guitarheroua/quickflux | src/qfhydrate.h | #ifndef QFHYDRATE_H
#define QFHYDRATE_H
#include <QObject>
#include <QVariantMap>
class QFHydrate : public QObject
{
Q_OBJECT
public:
explicit QFHydrate(QObject *parent = nullptr);
signals:
public slots:
void rehydrate(QObject *dest, const QVariantMap & source);
QVariantMap dehydrate(QObject *sourc... |
Guitarheroua/quickflux | src/qfappdispatcher.h | <reponame>Guitarheroua/quickflux<gh_stars>0
#ifndef QFAPPDISPATCHER_H
#define QFAPPDISPATCHER_H
#include <QObject>
#include "qfdispatcher.h"
class QFAppDispatcher : public QFDispatcher
{
Q_OBJECT
public:
explicit QFAppDispatcher(QObject *parent = nullptr);
/// Obtain the singleton instance of AppDispatch... |
Guitarheroua/quickflux | src/qfappscriptgroup.h | #pragma once
#include <QQuickItem>
#include <QPointer>
#include "qfappscript.h"
class QFAppScriptGroup : public QQuickItem
{
Q_OBJECT
Q_PROPERTY(QJSValue scripts READ scripts WRITE setScripts NOTIFY scriptsChanged)
public:
QFAppScriptGroup(QQuickItem* parent = nullptr);
QJSValue scripts() const;
... |
Guitarheroua/quickflux | src/qfapplistenergroup.h | <filename>src/qfapplistenergroup.h<gh_stars>0
#ifndef QFAPPLISTENERGROUP_H
#define QFAPPLISTENERGROUP_H
#include <QQuickItem>
#include <QQmlParserStatus>
#include "priv/qflistener.h"
class QFAppListenerGroup : public QQuickItem
{
Q_OBJECT
Q_PROPERTY(QVector<int> listenerIds READ listenerIds WRITE setListenerI... |
Guitarheroua/quickflux | src/priv/qflistener.h | <filename>src/priv/qflistener.h
#ifndef QFLISTENER_H
#define QFLISTENER_H
#include <QObject>
#include <QJSValue>
#include <QVector>
class QFDispatcher;
/// A listener class for AppDispatcher.
class QFListener : public QObject
{
Q_OBJECT
public:
explicit QFListener(QObject *parent = nullptr);
~QFListener... |
Guitarheroua/quickflux | src/priv/quickfluxfunctions.h | <filename>src/priv/quickfluxfunctions.h
#ifndef QUICKFLUXFUNCTIONS_H
#define QUICKFLUXFUNCTIONS_H
#include <QJSValue>
namespace QuickFlux {
void printException(const QJSValue &value);
}
#if ((QT_VERSION == QT_VERSION_CHECK(5,7,1)) || \
(QT_VERSION == QT_VERSION_CHECK(5,8,0)) || \
(QT_VERSION == QT_VERSIO... |
Guitarheroua/quickflux | src/qfactioncreator.h | <reponame>Guitarheroua/quickflux<filename>src/qfactioncreator.h
#ifndef QFACTIONCREATOR_H
#define QFACTIONCREATOR_H
#include <QObject>
#include <QQmlParserStatus>
#include <QFAppDispatcher>
#include <QPointer>
#include "priv/qfsignalproxy.h"
class QFActionCreator : public QObject, public QQmlParserStatus
{
Q_OBJE... |
Guitarheroua/quickflux | src/priv/qfhook.h | <gh_stars>0
#pragma once
#include <QObject>
#include <QJSValue>
class QFHook : public QObject
{
Q_OBJECT
public:
using QObject::QObject;
virtual void dispatch(const QString &type, const QJSValue &message) = 0;
signals:
void dispatched(const QString &type, const QJSValue &message);
};
|
RIP95/SP_Adapter | Middlewares/ST/STM32_USB_Device_Library/Class/HID/Inc/usbd_hid.h | /**
******************************************************************************
* @file usbd_hid.h
* @author MCD Application Team
* @version V2.4.2
* @date 11-December-2015
* @brief Header file for the usbd_hid_core.c file.
**********************************************************************... |
RIP95/SP_Adapter | SP_Profiler/Inc/Hidsdi++.h | <reponame>RIP95/SP_Adapter<filename>SP_Profiler/Inc/Hidsdi++.h
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
HIDDLL.H
Abstract:
This module contains the PUBLIC definitions for the
code that implements the HID dll.
Environment:
Kernel & user mode
Revision History:
Aug-96 : cr... |
RIP95/SP_Adapter | Src/main.c | /**
******************************************************************************
* File Name : main.c
* Description : Main program body
******************************************************************************
*
* COPYRIGHT(c) 2016 STMicroelectronics
*
* Redistribution and use in ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.