commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
|---|---|---|---|---|---|---|---|---|---|
7bddee2c910460fc164840003b8a2c0c3b1dd284
|
kbase/basic_macros.h
|
kbase/basic_macros.h
|
/*
@ 0xCCCCCCCC
*/
#if defined(_MSC_VER)
#pragma once
#endif
#ifndef KBASE_BASIC_MACROS_H_
#define KBASE_BASIC_MACROS_H_
#define DISALLOW_COPY(CLASSNAME) \
CLASSNAME(const CLASSNAME&) = delete; \
CLASSNAME& operator=(const CLASSNAME&) = delete
#define DISALLOW_MOVE(CLASSNAME) \
CLASSNAME(CLASSNAME&&) = delete; \
CLASSNAME& operator=(CLASSNAME&&) = delete
#endif // KBASE_BASIC_MACROS_H_
|
/*
@ 0xCCCCCCCC
*/
#if defined(_MSC_VER)
#pragma once
#endif
#ifndef KBASE_BASIC_MACROS_H_
#define KBASE_BASIC_MACROS_H_
#define DISALLOW_COPY(CLASSNAME) \
CLASSNAME(const CLASSNAME&) = delete; \
CLASSNAME& operator=(const CLASSNAME&) = delete
#define DISALLOW_MOVE(CLASSNAME) \
CLASSNAME(CLASSNAME&&) = delete; \
CLASSNAME& operator=(CLASSNAME&&) = delete
#define UNREFED_VAR(x) \
::kbase::internal::SilenceUnusedVariableWarning(x)
// Put complicated implementation below.
namespace kbase {
namespace internal {
template<typename T>
void SilenceUnusedVariableWarning(T&&)
{}
} // namespace internal
} // namespace kbase
#endif // KBASE_BASIC_MACROS_H_
|
Add a macro UNREFED_VAR to silence unused variables warning.
|
Add a macro UNREFED_VAR to silence unused variables warning.
|
C
|
mit
|
kingsamchen/KBase,kingsamchen/KBase_Demo,kingsamchen/KBase,kingsamchen/KBase_Demo
|
75b1676847e0d2d0b0de1cd80de17a16d8259569
|
Classes/TGSessionTokenNotifier.h
|
Classes/TGSessionTokenNotifier.h
|
#import <Foundation/Foundation.h>
@protocol TGSessionTokenNotifier <NSObject>
+(void)sessionTokenSet:(NSString*)token;
@end
|
#import <Foundation/Foundation.h>
@protocol TGSessionTokenNotifier <NSObject>
-(void)sessionTokenSet:(NSString*)token;
@end
|
Make token notifier method instance method
|
Make token notifier method instance method
|
C
|
apache-2.0
|
tapglue/ios_sdk,tapglue/ios_sdk,tapglue/snaasSdk-iOS,tapglue/snaasSdk-iOS,tapglue/snaasSdk-iOS,tapglue/ios_sdk
|
d997a15d48dd2d756b4aed69cae32df7d28c94de
|
linesrc.h
|
linesrc.h
|
#ifndef LINESRC_HPP
#define LINESRC_HPP
#include <stdint.h>
#include <string>
class haxpp_linesource {
private:
linecount_t lineno_start = 0;
linecount_t lineno = 0;
std::string sourcepath;
FILE* fp = nullptr;
char* line = nullptr;
size_t line_alloc = 0;
bool fp_owner = false;
public:
static constexpr size_t line_alloc_minimum = 32u;
static constexpr size_t line_alloc_default = 1200u;
static constexpr size_t line_alloc_maximum = 65536u;
public:
inline const std::string& getsourcename() const {
return sourcepath;
}
inline size_t linesize() const { /* total buffer size including room for NUL terminator */
return line_alloc;
}
inline linecount_t currentline() const {
return lineno;
}
public:
haxpp_linesource();
~haxpp_linesource();
public:
void setsource();
void setsource(FILE *_fp);
void setsource(const std::string &path);
bool lineresize(const size_t newsz);
void close();
bool is_open() const;
bool eof() const;
bool error() const;
bool open();
char *readline();
};
#endif /*LINESRC_HPP*/
|
#ifndef LINESRC_HPP
#define LINESRC_HPP
#include <stdint.h>
#include <string>
class haxpp_linesource {
private:
linecount_t lineno_start = 0;
linecount_t lineno = 0;
std::string sourcepath;
FILE* fp = nullptr;
char* line = nullptr;
size_t line_alloc = 0;
bool fp_owner = false;
public:
static constexpr size_t line_alloc_minimum = 32u;
static constexpr size_t line_alloc_default = 1200u;
static constexpr size_t line_alloc_maximum = 65536u;
public:
inline const std::string& getsourcename() const {
return sourcepath;
}
inline size_t linesize() const { /* total buffer size including room for NUL terminator */
return line_alloc;
}
inline linecount_t currentline() const {
return lineno_start;
}
public:
haxpp_linesource();
~haxpp_linesource();
public:
void setsource();
void setsource(FILE *_fp);
void setsource(const std::string &path);
bool lineresize(const size_t newsz);
void close();
bool is_open() const;
bool eof() const;
bool error() const;
bool open();
char *readline();
};
#endif /*LINESRC_HPP*/
|
Fix line number off by 1 error
|
Fix line number off by 1 error
|
C
|
lgpl-2.1
|
joncampbell123/haxcc,joncampbell123/haxcc,joncampbell123/haxcc,joncampbell123/haxcc,joncampbell123/haxcc
|
6978320135e27b7c13a90d26b2bf8b2ba990706d
|
contrib/other-builds/moses2/Search/SearchCubePruning.h
|
contrib/other-builds/moses2/Search/SearchCubePruning.h
|
/*
* SearchCubePruning.h
*
* Created on: 16 Nov 2015
* Author: hieu
*/
#pragma once
#include <vector>
#include <boost/unordered_map.hpp>
#include "Search.h"
class Bitmap;
class SearchCubePruning : public Search
{
public:
SearchCubePruning(Manager &mgr, Stacks &stacks);
virtual ~SearchCubePruning();
void Decode(size_t stackInd);
const Hypothesis *GetBestHypothesis() const;
protected:
boost::unordered_map<Bitmap*, std::vector<const Hypothesis*> > m_hyposPerBM;
};
|
/*
* SearchCubePruning.h
*
* Created on: 16 Nov 2015
* Author: hieu
*/
#ifndef SEARCH_SEARCHCUBEPRUNING_H_
#define SEARCH_SEARCHCUBEPRUNING_H_
#include "Search.h"
class SearchCubePruning : public Search
{
public:
SearchCubePruning(Manager &mgr, Stacks &stacks);
virtual ~SearchCubePruning();
void Decode(size_t stackInd);
const Hypothesis *GetBestHypothesis() const;
};
#endif /* SEARCH_SEARCHCUBEPRUNING_H_ */
|
Revert "for each input path.2"
|
Revert "for each input path.2"
This reverts commit 69e4cb0531ec93868ccc06ec54d52a4f88d62295.
|
C
|
lgpl-2.1
|
tofula/mosesdecoder,moses-smt/mosesdecoder,moses-smt/mosesdecoder,alvations/mosesdecoder,tofula/mosesdecoder,alvations/mosesdecoder,moses-smt/mosesdecoder,alvations/mosesdecoder,moses-smt/mosesdecoder,alvations/mosesdecoder,alvations/mosesdecoder,moses-smt/mosesdecoder,alvations/mosesdecoder,alvations/mosesdecoder,tofula/mosesdecoder,alvations/mosesdecoder,tofula/mosesdecoder,tofula/mosesdecoder,moses-smt/mosesdecoder,tofula/mosesdecoder,tofula/mosesdecoder,alvations/mosesdecoder,tofula/mosesdecoder,moses-smt/mosesdecoder,moses-smt/mosesdecoder,tofula/mosesdecoder,tofula/mosesdecoder,moses-smt/mosesdecoder,alvations/mosesdecoder,alvations/mosesdecoder,tofula/mosesdecoder,moses-smt/mosesdecoder,moses-smt/mosesdecoder
|
fcdccff46beacec0b37271d75f1ced3093a773e2
|
perl_mongo.h
|
perl_mongo.h
|
#ifndef PERL_MONGO
#define PERL_MONGO
#include <mongo/client/dbclient.h>
extern "C" {
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#define PERL_MONGO_CALL_BOOT(name) perl_mongo_call_xs (aTHX_ name, cv, mark)
void perl_mongo_call_xs (pTHX_ void (*subaddr) (pTHX_ CV *cv), CV *cv, SV **mark);
SV *perl_mongo_call_reader (SV *self, const char *reader);
void perl_mongo_attach_ptr_to_instance (SV *self, void *ptr);
void *perl_mongo_get_ptr_from_instance (SV *self);
SV *perl_mongo_construct_instance (const char *klass, ...);
SV *perl_mongo_construct_instance_va (const char *klass, va_list ap);
SV *perl_mongo_construct_instance_with_magic (const char *klass, void *ptr, ...);
SV *perl_mongo_bson_to_sv (const char *oid_class, mongo::BSONObj obj);
mongo::BSONObj perl_mongo_sv_to_bson (SV *sv, const char *oid_class);
}
#endif
|
#ifndef PERL_MONGO
#define PERL_MONGO
#include <mongo/client/dbclient.h>
extern "C" {
#define PERL_GCC_BRACE_GROUPS_FORBIDDEN
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#define PERL_MONGO_CALL_BOOT(name) perl_mongo_call_xs (aTHX_ name, cv, mark)
void perl_mongo_call_xs (pTHX_ void (*subaddr) (pTHX_ CV *cv), CV *cv, SV **mark);
SV *perl_mongo_call_reader (SV *self, const char *reader);
void perl_mongo_attach_ptr_to_instance (SV *self, void *ptr);
void *perl_mongo_get_ptr_from_instance (SV *self);
SV *perl_mongo_construct_instance (const char *klass, ...);
SV *perl_mongo_construct_instance_va (const char *klass, va_list ap);
SV *perl_mongo_construct_instance_with_magic (const char *klass, void *ptr, ...);
SV *perl_mongo_bson_to_sv (const char *oid_class, mongo::BSONObj obj);
mongo::BSONObj perl_mongo_sv_to_bson (SV *sv, const char *oid_class);
}
#endif
|
Stop the headers of debugging perls to generate gcc brace groups.
|
Stop the headers of debugging perls to generate gcc brace groups.
Those don't work with g++ easily.
|
C
|
apache-2.0
|
xdg/mongo-perl-driver,kainwinterheart/mongo-perl-driver,kainwinterheart/mongo-perl-driver,rahuldhodapkar/mongo-perl-driver,kainwinterheart/mongo-perl-driver,gormanb/mongo-perl-driver,dagolden/mongo-perl-driver,gormanb/mongo-perl-driver,jorol/mongo-perl-driver,mongodb/mongo-perl-driver,mongodb/mongo-perl-driver,gormanb/mongo-perl-driver,jorol/mongo-perl-driver,dagolden/mongo-perl-driver,xdg/mongo-perl-driver,gormanb/mongo-perl-driver,dagolden/mongo-perl-driver,rahuldhodapkar/mongo-perl-driver,jorol/mongo-perl-driver,jorol/mongo-perl-driver,rahuldhodapkar/mongo-perl-driver,rahuldhodapkar/mongo-perl-driver,kainwinterheart/mongo-perl-driver,mongodb/mongo-perl-driver,xdg/mongo-perl-driver,dagolden/mongo-perl-driver
|
0e5ec0300f6b37d9e5126dfc650fe7fcda09b0df
|
common/i2c_utils.h
|
common/i2c_utils.h
|
// Derived from blog post at http://www.ermicro.com/blog/?p=1239
#ifndef __I2C_UTILS_H__
#define __I2C_UTILS_H__
#define I2C_MAX_TRIES 50 // Connection attempts (0 < tries < 255)
#define I2C_START 0
#define I2C_DATA 1
#define I2C_DATA_ACK 2
#define I2C_STOP 3
void i2c_init(void);
unsigned char i2c_transmit(unsigned char type);
char i2c_start(unsigned int dev_id, unsigned int dev_addr, unsigned char rw_type);
void i2c_stop(void);
char i2c_write(char data);
char i2c_read(char *data, char ack_type);
#endif /*__I2C_UTILS_H__*/
|
// Derived from blog post at http://www.ermicro.com/blog/?p=1239
#ifndef __I2C_UTILS_H__
#define __I2C_UTILS_H__
#include <compat/twi.h>
#define I2C_MAX_TRIES 50 // Connection attempts (0 < tries < 255)
#define I2C_START 0
#define I2C_DATA 1
#define I2C_DATA_ACK 2
#define I2C_STOP 3
#define I2C_SCL 100000L // Set I2C clock to 100 kHz
void i2c_init(void);
uint8_t i2c_transmit(uint8_t type);
char i2c_start(uint8_t dev_addr, uint8_t rw_type);
void i2c_stop(void);
char i2c_write(char data);
char i2c_read(char *data, char ack_type);
// Higher-level convenience functions composed from functions above.
void i2c_write_byte(uint8_t dev_addr, char data);
void i2c_write_byte_to_register(uint8_t dev_addr, uint8_t reg, char data);
uint8_t i2c_read_byte_from_register(uint8_t dev_addr, uint8_t reg_addr);
#endif /*__I2C_UTILS_H__*/
|
Add high-level write and read functions
|
Add high-level write and read functions
|
C
|
mit
|
andrewadare/avr-breadboarding,andrewadare/avr-breadboarding
|
950cd3117ba5a838c2ccc29c3deed419f591ec52
|
src/condor_syscall_lib/scanner.h
|
src/condor_syscall_lib/scanner.h
|
#define DUMMY 0
#define FUNC 1
#define PARAM 2
#define XFER_FUNC 3
#define ALLOC_FUNC 4
#define ACTION_PARAM 5
#define NOSUPP_FUNC 6
struct token {
int tok_type;
char *val;
};
struct node {
int node_type;
char *type_name;
char *id;
int is_ptr;
int is_const;
int is_const_ptr;
int is_mapped;
int is_array;
int is_ref;
int in_param;
int out_param;
int extract;
struct node *next;
struct node *prev;
struct node *param_list;
struct node *action_func_list;
};
#define XDR_FUNC id
struct p_mode {
int in;
int out;
};
union yystype {
struct token tok;
struct node *node;
struct p_mode param_mode;
int bool;
};
#define YYSTYPE union yystype
|
#define DUMMY 0
#define FUNC 1
#define PARAM 2
#define XFER_FUNC 3
#define ALLOC_FUNC 4
#define ACTION_PARAM 5
#define NOSUPP_FUNC 6
struct token {
int tok_type;
char *val;
};
struct node {
int node_type;
char *type_name;
char *id;
int is_ptr;
int is_const;
int is_const_ptr;
int is_mapped;
int is_array;
int is_ref;
int in_param;
int out_param;
int extract;
int pseudo;
struct node *next;
struct node *prev;
struct node *param_list;
struct node *action_func_list;
};
#define XDR_FUNC id
struct p_mode {
int in;
int out;
};
union yystype {
struct token tok;
struct node *node;
struct p_mode param_mode;
int bool;
};
#define YYSTYPE union yystype
|
Add boolean node attirbute "pseudo" to describe whether a given system call is a "normal" one, or a "pseudo" call. This needs to be know by the receivers where normal syscalls can be invoked directly by their name, but pseudo calls must have hand written code to handle their functionality.
|
Add boolean node attirbute "pseudo" to describe whether a given system
call is a "normal" one, or a "pseudo" call. This needs to be know
by the receivers where normal syscalls can be invoked directly by their
name, but pseudo calls must have hand written code to handle their
functionality.
|
C
|
apache-2.0
|
djw8605/htcondor,htcondor/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,neurodebian/htcondor,djw8605/condor,mambelli/osg-bosco-marco,neurodebian/htcondor,neurodebian/htcondor,bbockelm/condor-network-accounting,djw8605/condor,htcondor/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,djw8605/condor,htcondor/htcondor,djw8605/htcondor,clalancette/condor-dcloud,clalancette/condor-dcloud,djw8605/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,djw8605/condor,djw8605/htcondor,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,mambelli/osg-bosco-marco,mambelli/osg-bosco-marco,zhangzhehust/htcondor,zhangzhehust/htcondor,zhangzhehust/htcondor,djw8605/condor,mambelli/osg-bosco-marco,zhangzhehust/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,djw8605/condor,neurodebian/htcondor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,htcondor/htcondor,mambelli/osg-bosco-marco,djw8605/htcondor,neurodebian/htcondor,djw8605/htcondor,zhangzhehust/htcondor,djw8605/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,htcondor/htcondor,bbockelm/condor-network-accounting,djw8605/condor,bbockelm/condor-network-accounting,djw8605/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,clalancette/condor-dcloud,djw8605/condor,mambelli/osg-bosco-marco,clalancette/condor-dcloud,zhangzhehust/htcondor,zhangzhehust/htcondor,mambelli/osg-bosco-marco,zhangzhehust/htcondor,mambelli/osg-bosco-marco
|
43c43e4f97d54054fc66c082fd43aef514a68d8e
|
test2/vla/standard_nonconst.c
|
test2/vla/standard_nonconst.c
|
// RUN: %ocheck 1 '-DNULL=(void *)0'
// RUN: %ocheck 0 '-DNULL=0'
int null_is_ptr_type()
{
char s[1][1+(int)NULL];
int i = 0;
sizeof s[i++];
return i;
}
main()
{
return null_is_ptr_type();
}
|
// RUN: %ocheck 1 %s '-DNULL=(void *)0'
// RUN: %ocheck 0 %s '-DNULL=0'
int null_is_ptr_type()
{
char s[1][1+(int)NULL];
int i = 0;
sizeof s[i++];
return i;
}
main()
{
return null_is_ptr_type();
}
|
Fix standard-nonconst vla test commands
|
Fix standard-nonconst vla test commands
|
C
|
mit
|
8l/ucc-c-compiler,8l/ucc-c-compiler,8l/ucc-c-compiler,8l/ucc-c-compiler
|
5cccac451299783f7d54cb7305f34c8966ed0dc3
|
Pod/Classes/Internal/Messages.h
|
Pod/Classes/Internal/Messages.h
|
//
// Messages.h
// Pods
//
// Created by Tyler Clemens on 6/2/16.
//
//
#import <Foundation/Foundation.h>
#import "STMMessage.h"
@protocol MessagesDelegate <NSObject>
@optional
- (void)MessagesResults:(NSArray *_Nullable)arrayMessages;
- (void)UnreadMessageResults:(NSNumber *_Nullable)count;
@end
@interface Messages : NSObject <STMHTTPResponseHandlerDelegate>
+ (void)initAll;
+ (void)freeAll;
+ (Messages *_Nonnull)controller;
- (void)requestForMessagesWithDelegate:(id<MessagesDelegate> _Nullable)delegate;
- (void)requestForUnreadMessageCountWithDelegate:(id<MessagesDelegate> _Nullable)delegate;
- (void)requestForMessage:(NSString * _Nonnull)messageId completionHandler:(void (^_Nullable)(NSError *_Nullable, id _Nullable))completionHandler;
- (void)cancelAllRequests;
@end
|
//
// Messages.h
// Pods
//
// Created by Tyler Clemens on 6/2/16.
//
//
#import <Foundation/Foundation.h>
#import "STMMessage.h"
#import "STMNetworking.h"
@protocol MessagesDelegate <NSObject>
@optional
- (void)MessagesResults:(NSArray *_Nullable)arrayMessages;
- (void)UnreadMessageResults:(NSNumber *_Nullable)count;
@end
@interface Messages : NSObject <STMHTTPResponseHandlerDelegate>
+ (void)initAll;
+ (void)freeAll;
+ (Messages *_Nonnull)controller;
- (void)requestForMessagesWithDelegate:(id<MessagesDelegate> _Nullable)delegate;
- (void)requestForUnreadMessageCountWithDelegate:(id<MessagesDelegate> _Nullable)delegate;
- (void)requestForMessage:(NSString * _Nonnull)messageId completionHandler:(void (^_Nullable)(NSError *_Nullable, id _Nullable))completionHandler;
- (void)cancelAllRequests;
@end
|
Fix a linking issue found by lint
|
Fix a linking issue found by lint
|
C
|
mit
|
ShoutToMe/stm-sdk-ios,ShoutToMe/stm-sdk-ios
|
a46961b8dfe0a112097299e053c3d0cc5af13ab8
|
test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/PrivateHeaders/SubPriv.h
|
test/Modules/Inputs/HasSubModules.framework/Frameworks/Sub.framework/PrivateHeaders/SubPriv.h
|
#include <Sub/Types.h>
// Private
|
#include <Sub/Types.h>
// This comment ensures that this file is not identical to
// HasSubModules.framework/Frameworks/Sub.framework/Headers/Sub.h
|
Change this comment to helpfully explain why it's there.
|
Change this comment to helpfully explain why it's there.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@175027 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang
|
3e4d6584a8634c839a083b5cd8c51f54dc33112f
|
modules/thm/include/kernels/OneDMassFlux.h
|
modules/thm/include/kernels/OneDMassFlux.h
|
#ifndef ONEDMASSFLUX_H
#define ONEDMASSFLUX_H
#include "Kernel.h"
class OneDMassFlux;
template<>
InputParameters validParams<OneDMassFlux>();
/**
* Mass flux
*/
class OneDMassFlux : public Kernel
{
public:
OneDMassFlux(const InputParameters & parameters);
virtual ~OneDMassFlux();
protected:
virtual Real computeQpResidual();
virtual Real computeQpJacobian();
virtual Real computeQpOffDiagJacobian(unsigned int jvar);
VariableValue & _rhouA;
unsigned int _rhouA_var_number;
};
#endif /* ONEDMASSFLUX_H */
|
#ifndef ONEDMASSFLUX_H
#define ONEDMASSFLUX_H
#include "Kernel.h"
class OneDMassFlux;
template<>
InputParameters validParams<OneDMassFlux>();
/**
* Mass flux
*/
class OneDMassFlux : public Kernel
{
public:
OneDMassFlux(const InputParameters & parameters);
virtual ~OneDMassFlux();
protected:
virtual Real computeQpResidual();
virtual Real computeQpJacobian();
virtual Real computeQpOffDiagJacobian(unsigned int jvar);
const VariableValue & _rhouA;
unsigned int _rhouA_var_number;
};
#endif /* ONEDMASSFLUX_H */
|
Prepare RELAP-7 for MooseVariable::sln() const update.
|
Prepare RELAP-7 for MooseVariable::sln() const update.
This set of changes prepares RELAP-7 to work with an upcoming version of
MOOSE in which MooseVariable::sln() returns a const reference.
Refs idaholab/moose#6327.
|
C
|
lgpl-2.1
|
andrsd/moose,bwspenc/moose,andrsd/moose,laagesen/moose,jessecarterMOOSE/moose,laagesen/moose,milljm/moose,lindsayad/moose,idaholab/moose,harterj/moose,idaholab/moose,idaholab/moose,andrsd/moose,jessecarterMOOSE/moose,sapitts/moose,laagesen/moose,sapitts/moose,bwspenc/moose,harterj/moose,milljm/moose,bwspenc/moose,andrsd/moose,milljm/moose,jessecarterMOOSE/moose,dschwen/moose,lindsayad/moose,idaholab/moose,lindsayad/moose,milljm/moose,jessecarterMOOSE/moose,sapitts/moose,laagesen/moose,bwspenc/moose,sapitts/moose,idaholab/moose,dschwen/moose,milljm/moose,dschwen/moose,harterj/moose,bwspenc/moose,harterj/moose,lindsayad/moose,lindsayad/moose,harterj/moose,sapitts/moose,dschwen/moose,dschwen/moose,jessecarterMOOSE/moose,laagesen/moose,andrsd/moose
|
bce08b28ad4717b28356cfb98be76a551675d4a4
|
common/string_tokenizer.h
|
common/string_tokenizer.h
|
#include <string>
using namespace std;
/* Obtained from http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html */
void tokenizeString(const string& str,
vector<string>& tokens,
const string& delimiters)
{
// Skip delimiters at beginning.
string::size_type lastPos = str.find_first_not_of(delimiters, 0);
// Find first "non-delimiter".
string::size_type pos = str.find_first_of(delimiters, lastPos);
while (string::npos != pos || string::npos != lastPos)
{
// Found a token, add it to the vector.
tokens.push_back(str.substr(lastPos, pos - lastPos));
// Skip delimiters. Note the "not_of"
lastPos = str.find_first_not_of(delimiters, pos);
// Find next "non-delimiter"
pos = str.find_first_of(delimiters, lastPos);
}
}
|
#include <string>
/* Obtained from http://oopweb.com/CPP/Documents/CPPHOWTO/Volume/C++Programming-HOWTO-7.html */
void tokenizeString(const std::string& str,
std::vector<std::string>& tokens,
const std::string& delimiters)
{
// Skip delimiters at beginning.
std::string::size_type lastPos = str.find_first_not_of(delimiters, 0);
// Find first "non-delimiter".
std::string::size_type pos = str.find_first_of(delimiters, lastPos);
while (std::string::npos != pos || std::string::npos != lastPos)
{
// Found a token, add it to the vector.
tokens.push_back(str.substr(lastPos, pos - lastPos));
// Skip delimiters. Note the "not_of"
lastPos = str.find_first_not_of(delimiters, pos);
// Find next "non-delimiter"
pos = str.find_first_of(delimiters, lastPos);
}
}
|
Remove use of using-directive for std
|
Common: Remove use of using-directive for std
|
C
|
mit
|
andresodio/lager,andresodio/lager,andresodio/lager,andresodio/lager
|
f4e27dcccd8b25f4a95f81102b7db83df350320d
|
tests/regression/31-ikind-awars-ints/05-defexc-large.c
|
tests/regression/31-ikind-awars-ints/05-defexc-large.c
|
//PARAM: --enable ana.int.interval --disable exp.lower-constants
#include <assert.h>
int main(){
int a = 0;
// maximum value for ulonglong
unsigned long long x = 18446744073709551615ull;
if(x > 18446744073709551612ull){
a = 1;
}
assert(a);
unsigned long long y = x + 4;
// Unsigned overflow -- The following assertion should succeed
assert(y == 3);
// maximum value for long long
signed long long s = 9223372036854775807;
assert(s > 9223372036854775806);
signed long long t = s + 2;
// Signed overflow -- The following assertion must be UNKNOWN!
assert(t == 1); // UNKNOWN!
return 0;
}
|
//PARAM: --disable ana.int.interval
#include <assert.h>
int main(){
int a = 0;
// maximum value for ulonglong
unsigned long long x = 18446744073709551615ull;
if(x > 18446744073709551612ull){
a = 1;
}
assert(a);
unsigned long long y = x + 4;
// Unsigned overflow -- The following assertion should succeed
assert(y == 3);
// maximum value for long long
signed long long s = 9223372036854775807;
assert(s > 9223372036854775806);
signed long long t = s + 2;
// Signed overflow -- The following assertion must be UNKNOWN!
assert(t == 1); // UNKNOWN!
return 0;
}
|
Test defexc with large integers
|
Test defexc with large integers
|
C
|
mit
|
goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer
|
aa1ee08cf779b9a07867aa315c766e663bcbc4ed
|
sbabeld.h
|
sbabeld.h
|
#define BUF_SIZE 4096
#define MAXINTERFACES 10
#define MAXNEIGHBOURS 20
#define MESSAGE_PAD1 0
#define MESSAGE_PADN 1
#define MESSAGE_ACK_REQ 2
#define MESSAGE_ACK 3
#define MESSAGE_HELLO 4
#define MESSAGE_IHU 5
#define MESSAGE_ROUTER_ID 6
#define MESSAGE_NH 7
#define MESSAGE_UPDATE 8
#define MESSAGE_REQUEST 9
#define MESSAGE_MH_REQUEST 10
#define AE_WILDCARD 0
#define AE_IPV4 1
#define AE_IPV6 2
#define AE_LL 3
#define INFINITY 0xFFFF
|
#define BUF_SIZE 4096
#define MAXINTERFACES 5
#define MAXNEIGHBOURS 10
#define MESSAGE_PAD1 0
#define MESSAGE_PADN 1
#define MESSAGE_ACK_REQ 2
#define MESSAGE_ACK 3
#define MESSAGE_HELLO 4
#define MESSAGE_IHU 5
#define MESSAGE_ROUTER_ID 6
#define MESSAGE_NH 7
#define MESSAGE_UPDATE 8
#define MESSAGE_REQUEST 9
#define MESSAGE_MH_REQUEST 10
#define AE_WILDCARD 0
#define AE_IPV4 1
#define AE_IPV6 2
#define AE_LL 3
#define INFINITY 0xFFFF
|
Reduce size of neighbour and interface table.
|
Reduce size of neighbour and interface table.
Now that we're able to expire neighbours, we can get away with a smaller table.
|
C
|
mit
|
jech/sbabeld
|
939667b6efbc5eb92e80af985727eb2465d19810
|
sipXmediaLib/src/mp/codecs/plgg726/plgg726.h
|
sipXmediaLib/src/mp/codecs/plgg726/plgg726.h
|
//
// Copyright (C) 2007 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2007 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Author: Sergey Kostanbaev <Sergey DOT Kostanbaev AT sipez DOT com>
#ifndef _plgg726_h_
#define _plgg726_h_
#include <mp/codecs/PlgDefsV1.h>
#include <spandsp/bitstream.h>
#include <spandsp/g726.h>
int internal_decode_g726(void* handle, const void* pCodedData,
unsigned cbCodedPacketSize, void* pAudioBuffer,
unsigned cbBufferSize, unsigned *pcbCodedSize,
const struct RtpHeader* pRtpHeader);
int internal_encode_g726(void* handle, const void* pAudioBuffer,
unsigned cbAudioSamples, int* rSamplesConsumed,
void* pCodedData, unsigned cbMaxCodedData,
int* pcbCodedSize, unsigned* pbSendNow);
#endif
|
//
// Copyright (C) 2007 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2007 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Author: Sergey Kostanbaev <Sergey DOT Kostanbaev AT sipez DOT com>
#ifndef _plgg726_h_
#define _plgg726_h_
#include <mp/codecs/PlgDefsV1.h>
#include <spandsp/bitstream.h>
#include <spandsp/g726.h>
#ifndef G726_PACKING_NONE
#define G726_PACKING_NONE 0
#endif
#ifndef G726_ENCODING_LINEAR
#define G726_ENCODING_LINEAR 0
#endif
int internal_decode_g726(void* handle, const void* pCodedData,
unsigned cbCodedPacketSize, void* pAudioBuffer,
unsigned cbBufferSize, unsigned *pcbCodedSize,
const struct RtpHeader* pRtpHeader);
int internal_encode_g726(void* handle, const void* pAudioBuffer,
unsigned cbAudioSamples, int* rSamplesConsumed,
void* pCodedData, unsigned cbMaxCodedData,
int* pcbCodedSize, unsigned* pbSendNow);
#endif
|
FIx build of G.726 codec wrapper with older versions of SpanDSP.
|
FIx build of G.726 codec wrapper with older versions of SpanDSP.
git-svn-id: 5274dacc98e2a95d0b0452670772bfdffe61ca90@10190 a612230a-c5fa-0310-af8b-88eea846685b
|
C
|
lgpl-2.1
|
sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror
|
a0a8f0bd5ba210c3abcc96e68a5ee16a7cd8fc0f
|
Source/Factory/Internal/TyphoonAssemblyAdviser.h
|
Source/Factory/Internal/TyphoonAssemblyAdviser.h
|
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import "TyphoonMethodSwizzler.h"
@class TyphoonAssembly;
@interface TyphoonAssemblyAdviser : NSObject
+ (BOOL)assemblyClassIsAdvised:(Class)class;
- (id)initWithAssembly:(TyphoonAssembly *)assembly;
- (void)adviseAssembly;
- (NSSet *)definitionSelectors;
- (NSDictionary *)assemblyClassPerDefinitionKey;
@property(readonly, weak) TyphoonAssembly *assembly;
@property(nonatomic, strong) id <TyphoonMethodSwizzler> swizzler;
@end
|
////////////////////////////////////////////////////////////////////////////////
//
// TYPHOON FRAMEWORK
// Copyright 2013, Typhoon Framework Contributors
// All Rights Reserved.
//
// NOTICE: The authors permit you to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//
////////////////////////////////////////////////////////////////////////////////
#import <Foundation/Foundation.h>
#import "TyphoonMethodSwizzler.h"
@class TyphoonAssembly;
@interface TyphoonAssemblyAdviser : NSObject
+ (BOOL)assemblyClassIsAdvised:(Class)klass;
- (id)initWithAssembly:(TyphoonAssembly *)assembly;
- (void)adviseAssembly;
- (NSSet *)definitionSelectors;
- (NSDictionary *)assemblyClassPerDefinitionKey;
@property(readonly, weak) TyphoonAssembly *assembly;
@property(nonatomic, strong) id <TyphoonMethodSwizzler> swizzler;
@end
|
Remove use of reserved keyboard in public header
|
Remove use of reserved keyboard in public header
|
C
|
apache-2.0
|
pomozoff/Typhoon,dmueller39/Typhoon,nickynick/Typhoon,dmueller39/Typhoon,pomozoff/Typhoon,nickynick/Typhoon,pomozoff/Typhoon,dmueller39/Typhoon,nickynick/Typhoon,nickynick/Typhoon,pomozoff/Typhoon,nickynick/Typhoon,dmueller39/Typhoon,pomozoff/Typhoon,dmueller39/Typhoon
|
f4d429a30824d7b36eebf0aec3fc51a722a4e5c7
|
rubysdl_time.c
|
rubysdl_time.c
|
/*
Ruby/SDL Ruby extension library for SDL
Copyright (C) 2001-2007 Ohbayashi Ippei
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "rubysdl.h"
static VALUE sdl_getTicks(VALUE mod)
{
return UINT2NUM(SDL_GetTicks());
}
static VALUE delay(void* t)
{
SDL_Delay(*((Uint32*)t));
return Qnil;
}
static VALUE sdl_delay(VALUE mod,VALUE ms)
{
Uint32 t = NUM2UINT(ms);
#ifdef HAVE_RB_THREAD_BLOCKING_REGION
rb_thread_blocking_region(delay, &t, RUBY_UBF_IO, NULL);
#else
SDL_Delay(t);
#endif
return Qnil;
}
void rubysdl_init_time(VALUE mSDL)
{
rb_define_module_function(mSDL,"getTicks",sdl_getTicks,0);
rb_define_module_function(mSDL,"delay",sdl_delay,1);
}
|
/*
Ruby/SDL Ruby extension library for SDL
Copyright (C) 2001-2007 Ohbayashi Ippei
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "rubysdl.h"
static VALUE sdl_getTicks(VALUE mod)
{
return UINT2NUM(SDL_GetTicks());
}
static VALUE sdl_delay(VALUE mod,VALUE ms)
{
Uint32 t = NUM2UINT(ms);
SDL_Delay(t);
return Qnil;
}
void rubysdl_init_time(VALUE mSDL)
{
rb_define_module_function(mSDL,"getTicks",sdl_getTicks,0);
rb_define_module_function(mSDL,"delay",sdl_delay,1);
}
|
Remove rb_thread_blocking_region when SDL_Delay is called.
|
Remove rb_thread_blocking_region when SDL_Delay is called.
This means that SDL.delay stops all of Ruby threads now.
|
C
|
lgpl-2.1
|
ohai/rubysdl,ohai/rubysdl,cyndis/rubysdl,cyndis/rubysdl,ohai/rubysdl,cyndis/rubysdl,cyndis/rubysdl,ohai/rubysdl
|
0f2c1ce4661a6d767441b74f0c71f8bf93db91d6
|
test/CodeGen/capture-complex-expr-in-block.c
|
test/CodeGen/capture-complex-expr-in-block.c
|
// RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 | FileCheck %s
// rdar://10033986
typedef void (^BLOCK)(void);
int main ()
{
_Complex double c;
BLOCK b = ^() {
_Complex double z;
z = z + c;
};
b();
}
// CHECK: define internal void @__main_block_invoke_0
// CHECK: [[C1:%.*]] = alloca { double, double }, align 8
// CHECK: [[C1]].realp = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 0
// CHECK-NEXT: [[C1]].real = load double* [[C1]].realp
// CHECK-NEXT: [[C1]].imagp = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 1
// CHECK-NEXT: [[C1]].imag = load double* [[C1]].imagp
|
// RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 | FileCheck %s
// rdar://10033986
typedef void (^BLOCK)(void);
int main ()
{
_Complex double c;
BLOCK b = ^() {
_Complex double z;
z = z + c;
};
b();
}
// CHECK: define internal void @__main_block_invoke_0
// CHECK: [[C1:%.*]] = alloca { double, double }, align 8
// CHECK: [[RP:%.*]] = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 0
// CHECK-NEXT: [[R:%.*]] = load double* [[RP]]
// CHECK-NEXT: [[IP:%.*]] = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 1
// CHECK-NEXT: [[I:%.*]] = load double* [[IP]]
|
Revise test and see if it passes with a release-built clang.
|
Revise test and see if it passes with a release-built clang.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@139043 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang
|
40e25b2e348d18148c57b4551a8989fbc08e7fd1
|
include/core/SkMilestone.h
|
include/core/SkMilestone.h
|
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 53
#endif
|
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 54
#endif
|
Update skia milestone to next
|
Update skia milestone to next
No API changes, just moving version fwd.
TBR=reed@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2115573002
Review-Url: https://codereview.chromium.org/2115573002
|
C
|
bsd-3-clause
|
Hikari-no-Tenshi/android_external_skia,Hikari-no-Tenshi/android_external_skia,aosp-mirror/platform_external_skia,HalCanary/skia-hc,HalCanary/skia-hc,aosp-mirror/platform_external_skia,google/skia,Hikari-no-Tenshi/android_external_skia,HalCanary/skia-hc,rubenvb/skia,aosp-mirror/platform_external_skia,HalCanary/skia-hc,aosp-mirror/platform_external_skia,google/skia,google/skia,HalCanary/skia-hc,google/skia,aosp-mirror/platform_external_skia,Hikari-no-Tenshi/android_external_skia,HalCanary/skia-hc,HalCanary/skia-hc,rubenvb/skia,Hikari-no-Tenshi/android_external_skia,google/skia,rubenvb/skia,google/skia,Hikari-no-Tenshi/android_external_skia,rubenvb/skia,HalCanary/skia-hc,HalCanary/skia-hc,google/skia,rubenvb/skia,google/skia,rubenvb/skia,google/skia,rubenvb/skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,Hikari-no-Tenshi/android_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,aosp-mirror/platform_external_skia,HalCanary/skia-hc,Hikari-no-Tenshi/android_external_skia,google/skia,rubenvb/skia,rubenvb/skia,rubenvb/skia
|
20a0bea197188ffa3e7abaffe030305bc63bd9c4
|
Libraries/PushNotificationIOS/RCTPushNotificationManager.h
|
Libraries/PushNotificationIOS/RCTPushNotificationManager.h
|
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
#import "../../ReactKit/Base/RCTBridgeModule.h"
@interface RCTPushNotificationManager : NSObject <RCTBridgeModule>
- (instancetype)initWithInitialNotification:(NSDictionary *)initialNotification NS_DESIGNATED_INITIALIZER;
+ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings;
+ (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification;
+ (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
@end
|
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <UIKit/UIKit.h>
#import "RCTBridgeModule.h"
@interface RCTPushNotificationManager : NSObject <RCTBridgeModule>
- (instancetype)initWithInitialNotification:(NSDictionary *)initialNotification NS_DESIGNATED_INITIALIZER;
+ (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings;
+ (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)notification;
+ (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation;
@end
|
Fix build - remove relative import path
|
Fix build - remove relative import path
|
C
|
bsd-3-clause
|
skevy/react-native,bsansouci/react-native,steben/react-native,udnisap/react-native,garrows/react-native,Lucifer-Kim/react-native,lzbSun/react-native,dabit3/react-native,Andreyco/react-native,darrylblake/react-native,DanielMSchmidt/react-native,christer155/react-native,zhangxq5012/react-native,janicduplessis/react-native,christopherdro/react-native,Livyli/react-native,alinz/react-native,yjyi/react-native,clozr/react-native,Shopify/react-native,cosmith/react-native,Bhullnatik/react-native,alpz5566/react-native,pickhardt/react-native,esauter5/react-native,leeyeh/react-native,chacbumbum/react-native,hammerandchisel/react-native,leopardpan/react-native,mqli/react-native,rodneyss/react-native,miracle2k/react-native,browniefed/react-native,htc2u/react-native,hzgnpu/react-native,peterp/react-native,Applied-Duality/react-native,jaggs6/react-native,boopathi/react-native,yelled3/react-native,chnfeeeeeef/react-native,jeffchienzabinet/react-native,chetstone/react-native,Inner89/react-native,Maxwell2022/react-native,wangjiangwen/react-native,htc2u/react-native,Maxwell2022/react-native,kassens/react-native,garrows/react-native,cosmith/react-native,nktpro/react-native,negativetwelve/react-native,nathanajah/react-native,lzbSun/react-native,yusefnapora/react-native,bright-sparks/react-native,F2EVarMan/react-native,jordanbyron/react-native,bestwpw/react-native,roth1002/react-native,Flickster42490/react-native,popovsh6/react-native,cmhsu/react-native,fw1121/react-native,appersonlabs/react-native,nickhudkins/react-native,satya164/react-native,kotdark/react-native,lee-my/react-native,Ehesp/react-native,devknoll/react-native,luqin/react-native,machard/react-native,tarkus/react-native-appletv,gegaosong/react-native,rebeccahughes/react-native,gabrielbellamy/react-native,chapinkapa/react-native,philonpang/react-native,huangsongyan/react-native,Bhullnatik/react-native,ldehai/react-native,sixtomay/react-native,stonegithubs/react-native,pallyoung/react-native,liufeigit/react-native,lprhodes/react-native,timfpark/react-native,facebook/react-native,jaredly/react-native,dralletje/react-native,lightsofapollo/react-native,ptmt/react-native,threepointone/react-native-1,harrykiselev/react-native,taydakov/react-native,FionaWong/react-native,shinate/react-native,jackeychens/react-native,kfiroo/react-native,naoufal/react-native,MetSystem/react-native,lelandrichardson/react-native,gilesvangruisen/react-native,sudhirj/react-native,corbt/react-native,zuolangguo/react-native,jasonals/react-native,monyxie/react-native,urvashi01/react-native,bowlofstew/react-native,code0100fun/react-native,devknoll/react-native,wangcan2014/react-native,alvarojoao/react-native,wangjiangwen/react-native,bestwpw/react-native,qq644531343/react-native,eduardinni/react-native,alin23/react-native,bright-sparks/react-native,thstarshine/react-native,noif/react-native,thotegowda/react-native,tadeuzagallo/react-native,ndejesus1227/react-native,lightsofapollo/react-native,Bronts/react-native,fish24k/react-native,quyixia/react-native,hydraulic/react-native,mbrock/react-native,sahrens/react-native,quuack/react-native,RGKzhanglei/react-native,wenpkpk/react-native,foghina/react-native,spyrx7/react-native,hoangpham95/react-native,garydonovan/react-native,hesling/react-native,Rowandjj/react-native,cosmith/react-native,judastree/react-native,Poplava/react-native,Iragne/react-native,ludaye123/react-native,imjerrybao/react-native,appersonlabs/react-native,marlonandrade/react-native,averted/react-native,geoffreyfloyd/react-native,lee-my/react-native,TChengZ/react-native,1988fei/react-native,CntChen/react-native,gegaosong/react-native,pletcher/react-native,MetSystem/react-native,dimoge/react-native,leopardpan/react-native,xxccll/react-native,JasonZ321/react-native,codejet/react-native,stonegithubs/react-native,ptmt/react-native-macos,narlian/react-native,NunoEdgarGub1/react-native,orenklein/react-native,threepointone/react-native-1,pjcabrera/react-native,lendup/react-native,DannyvanderJagt/react-native,NishanthShankar/react-native,hwsyy/react-native,brentvatne/react-native,yamill/react-native,salanki/react-native,chrisbutcher/react-native,pvinis/react-native-desktop,ludaye123/react-native,clozr/react-native,alpz5566/react-native,WilliamRen/react-native,lendup/react-native,kushal/react-native,gauribhoite/react-native,jasonnoahchoi/react-native,YComputer/react-native,Maxwell2022/react-native,Furzikov/react-native,mjetek/react-native,liuhong1happy/react-native,glovebx/react-native,rkumar3147/react-native,clozr/react-native,jaggs6/react-native,janicduplessis/react-native,frantic/react-native,neeraj-singh/react-native,timfpark/react-native,krock01/react-native,zhangwei001/react-native,DanielMSchmidt/react-native,ludaye123/react-native,eduvon0220/react-native,zuolangguo/react-native,vincentqiu/react-native,leeyeh/react-native,ptomasroos/react-native,gitim/react-native,gauribhoite/react-native,elliottsj/react-native,eliagrady/react-native,mcrooks88/react-native,insionng/react-native,jmhdez/react-native,dalinaum/react-native,shinate/react-native,ronak301/react-native,Guardiannw/react-native,srounce/react-native,chengky/react-native,wenpkpk/react-native,JulienThibeaut/react-native,htc2u/react-native,Maxwell2022/react-native,lprhodes/react-native,ajwhite/react-native,bistacos/react-native,naoufal/react-native,common2015/react-native,hike2008/react-native,Esdeath/react-native,srounce/react-native,hassanabidpk/react-native,CodeLinkIO/react-native,Andreyco/react-native,jibonpab/react-native,sheep902/react-native,jabinwang/react-native,zvona/react-native,ehd/react-native,F2EVarMan/react-native,rantianhua/react-native,hanxiaofei/react-native,honger05/react-native,chengky/react-native,threepointone/react-native-1,rodneyss/react-native,exponent/react-native,beni55/react-native,aaron-goshine/react-native,bradens/react-native,sdiaz/react-native,sixtomay/react-native,dikaiosune/react-native,chsj1/react-native,yangchengwork/react-native,waynett/react-native,htc2u/react-native,yushiwo/react-native,Inner89/react-native,skevy/react-native,wjb12/react-native,Swaagie/react-native,Bhullnatik/react-native,vincentqiu/react-native,tadeuzagallo/react-native,makadaw/react-native,pengleelove/react-native,simple88/react-native,Shopify/react-native,lokilandon/react-native,ehd/react-native,ChristianHersevoort/react-native,jordanbyron/react-native,Reparadocs/react-native,pj4533/react-native,lprhodes/react-native,zyvas/react-native,krock01/react-native,srounce/react-native,Emilios1995/react-native,jbaumbach/react-native,beni55/react-native,aljs/react-native,dralletje/react-native,liangmingjie/react-native,doochik/react-native,shlomiatar/react-native,rantianhua/react-native,clozr/react-native,rickbeerendonk/react-native,jackeychens/react-native,cdlewis/react-native,charmingzuo/react-native,udnisap/react-native,peterp/react-native,yimouleng/react-native,luqin/react-native,appersonlabs/react-native,gabrielbellamy/react-native,mrngoitall/react-native,brentvatne/react-native,cazacugmihai/react-native,andrewljohnson/react-native,huangsongyan/react-native,sonnylazuardi/react-native,tszajna0/react-native,kamronbatman/react-native,spicyj/react-native,mironiasty/react-native,urvashi01/react-native,Emilios1995/react-native,forcedotcom/react-native,stan229/react-native,vlrchtlt/react-native,hammerandchisel/react-native,nbcnews/react-native,nickhargreaves/react-native,CodeLinkIO/react-native,hayeah/react-native,sudhirj/react-native,nathanajah/react-native,BossKing/react-native,xiangjuntang/react-native,skatpgusskat/react-native,zdsiyan/react-native,timfpark/react-native,shinate/react-native,nevir/react-native,bogdantmm92/react-native,Heart2009/react-native,tgf229/react-native,chetstone/react-native,jacobbubu/react-native,woshili1/react-native,mihaigiurgeanu/react-native,thstarshine/react-native,dut3062796s/react-native,YinshawnRao/react-native,lwansbrough/react-native,rickbeerendonk/react-native,jmhdez/react-native,huip/react-native,xxccll/react-native,Purii/react-native,xxccll/react-native,pallyoung/react-native,milieu/react-native,satya164/react-native,brentvatne/react-native,adrie4mac/react-native,Reparadocs/react-native,johnv315/react-native,PhilippKrone/react-native,gs-akhan/react-native,evilemon/react-native,skatpgusskat/react-native,iOSTestApps/react-native,bestwpw/react-native,quyixia/react-native,JulienThibeaut/react-native,Furzikov/react-native,pjcabrera/react-native,doochik/react-native,sheep902/react-native,machard/react-native,kfiroo/react-native,iodine/react-native,bowlofstew/react-native,code0100fun/react-native,hammerandchisel/react-native,ldehai/react-native,jadbox/react-native,dfala/react-native,rainkong/react-native,lucyywang/react-native,mrspeaker/react-native,Flickster42490/react-native,bestwpw/react-native,liduanw/react-native,xiayz/react-native,foghina/react-native,strwind/react-native,skatpgusskat/react-native,imjerrybao/react-native,makadaw/react-native,zhangxq5012/react-native,quyixia/react-native,nsimmons/react-native,philikon/react-native,hesling/react-native,bright-sparks/react-native,MattFoley/react-native,ouyangwenfeng/react-native,gitim/react-native,jmstout/react-native,hanxiaofei/react-native,hassanabidpk/react-native,almost/react-native,JoeStanton/react-native,billhello/react-native,lanceharper/react-native,Flickster42490/react-native,nathanajah/react-native,futbalguy/react-native,mchinyakov/react-native,tmwoodson/react-native,qingsong-xu/react-native,rwwarren/react-native,HealthyWealthy/react-native,vagrantinoz/react-native,judastree/react-native,MattFoley/react-native,wesley1001/react-native,imDangerous/react-native,negativetwelve/react-native,bradens/react-native,imDangerous/react-native,chentsulin/react-native,rodneyss/react-native,dubert/react-native,yjyi/react-native,gre/react-native,mrngoitall/react-native,josebalius/react-native,lstNull/react-native,sospartan/react-native,pandiaraj44/react-native,Bronts/react-native,gitim/react-native,averted/react-native,tadeuzagallo/react-native,Serfenia/react-native,chirag04/react-native,evilemon/react-native,kesha-antonov/react-native,Bronts/react-native,cxfeng1/react-native,zuolangguo/react-native,cmhsu/react-native,spyrx7/react-native,jacobbubu/react-native,rebeccahughes/react-native,lwansbrough/react-native,shlomiatar/react-native,shrimpy/react-native,yjyi/react-native,yangchengwork/react-native,genome21/react-native,hzgnpu/react-native,iOSTestApps/react-native,krock01/react-native,liuhong1happy/react-native,browniefed/react-native,gilesvangruisen/react-native,wangjiangwen/react-native,mosch/react-native,j27cai/react-native,nevir/react-native,alpz5566/react-native,spyrx7/react-native,orenklein/react-native,leopardpan/react-native,DanielMSchmidt/react-native,zenlambda/react-native,ronak301/react-native,mchinyakov/react-native,strwind/react-native,donyu/react-native,pcottle/react-native,enaqx/react-native,urvashi01/react-native,krock01/react-native,rollokb/react-native,hesling/react-native,shrutic/react-native,chnfeeeeeef/react-native,mchinyakov/react-native,bistacos/react-native,almost/react-native,steben/react-native,supercocoa/react-native,Guardiannw/react-native,ajwhite/react-native,ankitsinghania94/react-native,garydonovan/react-native,devknoll/react-native,YComputer/react-native,hayeah/react-native,bradbumbalough/react-native,michaelchucoder/react-native,jonesgithub/react-native,common2015/react-native,satya164/react-native,harrykiselev/react-native,arbesfeld/react-native,genome21/react-native,yjh0502/react-native,tgriesser/react-native,donyu/react-native,yamill/react-native,Furzikov/react-native,csatf/react-native,gilesvangruisen/react-native,ptmt/react-native-macos,noif/react-native,puf/react-native,lee-my/react-native,richardgill/react-native,a2/react-native,bodefuwa/react-native,ptomasroos/react-native,adamterlson/react-native,happypancake/react-native,pglotov/react-native,Poplava/react-native,Purii/react-native,corbt/react-native,YotrolZ/react-native,irisli/react-native,zhangxq5012/react-native,huangsongyan/react-native,wangcan2014/react-native,foghina/react-native,abdelouahabb/react-native,wlrhnh-David/react-native,jekey/react-native,adamkrell/react-native,CodeLinkIO/react-native,sunblaze/react-native,PlexChat/react-native,puf/react-native,shrutic123/react-native,pitatensai/react-native,KJlmfe/react-native,apprennet/react-native,Furzikov/react-native,yutail/react-native,kotdark/react-native,lendup/react-native,browniefed/react-native,NunoEdgarGub1/react-native,rodneyss/react-native,shrutic/react-native,yamill/react-native,rushidesai/react-native,steveleec/react-native,makadaw/react-native,alinz/react-native,clozr/react-native,enaqx/react-native,popovsh6/react-native,sospartan/react-native,sonnylazuardi/react-native,lloydho/react-native,eduvon0220/react-native,liuzechen/react-native,DerayGa/react-native,jevakallio/react-native,philonpang/react-native,doochik/react-native,dylanchann/react-native,hesling/react-native,jekey/react-native,bouk/react-native,marlonandrade/react-native,cdlewis/react-native,vjeux/react-native,naoufal/react-native,zuolangguo/react-native,Lohit9/react-native,javache/react-native,yangshangde/react-native,yjyi/react-native,ptmt/react-native-macos,xxccll/react-native,shlomiatar/react-native,mway08/react-native,barakcoh/react-native,code0100fun/react-native,patoroco/react-native,hydraulic/react-native,johnv315/react-native,Emilios1995/react-native,YueRuo/react-native,abdelouahabb/react-native,ludaye123/react-native,Applied-Duality/react-native,rantianhua/react-native,miracle2k/react-native,Intellicode/react-native,philikon/react-native,androidgilbert/react-native,iodine/react-native,sjchakrav/react-native,exponent/react-native,Flickster42490/react-native,narlian/react-native,Swaagie/react-native,mjetek/react-native,sdiaz/react-native,kamronbatman/react-native,pj4533/react-native,tsjing/react-native,monyxie/react-native,jmhdez/react-native,facebook/react-native,adrie4mac/react-native,luqin/react-native,jackalchen/react-native,lstNull/react-native,elliottsj/react-native,judastree/react-native,cdlewis/react-native,doochik/react-native,leegilon/react-native,zdsiyan/react-native,DannyvanderJagt/react-native,urvashi01/react-native,formatlos/react-native,enaqx/react-native,exponent/react-native,roy0914/react-native,BossKing/react-native,abdelouahabb/react-native,hassanabidpk/react-native,jaredly/react-native,fw1121/react-native,jadbox/react-native,dralletje/react-native,mihaigiurgeanu/react-native,makadaw/react-native,dut3062796s/react-native,arbesfeld/react-native,ChiMarvine/react-native,trueblue2704/react-native,ProjectSeptemberInc/react-native,satya164/react-native,clooth/react-native,booxood/react-native,zuolangguo/react-native,cez213/react-native,facebook/react-native,Suninus/react-native,guanghuili/react-native,HSFGitHub/react-native,chenbk85/react-native,carcer/react-native,nickhudkins/react-native,Bhullnatik/react-native,cazacugmihai/react-native,chetstone/react-native,aziz-boudi4/react-native,Heart2009/react-native,philikon/react-native,Loke155/react-native,dylanchann/react-native,farazs/react-native,xiayz/react-native,Furzikov/react-native,dralletje/react-native,lstNull/react-native,mrspeaker/react-native,javache/react-native,kujohn/react-native,kassens/react-native,beni55/react-native,philonpang/react-native,eduvon0220/react-native,RGKzhanglei/react-native,nickhargreaves/react-native,bodefuwa/react-native,mukesh-kumar1905/react-native,udnisap/react-native,lee-my/react-native,lmorchard/react-native,farazs/react-native,xiayz/react-native,appersonlabs/react-native,ptmt/react-native-macos,hengcj/react-native,leegilon/react-native,kamronbatman/react-native,kushal/react-native,dimoge/react-native,simple88/react-native,liufeigit/react-native,jeffchienzabinet/react-native,vlrchtlt/react-native,Intellicode/react-native,darkrishabh/react-native,pjcabrera/react-native,Serfenia/react-native,HSFGitHub/react-native,popovsh6/react-native,pcottle/react-native,rxb/react-native,makadaw/react-native,misakuo/react-native,j27cai/react-native,dylanchann/react-native,jhen0409/react-native,wangyzyoga/react-native,Iragne/react-native,MetSystem/react-native,MonirAbuHilal/react-native,tahnok/react-native,affinityis/react-native,HealthyWealthy/react-native,lprhodes/react-native,hike2008/react-native,codejet/react-native,lstNull/react-native,fish24k/react-native,dvcrn/react-native,ramoslin02/react-native,christer155/react-native,thstarshine/react-native,emodeqidao/react-native,Swaagie/react-native,liufeigit/react-native,pjcabrera/react-native,fengshao0907/react-native,gitim/react-native,noif/react-native,common2015/react-native,jasonals/react-native,exponentjs/react-native,xiayz/react-native,jasonals/react-native,levic92/react-native,oren/react-native,huangsongyan/react-native,xinthink/react-native,common2015/react-native,udnisap/react-native,salanki/react-native,Esdeath/react-native,yangshangde/react-native,F2EVarMan/react-native,misakuo/react-native,mukesh-kumar1905/react-native,Inner89/react-native,MattFoley/react-native,gs-akhan/react-native,wjb12/react-native,farazs/react-native,21451061/react-native,jeanblanchard/react-native,Jonekee/react-native,gre/react-native,sonnylazuardi/react-native,ModusCreateOrg/react-native,christer155/react-native,MattFoley/react-native,abdelouahabb/react-native,alinz/react-native,Esdeath/react-native,onesfreedom/react-native,mihaigiurgeanu/react-native,NishanthShankar/react-native,BossKing/react-native,kassens/react-native,udnisap/react-native,heyjim89/react-native,jbaumbach/react-native,wlrhnh-David/react-native,darrylblake/react-native,supercocoa/react-native,common2015/react-native,jasonnoahchoi/react-native,ChristopherSalam/react-native,jeffchienzabinet/react-native,insionng/react-native,johnv315/react-native,codejet/react-native,hassanabidpk/react-native,cpunion/react-native,Srikanth4/react-native,ndejesus1227/react-native,Ehesp/react-native,mironiasty/react-native,apprennet/react-native,jackeychens/react-native,bistacos/react-native,leegilon/react-native,BossKing/react-native,mtford90/react-native,yzarubin/react-native,Livyli/react-native,judastree/react-native,exponent/react-native,christopherdro/react-native,sdiaz/react-native,fish24k/react-native,gitim/react-native,lucyywang/react-native,sospartan/react-native,tszajna0/react-native,kfiroo/react-native,lelandrichardson/react-native,machard/react-native,affinityis/react-native,chenbk85/react-native,rkumar3147/react-native,exponentjs/react-native,garydonovan/react-native,xinthink/react-native,urvashi01/react-native,wenpkpk/react-native,kassens/react-native,hengcj/react-native,wjb12/react-native,ProjectSeptemberInc/react-native,levic92/react-native,gilesvangruisen/react-native,affinityis/react-native,ivanph/react-native,roy0914/react-native,lelandrichardson/react-native,rkumar3147/react-native,chsj1/react-native,liangmingjie/react-native,ankitsinghania94/react-native,folist/react-native,thotegowda/react-native,mchinyakov/react-native,rxb/react-native,wlrhnh-David/react-native,darrylblake/react-native,sitexa/react-native,Poplava/react-native,almost/react-native,nanpian/react-native,dut3062796s/react-native,alin23/react-native,soxunyi/react-native,programming086/react-native,lucyywang/react-native,Intellicode/react-native,dikaiosune/react-native,yutail/react-native,beni55/react-native,facebook/react-native,bright-sparks/react-native,emodeqidao/react-native,lokilandon/react-native,madusankapremaratne/react-native,exponentjs/react-native,aljs/react-native,shadow000902/react-native,fish24k/react-native,kujohn/react-native,taydakov/react-native,mrspeaker/react-native,stan229/react-native,Loke155/react-native,billhello/react-native,mtford90/react-native,imjerrybao/react-native,dikaiosune/react-native,naoufal/react-native,bodefuwa/react-native,roth1002/react-native,javache/react-native,vincentqiu/react-native,tadeuzagallo/react-native,kamronbatman/react-native,DerayGa/react-native,sunblaze/react-native,kamronbatman/react-native,fish24k/react-native,Loke155/react-native,garrows/react-native,steben/react-native,jackalchen/react-native,mrngoitall/react-native,tgriesser/react-native,MonirAbuHilal/react-native,gabrielbellamy/react-native,edward/react-native,darkrishabh/react-native,nickhargreaves/react-native,roth1002/react-native,stan229/react-native,eddiemonge/react-native,pj4533/react-native,udnisap/react-native,Rowandjj/react-native,soulcm/react-native,clooth/react-native,elliottsj/react-native,yangchengwork/react-native,NZAOM/react-native,Maxwell2022/react-native,cosmith/react-native,sarvex/react-native,bouk/react-native,liuzechen/react-native,csatf/react-native,shrimpy/react-native,adamterlson/react-native,gabrielbellamy/react-native,rodneyss/react-native,eduardinni/react-native,ordinarybill/react-native,Applied-Duality/react-native,fengshao0907/react-native,Bhullnatik/react-native,cxfeng1/react-native,cazacugmihai/react-native,lgengsy/react-native,InterfaceInc/react-native,codejet/react-native,glovebx/react-native,cosmith/react-native,nanpian/react-native,supercocoa/react-native,chiefr/react-native,evansolomon/react-native,xiangjuntang/react-native,mihaigiurgeanu/react-native,catalinmiron/react-native,brentvatne/react-native,xiangjuntang/react-native,eliagrady/react-native,nanpian/react-native,shrimpy/react-native,hoangpham95/react-native,pallyoung/react-native,glovebx/react-native,taydakov/react-native,magnus-bergman/react-native,shadow000902/react-native,kesha-antonov/react-native,hydraulic/react-native,spyrx7/react-native,ankitsinghania94/react-native,aaron-goshine/react-native,lucyywang/react-native,lucyywang/react-native,spyrx7/react-native,corbt/react-native,skevy/react-native,formatlos/react-native,adamjmcgrath/react-native,ipmobiletech/react-native,bsansouci/react-native,pcottle/react-native,dimoge/react-native,pjcabrera/react-native,bogdantmm92/react-native,rickbeerendonk/react-native,udnisap/react-native,zenlambda/react-native,sunblaze/react-native,mironiasty/react-native,neeraj-singh/react-native,sarvex/react-native,chapinkapa/react-native,BretJohnson/react-native,ordinarybill/react-native,lmorchard/react-native,Andreyco/react-native,dvcrn/react-native,alpz5566/react-native,yangshangde/react-native,gre/react-native,hike2008/react-native,ptomasroos/react-native,rkumar3147/react-native,exponentjs/rex,mqli/react-native,mjetek/react-native,jhen0409/react-native,yangshangde/react-native,DannyvanderJagt/react-native,kushal/react-native,charlesvinette/react-native,zenlambda/react-native,liuzechen/react-native,wdxgtsh/react-native,Swaagie/react-native,myntra/react-native,jadbox/react-native,exponent/react-native,sjchakrav/react-native,corbt/react-native,rwwarren/react-native,barakcoh/react-native,common2015/react-native,javache/react-native,programming086/react-native,lee-my/react-native,MonirAbuHilal/react-native,popovsh6/react-native,catalinmiron/react-native,jadbox/react-native,sekouperry/react-native,wustxing/react-native,YComputer/react-native,HealthyWealthy/react-native,mtford90/react-native,yjh0502/react-native,mchinyakov/react-native,appersonlabs/react-native,strwind/react-native,Heart2009/react-native,mrngoitall/react-native,abdelouahabb/react-native,jhen0409/react-native,MattFoley/react-native,andrewljohnson/react-native,vincentqiu/react-native,InterfaceInc/react-native,aaron-goshine/react-native,bowlofstew/react-native,Ehesp/react-native,kassens/react-native,iOSTestApps/react-native,rollokb/react-native,quuack/react-native,tsdl2013/react-native,Lohit9/react-native,appersonlabs/react-native,21451061/react-native,programming086/react-native,BossKing/react-native,dylanchann/react-native,jackeychens/react-native,negativetwelve/react-native,tmwoodson/react-native,Swaagie/react-native,InterfaceInc/react-native,pgavazzi/react-unity,yangchengwork/react-native,lgengsy/react-native,MetSystem/react-native,Jericho25/react-native,johnv315/react-native,soxunyi/react-native,darkrishabh/react-native,bradbumbalough/react-native,josebalius/react-native,carcer/react-native,Hkmu/react-native,nsimmons/react-native,qq644531343/react-native,ouyangwenfeng/react-native,Inner89/react-native,rwwarren/react-native,zvona/react-native,formatlos/react-native,jeromjoy/react-native,sekouperry/react-native,nsimmons/react-native,magnus-bergman/react-native,jabinwang/react-native,YComputer/react-native,manhvvhtth/react-native,cazacugmihai/react-native,nathanajah/react-native,bistacos/react-native,nevir/react-native,DannyvanderJagt/react-native,lanceharper/react-native,carcer/react-native,fw1121/react-native,edward/react-native,kotdark/react-native,shrimpy/react-native,dikaiosune/react-native,luqin/react-native,jekey/react-native,lzbSun/react-native,sheep902/react-native,hoastoolshop/react-native,jmhdez/react-native,tadeuzagallo/react-native,narlian/react-native,YComputer/react-native,corbt/react-native,MattFoley/react-native,hzgnpu/react-native,wangjiangwen/react-native,tarkus/react-native-appletv,ProjectSeptemberInc/react-native,androidgilbert/react-native,pickhardt/react-native,liufeigit/react-native,pglotov/react-native,huip/react-native,pandiaraj44/react-native,foghina/react-native,bsansouci/react-native,Reparadocs/react-native,kfiroo/react-native,sitexa/react-native,csatf/react-native,nickhargreaves/react-native,Andreyco/react-native,callstack-io/react-native,prathamesh-sonpatki/react-native,steben/react-native,IveWong/react-native,martinbigio/react-native,jhen0409/react-native,CntChen/react-native,gpbl/react-native,jekey/react-native,genome21/react-native,NZAOM/react-native,pengleelove/react-native,noif/react-native,adamkrell/react-native,glovebx/react-native,doochik/react-native,wdxgtsh/react-native,satya164/react-native,clooth/react-native,BretJohnson/react-native,nevir/react-native,ide/react-native,guanghuili/react-native,ChristopherSalam/react-native,jekey/react-native,CntChen/react-native,Reparadocs/react-native,ChristopherSalam/react-native,ordinarybill/react-native,edward/react-native,bimawa/react-native,eduvon0220/react-native,exponentjs/react-native,aifeld/react-native,michaelchucoder/react-native,naoufal/react-native,mcanthony/react-native,kassens/react-native,gabrielbellamy/react-native,ericvera/react-native,exponentjs/rex,Andreyco/react-native,patoroco/react-native,arbesfeld/react-native,wdxgtsh/react-native,unknownexception/react-native,Zagorakiss/react-native,janicduplessis/react-native,farazs/react-native,liduanw/react-native,Ehesp/react-native,gs-akhan/react-native,qingfeng/react-native,woshili1/react-native,peterp/react-native,cdlewis/react-native,madusankapremaratne/react-native,pcottle/react-native,clooth/react-native,shlomiatar/react-native,adamjmcgrath/react-native,alvarojoao/react-native,MetSystem/react-native,chiefr/react-native,popovsh6/react-native,harrykiselev/react-native,thstarshine/react-native,pallyoung/react-native,wangcan2014/react-native,onesfreedom/react-native,machard/react-native,bouk/react-native,sixtomay/react-native,chnfeeeeeef/react-native,dalinaum/react-native,jabinwang/react-native,onesfreedom/react-native,garrows/react-native,bradens/react-native,Lucifer-Kim/react-native,CodeLinkIO/react-native,shrutic/react-native,Serfenia/react-native,ChiMarvine/react-native,lmorchard/react-native,Rowandjj/react-native,pengleelove/react-native,pj4533/react-native,Srikanth4/react-native,eddiemonge/react-native,chetstone/react-native,MonirAbuHilal/react-native,PhilippKrone/react-native,shlomiatar/react-native,andrewljohnson/react-native,Intellicode/react-native,callstack-io/react-native,roy0914/react-native,ankitsinghania94/react-native,fish24k/react-native,madusankapremaratne/react-native,lprhodes/react-native,chnfeeeeeef/react-native,wangyzyoga/react-native,honger05/react-native,ktoh/react-native,vlrchtlt/react-native,Emilios1995/react-native,forcedotcom/react-native,csatf/react-native,spicyj/react-native,bradbumbalough/react-native,garrows/react-native,adrie4mac/react-native,chetstone/react-native,Tredsite/react-native,magnus-bergman/react-native,tgoldenberg/react-native,wustxing/react-native,rushidesai/react-native,CodeLinkIO/react-native,goodheart/react-native,jonesgithub/react-native,hanxiaofei/react-native,liduanw/react-native,jevakallio/react-native,leegilon/react-native,mcanthony/react-native,adamjmcgrath/react-native,callstack-io/react-native,catalinmiron/react-native,dabit3/react-native,zyvas/react-native,zhangxq5012/react-native,bouk/react-native,jackalchen/react-native,DenisIzmaylov/react-native,chiefr/react-native,wdxgtsh/react-native,kushal/react-native,mtford90/react-native,pgavazzi/react-unity,ldehai/react-native,ortutay/react-native,geoffreyfloyd/react-native,ptmt/react-native,averted/react-native,Jonekee/react-native,MattFoley/react-native,Applied-Duality/react-native,browniefed/react-native,chentsulin/react-native,gitim/react-native,yjyi/react-native,ptomasroos/react-native,eliagrady/react-native,Emilios1995/react-native,dizlexik/react-native,gilesvangruisen/react-native,rebeccahughes/react-native,jevakallio/react-native,PlexChat/react-native,sahat/react-native,wangziqiang/react-native,CntChen/react-native,Guardiannw/react-native,tsdl2013/react-native,huip/react-native,sarvex/react-native,mozillo/react-native,kentaromiura/react-native,slongwang/react-native,lokilandon/react-native,oren/react-native,bistacos/react-native,CodeLinkIO/react-native,cpunion/react-native,jmhdez/react-native,pglotov/react-native,chnfeeeeeef/react-native,pletcher/react-native,liufeigit/react-native,NishanthShankar/react-native,jasonals/react-native,Heart2009/react-native,exponentjs/rex,charlesvinette/react-native,noif/react-native,manhvvhtth/react-native,tgf229/react-native,liduanw/react-native,ModusCreateOrg/react-native,Shopify/react-native,yimouleng/react-native,Andreyco/react-native,programming086/react-native,edward/react-native,madusankapremaratne/react-native,kotdark/react-native,ultralame/react-native,jaggs6/react-native,unknownexception/react-native,DannyvanderJagt/react-native,fengshao0907/react-native,orenklein/react-native,guanghuili/react-native,Heart2009/react-native,lstNull/react-native,lgengsy/react-native,vagrantinoz/react-native,eduvon0220/react-native,sospartan/react-native,ChiMarvine/react-native,averted/react-native,chapinkapa/react-native,skatpgusskat/react-native,tszajna0/react-native,chsj1/react-native,cez213/react-native,Jonekee/react-native,puf/react-native,dizlexik/react-native,jaggs6/react-native,roy0914/react-native,chirag04/react-native,marlonandrade/react-native,kesha-antonov/react-native,jordanbyron/react-native,rodneyss/react-native,ModusCreateOrg/react-native,chacbumbum/react-native,pandiaraj44/react-native,xinthink/react-native,woshili1/react-native,Guardiannw/react-native,kassens/react-native,callstack-io/react-native,quuack/react-native,tarkus/react-native-appletv,hanxiaofei/react-native,ordinarybill/react-native,enaqx/react-native,PlexChat/react-native,booxood/react-native,daveenguyen/react-native,emodeqidao/react-native,adrie4mac/react-native,dvcrn/react-native,spyrx7/react-native,Serfenia/react-native,southasia/react-native,jackalchen/react-native,srounce/react-native,shrutic123/react-native,ajwhite/react-native,jackalchen/react-native,hengcj/react-native,ChristianHersevoort/react-native,jeffchienzabinet/react-native,folist/react-native,DenisIzmaylov/react-native,pglotov/react-native,sahat/react-native,dabit3/react-native,ouyangwenfeng/react-native,thotegowda/react-native,kesha-antonov/react-native,charlesvinette/react-native,aroth/react-native,wangcan2014/react-native,darkrishabh/react-native,HSFGitHub/react-native,jmstout/react-native,christopherdro/react-native,sahat/react-native,xiayz/react-native,josebalius/react-native,jeanblanchard/react-native,wangziqiang/react-native,Tredsite/react-native,sheep902/react-native,glovebx/react-native,nsimmons/react-native,folist/react-native,mrspeaker/react-native,Ehesp/react-native,ChiMarvine/react-native,spicyj/react-native,exponent/react-native,liuzechen/react-native,farazs/react-native,bowlofstew/react-native,wlrhnh-David/react-native,woshili1/react-native,zhangwei001/react-native,imDangerous/react-native,cazacugmihai/react-native,imWildCat/react-native,steveleec/react-native,Emilios1995/react-native,tsjing/react-native,pandiaraj44/react-native,southasia/react-native,Intellicode/react-native,lokilandon/react-native,bogdantmm92/react-native,vjeux/react-native,mchinyakov/react-native,xinthink/react-native,richardgill/react-native,JackLeeMing/react-native,lmorchard/react-native,iOSTestApps/react-native,sdiaz/react-native,yangchengwork/react-native,hoangpham95/react-native,southasia/react-native,sospartan/react-native,xinthink/react-native,arbesfeld/react-native,sahat/react-native,kujohn/react-native,hengcj/react-native,Livyli/react-native,myntra/react-native,ludaye123/react-native,mozillo/react-native,ivanph/react-native,kesha-antonov/react-native,mozillo/react-native,jeanblanchard/react-native,yangchengwork/react-native,charmingzuo/react-native,ehd/react-native,affinityis/react-native,taydakov/react-native,ronak301/react-native,JulienThibeaut/react-native,Loke155/react-native,gs-akhan/react-native,magnus-bergman/react-native,DerayGa/react-native,facebook/react-native,kundanjadhav/react-native,F2EVarMan/react-native,ultralame/react-native,orenklein/react-native,MonirAbuHilal/react-native,johnv315/react-native,zuolangguo/react-native,jekey/react-native,lelandrichardson/react-native,donyu/react-native,carcer/react-native,alantrrs/react-native,levic92/react-native,ordinarybill/react-native,tadeuzagallo/react-native,ptmt/react-native-macos,InterfaceInc/react-native,almost/react-native,zhangxq5012/react-native,aaron-goshine/react-native,ndejesus1227/react-native,huip/react-native,catalinmiron/react-native,imWildCat/react-native,skevy/react-native,rainkong/react-native,dimoge/react-native,wangyzyoga/react-native,JackLeeMing/react-native,pickhardt/react-native,liuhong1happy/react-native,kotdark/react-native,nktpro/react-native,Wingie/react-native,Furzikov/react-native,rickbeerendonk/react-native,liduanw/react-native,wlrhnh-David/react-native,compulim/react-native,lendup/react-native,csatf/react-native,aroth/react-native,chsj1/react-native,nevir/react-native,dalinaum/react-native,ktoh/react-native,callstack-io/react-native,rainkong/react-native,WilliamRen/react-native,sunblaze/react-native,tszajna0/react-native,narlian/react-native,lloydho/react-native,charmingzuo/react-native,jasonnoahchoi/react-native,ouyangwenfeng/react-native,hesling/react-native,patoroco/react-native,sekouperry/react-native,misakuo/react-native,jbaumbach/react-native,yelled3/react-native,qingfeng/react-native,jonesgithub/react-native,puf/react-native,rainkong/react-native,wildKids/react-native,martinbigio/react-native,aziz-boudi4/react-native,udnisap/react-native,zhangwei001/react-native,yiminghe/react-native,geoffreyfloyd/react-native,charlesvinette/react-native,kushal/react-native,yutail/react-native,Shopify/react-native,Jericho25/react-native,bouk/react-native,hoastoolshop/react-native,dut3062796s/react-native,gabrielbellamy/react-native,wangjiangwen/react-native,wangjiangwen/react-native,mbrock/react-native,stan229/react-native,pjcabrera/react-native,kfiroo/react-native,eduvon0220/react-native,kamronbatman/react-native,wjb12/react-native,yjh0502/react-native,jadbox/react-native,daveenguyen/react-native,chengky/react-native,kfiroo/react-native,gilesvangruisen/react-native,wildKids/react-native,JulienThibeaut/react-native,happypancake/react-native,iodine/react-native,shrutic/react-native,negativetwelve/react-native,prathamesh-sonpatki/react-native,Hkmu/react-native,jmhdez/react-native,chirag04/react-native,bogdantmm92/react-native,hoangpham95/react-native,dikaiosune/react-native,lanceharper/react-native,yushiwo/react-native,martinbigio/react-native,code0100fun/react-native,jevakallio/react-native,waynett/react-native,milieu/react-native,YinshawnRao/react-native,xxccll/react-native,almost/react-native,narlian/react-native,ehd/react-native,cdlewis/react-native,formatlos/react-native,code0100fun/react-native,dvcrn/react-native,ljhsai/react-native,YinshawnRao/react-native,gabrielbellamy/react-native,aifeld/react-native,cpunion/react-native,manhvvhtth/react-native,Flickster42490/react-native,strwind/react-native,liuhong1happy/react-native,quyixia/react-native,negativetwelve/react-native,yamill/react-native,BretJohnson/react-native,lucyywang/react-native,xiaoking/react-native,folist/react-native,xiayz/react-native,ChristianHersevoort/react-native,pgavazzi/react-unity,dabit3/react-native,levic92/react-native,jmhdez/react-native,insionng/react-native,jeffchienzabinet/react-native,mozillo/react-native,chapinkapa/react-native,21451061/react-native,cez213/react-native,ndejesus1227/react-native,dralletje/react-native,steveleec/react-native,alantrrs/react-native,roy0914/react-native,tsjing/react-native,futbalguy/react-native,onesfreedom/react-native,YComputer/react-native,iodine/react-native,puf/react-native,supercocoa/react-native,mozillo/react-native,DenisIzmaylov/react-native,levic92/react-native,csatf/react-native,gre/react-native,jeanblanchard/react-native,zenlambda/react-native,eduvon0220/react-native,futbalguy/react-native,mrspeaker/react-native,roy0914/react-native,edward/react-native,popovsh6/react-native,farazs/react-native,lmorchard/react-native,abdelouahabb/react-native,popovsh6/react-native,trueblue2704/react-native,wjb12/react-native,mironiasty/react-native,elliottsj/react-native,ludaye123/react-native,soxunyi/react-native,monyxie/react-native,dut3062796s/react-native,jmhdez/react-native,simple88/react-native,ouyangwenfeng/react-native,sitexa/react-native,billhello/react-native,ProjectSeptemberInc/react-native,lelandrichardson/react-native,dikaiosune/react-native,Shopify/react-native,aifeld/react-native,yusefnapora/react-native,xxccll/react-native,zdsiyan/react-native,charmingzuo/react-native,bradbumbalough/react-native,bright-sparks/react-native,mqli/react-native,tgoldenberg/react-native,slongwang/react-native,peterp/react-native,negativetwelve/react-native,andersryanc/react-native,JoeStanton/react-native,slongwang/react-native,mway08/react-native,rodneyss/react-native,dvcrn/react-native,corbt/react-native,gs-akhan/react-native,barakcoh/react-native,Wingie/react-native,wangjiangwen/react-native,catalinmiron/react-native,javache/react-native,nanpian/react-native,mukesh-kumar1905/react-native,heyjim89/react-native,dabit3/react-native,lprhodes/react-native,jaredly/react-native,adamkrell/react-native,dubert/react-native,CntChen/react-native,cmhsu/react-native,simple88/react-native,judastree/react-native,judastree/react-native,lightsofapollo/react-native,dylanchann/react-native,javache/react-native,Lohit9/react-native,kesha-antonov/react-native,chirag04/react-native,aljs/react-native,forcedotcom/react-native,ChristianHersevoort/react-native,billhello/react-native,Wingie/react-native,pengleelove/react-native,cazacugmihai/react-native,CodeLinkIO/react-native,ivanph/react-native,noif/react-native,booxood/react-native,Guardiannw/react-native,alvarojoao/react-native,ludaye123/react-native,southasia/react-native,chacbumbum/react-native,hengcj/react-native,leegilon/react-native,Intellicode/react-native,Purii/react-native,folist/react-native,dut3062796s/react-native,bouk/react-native,xiayz/react-native,dralletje/react-native,nsimmons/react-native,fw1121/react-native,NunoEdgarGub1/react-native,tszajna0/react-native,a2/react-native,rickbeerendonk/react-native,jeffchienzabinet/react-native,maskkid/react-native,lelandrichardson/react-native,aifeld/react-native,compulim/react-native,ajwhite/react-native,eliagrady/react-native,magnus-bergman/react-native,abdelouahabb/react-native,gauribhoite/react-native,hoangpham95/react-native,vincentqiu/react-native,srounce/react-native,liubko/react-native,lee-my/react-native,rickbeerendonk/react-native,Esdeath/react-native,shadow000902/react-native,mironiasty/react-native,waynett/react-native,frantic/react-native,JulienThibeaut/react-native,lgengsy/react-native,sixtomay/react-native,forcedotcom/react-native,chengky/react-native,rantianhua/react-native,ehd/react-native,Flickster42490/react-native,Heart2009/react-native,soxunyi/react-native,adamterlson/react-native,mcanthony/react-native,Loke155/react-native,gegaosong/react-native,bowlofstew/react-native,philikon/react-native,evilemon/react-native,daveenguyen/react-native,skevy/react-native,mironiasty/react-native,hydraulic/react-native,DanielMSchmidt/react-native,wesley1001/react-native,jordanbyron/react-native,eddiemonge/react-native,dfala/react-native,yjyi/react-native,nktpro/react-native,rainkong/react-native,yushiwo/react-native,ortutay/react-native,eddiemonge/react-native,chirag04/react-native,krock01/react-native,ndejesus1227/react-native,geoffreyfloyd/react-native,hammerandchisel/react-native,csudanthi/react-native,jhen0409/react-native,philonpang/react-native,tszajna0/react-native,imWildCat/react-native,jasonnoahchoi/react-native,tsdl2013/react-native,hayeah/react-native,formatlos/react-native,bowlofstew/react-native,happypancake/react-native,dubert/react-native,sahrens/react-native,sekouperry/react-native,gegaosong/react-native,ChiMarvine/react-native,clozr/react-native,cmhsu/react-native,ChristianHersevoort/react-native,cxfeng1/react-native,puf/react-native,mqli/react-native,olivierlesnicki/react-native,genome21/react-native,spicyj/react-native,thotegowda/react-native,puf/react-native,browniefed/react-native,wenpkpk/react-native,jasonals/react-native,chentsulin/react-native,chapinkapa/react-native,nathanajah/react-native,fish24k/react-native,salanki/react-native,compulim/react-native,DannyvanderJagt/react-native,tgoldenberg/react-native,mariusbutuc/react-native,HealthyWealthy/react-native,maskkid/react-native,heyjim89/react-native,callstack-io/react-native,zyvas/react-native,zvona/react-native,gegaosong/react-native,kesha-antonov/react-native,Hkmu/react-native,spyrx7/react-native,pvinis/react-native-desktop,lokilandon/react-native,krock01/react-native,Jericho25/react-native,bimawa/react-native,adamjmcgrath/react-native,qingsong-xu/react-native,LytayTOUCH/react-native,eduardinni/react-native,pitatensai/react-native,DenisIzmaylov/react-native,sonnylazuardi/react-native,cpunion/react-native,leopardpan/react-native,rwwarren/react-native,glovebx/react-native,gitim/react-native,hydraulic/react-native,huip/react-native,jasonnoahchoi/react-native,jeanblanchard/react-native,pvinis/react-native-desktop,yjyi/react-native,liubko/react-native,FionaWong/react-native,hammerandchisel/react-native,charlesvinette/react-native,hoastoolshop/react-native,F2EVarMan/react-native,foghina/react-native,ChristianHersevoort/react-native,zenlambda/react-native,wesley1001/react-native,gre/react-native,MonirAbuHilal/react-native,xiaoking/react-native,sarvex/react-native,stan229/react-native,jevakallio/react-native,chsj1/react-native,gilesvangruisen/react-native,pandiaraj44/react-native,Maxwell2022/react-native,Bronts/react-native,hoastoolshop/react-native,hanxiaofei/react-native,ptmt/react-native-macos,zhaosichao/react-native,browniefed/react-native,cez213/react-native,yjh0502/react-native,mosch/react-native,aaron-goshine/react-native,codejet/react-native,DerayGa/react-native,Purii/react-native,iodine/react-native,honger05/react-native,foghina/react-native,alantrrs/react-native,sekouperry/react-native,sixtomay/react-native,vincentqiu/react-native,KJlmfe/react-native,billhello/react-native,negativetwelve/react-native,rxb/react-native,mway08/react-native,bestwpw/react-native,sahrens/react-native,hassanabidpk/react-native,1988fei/react-native,taydakov/react-native,genome21/react-native,ericvera/react-native,maskkid/react-native,zhangwei001/react-native,oren/react-native,Heart2009/react-native,htc2u/react-native,facebook/react-native,pitatensai/react-native,ide/react-native,rantianhua/react-native,Applied-Duality/react-native,bsansouci/react-native,Guardiannw/react-native,androidgilbert/react-native,shrutic123/react-native,noif/react-native,shadow000902/react-native,Emilios1995/react-native,csudanthi/react-native,quyixia/react-native,liduanw/react-native,Serfenia/react-native,jeffchienzabinet/react-native,boopathi/react-native,nsimmons/react-native,Bronts/react-native,enaqx/react-native,janicduplessis/react-native,adamterlson/react-native,boopathi/react-native,HealthyWealthy/react-native,thstarshine/react-native,forcedotcom/react-native,wustxing/react-native,charlesvinette/react-native,Applied-Duality/react-native,kamronbatman/react-native,brentvatne/react-native,hesling/react-native,sghiassy/react-native,ajwhite/react-native,mihaigiurgeanu/react-native,carcer/react-native,yelled3/react-native,IveWong/react-native,darrylblake/react-native,strwind/react-native,NZAOM/react-native,timfpark/react-native,darrylblake/react-native,dylanchann/react-native,facebook/react-native,KJlmfe/react-native,miracle2k/react-native,mway08/react-native,trueblue2704/react-native,pcottle/react-native,JulienThibeaut/react-native,mbrock/react-native,IveWong/react-native,judastree/react-native,BossKing/react-native,yimouleng/react-native,tarkus/react-native-appletv,MetSystem/react-native,christer155/react-native,JasonZ321/react-native,soulcm/react-native,monyxie/react-native,mironiasty/react-native,mosch/react-native,ljhsai/react-native,srounce/react-native,ramoslin02/react-native,sahat/react-native,Lucifer-Kim/react-native,leegilon/react-native,sudhirj/react-native,lgengsy/react-native,vagrantinoz/react-native,onesfreedom/react-native,ortutay/react-native,gre/react-native,sheep902/react-native,Purii/react-native,jaggs6/react-native,hike2008/react-native,Heart2009/react-native,wlrhnh-David/react-native,cpunion/react-native,ldehai/react-native,woshili1/react-native,spicyj/react-native,ajwhite/react-native,mrspeaker/react-native,donyu/react-native,madusankapremaratne/react-native,PlexChat/react-native,sheep902/react-native,gauribhoite/react-native,richardgill/react-native,shrutic123/react-native,bimawa/react-native,Jonekee/react-native,JoeStanton/react-native,chrisbutcher/react-native,eduardinni/react-native,hwsyy/react-native,shadow000902/react-native,pgavazzi/react-unity,1988fei/react-native,wdxgtsh/react-native,liubko/react-native,alin23/react-native,Andreyco/react-native,lgengsy/react-native,pairyo/react-native,sekouperry/react-native,jasonnoahchoi/react-native,wdxgtsh/react-native,kushal/react-native,garrows/react-native,prathamesh-sonpatki/react-native,LytayTOUCH/react-native,sheep902/react-native,hanxiaofei/react-native,clozr/react-native,TChengZ/react-native,ktoh/react-native,jmstout/react-native,tmwoodson/react-native,guanghuili/react-native,Swaagie/react-native,tarkus/react-native-appletv,shrutic/react-native,gpbl/react-native,liufeigit/react-native,waynett/react-native,yutail/react-native,rwwarren/react-native,strwind/react-native,soxunyi/react-native,enaqx/react-native,bestwpw/react-native,ramoslin02/react-native,Srikanth4/react-native,zhaosichao/react-native,hassanabidpk/react-native,imDangerous/react-native,lstNull/react-native,alpz5566/react-native,qq644531343/react-native,Rowandjj/react-native,mariusbutuc/react-native,salanki/react-native,FionaWong/react-native,rickbeerendonk/react-native,apprennet/react-native,Loke155/react-native,shrimpy/react-native,yjh0502/react-native,JackLeeMing/react-native,LytayTOUCH/react-native,cdlewis/react-native,facebook/react-native,ericvera/react-native,zvona/react-native,zenlambda/react-native,rxb/react-native,timfpark/react-native,andersryanc/react-native,PlexChat/react-native,donyu/react-native,skatpgusskat/react-native,imDangerous/react-native,lgengsy/react-native,garrows/react-native,christer155/react-native,trueblue2704/react-native,F2EVarMan/react-native,heyjim89/react-native,Hkmu/react-native,andersryanc/react-native,lloydho/react-native,zhaosichao/react-native,kushal/react-native,myntra/react-native,eduvon0220/react-native,alin23/react-native,elliottsj/react-native,chrisbutcher/react-native,simple88/react-native,janicduplessis/react-native,WilliamRen/react-native,qingfeng/react-native,philonpang/react-native,chiefr/react-native,nathanajah/react-native,esauter5/react-native,zdsiyan/react-native,mcanthony/react-native,levic92/react-native,jmstout/react-native,ljhsai/react-native,christer155/react-native,chapinkapa/react-native,southasia/react-native,yutail/react-native,mironiasty/react-native,Wingie/react-native,philikon/react-native,tgoldenberg/react-native,thotegowda/react-native,hoangpham95/react-native,ChristopherSalam/react-native,olivierlesnicki/react-native,johnv315/react-native,JoeStanton/react-native,ipmobiletech/react-native,nbcnews/react-native,simple88/react-native,mozillo/react-native,Ehesp/react-native,alpz5566/react-native,exponentjs/react-native,satya164/react-native,jabinwang/react-native,zhaosichao/react-native,miracle2k/react-native,FionaWong/react-native,liuhong1happy/react-native,ProjectSeptemberInc/react-native,chentsulin/react-native,21451061/react-native,htc2u/react-native,supercocoa/react-native,guanghuili/react-native,lendup/react-native,myntra/react-native,DanielMSchmidt/react-native,eliagrady/react-native,bradbumbalough/react-native,janicduplessis/react-native,forcedotcom/react-native,zvona/react-native,tgoldenberg/react-native,zvona/react-native,tgf229/react-native,kundanjadhav/react-native,yzarubin/react-native,DerayGa/react-native,patoroco/react-native,dubert/react-native,billhello/react-native,quuack/react-native,marlonandrade/react-native,rantianhua/react-native,imjerrybao/react-native,misakuo/react-native,irisli/react-native,ide/react-native,tgriesser/react-native,chrisbutcher/react-native,chenbk85/react-native,bright-sparks/react-native,charlesvinette/react-native,alin23/react-native,hayeah/react-native,ptmt/react-native,folist/react-native,jibonpab/react-native,tahnok/react-native,TChengZ/react-native,mjetek/react-native,Bhullnatik/react-native,rushidesai/react-native,jasonals/react-native,compulim/react-native,WilliamRen/react-native,onesfreedom/react-native,pandiaraj44/react-native,adamjmcgrath/react-native,common2015/react-native,JulienThibeaut/react-native,fengshao0907/react-native,JulienThibeaut/react-native,doochik/react-native,ivanph/react-native,garydonovan/react-native,doochik/react-native,philonpang/react-native,darkrishabh/react-native,common2015/react-native,andrewljohnson/react-native,ptmt/react-native-macos,qingsong-xu/react-native,skatpgusskat/react-native,pairyo/react-native,johnv315/react-native,formatlos/react-native,chirag04/react-native,leopardpan/react-native,RGKzhanglei/react-native,Emilios1995/react-native,liubko/react-native,TChengZ/react-native,onesfreedom/react-native,yutail/react-native,ivanph/react-native,ModusCreateOrg/react-native,makadaw/react-native,tadeuzagallo/react-native,adamjmcgrath/react-native,lightsofapollo/react-native,qq644531343/react-native,martinbigio/react-native,pvinis/react-native-desktop,Suninus/react-native,misakuo/react-native,HSFGitHub/react-native,wlrhnh-David/react-native,zuolangguo/react-native,imDangerous/react-native,orenklein/react-native,affinityis/react-native,Zagorakiss/react-native,dimoge/react-native,Inner89/react-native,shrimpy/react-native,chacbumbum/react-native,mukesh-kumar1905/react-native,kentaromiura/react-native,ankitsinghania94/react-native,salanki/react-native,sospartan/react-native,lmorchard/react-native,waynett/react-native,farazs/react-native,esauter5/react-native,hammerandchisel/react-native,sjchakrav/react-native,luqin/react-native,jhen0409/react-native,tgf229/react-native,madusankapremaratne/react-native,ptmt/react-native,Zagorakiss/react-native,jasonals/react-native,yiminghe/react-native,vagrantinoz/react-native,dvcrn/react-native,jaredly/react-native,JackLeeMing/react-native,mrngoitall/react-native,Srikanth4/react-native,tahnok/react-native,bouk/react-native,jeanblanchard/react-native,Tredsite/react-native,luqin/react-native,rxb/react-native,tarkus/react-native-appletv,charmingzuo/react-native,daveenguyen/react-native,peterp/react-native,Zagorakiss/react-native,chetstone/react-native,hike2008/react-native,ipmobiletech/react-native,charmingzuo/react-native,irisli/react-native,sunblaze/react-native,liuzechen/react-native,tahnok/react-native,huangsongyan/react-native,goodheart/react-native,RGKzhanglei/react-native,mcrooks88/react-native,bradbumbalough/react-native,martinbigio/react-native,wangcan2014/react-native,ramoslin02/react-native,rushidesai/react-native,imjerrybao/react-native,hassanabidpk/react-native,Purii/react-native,jabinwang/react-native,quuack/react-native,sghiassy/react-native,wlrhnh-David/react-native,jaredly/react-native,harrykiselev/react-native,DerayGa/react-native,abdelouahabb/react-native,1988fei/react-native,Serfenia/react-native,browniefed/react-native,yutail/react-native,hengcj/react-native,csudanthi/react-native,mjetek/react-native,jibonpab/react-native,rwwarren/react-native,yelled3/react-native,InterfaceInc/react-native,levic92/react-native,rodneyss/react-native,programming086/react-native,j27cai/react-native,southasia/react-native,shadow000902/react-native,ptomasroos/react-native,spicyj/react-native,thotegowda/react-native,mozillo/react-native,mjetek/react-native,lmorchard/react-native,jackeychens/react-native,oren/react-native,Lohit9/react-native,codejet/react-native,RGKzhanglei/react-native,stonegithubs/react-native,dubert/react-native,evansolomon/react-native,programming086/react-native,zhangwei001/react-native,nickhudkins/react-native,mcanthony/react-native,yimouleng/react-native,mjetek/react-native,YotrolZ/react-native,tgf229/react-native,arbesfeld/react-native,PhilippKrone/react-native,Suninus/react-native,darkrishabh/react-native,patoroco/react-native,Poplava/react-native,adamkrell/react-native,Livyli/react-native,Jonekee/react-native,pandiaraj44/react-native,orenklein/react-native,nbcnews/react-native,corbt/react-native,barakcoh/react-native,Hkmu/react-native,eduardinni/react-native,aziz-boudi4/react-native,lprhodes/react-native,Intellicode/react-native,ipmobiletech/react-native,hengcj/react-native,andrewljohnson/react-native,sekouperry/react-native,hesling/react-native,Tredsite/react-native,tarkus/react-native-appletv,lanceharper/react-native,ktoh/react-native,sudhirj/react-native,tgoldenberg/react-native,xiangjuntang/react-native,pjcabrera/react-native,wdxgtsh/react-native,marlonandrade/react-native,exponentjs/react-native,apprennet/react-native,yimouleng/react-native,imjerrybao/react-native,christopherdro/react-native,hharnisc/react-native,yamill/react-native,alin23/react-native,chapinkapa/react-native,soulcm/react-native,NishanthShankar/react-native,neeraj-singh/react-native,aljs/react-native,leegilon/react-native,lightsofapollo/react-native,insionng/react-native,alin23/react-native,Jonekee/react-native,bsansouci/react-native,mcanthony/react-native,doochik/react-native,jackalchen/react-native,lprhodes/react-native,dut3062796s/react-native,vlrchtlt/react-native,yutail/react-native,eddiemonge/react-native,gauribhoite/react-native,tsjing/react-native,pickhardt/react-native,monyxie/react-native,mbrock/react-native,eliagrady/react-native,yjh0502/react-native,philonpang/react-native,hharnisc/react-native,alinz/react-native,ehd/react-native,DenisIzmaylov/react-native,bsansouci/react-native,kundanjadhav/react-native,steben/react-native,a2/react-native,nickhargreaves/react-native,ordinarybill/react-native,a2/react-native,rebeccahughes/react-native,Swaagie/react-native,clozr/react-native,bistacos/react-native,irisli/react-native,garydonovan/react-native,soulcm/react-native,sheep902/react-native,CntChen/react-native,myntra/react-native,andrewljohnson/react-native,philonpang/react-native,FionaWong/react-native,iodine/react-native,alinz/react-native,strwind/react-native,aljs/react-native,pgavazzi/react-unity,jabinwang/react-native,huip/react-native,Ehesp/react-native,liangmingjie/react-native,cez213/react-native,alantrrs/react-native,huangsongyan/react-native,kujohn/react-native,ktoh/react-native,ldehai/react-native,pairyo/react-native,arthuralee/react-native,geoffreyfloyd/react-native,happypancake/react-native,nsimmons/react-native,soxunyi/react-native,Swaagie/react-native,YinshawnRao/react-native,lloydho/react-native,ChristianHersevoort/react-native,pengleelove/react-native,cpunion/react-native,chengky/react-native,goodheart/react-native,charmingzuo/react-native,dylanchann/react-native,adamterlson/react-native,madusankapremaratne/react-native,ericvera/react-native,gegaosong/react-native,hike2008/react-native,Srikanth4/react-native,hharnisc/react-native,philikon/react-native,shadow000902/react-native,Serfenia/react-native,dfala/react-native,NunoEdgarGub1/react-native,tahnok/react-native,MonirAbuHilal/react-native,bsansouci/react-native,shinate/react-native,jabinwang/react-native,gilesvangruisen/react-native,nickhargreaves/react-native,nickhudkins/react-native,KJlmfe/react-native,christopherdro/react-native,mway08/react-native,wjb12/react-native,lucyywang/react-native,Suninus/react-native,xiaoking/react-native,gre/react-native,cosmith/react-native,popovsh6/react-native,shadow000902/react-native,bodefuwa/react-native,hwsyy/react-native,skevy/react-native,satya164/react-native,taydakov/react-native,averted/react-native,affinityis/react-native,darkrishabh/react-native,zdsiyan/react-native,PlexChat/react-native,orenklein/react-native,qq644531343/react-native,jaggs6/react-native,vincentqiu/react-native,hwsyy/react-native,sarvex/react-native,shrutic123/react-native,alantrrs/react-native,yelled3/react-native,pglotov/react-native,beni55/react-native,fish24k/react-native,shrutic123/react-native,patoroco/react-native,21451061/react-native,martinbigio/react-native,pitatensai/react-native,mqli/react-native,mway08/react-native,lanceharper/react-native,hharnisc/react-native,garydonovan/react-native,yiminghe/react-native,woshili1/react-native,yangshangde/react-native,myntra/react-native,bradbumbalough/react-native,liuzechen/react-native,dalinaum/react-native,xiaoking/react-native,chnfeeeeeef/react-native,dut3062796s/react-native,eduardinni/react-native,wildKids/react-native,ldehai/react-native,affinityis/react-native,hengcj/react-native,androidgilbert/react-native,tgriesser/react-native,alantrrs/react-native,xxccll/react-native,beni55/react-native,mcrooks88/react-native,HealthyWealthy/react-native,yamill/react-native,tahnok/react-native,wangziqiang/react-native,quuack/react-native,arbesfeld/react-native,alin23/react-native,aziz-boudi4/react-native,richardgill/react-native,frantic/react-native,chetstone/react-native,kushal/react-native,sixtomay/react-native,chacbumbum/react-native,janicduplessis/react-native,hammerandchisel/react-native,cosmith/react-native,dralletje/react-native,zdsiyan/react-native,tszajna0/react-native,arthuralee/react-native,tmwoodson/react-native,Rowandjj/react-native,NZAOM/react-native,j27cai/react-native,brentvatne/react-native,jonesgithub/react-native,noif/react-native,fw1121/react-native,bradbumbalough/react-native,liufeigit/react-native,mcanthony/react-native,YinshawnRao/react-native,jbaumbach/react-native,YueRuo/react-native,sahat/react-native,futbalguy/react-native,salanki/react-native,jeromjoy/react-native,Intellicode/react-native,liduanw/react-native,PhilippKrone/react-native,christer155/react-native,jeromjoy/react-native,Guardiannw/react-native,pitatensai/react-native,wangziqiang/react-native,quyixia/react-native,nathanajah/react-native,liangmingjie/react-native,Furzikov/react-native,iodine/react-native,NZAOM/react-native,brentvatne/react-native,Srikanth4/react-native,lgengsy/react-native,chrisbutcher/react-native,adamterlson/react-native,negativetwelve/react-native,aifeld/react-native,yiminghe/react-native,mjetek/react-native,patoroco/react-native,ipmobiletech/react-native,esauter5/react-native,garydonovan/react-native,jadbox/react-native,imDangerous/react-native,Lohit9/react-native,rkumar3147/react-native,aroth/react-native,dfala/react-native,MetSystem/react-native,wustxing/react-native,programming086/react-native,mtford90/react-native,rickbeerendonk/react-native,appersonlabs/react-native,srounce/react-native,machard/react-native,stan229/react-native,androidgilbert/react-native,trueblue2704/react-native,mcanthony/react-native,andrewljohnson/react-native,imWildCat/react-native,liangmingjie/react-native,yzarubin/react-native,bowlofstew/react-native,Shopify/react-native,sitexa/react-native,charlesvinette/react-native,yiminghe/react-native,machard/react-native,honger05/react-native,aaron-goshine/react-native,barakcoh/react-native,YinshawnRao/react-native,luqin/react-native,exponentjs/react-native,lokilandon/react-native,barakcoh/react-native,hoastoolshop/react-native,chetstone/react-native,ProjectSeptemberInc/react-native,rxb/react-native,tsjing/react-native,myntra/react-native,shinate/react-native,wangjiangwen/react-native,facebook/react-native,formatlos/react-native,Livyli/react-native,dubert/react-native,mtford90/react-native,dikaiosune/react-native,jevakallio/react-native,imjerrybao/react-native,PhilippKrone/react-native,machard/react-native,rwwarren/react-native,liuzechen/react-native,ipmobiletech/react-native,apprennet/react-native,ptomasroos/react-native,roth1002/react-native,tadeuzagallo/react-native,nickhudkins/react-native,ouyangwenfeng/react-native,hayeah/react-native,mrngoitall/react-native,yzarubin/react-native,honger05/react-native,wangcan2014/react-native,yiminghe/react-native,jekey/react-native,lwansbrough/react-native,skevy/react-native,yzarubin/react-native,adamkrell/react-native,naoufal/react-native,sudhirj/react-native,orenklein/react-native,NunoEdgarGub1/react-native,spicyj/react-native,nanpian/react-native,threepointone/react-native-1,milieu/react-native,RGKzhanglei/react-native,rollokb/react-native,chengky/react-native,aziz-boudi4/react-native,doochik/react-native,shrutic/react-native,IveWong/react-native,irisli/react-native,gpbl/react-native,edward/react-native,wangyzyoga/react-native,michaelchucoder/react-native,ankitsinghania94/react-native,alpz5566/react-native,rkumar3147/react-native,brentvatne/react-native,ivanph/react-native,oren/react-native,mrngoitall/react-native,code0100fun/react-native,Esdeath/react-native,lwansbrough/react-native,kotdark/react-native,HealthyWealthy/react-native,thstarshine/react-native,tsjing/react-native,IveWong/react-native,jevakallio/react-native,j27cai/react-native,philikon/react-native,sudhirj/react-native,ordinarybill/react-native,androidgilbert/react-native,daveenguyen/react-native,daveenguyen/react-native,vagrantinoz/react-native,sahrens/react-native,jeromjoy/react-native,ndejesus1227/react-native,ajwhite/react-native,Wingie/react-native,tszajna0/react-native,martinbigio/react-native,miracle2k/react-native,csudanthi/react-native,devknoll/react-native,pandiaraj44/react-native,sjchakrav/react-native,eduardinni/react-native,eddiemonge/react-native,wesley1001/react-native,misakuo/react-native,sdiaz/react-native,imjerrybao/react-native,LytayTOUCH/react-native,wangcan2014/react-native,cxfeng1/react-native,neeraj-singh/react-native,tahnok/react-native,lloydho/react-native,Tredsite/react-native,sghiassy/react-native,ajwhite/react-native,pletcher/react-native,zhangxq5012/react-native,wesley1001/react-native,dizlexik/react-native,NunoEdgarGub1/react-native,urvashi01/react-native,pvinis/react-native-desktop,bimawa/react-native,liuhong1happy/react-native,charmingzuo/react-native,wesley1001/react-native,emodeqidao/react-native,andersryanc/react-native,neeraj-singh/react-native,gegaosong/react-native,ortutay/react-native,stonegithubs/react-native,andersryanc/react-native,YueRuo/react-native,liangmingjie/react-native,shrutic/react-native,heyjim89/react-native,kesha-antonov/react-native,sghiassy/react-native,quuack/react-native,lee-my/react-native,billhello/react-native,CntChen/react-native,quyixia/react-native,Jericho25/react-native,pitatensai/react-native,liangmingjie/react-native,prathamesh-sonpatki/react-native,liubko/react-native,Livyli/react-native,clooth/react-native,jackalchen/react-native,NunoEdgarGub1/react-native,glovebx/react-native,genome21/react-native,sdiaz/react-native,leeyeh/react-native,thotegowda/react-native,neeraj-singh/react-native,hwsyy/react-native,MattFoley/react-native,ultralame/react-native,hoastoolshop/react-native,jibonpab/react-native,Maxwell2022/react-native,DannyvanderJagt/react-native,timfpark/react-native,shrutic/react-native,RGKzhanglei/react-native,TChengZ/react-native,yangchengwork/react-native,daveenguyen/react-native,farazs/react-native,mihaigiurgeanu/react-native,thstarshine/react-native,edward/react-native,boopathi/react-native,Applied-Duality/react-native,YueRuo/react-native,arthuralee/react-native,chsj1/react-native,dabit3/react-native,xiaoking/react-native,lloydho/react-native,csatf/react-native,zhaosichao/react-native,dimoge/react-native,catalinmiron/react-native,roth1002/react-native,jonesgithub/react-native,mrspeaker/react-native,prathamesh-sonpatki/react-native,ptomasroos/react-native,trueblue2704/react-native,almost/react-native,hike2008/react-native,Ehesp/react-native,WilliamRen/react-native,DannyvanderJagt/react-native,NishanthShankar/react-native,negativetwelve/react-native,zhangwei001/react-native,htc2u/react-native,ptmt/react-native,exponent/react-native,yushiwo/react-native,jibonpab/react-native,Bronts/react-native,zyvas/react-native,jibonpab/react-native,ankitsinghania94/react-native,ktoh/react-native,chnfeeeeeef/react-native,alantrrs/react-native,jaggs6/react-native,qingsong-xu/react-native,YotrolZ/react-native,andersryanc/react-native,PlexChat/react-native,dfala/react-native,happypancake/react-native,Bhullnatik/react-native,guanghuili/react-native,zenlambda/react-native,evilemon/react-native,mqli/react-native,jackeychens/react-native,wildKids/react-native,catalinmiron/react-native,MonirAbuHilal/react-native,geoffreyfloyd/react-native,sghiassy/react-native,xxccll/react-native,cosmith/react-native,HSFGitHub/react-native,DanielMSchmidt/react-native,mukesh-kumar1905/react-native,makadaw/react-native,yusefnapora/react-native,jackeychens/react-native,christopherdro/react-native,exponent/react-native,adrie4mac/react-native,jevakallio/react-native,sghiassy/react-native,hwsyy/react-native,sghiassy/react-native,arthuralee/react-native,liduanw/react-native,skevy/react-native,krock01/react-native,soxunyi/react-native,christopherdro/react-native,Rowandjj/react-native,ljhsai/react-native,yangshangde/react-native,zyvas/react-native,oren/react-native,lelandrichardson/react-native,pallyoung/react-native,mtford90/react-native,hwsyy/react-native,edward/react-native,elliottsj/react-native,kesha-antonov/react-native,urvashi01/react-native,Tredsite/react-native,woshili1/react-native,wustxing/react-native,kotdark/react-native,wustxing/react-native,judastree/react-native,gs-akhan/react-native,geoffreyfloyd/react-native,miracle2k/react-native,kundanjadhav/react-native,hydraulic/react-native,ndejesus1227/react-native,ivanph/react-native,kentaromiura/react-native,trueblue2704/react-native,evansolomon/react-native,taydakov/react-native,formatlos/react-native,shrutic123/react-native,zvona/react-native,peterp/react-native,HealthyWealthy/react-native,clooth/react-native,gitim/react-native,zdsiyan/react-native,yiminghe/react-native,soxunyi/react-native,narlian/react-native,wildKids/react-native,Guardiannw/react-native,chengky/react-native,shinate/react-native,sudhirj/react-native,supercocoa/react-native,ljhsai/react-native,mbrock/react-native,pairyo/react-native,chengky/react-native,garrows/react-native,bistacos/react-native,adamterlson/react-native,kamronbatman/react-native,manhvvhtth/react-native,Wingie/react-native,nktpro/react-native,sahat/react-native,Lucifer-Kim/react-native,pickhardt/react-native,ide/react-native,mway08/react-native,ptmt/react-native-macos,aljs/react-native,nickhudkins/react-native,evansolomon/react-native,F2EVarMan/react-native,Iragne/react-native,evansolomon/react-native,genome21/react-native,forcedotcom/react-native,hwsyy/react-native,chsj1/react-native,jackeychens/react-native,YueRuo/react-native,PhilippKrone/react-native,mariusbutuc/react-native,Hkmu/react-native,peterp/react-native,lucyywang/react-native,sghiassy/react-native,myntra/react-native,jeanblanchard/react-native,dylanchann/react-native,Lucifer-Kim/react-native,imWildCat/react-native,levic92/react-native,dubert/react-native,codejet/react-native,cpunion/react-native,sospartan/react-native,gs-akhan/react-native,lstNull/react-native,a2/react-native,huangsongyan/react-native,gauribhoite/react-native,sjchakrav/react-native,ModusCreateOrg/react-native,javache/react-native,lzbSun/react-native,sixtomay/react-native,dvcrn/react-native,carcer/react-native,jasonnoahchoi/react-native,pitatensai/react-native,a2/react-native,Reparadocs/react-native,ProjectSeptemberInc/react-native,jbaumbach/react-native,cdlewis/react-native,MetSystem/react-native,jasonnoahchoi/react-native,daveenguyen/react-native,wustxing/react-native,iOSTestApps/react-native,aroth/react-native,billhello/react-native,lloydho/react-native,hanxiaofei/react-native,YComputer/react-native,csudanthi/react-native,jibonpab/react-native,NZAOM/react-native,qingfeng/react-native,rkumar3147/react-native,sonnylazuardi/react-native,j27cai/react-native,marlonandrade/react-native,geoffreyfloyd/react-native,waynett/react-native,YueRuo/react-native,zyvas/react-native,jbaumbach/react-native,ldehai/react-native,yushiwo/react-native,tsjing/react-native,corbt/react-native,alantrrs/react-native,srounce/react-native,chenbk85/react-native,myntra/react-native,rantianhua/react-native,bistacos/react-native,Andreyco/react-native,salanki/react-native,thstarshine/react-native,chnfeeeeeef/react-native,hzgnpu/react-native,Tredsite/react-native,nickhudkins/react-native,Purii/react-native,dalinaum/react-native,marlonandrade/react-native,qingfeng/react-native,BretJohnson/react-native,PlexChat/react-native,Iragne/react-native,fw1121/react-native,browniefed/react-native,CodeLinkIO/react-native,nevir/react-native,JasonZ321/react-native,barakcoh/react-native,salanki/react-native,soulcm/react-native,josebalius/react-native,wjb12/react-native,dralletje/react-native,hzgnpu/react-native,johnv315/react-native,andersryanc/react-native,chenbk85/react-native,eliagrady/react-native,adamterlson/react-native,ramoslin02/react-native,Poplava/react-native,pletcher/react-native,ktoh/react-native,tsdl2013/react-native,YinshawnRao/react-native,lelandrichardson/react-native,ericvera/react-native,olivierlesnicki/react-native,stonegithubs/react-native,shinate/react-native,Zagorakiss/react-native,Furzikov/react-native,yushiwo/react-native,supercocoa/react-native,happypancake/react-native,Shopify/react-native,tgriesser/react-native,sdiaz/react-native,vjeux/react-native,zyvas/react-native,21451061/react-native,wdxgtsh/react-native,qingsong-xu/react-native,rainkong/react-native,mukesh-kumar1905/react-native,hammerandchisel/react-native,quyixia/react-native,kfiroo/react-native,yiminghe/react-native,lokilandon/react-native,miracle2k/react-native,ortutay/react-native,nanpian/react-native,barakcoh/react-native,shrimpy/react-native,sonnylazuardi/react-native,thotegowda/react-native,hanxiaofei/react-native,harrykiselev/react-native,formatlos/react-native,dimoge/react-native,magnus-bergman/react-native,steveleec/react-native,yangshangde/react-native,a2/react-native,zhangwei001/react-native,ultralame/react-native,ronak301/react-native,josebalius/react-native,narlian/react-native,hzgnpu/react-native,JackLeeMing/react-native,yjyi/react-native,wangyzyoga/react-native,andrewljohnson/react-native,jeffchienzabinet/react-native,ultralame/react-native,DanielMSchmidt/react-native,pj4533/react-native,foghina/react-native,naoufal/react-native,simple88/react-native,YotrolZ/react-native,Hkmu/react-native,pletcher/react-native,ktoh/react-native,ChristianHersevoort/react-native,wenpkpk/react-native,imDangerous/react-native,JoeStanton/react-native,j27cai/react-native,jacobbubu/react-native,adamjmcgrath/react-native,spyrx7/react-native,mihaigiurgeanu/react-native,exponentjs/react-native,dimoge/react-native,aljs/react-native,makadaw/react-native,jacobbubu/react-native,a2/react-native,oren/react-native,booxood/react-native,vlrchtlt/react-native,esauter5/react-native,guanghuili/react-native,Poplava/react-native,aljs/react-native,supercocoa/react-native,yusefnapora/react-native,YueRuo/react-native,fw1121/react-native,pitatensai/react-native,programming086/react-native,BretJohnson/react-native,jevakallio/react-native,cmhsu/react-native,arthuralee/react-native,code0100fun/react-native,nickhargreaves/react-native,tmwoodson/react-native,michaelchucoder/react-native,vlrchtlt/react-native,chapinkapa/react-native,DanielMSchmidt/react-native,yangchengwork/react-native,sahat/react-native,mariusbutuc/react-native,misakuo/react-native,devknoll/react-native,clooth/react-native,sitexa/react-native,adamkrell/react-native,roy0914/react-native,leeyeh/react-native,WilliamRen/react-native,F2EVarMan/react-native,eddiemonge/react-native,goodheart/react-native,nathanajah/react-native,wangyzyoga/react-native,lzbSun/react-native,folist/react-native,zenlambda/react-native,jordanbyron/react-native,stan229/react-native,compulim/react-native,rushidesai/react-native,Applied-Duality/react-native,satya164/react-native,Livyli/react-native,DerayGa/react-native,insionng/react-native,chiefr/react-native,olivierlesnicki/react-native,steveleec/react-native,jonesgithub/react-native,yzarubin/react-native,Poplava/react-native,wenpkpk/react-native,arbesfeld/react-native,nanpian/react-native,aaron-goshine/react-native,DerayGa/react-native,javache/react-native,ericvera/react-native,dvcrn/react-native,skatpgusskat/react-native,Bronts/react-native,Flickster42490/react-native,kentaromiura/react-native,southasia/react-native,happypancake/react-native,jbaumbach/react-native,skatpgusskat/react-native,sonnylazuardi/react-native,jadbox/react-native,mcrooks88/react-native,NZAOM/react-native,lmorchard/react-native,naoufal/react-native,jonesgithub/react-native,hoangpham95/react-native,stan229/react-native,xinthink/react-native,unknownexception/react-native,apprennet/react-native,catalinmiron/react-native,androidgilbert/react-native,onesfreedom/react-native,pvinis/react-native-desktop,apprennet/react-native,slongwang/react-native,NunoEdgarGub1/react-native,YinshawnRao/react-native,Tredsite/react-native,yamill/react-native,bouk/react-native,hzgnpu/react-native,garydonovan/react-native,aifeld/react-native,YueRuo/react-native,tahnok/react-native,TChengZ/react-native,vlrchtlt/react-native,pglotov/react-native,nickhudkins/react-native,spicyj/react-native,adrie4mac/react-native,krock01/react-native,imWildCat/react-native,21451061/react-native,forcedotcom/react-native,marlonandrade/react-native,carcer/react-native,woshili1/react-native,genome21/react-native,ivanph/react-native,ptomasroos/react-native,alpz5566/react-native,Purii/react-native,rantianhua/react-native,xiangjuntang/react-native,sahrens/react-native,zdsiyan/react-native,sixtomay/react-native,hesling/react-native,zuolangguo/react-native,nbcnews/react-native,almost/react-native,mchinyakov/react-native,CntChen/react-native,sonnylazuardi/react-native,j27cai/react-native,bradens/react-native,peterp/react-native,mozillo/react-native,sudhirj/react-native,codejet/react-native,ehd/react-native,ide/react-native,jacobbubu/react-native,chirag04/react-native,steben/react-native,kotdark/react-native,Hkmu/react-native,olivierlesnicki/react-native,milieu/react-native,zhangxq5012/react-native,clooth/react-native,pairyo/react-native,Maxwell2022/react-native,jabinwang/react-native,mosch/react-native,hzgnpu/react-native,yzarubin/react-native,mukesh-kumar1905/react-native,Wingie/react-native,alvarojoao/react-native,wangziqiang/react-native,carcer/react-native,kujohn/react-native,mukesh-kumar1905/react-native,nevir/react-native,cazacugmihai/react-native,rickbeerendonk/react-native,hoastoolshop/react-native,liangmingjie/react-native,mqli/react-native,waynett/react-native,folist/react-native,neeraj-singh/react-native,nickhargreaves/react-native,bright-sparks/react-native,mariusbutuc/react-native,narlian/react-native,imWildCat/react-native,yusefnapora/react-native,ordinarybill/react-native,cxfeng1/react-native,nevir/react-native,mosch/react-native,Iragne/react-native,unknownexception/react-native,HSFGitHub/react-native,tsdl2013/react-native,sospartan/react-native,ehd/react-native,ronak301/react-native,jackalchen/react-native,ide/react-native,frantic/react-native,pglotov/react-native,esauter5/react-native,almost/react-native,bogdantmm92/react-native,steben/react-native,hydraulic/react-native,eduardinni/react-native,rwwarren/react-native,LytayTOUCH/react-native,bestwpw/react-native,rollokb/react-native,ouyangwenfeng/react-native,tarkus/react-native-appletv,xiayz/react-native,misakuo/react-native,cazacugmihai/react-native,liufeigit/react-native,strwind/react-native,xinthink/react-native,jeromjoy/react-native,yangshangde/react-native,southasia/react-native,machard/react-native,lwansbrough/react-native,kassens/react-native,jordanbyron/react-native,Loke155/react-native,Flickster42490/react-native,andersryanc/react-native,mrngoitall/react-native,rkumar3147/react-native,wenpkpk/react-native,martinbigio/react-native,dubert/react-native,PhilippKrone/react-native,guanghuili/react-native,happypancake/react-native,chirag04/react-native,JasonZ321/react-native,tsdl2013/react-native,makadaw/react-native,wjb12/react-native,miracle2k/react-native,adamkrell/react-native,dabit3/react-native,darkrishabh/react-native,ipmobiletech/react-native,KJlmfe/react-native,quuack/react-native,jaredly/react-native,zyvas/react-native,kfiroo/react-native,WilliamRen/react-native,nktpro/react-native,yushiwo/react-native,christopherdro/react-native,bowlofstew/react-native,jibonpab/react-native,arbesfeld/react-native,Srikanth4/react-native,ndejesus1227/react-native,Bhullnatik/react-native,ludaye123/react-native,enaqx/react-native,jekey/react-native,chsj1/react-native,patoroco/react-native,appersonlabs/react-native,Loke155/react-native,Jericho25/react-native,InterfaceInc/react-native,gabrielbellamy/react-native,PhilippKrone/react-native,elliottsj/react-native,shrutic123/react-native,taydakov/react-native,aroth/react-native,RGKzhanglei/react-native,wangyzyoga/react-native,wangcan2014/react-native,shrimpy/react-native,yjh0502/react-native,mrspeaker/react-native,mihaigiurgeanu/react-native,cdlewis/react-native,jhen0409/react-native,aaron-goshine/react-native,beni55/react-native,rollokb/react-native,alvarojoao/react-native,ide/react-native,jeanblanchard/react-native,timfpark/react-native,androidgilbert/react-native,jonesgithub/react-native,neeraj-singh/react-native,bsansouci/react-native,BretJohnson/react-native,tsdl2013/react-native,eliagrady/react-native,adamkrell/react-native,pvinis/react-native-desktop,bestwpw/react-native,liuhong1happy/react-native,zhangxq5012/react-native,fw1121/react-native,ipmobiletech/react-native,tgoldenberg/react-native,wenpkpk/react-native,nsimmons/react-native,urvashi01/react-native,rxb/react-native,magnus-bergman/react-native,pglotov/react-native,htc2u/react-native,Bronts/react-native,21451061/react-native,Serfenia/react-native,huangsongyan/react-native,lee-my/react-native,ouyangwenfeng/react-native,callstack-io/react-native,yjh0502/react-native,bodefuwa/react-native,richardgill/react-native,code0100fun/react-native,maskkid/react-native,luqin/react-native,nanpian/react-native,vjeux/react-native,ide/react-native,lloydho/react-native,janicduplessis/react-native,enaqx/react-native,rebeccahughes/react-native,frantic/react-native,waynett/react-native,dizlexik/react-native,mway08/react-native,jaredly/react-native,slongwang/react-native,lstNull/react-native,TChengZ/react-native,hydraulic/react-native,NZAOM/react-native,adamjmcgrath/react-native,bright-sparks/react-native,lokilandon/react-native,Wingie/react-native,mironiasty/react-native,madusankapremaratne/react-native,apprennet/react-native,ChristopherSalam/react-native,bradens/react-native,Rowandjj/react-native,BretJohnson/react-native,imWildCat/react-native,eddiemonge/react-native,gs-akhan/react-native,wangziqiang/react-native,csatf/react-native,jbaumbach/react-native,tsjing/react-native,zhangwei001/react-native,YComputer/react-native,wangyzyoga/react-native,rxb/react-native,jacobbubu/react-native,affinityis/react-native,yzarubin/react-native,gegaosong/react-native,gpbl/react-native,Poplava/react-native,esauter5/react-native,Rowandjj/react-native,threepointone/react-native-1,jaggs6/react-native,kentaromiura/react-native,beni55/react-native,manhvvhtth/react-native,milieu/react-native,vincentqiu/react-native,liuzechen/react-native,emodeqidao/react-native,yamill/react-native,wangziqiang/react-native,hoangpham95/react-native,InterfaceInc/react-native,trueblue2704/react-native,BretJohnson/react-native,wangziqiang/react-native,gauribhoite/react-native,farazs/react-native,gauribhoite/react-native,roy0914/react-native,booxood/react-native,ankitsinghania94/react-native,pjcabrera/react-native,liuhong1happy/react-native,philikon/react-native,Livyli/react-native,wesley1001/react-native,jaredly/react-native,leegilon/react-native,leeyeh/react-native,hharnisc/react-native,steben/react-native,kundanjadhav/react-native,dabit3/react-native,WilliamRen/react-native,zvona/react-native,Suninus/react-native,oren/react-native,callstack-io/react-native,unknownexception/react-native,cpunion/react-native,TChengZ/react-native,dikaiosune/react-native,vjeux/react-native,shinate/react-native,wesley1001/react-native,sdiaz/react-native,gpbl/react-native,iodine/react-native,brentvatne/react-native,dizlexik/react-native,Shopify/react-native,futbalguy/react-native,nbcnews/react-native,elliottsj/react-native,sekouperry/react-native,timfpark/react-native,chentsulin/react-native,jasonals/react-native,mcrooks88/react-native,wustxing/react-native,michaelchucoder/react-native,fengshao0907/react-native,jmstout/react-native,glovebx/react-native,hoastoolshop/react-native,cdlewis/react-native,bimawa/react-native,vlrchtlt/react-native,ProjectSeptemberInc/react-native,esauter5/react-native,puf/react-native,gre/react-native,huip/react-native,ldehai/react-native,InterfaceInc/react-native,Srikanth4/react-native,mqli/react-native,mchinyakov/react-native,simple88/react-native,YotrolZ/react-native,mtford90/react-native,maskkid/react-native,goodheart/react-native,christer155/react-native,yushiwo/react-native,magnus-bergman/react-native,tgoldenberg/react-native,hassanabidpk/react-native,JasonZ321/react-native,xinthink/react-native,javache/react-native,foghina/react-native,jhen0409/react-native,tsdl2013/react-native,jadbox/react-native,hike2008/react-native,boopathi/react-native,huip/react-native,evilemon/react-native,1988fei/react-native
|
7b43c67950f0985be257f5fb7d656557e24d92d9
|
arch/powerpc/perf/hv-common.h
|
arch/powerpc/perf/hv-common.h
|
#ifndef LINUX_POWERPC_PERF_HV_COMMON_H_
#define LINUX_POWERPC_PERF_HV_COMMON_H_
#include <linux/types.h>
struct hv_perf_caps {
u16 version;
u16 collect_privileged:1,
ga:1,
expanded:1,
lab:1,
unused:12;
};
unsigned long hv_perf_caps_get(struct hv_perf_caps *caps);
#endif
|
#ifndef LINUX_POWERPC_PERF_HV_COMMON_H_
#define LINUX_POWERPC_PERF_HV_COMMON_H_
#include <linux/perf_event.h>
#include <linux/types.h>
struct hv_perf_caps {
u16 version;
u16 collect_privileged:1,
ga:1,
expanded:1,
lab:1,
unused:12;
};
unsigned long hv_perf_caps_get(struct hv_perf_caps *caps);
#define EVENT_DEFINE_RANGE_FORMAT(name, attr_var, bit_start, bit_end) \
PMU_FORMAT_ATTR(name, #attr_var ":" #bit_start "-" #bit_end); \
EVENT_DEFINE_RANGE(name, attr_var, bit_start, bit_end)
#define EVENT_DEFINE_RANGE(name, attr_var, bit_start, bit_end) \
static u64 event_get_##name##_max(void) \
{ \
BUILD_BUG_ON((bit_start > bit_end) \
|| (bit_end >= (sizeof(1ull) * 8))); \
return (((1ull << (bit_end - bit_start)) - 1) << 1) + 1; \
} \
static u64 event_get_##name(struct perf_event *event) \
{ \
return (event->attr.attr_var >> (bit_start)) & \
event_get_##name##_max(); \
}
#endif
|
Add macros for defining event fields & formats
|
powerpc/perf: Add macros for defining event fields & formats
Add two macros which generate functions to extract the relevent bits
from event->attr.config{,1,2}.
EVENT_DEFINE_RANGE() defines an accessor for a range of bits in the
event, as well as a "max" function that gives the maximum value of the
field based on the bit width.
EVENT_DEFINE_RANGE_FORMAT() defines the accessor & max routine and also
a format attribute for use in the PMU's attr_groups.
Signed-off-by: Cody P Schafer <c4fe2b1d90ef8f2548c8aeabfa633434316f0305@linux.vnet.ibm.com>
[mpe: move to powerpc, ugly but descriptive macro names]
Signed-off-by: Michael Ellerman <864f124608374e06e4da1fa5d2e47ed839b95411@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <a7089bb6e7e92505d88aaff006cbdd60cc9120b6@kernel.crashing.org>
|
C
|
mit
|
KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs
|
facf0422c56fc82a3a6d9097c582228b54ff2846
|
polygonmain.c
|
polygonmain.c
|
#include <polygon.h>
int main(int argc, char* argv[]) {
Polygon lol;
lol=createPolygon();
lol=addPoint(lol, createPoint(12.6,-5.3));
lol=addPoint(lol, createPoint(-4.1,456.123));
printf("\n\nx premier point : %f", lol->value.x);
printf("\ny premier point : %f\n\n", lol->value.y);
printf("\n\nx 2eme point : %f", lol->next->value.x);
printf("\ny 2eme point : %f\n\n", lol->next->value.y);
printf("\n\nx 3eme point : %f", lol->next->next->value.x);
printf("\ny 3eme point : %f\n\n", lol->next->next->value.y);
return EXIT_SUCCESS;
}
|
#include <polygon.h>
int main(int argc, char* argv[]) {
Polygon lol;
lol=createPolygon();
lol=addPoint(lol, createPoint(12.6,-5.3));
lol=addPoint(lol, createPoint(-4.1,456.123));
printf("\n\ntaille : %d", lol.size);
printf("\n\nx premier point : %f", lol.head->value.x);
printf("\ny premier point : %f\n\n", lol.head->value.y);
printf("\n\nx 2eme point : %f", lol.head->next->value.x);
printf("\ny 2eme point : %f\n\n", lol.head->next->value.y);
printf("\n\nx 3eme point : %f", lol.head->next->next->value.x);
printf("\ny 3eme point : %f\n\n", lol.head->next->next->value.y);
return EXIT_SUCCESS;
}
|
Print the size of the polygon
|
Print the size of the polygon
|
C
|
mit
|
UTBroM/GeometricLib
|
9d4afff04d96cc793aaddd386f8d138652ed9d6c
|
Pod/Classes/CMHErrors.h
|
Pod/Classes/CMHErrors.h
|
#import <Foundation/Foundation.h>
#ifndef CMHErrors_h
#define CMHErrors_h
static NSString *const CMHErrorDomain = @"CMHErrorDomain";
typedef NS_ENUM(NSUInteger, CMHError) {
CMHErrorUserMissingConsent = 700,
CMHErrorUserMissingSignature = 701,
CMHErrorUserDidNotConsent = 702,
CMHErrorUserDidNotProvideName = 703,
CMHErrorUserDidNotSign = 704
};
#endif
|
#import <Foundation/Foundation.h>
#ifndef CMHErrors_h
#define CMHErrors_h
static NSString *const CMHErrorDomain = @"me.cloudmine.CMHealth.ErrorDomain";
typedef NS_ENUM(NSUInteger, CMHError) {
CMHErrorUserMissingConsent = 700,
CMHErrorUserMissingSignature = 701,
CMHErrorUserDidNotConsent = 702,
CMHErrorUserDidNotProvideName = 703,
CMHErrorUserDidNotSign = 704
};
#endif
|
Use Apple recommended format for error domain string
|
Use Apple recommended format for error domain string
|
C
|
mit
|
cloudmine/CMHealthSDK-iOS,cloudmine/CMHealthSDK-iOS,cloudmine/CMHealthSDK
|
31a192f27be2444149748705c855e24f0e44a20d
|
dtool/src/parser-inc/Python.h
|
dtool/src/parser-inc/Python.h
|
// Filename: Python.h
// Created by: drose (12May00)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
// This file, and all the other files in this directory, aren't
// intended to be compiled--they're just parsed by CPPParser (and
// interrogate) in lieu of the actual system headers, to generate the
// interrogate database.
#ifndef PYTHON_H
#define PYTHON_H
class PyObject;
class PyThreadState;
typedef int Py_ssize_t;
struct Py_buffer;
#endif // PYTHON_H
|
// Filename: Python.h
// Created by: drose (12May00)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
// This file, and all the other files in this directory, aren't
// intended to be compiled--they're just parsed by CPPParser (and
// interrogate) in lieu of the actual system headers, to generate the
// interrogate database.
#ifndef PYTHON_H
#define PYTHON_H
class PyObject;
class PyThreadState;
typedef int Py_ssize_t;
struct Py_buffer;
// This file defines PY_VERSION_HEX, which is used in some places.
#include "patchlevel.h"
#endif // PYTHON_H
|
Fix interrogate understanding of PY_VERSION_HEX
|
Fix interrogate understanding of PY_VERSION_HEX
|
C
|
bsd-3-clause
|
chandler14362/panda3d,mgracer48/panda3d,grimfang/panda3d,tobspr/panda3d,hj3938/panda3d,mgracer48/panda3d,ee08b397/panda3d,grimfang/panda3d,Wilee999/panda3d,hj3938/panda3d,mgracer48/panda3d,jjkoletar/panda3d,mgracer48/panda3d,Wilee999/panda3d,Wilee999/panda3d,brakhane/panda3d,jjkoletar/panda3d,ee08b397/panda3d,chandler14362/panda3d,chandler14362/panda3d,grimfang/panda3d,mgracer48/panda3d,chandler14362/panda3d,chandler14362/panda3d,matthiascy/panda3d,Wilee999/panda3d,Wilee999/panda3d,cc272309126/panda3d,brakhane/panda3d,brakhane/panda3d,grimfang/panda3d,jjkoletar/panda3d,grimfang/panda3d,mgracer48/panda3d,jjkoletar/panda3d,cc272309126/panda3d,chandler14362/panda3d,brakhane/panda3d,tobspr/panda3d,tobspr/panda3d,Wilee999/panda3d,jjkoletar/panda3d,cc272309126/panda3d,Wilee999/panda3d,tobspr/panda3d,matthiascy/panda3d,jjkoletar/panda3d,grimfang/panda3d,grimfang/panda3d,chandler14362/panda3d,cc272309126/panda3d,grimfang/panda3d,cc272309126/panda3d,mgracer48/panda3d,grimfang/panda3d,matthiascy/panda3d,brakhane/panda3d,hj3938/panda3d,mgracer48/panda3d,ee08b397/panda3d,Wilee999/panda3d,hj3938/panda3d,hj3938/panda3d,ee08b397/panda3d,cc272309126/panda3d,matthiascy/panda3d,tobspr/panda3d,tobspr/panda3d,grimfang/panda3d,mgracer48/panda3d,ee08b397/panda3d,ee08b397/panda3d,chandler14362/panda3d,hj3938/panda3d,hj3938/panda3d,matthiascy/panda3d,jjkoletar/panda3d,tobspr/panda3d,hj3938/panda3d,cc272309126/panda3d,Wilee999/panda3d,hj3938/panda3d,ee08b397/panda3d,brakhane/panda3d,tobspr/panda3d,cc272309126/panda3d,cc272309126/panda3d,brakhane/panda3d,jjkoletar/panda3d,tobspr/panda3d,ee08b397/panda3d,matthiascy/panda3d,matthiascy/panda3d,brakhane/panda3d,matthiascy/panda3d,brakhane/panda3d,chandler14362/panda3d,tobspr/panda3d,ee08b397/panda3d,chandler14362/panda3d,matthiascy/panda3d,jjkoletar/panda3d
|
15980daa7ce97a67ebc430e6ed0aae180efdb490
|
nodes/examples/iwdg/main.c
|
nodes/examples/iwdg/main.c
|
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stm32f4xx_hal.h>
#include <board_driver/usb/usb.h>
#include <board_driver/iwdg.h>
int main(void) {
usb_init();
HAL_Delay(1000);
setup_IWDG();
init_IWDG();
char start[] = "Starting\r\n";
usb_transmit(start, sizeof(start)/sizeof(start[0]));
while (1) {
char str[] = "Hello usb\r\n";
usb_transmit(str, sizeof(str)/sizeof(str[0]));
HAL_Delay(500);
}
}
|
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stm32f4xx_hal.h>
#include <board_driver/usb/usb.h>
#include <board_driver/iwdg.h>
int main(void) {
usb_init();
HAL_Delay(1000);
setup_IWDG();
init_IWDG();
printf("Starting\r\n");
while (1) {
printf("Hello usb\r\n");
HAL_Delay(500);
}
}
|
Change example_iwdg to use printf instead of usb_transmit
|
Change example_iwdg to use printf instead of usb_transmit
|
C
|
mit
|
AAU-Racing/embedded_car,AAU-Racing/embedded_car,AAU-Racing/embedded_car
|
ac4b796c40c507d6f0c3c010ebdee6eabd683e4a
|
include/llvm/System/Signals.h
|
include/llvm/System/Signals.h
|
//===- llvm/System/Signals.h - Signal Handling support ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines some helpful functions for dealing with the possibility of
// unix signals occuring while your program is running.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_SYSTEM_SIGNALS_H
#define LLVM_SYSTEM_SIGNALS_H
#include <string>
namespace llvm {
/// RemoveFileOnSignal - This function registers signal handlers to ensure
/// that if a signal gets delivered that the named file is removed.
///
void RemoveFileOnSignal(const std::string &Filename);
/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or
/// SIGSEGV) is delivered to the process, print a stack trace and then exit.
void PrintStackTraceOnErrorSignal();
} // End llvm namespace
#endif
|
//===- llvm/System/Signals.h - Signal Handling support ----------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines some helpful functions for dealing with the possibility of
// unix signals occuring while your program is running.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_SYSTEM_SIGNALS_H
#define LLVM_SYSTEM_SIGNALS_H
#include "llvm/System/Path.h"
namespace llvm {
/// This function registers signal handlers to ensure that if a signal gets
/// delivered that the named file is removed.
/// @brief Remove a file if a fatal signal occurs.
void RemoveFileOnSignal(const std::string &Filename);
/// This function registers a signal handler to ensure that if a fatal signal
/// gets delivered to the process that the named directory and all its
/// contents are removed.
/// @brief Remove a directory if a fatal signal occurs.
void RemoveDirectoryOnSignal(const llvm::sys::Path& path);
/// When an error signal (such as SIBABRT or SIGSEGV) is delivered to the
/// process, print a stack trace and then exit.
/// @brief Print a stack trace if a fatal signal occurs.
void PrintStackTraceOnErrorSignal();
} // End llvm namespace
#endif
|
Add a function to remove whole directorys on fatal signal. Doxygenify function comments.
|
Add a function to remove whole directorys on fatal signal.
Doxygenify function comments.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@16079 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
bsd-2-clause
|
dslab-epfl/asap,GPUOpen-Drivers/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,chubbymaggie/asap,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,chubbymaggie/asap,chubbymaggie/asap,llvm-mirror/llvm,dslab-epfl/asap,llvm-mirror/llvm,llvm-mirror/llvm,dslab-epfl/asap,apple/swift-llvm,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,chubbymaggie/asap,GPUOpen-Drivers/llvm,apple/swift-llvm,dslab-epfl/asap
|
bc887c89df35f64f0a19ee5789f8ad811a7691a5
|
src/graphics/style.h
|
src/graphics/style.h
|
//
// Created by gravypod on 9/20/17.
//
#ifndef ENGINE_STYLE_H
#define ENGINE_STYLE_H
#include <duktape.h>
void make_style(const char const *name,
float width, float height,
const char const *vertex_name, const char const *fragment_name);
void draw_style(const char const *name, float x, float y);
__attribute__((unused)) static duk_ret_t native_make_style(duk_context *ctx)
{
const char const *name = duk_require_string(ctx, 0);
const float width = (float) duk_require_number(ctx, 1);
const float height = (float) duk_require_number(ctx, 2);
const char const *vertex_name = duk_require_string(ctx, 3);
const char const *fragment_name = duk_require_string(ctx, 4);
make_style(name, width, height, vertex_name, fragment_name);
return 0;
}
__attribute__((unused)) static duk_ret_t native_draw_style(duk_context *ctx)
{
const char const *name = duk_require_string(ctx, 0);
const float x = (float) duk_require_number(ctx, 1);
const float y = (float) duk_require_number(ctx, 2);
draw_style(name, x, y);
return 0;
}
#endif //ENGINE_STYLE_H
|
//
// Created by gravypod on 9/20/17.
//
#ifndef ENGINE_STYLE_H
#define ENGINE_STYLE_H
#include "lib/duktape/duktape.h"
void make_style(const char const *name,
float width, float height,
const char const *vertex_name, const char const *fragment_name);
void draw_style(const char const *name, float x, float y);
__attribute__((unused)) static duk_ret_t native_make_style(duk_context *ctx)
{
const char const *name = duk_require_string(ctx, 0);
const float width = (float) duk_require_number(ctx, 1);
const float height = (float) duk_require_number(ctx, 2);
const char const *vertex_name = duk_require_string(ctx, 3);
const char const *fragment_name = duk_require_string(ctx, 4);
make_style(name, width, height, vertex_name, fragment_name);
return 0;
}
__attribute__((unused)) static duk_ret_t native_draw_style(duk_context *ctx)
{
const char const *name = duk_require_string(ctx, 0);
const float x = (float) duk_require_number(ctx, 1);
const float y = (float) duk_require_number(ctx, 2);
draw_style(name, x, y);
return 0;
}
#endif //ENGINE_STYLE_H
|
Use local copy of duktape header.
|
Use local copy of duktape header.
|
C
|
mit
|
gravypod/solid-snake,gravypod/solid-snake,gravypod/solid-snake
|
c15b5da48b1fa3bec9315df8f66b7e36658d1742
|
include/pugl/pugl_cairo.h
|
include/pugl/pugl_cairo.h
|
/*
Copyright 2012-2020 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
@file pugl_cairo.h
@brief Declaration of Cairo backend accessor.
*/
#ifndef PUGL_PUGL_CAIRO_H
#define PUGL_PUGL_CAIRO_H
#include "pugl/pugl.h"
PUGL_BEGIN_DECLS
/**
@defgroup cairo Cairo
Cairo graphics support.
@ingroup pugl_c
@{
*/
/**
Cairo graphics backend accessor.
Pass the return value to puglInitBackend() to draw to a view with Cairo.
*/
PUGL_API PUGL_CONST_FUNC const PuglBackend*
puglCairoBackend(void);
/**
@}
*/
PUGL_END_DECLS
#endif // PUGL_PUGL_CAIRO_H
|
/*
Copyright 2012-2020 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/**
@file pugl_cairo.h
@brief Declaration of Cairo backend accessor.
*/
#ifndef PUGL_PUGL_CAIRO_H
#define PUGL_PUGL_CAIRO_H
#include "pugl/pugl.h"
PUGL_BEGIN_DECLS
/**
@defgroup cairo Cairo
Cairo graphics support.
@ingroup pugl_c
@{
*/
/**
Cairo graphics backend accessor.
Pass the return value to puglSetBackend() to draw to a view with Cairo.
*/
PUGL_API PUGL_CONST_FUNC const PuglBackend*
puglCairoBackend(void);
/**
@}
*/
PUGL_END_DECLS
#endif // PUGL_PUGL_CAIRO_H
|
Fix outdated function reference in Cairo documentation
|
Fix outdated function reference in Cairo documentation
|
C
|
isc
|
drobilla/pugl,drobilla/pugl,drobilla/pugl
|
a6cf12de9bae887b91767b2d3e1e4a4f64a410e9
|
3RVX/FakeKeyboard.h
|
3RVX/FakeKeyboard.h
|
#pragma once
#include <Windows.h>
class FakeKeyboard {
public:
static void SimulateKeypress(unsigned short vk) {
INPUT input = { 0 };
input.type = INPUT_KEYBOARD;
input.ki.wVk = vk;
input.ki.wScan = 0;
input.ki.dwFlags = 0;
input.ki.time = 0;
input.ki.dwExtraInfo = GetMessageExtraInfo();
/* key down: */
SendInput(1, &input, sizeof(INPUT));
/* key up: */
input.ki.dwFlags = KEYEVENTF_KEYUP;
SendInput(1, &input, sizeof(INPUT));
}
};
|
#pragma once
#include <Windows.h>
class FakeKeyboard {
public:
static void SimulateKeypress(unsigned short vk) {
unsigned int scan = MapVirtualKey(vk, MAPVK_VK_TO_VSC);
INPUT input[2];
input[0] = { 0 };
input[0].type = INPUT_KEYBOARD;
input[0].ki.wVk = vk;
input[0].ki.wScan = scan;
input[0].ki.dwFlags = KEYEVENTF_SCANCODE;
input[0].ki.time = 0;
input[0].ki.dwExtraInfo = GetMessageExtraInfo();
input[1] = { 0 };
input[1].type = INPUT_KEYBOARD;
input[1].ki.wVk = vk;
input[1].ki.wScan = scan;
input[1].ki.dwFlags = KEYEVENTF_SCANCODE | KEYEVENTF_KEYUP;
input[1].ki.time = 0;
input[1].ki.dwExtraInfo = GetMessageExtraInfo();
UINT result = SendInput(2, input, sizeof(INPUT));
}
};
|
Send simulated keystrokes as a single atomic event
|
Send simulated keystrokes as a single atomic event
|
C
|
bsd-2-clause
|
malensek/3RVX,Soulflare3/3RVX,malensek/3RVX,Soulflare3/3RVX,Soulflare3/3RVX,malensek/3RVX
|
c06d2e9315ecd8c1cda65aab7a2f024fd540c8ae
|
src/kernel/thread/idle_thread.c
|
src/kernel/thread/idle_thread.c
|
/**
* @file
*
* @date Jul 18, 2013
* @author: Anton Bondarev
*/
#include <kernel/task.h>
#include <kernel/thread.h>
#include <kernel/thread/thread_alloc.h>
#include <hal/arch.h> /*only for arch_idle */
#include <hal/cpu.h>
#include <kernel/cpu/cpu.h>
/*
* Function, which does nothing. For idle_thread.
*/
static void *idle_run(void *arg) {
while (true) {
arch_idle();
}
return NULL;
}
struct thread *idle_thread_create(void) {
struct thread *t;
sched_priority_t prior;
if (!(t = thread_alloc())) {
return NULL;
}
thread_init(t, THREAD_FLAG_NOTASK | THREAD_FLAG_SUSPENDED, idle_run, NULL);
t->task = task_kernel_task();
t->task->main_thread = t;
prior = sched_priority_full(t->task->priority, THREAD_PRIORITY_MIN);
thread_priority_set(t, prior);
cpu_init(cpu_get_id(), t);
return t;
}
|
/**
* @file
*
* @date Jul 18, 2013
* @author: Anton Bondarev
*/
#include <kernel/task.h>
#include <kernel/thread.h>
#include <err.h>
#include <kernel/thread/thread_alloc.h>
#include <hal/arch.h> /*only for arch_idle */
#include <hal/cpu.h>
#include <kernel/cpu/cpu.h>
/*
* Function, which does nothing. For idle_thread.
*/
static void *idle_run(void *arg) {
while (true) {
arch_idle();
}
return NULL;
}
struct thread *idle_thread_create(void) {
struct thread *t;
t = thread_create(THREAD_FLAG_NOTASK | THREAD_FLAG_SUSPENDED, idle_run,
NULL);
if(err(t)) {
return NULL;
}
t->task = task_kernel_task();
t->task->main_thread = t;
thread_priority_init(t, SCHED_PRIORITY_MIN);
cpu_init(cpu_get_id(), t);
return t;
}
|
Rework idle thread a little
|
thread: Rework idle thread a little
|
C
|
bsd-2-clause
|
embox/embox,Kefir0192/embox,Kefir0192/embox,abusalimov/embox,Kefir0192/embox,Kakadu/embox,Kakadu/embox,mike2390/embox,Kakadu/embox,mike2390/embox,embox/embox,embox/embox,embox/embox,vrxfile/embox-trik,Kefir0192/embox,mike2390/embox,abusalimov/embox,embox/embox,gzoom13/embox,Kefir0192/embox,vrxfile/embox-trik,mike2390/embox,vrxfile/embox-trik,embox/embox,Kefir0192/embox,Kakadu/embox,abusalimov/embox,Kakadu/embox,gzoom13/embox,mike2390/embox,vrxfile/embox-trik,gzoom13/embox,gzoom13/embox,vrxfile/embox-trik,Kefir0192/embox,abusalimov/embox,gzoom13/embox,gzoom13/embox,Kakadu/embox,vrxfile/embox-trik,mike2390/embox,gzoom13/embox,vrxfile/embox-trik,Kakadu/embox,abusalimov/embox,abusalimov/embox,mike2390/embox
|
c5830a1737debef34ada45a42be2cd1858978898
|
src/ConfigurationManager.h
|
src/ConfigurationManager.h
|
#include "ArduinoHeader.h"
#include <EEPROMex.h>
#include <Logging.h>
// Configuration version to determine data integrity.
#define CONFIG_VERSION "000"
// Size of the configuration block memory pool.
#define CONFIG_MEMORY_SIZE 32
// EEPROM size. Bad things will happen if this isn't set correctly.
#define CONFIG_EEPROM_SIZE EEPROMSizeATmega328
class ConfigurationManager {
private:
// Config memory address, used to determine where to read and write data.
int configuration_address = 0;
struct Configuration {
char version[4];
bool debug;
uint8_t loop_delay;
struct {
uint8_t input_buffer_size;
uint16_t baud_rate;
} serial;
} DEFAULT_CONFIGURATION = {
CONFIG_VERSION,
true,
50,
{
50,
9600
}
};
public:
Configuration data = DEFAULT_CONFIGURATION;
ConfigurationManager();
void load(char* = 0);
void save(char* = 0);
};
|
#include "ArduinoHeader.h"
#include <EEPROMex.h>
#include <Logging.h>
// Configuration version to determine data integrity.
#define CONFIG_VERSION "001"
// Size of the configuration block memory pool.
#define CONFIG_MEMORY_SIZE 32
// EEPROM size. Bad things will happen if this isn't set correctly.
#define CONFIG_EEPROM_SIZE EEPROMSizeATmega328
class ConfigurationManager {
private:
// Config memory address, used to determine where to read and write data.
int configuration_address = 0;
struct Configuration {
char version[4];
bool debug;
uint16_t loop_delay;
struct {
uint8_t input_buffer_size;
uint32_t baud_rate;
} serial;
} DEFAULT_CONFIGURATION = {
CONFIG_VERSION,
true,
50,
{
50,
9600
}
};
public:
Configuration data = DEFAULT_CONFIGURATION;
ConfigurationManager();
void load(char* = 0);
void save(char* = 0);
};
|
Allow for loop delays up to 2^4 ms. Allow for baud rates up to 2^32.
|
Allow for loop delays up to 2^4 ms.
Allow for baud rates up to 2^32.
Signed-off-by: Kalman Olah <aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d@kalmanolah.net>
|
C
|
mit
|
kalmanolah/kalmon-fw,kalmanolah/kalmon-fw
|
401825d6045ab8e3bd1514404e7c326a045a92ae
|
optional/capi/ext/proc_spec.c
|
optional/capi/ext/proc_spec.c
|
#include <string.h>
#include "ruby.h"
#include "rubyspec.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef HAVE_RB_PROC_NEW
VALUE concat_func(VALUE args) {
int i;
char buffer[500] = {0};
if (TYPE(val) != T_ARRAY) return Qnil;
for(i = 0; i < RARRAY_LEN(args); ++i) {
VALUE v = RARRAY_PTR(args)[i];
strcat(buffer, StringValuePtr(v));
strcat(buffer, "_");
}
buffer[strlen(buffer) - 1] = 0;
return rb_str_new2(buffer);
}
VALUE sp_underline_concat_proc(VALUE self) {
return rb_proc_new(concat_func, Qnil);
}
#endif
void Init_proc_spec() {
VALUE cls;
cls = rb_define_class("CApiProcSpecs", rb_cObject);
#ifdef HAVE_RB_PROC_NEW
rb_define_method(cls, "underline_concat_proc", sp_underline_concat_proc, 0);
#endif
}
#ifdef __cplusplus
}
#endif
|
#include <string.h>
#include "ruby.h"
#include "rubyspec.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef HAVE_RB_PROC_NEW
VALUE concat_func(VALUE args) {
int i;
char buffer[500] = {0};
if (TYPE(args) != T_ARRAY) return Qnil;
for(i = 0; i < RARRAY_LEN(args); ++i) {
VALUE v = RARRAY_PTR(args)[i];
strcat(buffer, StringValuePtr(v));
strcat(buffer, "_");
}
buffer[strlen(buffer) - 1] = 0;
return rb_str_new2(buffer);
}
VALUE sp_underline_concat_proc(VALUE self) {
return rb_proc_new(concat_func, Qnil);
}
#endif
void Init_proc_spec() {
VALUE cls;
cls = rb_define_class("CApiProcSpecs", rb_cObject);
#ifdef HAVE_RB_PROC_NEW
rb_define_method(cls, "underline_concat_proc", sp_underline_concat_proc, 0);
#endif
}
#ifdef __cplusplus
}
#endif
|
Fix typo in the commit a5312c77.
|
Fix typo in the commit a5312c77.
|
C
|
mit
|
julik/rubyspec,mrkn/rubyspec,no6v/rubyspec,ruby/spec,josedonizetti/rubyspec,wied03/rubyspec,timfel/rubyspec,jstepien/rubyspec,benburkert/rubyspec,Aesthetikx/rubyspec,timfel/rubyspec,iliabylich/rubyspec,rdp/rubyspec,alindeman/rubyspec,markburns/rubyspec,kachick/rubyspec,xaviershay/rubyspec,rdp/rubyspec,rkh/rubyspec,amarshall/rubyspec,yaauie/rubyspec,saturnflyer/rubyspec,sgarciac/spec,ericmeyer/rubyspec,saturnflyer/rubyspec,griff/rubyspec,qmx/rubyspec,alexch/rubyspec,eregon/rubyspec,BanzaiMan/rubyspec,benlovell/rubyspec,freerange/rubyspec,enricosada/rubyspec,nevir/rubyspec,oggy/rubyspec,nevir/rubyspec,yaauie/rubyspec,qmx/rubyspec,sferik/rubyspec,alindeman/rubyspec,benburkert/rubyspec,flavio/rubyspec,DavidEGrayson/rubyspec,yous/rubyspec,ruby/spec,JuanitoFatas/rubyspec,kidaa/rubyspec,godfat/rubyspec,ruby/rubyspec,jannishuebl/rubyspec,tinco/rubyspec,iliabylich/rubyspec,MagLev/rubyspec,Aesthetikx/rubyspec,Zoxc/rubyspec,ruby/rubyspec,tinco/rubyspec,amarshall/rubyspec,DawidJanczak/rubyspec,ericmeyer/rubyspec,yb66/rubyspec,alex/rubyspec,ruby/spec,metadave/rubyspec,marcandre/rubyspec,oggy/rubyspec,iainbeeston/rubyspec,shirosaki/rubyspec,atambo/rubyspec,eregon/rubyspec,roshats/rubyspec,sferik/rubyspec,scooter-dangle/rubyspec,jannishuebl/rubyspec,julik/rubyspec,atambo/rubyspec,BanzaiMan/rubyspec,wied03/rubyspec,nobu/rubyspec,MagLev/rubyspec,nobu/rubyspec,benlovell/rubyspec,jstepien/rubyspec,mbj/rubyspec,bomatson/rubyspec,metadave/rubyspec,agrimm/rubyspec,JuanitoFatas/rubyspec,flavio/rubyspec,bjeanes/rubyspec,enricosada/rubyspec,lucaspinto/rubyspec,neomadara/rubyspec,DawidJanczak/rubyspec,xaviershay/rubyspec,bjeanes/rubyspec,godfat/rubyspec,bl4ckdu5t/rubyspec,markburns/rubyspec,terceiro/rubyspec,alexch/rubyspec,freerange/rubyspec,griff/rubyspec,alex/rubyspec,scooter-dangle/rubyspec,nobu/rubyspec,Zoxc/rubyspec,jvshahid/rubyspec,yb66/rubyspec,neomadara/rubyspec,marcandre/rubyspec,sgarciac/spec,wied03/rubyspec,DavidEGrayson/rubyspec,no6v/rubyspec,bl4ckdu5t/rubyspec,yous/rubyspec,terceiro/rubyspec,chesterbr/rubyspec,mrkn/rubyspec,kidaa/rubyspec,josedonizetti/rubyspec,bomatson/rubyspec,teleological/rubyspec,eregon/rubyspec,rkh/rubyspec,kachick/rubyspec,shirosaki/rubyspec,mbj/rubyspec,askl56/rubyspec,kachick/rubyspec,jvshahid/rubyspec,agrimm/rubyspec,chesterbr/rubyspec,teleological/rubyspec,iainbeeston/rubyspec,sgarciac/spec,lucaspinto/rubyspec,roshats/rubyspec,askl56/rubyspec
|
2c22f2ef4105cb99c5fadf3bed796641c0993c79
|
include/config.h
|
include/config.h
|
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED
#define DBVERSION "0.0.5"
#define IDXVERSION "0.0.5"
#endif // CONFIG_H_INCLUDED
|
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED
#define DBVERSION "0.0.5"
#define IDXVERSION "0.0.5"
#define INITDB "i1"
#endif // CONFIG_H_INCLUDED
|
Set default database to i1
|
Set default database to i1
|
C
|
bsd-3-clause
|
yorickdewid/Quantica,yorickdewid/Quantica,yorickdewid/Quantica,yorickdewid/Quantica
|
e15920730f75a94866f7cdc955e442aec0b722d4
|
gen_message_hashes/hash_func.h
|
gen_message_hashes/hash_func.h
|
static inline uint32_t hash_func_string(const char* key)
{
uint32_t hash = 0;
int c;
while ((c = *key++) != 0)
hash = c + (hash << 6) + (hash << 16) - hash;
return hash;
}
|
static inline uint32_t hash_func_string(const char* key)
{
uint32_t hash = 0;
uint32_t c;
while ((c = (uint32_t)*key++) != 0)
hash = c + (hash << 6u) + (hash << 16u) - hash;
return hash;
}
|
Correct signedness to prevent some warnings.
|
Correct signedness to prevent some warnings.
|
C
|
mit
|
gatzka/cjet,mloy/cjet,gatzka/cjet,gatzka/cjet,gatzka/cjet,mloy/cjet,mloy/cjet,mloy/cjet,mloy/cjet,gatzka/cjet
|
2ead85de8a68ae2ae009acd7eb2439274d4ab50a
|
src/qt/bitcoinaddressvalidator.h
|
src/qt/bitcoinaddressvalidator.h
|
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QValidator>
/** Base48 entry widget validator.
Corrects near-miss characters and refuses characters that are no part of base48.
*/
class BitcoinAddressValidator : public QValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
State validate(QString &input, int &pos) const;
static const int MaxAddressLength = 35;
};
#endif // BITCOINADDRESSVALIDATOR_H
|
#ifndef BITCOINADDRESSVALIDATOR_H
#define BITCOINADDRESSVALIDATOR_H
#include <QValidator>
/** Base58 entry widget validator.
Corrects near-miss characters and refuses characters that are not part of base58.
*/
class BitcoinAddressValidator : public QValidator
{
Q_OBJECT
public:
explicit BitcoinAddressValidator(QObject *parent = 0);
State validate(QString &input, int &pos) const;
static const int MaxAddressLength = 35;
};
#endif // BITCOINADDRESSVALIDATOR_H
|
Fix typo in a comment: it's base58, not base48.
|
Fix typo in a comment: it's base58, not base48.
|
C
|
mit
|
dobbscoin/dobbscoin-source,dobbscoin/dobbscoin-source,Earlz/dobbscoin-source,Earlz/dobbscoin-source,Earlz/dobbscoin-source,dobbscoin/dobbscoin-source,dobbscoin/dobbscoin-source,Earlz/dobbscoin-source,Earlz/dobbscoin-source,dobbscoin/dobbscoin-source,dobbscoin/dobbscoin-source,Earlz/dobbscoin-source
|
1604bcf2799e03a3191187cbebf815af01a2cdc1
|
src/qhttpbasicauth_p.h
|
src/qhttpbasicauth_p.h
|
/*
* Copyright (c) 2015 Nathan Osman
*
* 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, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
#define QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
#include <QMap>
#include <QObject>
class QHttpBasicAuthPrivate : public QObject
{
Q_OBJECT
public:
explicit QHttpBasicAuthPrivate(QObject *parent, const QString &realm);
const QString &realm;
QMap<QString, QString> map;
};
#endif // QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
|
/*
* Copyright (c) 2015 Nathan Osman
*
* 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, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
#define QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
#include <QMap>
#include <QObject>
class QHttpBasicAuthPrivate : public QObject
{
Q_OBJECT
public:
explicit QHttpBasicAuthPrivate(QObject *parent, const QString &realm);
const QString realm;
QMap<QString, QString> map;
};
#endif // QHTTPENGINE_QHTTPBASICAUTHPRIVATE_H
|
Fix runtime bug caused by typo.
|
Fix runtime bug caused by typo.
|
C
|
mit
|
nitroshare/qhttpengine
|
161140c5ddb1f695e03ac03648f5e11ea9204fdf
|
src/core/core.h
|
src/core/core.h
|
/**
* ---------------------------------------------------------------------------
* @file core.h
* @brief The package header.
*
*/
#pragma once
#include "./types.h"
#include "./error.h"
#include "./fault.h"
#include "./trace.h"
#include "./results.h"
#include "./cast.h"
|
/**
* ---------------------------------------------------------------------------
* @file core.h
* @brief The package header.
*
*/
#pragma once
#include "./types.h"
#include "./error.h"
#include "./fault.h"
#include "./trace.h"
#include "./results.h"
#include "./cast.h"
#include "./memory.h"
|
Add memory module to package header
|
Add memory module to package header
|
C
|
mit
|
MaxRoecker/crux_algorithms-c,MaxRoecker/crux_algorithms-c
|
8c7971542f8cdd52b4c570978a036f288bfb3dee
|
bst.h
|
bst.h
|
#include <stdlib.h>
#ifndef __BST_H__
#define __BST_H__
struct BSTNode;
struct BST;
typedef struct BSTNode BSTNode;
typedef struct BST BST;
BST* BST_Create(void);
BSTNode* BSTNode_Create(void* k);
void BST_Inorder_Tree_Walk(BST* T, void (f)(void*));
void BST_Preorder_Tree_Walk(BST* T, void (f)(void*));
void BST_Postorder_Tree_Walk(BST* T, void (f)(void*));
BSTNode* BST_Tree_Search(BST* T, void* k, int (f)(void*, void*));
BSTNode* BST_Iterative_Tree_Search(BST* T, void* k, int (f)(void*, void*));
#endif
|
#include <stdlib.h>
#ifndef __BST_H__
#define __BST_H__
struct BSTNode;
struct BST;
typedef struct BSTNode BSTNode;
typedef struct BST BST;
BST* BST_Create(void);
BSTNode* BSTNode_Create(void* k);
void BST_Inorder_Tree_Walk(BST* T, void (f)(void*));
void BST_Preorder_Tree_Walk(BST* T, void (f)(void*));
void BST_Postorder_Tree_Walk(BST* T, void (f)(void*));
BSTNode* BST_Tree_Search(BST* T, void* k, int (f)(void*, void*), int (g)(void*, void*));
BSTNode* BST_Iterative_Tree_Search(BST* T, void* k, int (f)(void*, void*), int (g)(void*, void*));
#endif
|
Add missing key comparison function parameter
|
Add missing key comparison function parameter
Separate key comparison functions required
Equality
Order
|
C
|
mit
|
MaxLikelihood/CADT
|
9c73c8ef2859205a006eac2a31d43708f8e49dcd
|
list.c
|
list.c
|
#include "list.h"
struct ListNode
{
ListNode* prev;
ListNode* next;
void* k;
};
struct List
{
ListNode* head;
};
List* List_Create(void)
{
List* l = (List *)malloc(sizeof(List));
l->head = NULL;
return l;
}
|
#include "list.h"
struct ListNode
{
ListNode* prev;
ListNode* next;
void* k;
};
struct List
{
ListNode* head;
};
List* List_Create(void)
{
List* l = (List *)malloc(sizeof(List));
l->head = NULL;
return l;
}
ListNode* ListNode_Create(void* k)
{
ListNode* n = (ListNode *)malloc(sizeof(ListNode));
n->prev = NULL;
n->next = NULL;
n->k = k;
return n;
}
|
Add List Node creation function implementation
|
Add List Node creation function implementation
|
C
|
mit
|
MaxLikelihood/CADT
|
0c14190ae46a470fe929a764e1ac8ada2236b330
|
test/CodeGen/2010-05-26-AsmSideEffect.c
|
test/CodeGen/2010-05-26-AsmSideEffect.c
|
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// Radar 8026855
int test (void *src) {
register int w0 asm ("0");
// CHECK: call i32 asm "ldr $0, [$1]", "={ax},r,~{dirflag},~{fpsr},~{flags}"(i8* %tmp)
asm ("ldr %0, [%1]": "=r" (w0): "r" (src));
return w0;
}
|
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
// Radar 8026855
int test (void *src) {
register int w0 asm ("0");
// CHECK: call i32 asm "ldr $0, [$1]", "={ax},r,~{dirflag},~{fpsr},~{flags}"(i8*
asm ("ldr %0, [%1]": "=r" (w0): "r" (src));
return w0;
}
|
Rewrite match line to be friendlier to misc buildbots.
|
Rewrite match line to be friendlier to misc buildbots.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@136169 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang
|
ab5f015eeed6c4d4bc72f0cf9dfc680b04832198
|
thb/src/codetree.h
|
thb/src/codetree.h
|
#ifndef CODETREE_H
#define CODETREE_H
#include "constants.h"
typedef struct operation{
char *sign;
bool isCommunitative;
bool isAssociative;
int precedence;
} Operation;
typedef struct node{
char *name;
Operation *op;
struct node *left;
struct node *right;
bool isRoot;
int rank;
bool isConstant;
} Node;
typedef struct list_item {
struct list_item *left;
struct list_item *right;
Node *data;
} ListItem;
/* functions for tree nodes*/
Operation *newOp(char *sign, int com, int ass, int precedence);
Node *newNode(char *data);
Node *newNodeWithChildren(char *data, Operation *op, Node *left, Node *right);
/* functions for lists */
ListItem * new_list();
ListItem * insert_right(struct list_item *list, Node* data);
ListItem * delete(struct list_item *list);
Node *nodeByName(ListItem* forest, char * name);
#endif /* CODETREE_H */
|
#ifndef CODETREE_H
#define CODETREE_H
#include "constants.h"
typedef struct operation{
char *sign;
bool isCommunitative;
bool isAssociative;
int precedence;
} Operation;
typedef struct node{
char *name;
Operation *op;
struct node *left;
struct node *right;
bool isRoot;
int rank;
bool isConstant;
} Node;
typedef struct list_item {
struct list_item *left;
struct list_item *right;
Node *data;
} ListItem;
/* functions for tree nodes*/
Operation *newOp(char *sign, int com, int ass, int precedence);
Node *newNode(char *data);
Node *newNodeWithChildren(char *data, Operation *op, Node *left, Node *right);
/* functions for lists */
ListItem * new_list();
ListItem * insert_right(struct list_item *list, Node* data);
ListItem * delete(struct list_item *list);
Node *nodeByName(ListItem* forest, char * name);
#endif /* CODETREE_H */
|
Test for new system clock
|
Test for new system clock
|
C
|
mit
|
danielvogel/Tree-Height-Balancing
|
06586a6203551b57e8e527a25d80d36458fe0051
|
src/tests/eina_test_main.c
|
src/tests/eina_test_main.c
|
/* EINA - EFL data type library
* Copyright (C) 2008 Cedric Bail
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library;
* if not, see <http://www.gnu.org/licenses/>.
*/
#include "Eina.h"
#include "eina_suite.h"
START_TEST(eina_simple)
{
fail_if(!eina_init());
fail_if(eina_shutdown() != 0);
}
END_TEST
void eina_test_main(TCase *tc)
{
tcase_add_test(tc, eina_simple);
}
|
/* EINA - EFL data type library
* Copyright (C) 2008 Cedric Bail
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library;
* if not, see <http://www.gnu.org/licenses/>.
*/
#include "Eina.h"
#include "eina_suite.h"
#include <stdio.h>
START_TEST(eina_simple)
{
/* Eina_error as already been initialized by eina_hash
that was called by eina_mempool_init that's why we don't have 0 here */
fail_if(eina_init() != 2);
fail_if(eina_shutdown() != 1);
}
END_TEST
void eina_test_main(TCase *tc)
{
tcase_add_test(tc, eina_simple);
}
|
Fix test due to mempool internal change.
|
Fix test due to mempool internal change.
SVN revision: 36223
|
C
|
lgpl-2.1
|
gfriloux/eina,gfriloux/eina,turran/eina,gfriloux/eina,turran/eina,turran/eina
|
472c45932c0dbf733866a163c332cf546372ad84
|
src/Core/Exceptions/Exception.h
|
src/Core/Exceptions/Exception.h
|
#pragma once
#include <exception>
#include <string>
namespace core {
class Exception :
public std::exception
{
public:
Exception();
virtual ~Exception();
virtual char const * what() const override;
protected:
void setMessage(const std::string& message);
private:
std::string _message;
};
}
|
#pragma once
#include <exception>
#include <string>
namespace core {
class Exception :
public std::exception
{
public:
Exception();
virtual ~Exception();
virtual char const * what() const throw() override;
protected:
void setMessage(const std::string& message);
private:
std::string _message;
};
}
|
Add throw to what() function for linux compile
|
Add throw to what() function for linux compile
|
C
|
mit
|
aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/AppLauncher,aphilippe/AppLauncher,aphilippe/ClappLauncher,aphilippe/ClappLauncher
|
682e9119abc404a15c8304567819ed8f81ee27ab
|
bikepath/SearchItem.h
|
bikepath/SearchItem.h
|
//
// SearchItem.h
// bikepath
//
// Created by Farheen Malik on 8/15/14.
// Copyright (c) 2014 Bike Path. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SearchItem : NSObject
@end
|
//
// SearchItem.h
// bikepath
//
// Created by Farheen Malik on 8/15/14.
// Copyright (c) 2014 Bike Path. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SearchItem : NSObject
@property NSString *searchQuery;
@property (readonly) NSDate *creationDate;
@end
|
Add property for search item object
|
Add property for search item object
|
C
|
apache-2.0
|
red-spotted-newts-2014/bike-path,hushifei/bike-path,red-spotted-newts-2014/bike-path
|
cdef9ee855294e1a51f059dec548ab21425f4daf
|
ash/wm/window_selector_delegate.h
|
ash/wm/window_selector_delegate.h
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
#define ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
#include "base/compiler_specific.h"
namespace aura {
class Window;
}
namespace ash {
// Implement this class to handle the selection event from WindowSelector.
class WindowSelectorDelegate {
public:
// Invoked when a window is selected.
virtual void OnWindowSelected(aura::Window* window) = 0;
// Invoked if selection is canceled.
virtual void OnSelectionCanceled() = 0;
protected:
virtual ~WindowSelectorDelegate() {}
};
} // namespace ash
#endif // ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
#define ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
#include "ash/ash_export.h"
#include "base/compiler_specific.h"
namespace aura {
class Window;
}
namespace ash {
// Implement this class to handle the selection event from WindowSelector.
class ASH_EXPORT WindowSelectorDelegate {
public:
// Invoked when a window is selected.
virtual void OnWindowSelected(aura::Window* window) = 0;
// Invoked if selection is canceled.
virtual void OnSelectionCanceled() = 0;
protected:
virtual ~WindowSelectorDelegate() {}
};
} // namespace ash
#endif // ASH_WM_WINDOW_SELECTOR_DELEGATE_H_
|
Add ASH_EXPORT to base class of exported WindowSelectorController.
|
Add ASH_EXPORT to base class of exported WindowSelectorController.
TBR=pkotwicz@chromium.org
BUG=263477
TEST=Win Aura Builder compiles.
Review URL: https://codereview.chromium.org/21527003
git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@215043 0039d316-1c4b-4281-b951-d872f2087c98
|
C
|
bsd-3-clause
|
patrickm/chromium.src,mogoweb/chromium-crosswalk,Fireblend/chromium-crosswalk,anirudhSK/chromium,TheTypoMaster/chromium-crosswalk,littlstar/chromium.src,TheTypoMaster/chromium-crosswalk,axinging/chromium-crosswalk,ChromiumWebApps/chromium,anirudhSK/chromium,ondra-novak/chromium.src,fujunwei/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,axinging/chromium-crosswalk,mogoweb/chromium-crosswalk,axinging/chromium-crosswalk,jaruba/chromium.src,markYoungH/chromium.src,anirudhSK/chromium,dushu1203/chromium.src,Jonekee/chromium.src,TheTypoMaster/chromium-crosswalk,jaruba/chromium.src,ltilve/chromium,Jonekee/chromium.src,ondra-novak/chromium.src,ChromiumWebApps/chromium,dushu1203/chromium.src,dushu1203/chromium.src,ChromiumWebApps/chromium,fujunwei/chromium-crosswalk,fujunwei/chromium-crosswalk,Just-D/chromium-1,Just-D/chromium-1,jaruba/chromium.src,krieger-od/nwjs_chromium.src,Just-D/chromium-1,patrickm/chromium.src,PeterWangIntel/chromium-crosswalk,dushu1203/chromium.src,chuan9/chromium-crosswalk,hgl888/chromium-crosswalk-efl,jaruba/chromium.src,krieger-od/nwjs_chromium.src,M4sse/chromium.src,ondra-novak/chromium.src,Fireblend/chromium-crosswalk,M4sse/chromium.src,Jonekee/chromium.src,PeterWangIntel/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,PeterWangIntel/chromium-crosswalk,dushu1203/chromium.src,Jonekee/chromium.src,dushu1203/chromium.src,markYoungH/chromium.src,TheTypoMaster/chromium-crosswalk,hgl888/chromium-crosswalk-efl,markYoungH/chromium.src,axinging/chromium-crosswalk,Pluto-tv/chromium-crosswalk,hgl888/chromium-crosswalk-efl,littlstar/chromium.src,ChromiumWebApps/chromium,TheTypoMaster/chromium-crosswalk,littlstar/chromium.src,ondra-novak/chromium.src,anirudhSK/chromium,TheTypoMaster/chromium-crosswalk,hgl888/chromium-crosswalk-efl,patrickm/chromium.src,krieger-od/nwjs_chromium.src,mohamed--abdel-maksoud/chromium.src,dednal/chromium.src,markYoungH/chromium.src,ltilve/chromium,axinging/chromium-crosswalk,mogoweb/chromium-crosswalk,dednal/chromium.src,dednal/chromium.src,krieger-od/nwjs_chromium.src,Jonekee/chromium.src,M4sse/chromium.src,markYoungH/chromium.src,bright-sparks/chromium-spacewalk,M4sse/chromium.src,anirudhSK/chromium,fujunwei/chromium-crosswalk,mogoweb/chromium-crosswalk,patrickm/chromium.src,mogoweb/chromium-crosswalk,bright-sparks/chromium-spacewalk,M4sse/chromium.src,TheTypoMaster/chromium-crosswalk,ChromiumWebApps/chromium,markYoungH/chromium.src,littlstar/chromium.src,ondra-novak/chromium.src,littlstar/chromium.src,mogoweb/chromium-crosswalk,fujunwei/chromium-crosswalk,chuan9/chromium-crosswalk,anirudhSK/chromium,ChromiumWebApps/chromium,Chilledheart/chromium,ChromiumWebApps/chromium,Pluto-tv/chromium-crosswalk,M4sse/chromium.src,axinging/chromium-crosswalk,krieger-od/nwjs_chromium.src,ChromiumWebApps/chromium,markYoungH/chromium.src,mogoweb/chromium-crosswalk,patrickm/chromium.src,TheTypoMaster/chromium-crosswalk,M4sse/chromium.src,hgl888/chromium-crosswalk,Pluto-tv/chromium-crosswalk,chuan9/chromium-crosswalk,ChromiumWebApps/chromium,jaruba/chromium.src,Fireblend/chromium-crosswalk,markYoungH/chromium.src,jaruba/chromium.src,anirudhSK/chromium,Chilledheart/chromium,krieger-od/nwjs_chromium.src,Fireblend/chromium-crosswalk,Fireblend/chromium-crosswalk,chuan9/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,dednal/chromium.src,M4sse/chromium.src,crosswalk-project/chromium-crosswalk-efl,bright-sparks/chromium-spacewalk,Pluto-tv/chromium-crosswalk,Chilledheart/chromium,TheTypoMaster/chromium-crosswalk,littlstar/chromium.src,hgl888/chromium-crosswalk-efl,anirudhSK/chromium,hgl888/chromium-crosswalk,mogoweb/chromium-crosswalk,Just-D/chromium-1,littlstar/chromium.src,jaruba/chromium.src,Fireblend/chromium-crosswalk,Fireblend/chromium-crosswalk,hgl888/chromium-crosswalk,jaruba/chromium.src,crosswalk-project/chromium-crosswalk-efl,hgl888/chromium-crosswalk,fujunwei/chromium-crosswalk,mogoweb/chromium-crosswalk,markYoungH/chromium.src,axinging/chromium-crosswalk,chuan9/chromium-crosswalk,mohamed--abdel-maksoud/chromium.src,krieger-od/nwjs_chromium.src,Chilledheart/chromium,Jonekee/chromium.src,ltilve/chromium,fujunwei/chromium-crosswalk,axinging/chromium-crosswalk,hgl888/chromium-crosswalk,Jonekee/chromium.src,ondra-novak/chromium.src,M4sse/chromium.src,Chilledheart/chromium,dushu1203/chromium.src,markYoungH/chromium.src,patrickm/chromium.src,krieger-od/nwjs_chromium.src,Fireblend/chromium-crosswalk,ltilve/chromium,chuan9/chromium-crosswalk,Pluto-tv/chromium-crosswalk,bright-sparks/chromium-spacewalk,patrickm/chromium.src,hgl888/chromium-crosswalk,Fireblend/chromium-crosswalk,dushu1203/chromium.src,Pluto-tv/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,anirudhSK/chromium,dushu1203/chromium.src,PeterWangIntel/chromium-crosswalk,dednal/chromium.src,Pluto-tv/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,anirudhSK/chromium,bright-sparks/chromium-spacewalk,axinging/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,ondra-novak/chromium.src,krieger-od/nwjs_chromium.src,PeterWangIntel/chromium-crosswalk,hgl888/chromium-crosswalk-efl,Just-D/chromium-1,hgl888/chromium-crosswalk,jaruba/chromium.src,hgl888/chromium-crosswalk-efl,dushu1203/chromium.src,crosswalk-project/chromium-crosswalk-efl,ChromiumWebApps/chromium,mohamed--abdel-maksoud/chromium.src,ltilve/chromium,ltilve/chromium,mohamed--abdel-maksoud/chromium.src,ChromiumWebApps/chromium,krieger-od/nwjs_chromium.src,Chilledheart/chromium,Jonekee/chromium.src,dushu1203/chromium.src,Just-D/chromium-1,Jonekee/chromium.src,Jonekee/chromium.src,Pluto-tv/chromium-crosswalk,M4sse/chromium.src,mogoweb/chromium-crosswalk,PeterWangIntel/chromium-crosswalk,Jonekee/chromium.src,littlstar/chromium.src,ltilve/chromium,anirudhSK/chromium,axinging/chromium-crosswalk,ondra-novak/chromium.src,mohamed--abdel-maksoud/chromium.src,mohamed--abdel-maksoud/chromium.src,Just-D/chromium-1,ltilve/chromium,bright-sparks/chromium-spacewalk,hgl888/chromium-crosswalk,patrickm/chromium.src,ondra-novak/chromium.src,jaruba/chromium.src,mohamed--abdel-maksoud/chromium.src,chuan9/chromium-crosswalk,Chilledheart/chromium,chuan9/chromium-crosswalk,dednal/chromium.src,axinging/chromium-crosswalk,jaruba/chromium.src,hgl888/chromium-crosswalk,patrickm/chromium.src,dednal/chromium.src,ChromiumWebApps/chromium,bright-sparks/chromium-spacewalk,Just-D/chromium-1,markYoungH/chromium.src,PeterWangIntel/chromium-crosswalk,dednal/chromium.src,dednal/chromium.src,bright-sparks/chromium-spacewalk,fujunwei/chromium-crosswalk,crosswalk-project/chromium-crosswalk-efl,chuan9/chromium-crosswalk,Chilledheart/chromium,ltilve/chromium,bright-sparks/chromium-spacewalk,mohamed--abdel-maksoud/chromium.src,mohamed--abdel-maksoud/chromium.src,Chilledheart/chromium,Pluto-tv/chromium-crosswalk,dednal/chromium.src,hgl888/chromium-crosswalk-efl,fujunwei/chromium-crosswalk,M4sse/chromium.src,hgl888/chromium-crosswalk-efl,dednal/chromium.src,krieger-od/nwjs_chromium.src,anirudhSK/chromium,crosswalk-project/chromium-crosswalk-efl,crosswalk-project/chromium-crosswalk-efl,mohamed--abdel-maksoud/chromium.src,hgl888/chromium-crosswalk-efl,Just-D/chromium-1
|
4446de2c5a3f327eb1780dead5970ad4fa4bc5f0
|
test/CodeGen/2007-06-18-SextAttrAggregate.c
|
test/CodeGen/2007-06-18-SextAttrAggregate.c
|
// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
// XFAIL: aarch64, arm64, x86_64-pc-win32, x86_64-w64-mingw32
// PR1513
// AArch64 ABI actually requires the reverse of what this is testing: the callee
// does any extensions and remaining bits are unspecified.
// Win64 ABI does expect extensions for type smaller than 64bits.
// Technically this test wasn't written to test that feature, but it's a
// valuable check nevertheless.
struct s{
long a;
long b;
};
void f(struct s a, char *b, signed char C) {
// CHECK: i8 signext
}
|
// RUN: %clang_cc1 %s -o - -emit-llvm | FileCheck %s
// XFAIL: aarch64, arm64, x86_64-pc-win32, x86_64-w64-mingw32, x86_64-pc-windows-gnu
// PR1513
// AArch64 ABI actually requires the reverse of what this is testing: the callee
// does any extensions and remaining bits are unspecified.
// Win64 ABI does expect extensions for type smaller than 64bits.
// Technically this test wasn't written to test that feature, but it's a
// valuable check nevertheless.
struct s{
long a;
long b;
};
void f(struct s a, char *b, signed char C) {
// CHECK: i8 signext
}
|
Add expected fail triple x86_64-pc-windows-gnu to test as x86_64-w64-mingw32 is already there
|
Add expected fail triple x86_64-pc-windows-gnu to test as x86_64-w64-mingw32 is already there
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@336047 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang
|
5ea75f8b3388bc929fb980637b458ee629eaed39
|
include/seec/Transforms/BreakConstantGEPs/BreakConstantGEPs.h
|
include/seec/Transforms/BreakConstantGEPs/BreakConstantGEPs.h
|
//===- BreakConstantGEPs.h - Change constant GEPs into GEP instructions --- --//
//
// The SAFECode Compiler
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This pass changes all GEP constant expressions into GEP instructions. This
// permits the rest of SAFECode to put run-time checks on them if necessary.
//
//===----------------------------------------------------------------------===//
#ifndef BREAKCONSTANTGEPS_H
#define BREAKCONSTANTGEPS_H
#include "llvm/ADT/StringRef.h"
#include "llvm/IR/Dominators.h"
#include "llvm/IR/Module.h"
#include "llvm/Pass.h"
namespace llvm {
//
// Pass: BreakConstantGEPs
//
// Description:
// This pass modifies a function so that it uses GEP instructions instead of
// GEP constant expressions.
//
struct BreakConstantGEPs : public FunctionPass {
private:
// Private methods
// Private variables
public:
static char ID;
BreakConstantGEPs() : FunctionPass(ID) {}
StringRef getPassName() const override {
return "Remove Constant GEP Expressions";
}
virtual bool runOnFunction (Function & F);
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
// This pass does not modify the control-flow graph of the function
AU.setPreservesCFG();
}
};
} // namespace llvm
#endif
|
//===- BreakConstantGEPs.h - Change constant GEPs into GEP instructions --- --//
//
// The SAFECode Compiler
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This pass changes all GEP constant expressions into GEP instructions. This
// permits the rest of SAFECode to put run-time checks on them if necessary.
//
//===----------------------------------------------------------------------===//
#ifndef BREAKCONSTANTGEPS_H
#define BREAKCONSTANTGEPS_H
#include "llvm/ADT/StringRef.h"
#include "llvm/IR/Dominators.h"
#include "llvm/IR/Module.h"
#include "llvm/Pass.h"
namespace llvm {
//
// Pass: BreakConstantGEPs
//
// Description:
// This pass modifies a function so that it uses GEP instructions instead of
// GEP constant expressions.
//
struct BreakConstantGEPs : public FunctionPass {
private:
// Private methods
// Private variables
public:
static char ID;
BreakConstantGEPs() : FunctionPass(ID) {}
StringRef getPassName() const override {
return "Remove Constant GEP Expressions";
}
virtual bool runOnFunction (Function & F) override;
virtual void getAnalysisUsage(AnalysisUsage &AU) const override {
// This pass does not modify the control-flow graph of the function
AU.setPreservesCFG();
}
};
} // namespace llvm
#endif
|
Correct inconsistent use of override.
|
Correct inconsistent use of override.
|
C
|
mit
|
seec-team/seec,seec-team/seec,seec-team/seec,mheinsen/seec,mheinsen/seec,mheinsen/seec,mheinsen/seec,seec-team/seec,seec-team/seec,mheinsen/seec
|
76da6746559ec2b160a1443a5bffaaeca2f0c7c2
|
src/common/phys_mem_addr.h
|
src/common/phys_mem_addr.h
|
#ifndef GST_IMX_COMMON_PHYS_MEM_ADDR_H
#define GST_IMX_COMMON_PHYS_MEM_ADDR_H
#define GST_IMX_PHYS_ADDR_FORMAT "lx"
typedef unsigned long gst_imx_phys_addr_t;
#endif
|
#ifndef GST_IMX_COMMON_PHYS_MEM_ADDR_H
#define GST_IMX_COMMON_PHYS_MEM_ADDR_H
#define GST_IMX_PHYS_ADDR_FORMAT "#lx"
typedef unsigned long gst_imx_phys_addr_t;
#endif
|
Add 0x prefix to phys mem addr printf conversion specifier
|
common: Add 0x prefix to phys mem addr printf conversion specifier
Signed-off-by: Carlos Rafael Giani <d7d2e6b3863b2910d2ca34828bc651c85d88df6f@pseudoterminal.org>
|
C
|
lgpl-2.1
|
Josuercuevas/gstreamer-imx,commshare/gstreamer-imx,Josuercuevas/gstreamer-imx,commshare/gstreamer-imx
|
d4f93813a98363ec5519ae1ebeeba7d9e55154ac
|
main.c
|
main.c
|
// This is the actual main program
int
main(int argc, const char *argv[])
{
}
|
// This is the actual main program
#include "lorito.h"
#include "microcode.h"
#include "interp.h"
#include "loader.h"
int
main(int argc, const char *argv[])
{
int i;
Lorito_Interp *interp;
if (argc < 2)
{
fprintf(stderr, "Usage: lorito <bytecodefiles>\n");
return 255;
}
interp = lorito_init();
for (i = 1; i < argc; i++)
{
loadbc(interp, argv[i]);
}
return lorito_run(interp);
}
|
Add all the glue together to have an interpreter actually run.
|
Add all the glue together to have an interpreter actually run.
|
C
|
artistic-2.0
|
atrodo/lorito,atrodo/lorito
|
e9b5d3e4c0d690b50cc9a04b2aaec37381e22854
|
alura/c/forca.c
|
alura/c/forca.c
|
#include <stdio.h>
int main() {
char palavrasecreta[20];
sprintf(palavrasecreta, "MELANCIA");
printf("%s\n", palavrasecreta);
/*
palavrasecreta[0] = 'M';
palavrasecreta[1] = 'E';
palavrasecreta[2] = 'L';
palavrasecreta[3] = 'A';
palavrasecreta[4] = 'N';
palavrasecreta[5] = 'C';
palavrasecreta[6] = 'I';
palavrasecreta[7] = 'A';
palavrasecreta[8] = '\0';
printf("%c%c%c%c%c%c%c%c\n", palavrasecreta[0], palavrasecreta[1], palavrasecreta[2], palavrasecreta[3], palavrasecreta[4], palavrasecreta[5], palavrasecreta[6], palavrasecreta[7]);
*/
}
|
#include <stdio.h>
int main() {
char palavrasecreta[20];
sprintf(palavrasecreta, "MELANCIA");
int acertou = 0;
int enforcou = 0;
do {
// comecar o nosso jogo!!
} while(!acertou && !enforcou);
}
|
Update files, Alura, Introdução a C - Parte 2, Aula 2.3
|
Update files, Alura, Introdução a C - Parte 2, Aula 2.3
|
C
|
mit
|
fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs
|
a714c4de411c309937f64b47cc6cddca00bd8cf2
|
example/log_example.c
|
example/log_example.c
|
// cc log_example.c log.c -rdynamic
#include "log.h"
char
make_segmentfault()
{
char *s = NULL;
char ch = s[1]; // segment fault
return ch;
}
int main(int argc, const char *argv[])
{
/* open global logger to stderr (by setting filename to NULL) */
log_open("example", NULL, 0);
/* set log level to info, also the default level */
log_setlevel(LOG_INFO);
/* debug mesage won't be seen */
log_debug("debug message");
/* but info and warn, error message can be seen */
log_info("info message");
log_warn("warn message");
log_error("error message");
/* will log trace back on segmentfault automatically */
make_segmentfault();
return 0;
}
|
// cc log_example.c log.c -rdynamic
#include "log.h"
char
make_segmentfault()
{
char *s = NULL;
char ch = s[1]; // segment fault
return ch;
}
int main(int argc, const char *argv[])
{
/* open global logger to stderr (by setting filename to NULL) */
log_open("example", NULL, 0);
/* set log level to info, also the default level */
log_setlevel(LOG_INFO);
/* debug mesage won't be seen */
log_debug("debug message");
/* but info and warn, error message can be seen */
log_info("info message");
log_warn("warn message");
log_error("error message: %s", "someting wrong");
/* will log trace back on segmentfault automatically */
make_segmentfault();
return 0;
}
|
Add example for log with formatting args
|
Add example for log with formatting args
|
C
|
bsd-2-clause
|
hit9/C-Snip,hit9/C-Snip
|
abe29dda2ea228193d992dd4bb14aa475f717a41
|
thingc/execution/Opcode.h
|
thingc/execution/Opcode.h
|
#pragma once
enum class Opcode {
INVALID = 0,
NOP = 1,
PUSH = 2,
PUSH_STATIC = 3,
POP = 4,
SET = 5,
CALL = 6,
CALL_METHOD = 7,
CALL_INTERNAL = 8,
RETURN = 9,
PRINT = 10,
METHOD_END = 11
};
|
#pragma once
enum class Opcode {
INVALID = 0,
NOP = 1,
PUSH = 2, // pushes a reference into the stack
PUSH_STATIC = 3, // pushes static data into the stack
POP = 4, // pop anything to void
SET = 5, // pop a reference from the stack and assign it
SET_STATIC = 6, // set a reference to static data
CALL = 7,
CALL_METHOD = 8,
CALL_INTERNAL = 9,
RETURN = 10,
PRINT = 11,
METHOD_END = 12
};
|
Add SET_STATIC opcode to enum
|
Add SET_STATIC opcode to enum
|
C
|
mit
|
ytanay/thinglang,ytanay/thinglang,ytanay/thinglang,ytanay/thinglang
|
5344e1aff866658297912428255b7609d65d2cc0
|
src/main.c
|
src/main.c
|
/*!
@file main.c
@brief A simple test program for the C library code.
*/
#include "stdio.h"
#include "verilog_parser.h"
int main(int argc, char ** argv)
{
if(argc < 2)
{
printf("ERROR. Please supply at least one file path argument.\n");
return 1;
}
else
{
int F = 0;
for(F = 1; F < argc; F++)
{
// Load the file.
FILE * fh = fopen(argv[F], "r");
// Instance the parser.
verilog_parser parser = verilog_file_parse(fh);
// Parse the file and store the result.
int result = verilog_parse_buffer(parser);
verilog_free_parser(parser);
fclose(fh);
if(result == 0)
{
printf("Parse successful for %s\n",argv[F]);
}
else
{
printf("Parse failed for %s\n",argv[F]);
}
}
}
return 0;
}
|
/*!
@file main.c
@brief A simple test program for the C library code.
*/
#include "stdio.h"
#include "verilog_parser.h"
int main(int argc, char ** argv)
{
if(argc < 2)
{
printf("ERROR. Please supply at least one file path argument.\n");
return 1;
}
else
{
int F = 0;
for(F = 1; F < argc; F++)
{
printf("%s", argv[F]);
fflush(stdout);
// Load the file.
FILE * fh = fopen(argv[F], "r");
// Instance the parser.
verilog_parser parser = verilog_file_parse(fh);
// Parse the file and store the result.
int result = verilog_parse_buffer(parser);
verilog_free_parser(parser);
fclose(fh);
if(result == 0)
{
printf(" - Parse successful\n");
}
else
{
printf(" - Parse failed for\n");
}
}
}
return 0;
}
|
Print name of test before parsing it - easier to identify segfaulting tests. On branch master Your branch is up-to-date with 'github/master'.
|
Print name of test before parsing it - easier to identify segfaulting tests.
On branch master
Your branch is up-to-date with 'github/master'.
Changes to be committed:
modified: src/main.c
Changes not staged for commit:
modified: src/verilog_ast.c
modified: src/verilog_ast.h
modified: src/verilog_parser.y
|
C
|
mit
|
ben-marshall/verilog-parser,ben-marshall/verilog-parser,ben-marshall/verilog-parser
|
78a7a88da94ee3e6972485ceca00be8519212025
|
mt.h
|
mt.h
|
#ifndef _MATH_MT_H_
#define _MATH_MT_H_
#if defined(_MSC_VER) && (_MSC_VER <= 1300)
typedef unsigned __int32 uint32_t;
#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__)
#include <stdint.h>
#elif defined(__osf__)
#include <inttypes.h>
#else
#include <sys/types.h>
#endif
enum { N = 624, M = 397 };
struct mt {
uint32_t mt[N];
int mti;
};
struct mt *mt_setup(uint32_t seed);
struct mt *mt_setup_array(uint32_t *array, int n);
void mt_free(struct mt *self);
double mt_genrand(struct mt *self);
#endif
|
#ifndef _MATH_MT_H_
#define _MATH_MT_H_
#if defined(_MSC_VER) && (_MSC_VER <= 1300)
typedef unsigned __int32 uint32_t;
#elif defined(__linux__) || defined(__GLIBC__) || defined(__WIN32__) || defined(__APPLE__)
#include <stdint.h>
#elif defined(__osf__)
#include <inttypes.h>
#else
#include <sys/types.h>
#endif
enum { N = 624, M = 397 };
struct mt {
uint32_t mt[N];
int mti;
};
struct mt *mt_setup(uint32_t seed);
struct mt *mt_setup_array(uint32_t *array, int n);
void mt_free(struct mt *self);
double mt_genrand(struct mt *self);
#endif
|
Fix OS X build failure
|
Fix OS X build failure
|
C
|
bsd-3-clause
|
amenonsen/Math-Random-MT,amenonsen/Math-Random-MT
|
36a0988c4468386c7d52d9c1ff4cc09b615f4bf9
|
bst.c
|
bst.c
|
#include "bst.h"
static void BST_Transplant(BST* T, BSTNode* u, BSTNode* v);
struct BSTNode
{
BSTNode* left;
BSTNode* right;
BSTNode* p;
void* k;
};
struct BST
{
BSTNode* root;
};
BST* BST_Create(void)
{
BST* T = (BST* )malloc(sizeof(BST));
T->root = NULL;
return T;
}
BSTNode* BSTNode_Create(void* k)
{
BSTNode* n = (BSTNode* )malloc(sizeof(BSTNode));
n->left = NULL;
n->right = NULL;
n->p = NULL;
n->k = k;
}
void BST_Inorder_Tree_Walk(BSTNode* n, void (f)(void*))
{
if (n != NULL)
{
BST_Inorder_Tree_Walk(n->left, f);
f(n->k);
BST_Inorder_Tree_Walk(n->right, f);
}
}
|
#include "bst.h"
static void BST_Transplant(BST* T, BSTNode* u, BSTNode* v);
struct BSTNode
{
BSTNode* left;
BSTNode* right;
BSTNode* p;
void* k;
};
struct BST
{
BSTNode* root;
};
BST* BST_Create(void)
{
BST* T = (BST* )malloc(sizeof(BST));
T->root = NULL;
return T;
}
BSTNode* BSTNode_Create(void* k)
{
BSTNode* n = (BSTNode* )malloc(sizeof(BSTNode));
n->left = NULL;
n->right = NULL;
n->p = NULL;
n->k = k;
}
void BST_Inorder_Tree_Walk(BSTNode* n, void (f)(void*))
{
if (n != NULL)
{
BST_Inorder_Tree_Walk(n->left, f);
f(n->k);
BST_Inorder_Tree_Walk(n->right, f);
}
}
void BST_Preorder_Tree_Walk(BSTNode* n, void (f)(void*))
{
if (n != NULL)
{
f(n->k);
BST_Preorder_Tree_Walk(n->left, f);
BST_Preorder_Tree_Walk(n->right, f);
}
}
|
Add BST preorder traversal function implementation
|
Add BST preorder traversal function implementation
|
C
|
mit
|
MaxLikelihood/CADT
|
287e9adfce378bf1beba3406d09fed0a8b72c433
|
lib/msun/src/w_cabs.c
|
lib/msun/src/w_cabs.c
|
/*
* cabs() wrapper for hypot().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include <math.h>
struct complex {
double x;
double y;
};
double
cabs(z)
struct complex z;
{
return hypot(z.x, z.y);
}
|
/*
* cabs() wrapper for hypot().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include <math.h>
struct complex {
double x;
double y;
};
double
cabs(z)
struct complex z;
{
return hypot(z.x, z.y);
}
double
z_abs(z)
struct complex *z;
{
return hypot(z->x, z->y);
}
|
Add missing z_abs. In BSD tradition this is in libm.a.
|
Add missing z_abs. In BSD tradition this is in libm.a.
|
C
|
bsd-3-clause
|
jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase,jrobhoward/SCADAbase
|
2ceb17a890c54dd67c0078879b2aba9e726ec2c3
|
lambda/ol-init.c
|
lambda/ol-init.c
|
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
char **params;
// double fork to avoid zombies and exec the python server
void signal_handler() {
if (fork() == 0) {
execv(params[0], params);
}
return;
}
int main(int argc, char *argv[]) {
int k;
params = (char**)malloc((3+argc-1)*sizeof(char*));
params[0] = "/usr/bin/python";
params[1] = "/server.py";
for (k = 1; k < argc; k++) {
params[k+1] = argv[k];
}
params[argc+1] = NULL;
signal(SIGURG, signal_handler);
while (1) {
pause(); // sleep forever, we're init for the ns
}
return 0;
}
|
#include <unistd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
char **params;
/*
* Launch the lambda server.
*/
void signal_handler() {
if (fork() == 0) {
execv(params[0], params);
}
return;
}
/*
* Install the handler and block all other signals while handling
* the signal. Reset the signal handler after caught to default.
*/
void install_handler() {
struct sigaction setup_action;
sigset_t block_mask;
sigfillset(&block_mask);
setup_action.sa_handler = signal_handler;
setup_action.sa_mask = block_mask;
setup_action.sa_flags = SA_RESETHAND;
sigaction(SIGURG, &setup_action, NULL);
}
int main(int argc, char *argv[]) {
int k;
params = (char**)malloc((3+argc-1)*sizeof(char*));
params[0] = "/usr/bin/python";
params[1] = "/server.py";
for (k = 1; k < argc; k++) {
params[k+1] = argv[k];
}
params[argc+1] = NULL;
install_handler();
while (1) {
pause(); // sleep forever, we're init for the ns
}
return 0;
}
|
Use sigaction instead of signal
|
Use sigaction instead of signal
Signal is not portable. It is better to use sigaction so we can also
prevent other signals from interrupting us just in case.
|
C
|
apache-2.0
|
open-lambda/open-lambda,open-lambda/open-lambda,open-lambda/open-lambda,open-lambda/open-lambda,open-lambda/open-lambda
|
47ad5dcd384900b68596fa0cd93e8193d1af16fb
|
blocks/mdaqled.h
|
blocks/mdaqled.h
|
#ifndef __MDAQLED_H
#define __MDAQLED_H
#ifndef MATLAB_MEX_FILE
#include "gpio.h"
#endif
void mdaqled_init(void);
void mdaqled_set(unsigned char led, unsigned char state);
#endif
|
#ifndef __MDAQLED_H
#define __MDAQLED_H
#if (!defined MATLAB_MEX_FILE) && (!defined MDL_REF_SIM_TGT)
#include "gpio.h"
#endif
void mdaqled_init(void);
void mdaqled_set(unsigned char led, unsigned char state);
#endif
|
Make LED block compatible with PIL in model reference
|
Make LED block compatible with PIL in model reference
|
C
|
bsd-2-clause
|
kyak/microdaq_ert,kyak/microdaq_ert,kyak/microdaq_ert
|
a43d894adb388b3da6c3dc2ab467b022e4d52d05
|
cxl.c
|
cxl.c
|
#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
#include <X11/extensions/XKBrules.h>
int main(int argc, char *argv[])
{
Display *display = XOpenDisplay(NULL);
XkbEvent event;
XkbRF_VarDefsRec varDefs;
XkbStateRec state;
char *tmp = NULL;
char *groups[XkbNumKbdGroups];
int num_groups = 0;
XkbSelectEventDetails(display, XkbUseCoreKbd, XkbStateNotify, XkbGroupLockMask, XkbGroupLockMask);
XkbRF_GetNamesProp(display, &tmp, &varDefs);
groups[num_groups] = strtok(varDefs.layout, ",");
printf("%s\r\n", groups[num_groups]);
while(groups[num_groups])
{
num_groups++;
groups[num_groups] = strtok(NULL, ",");
}
XkbGetState(display, XkbUseCoreKbd, &state);
while (1)
{
XNextEvent(display, &event.core);
printf("%s\r\n", groups[event.state.locked_group]);
}
return XCloseDisplay(display);
}
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <X11/Xlib.h>
#include <X11/XKBlib.h>
#include <X11/extensions/XKBrules.h>
#define DELIMETER ","
#define LAYOUT_FORMAT "%s\r\n"
int main(int argc, char *argv[])
{
int rc = EXIT_FAILURE;
XkbEvent event;
XkbRF_VarDefsRec vd;
XkbStateRec state;
char *groups[XkbNumKbdGroups];
unsigned char num_groups = 0;
char *display_name = NULL;
Display *display = NULL;
if (!(display = XOpenDisplay(display_name)))
goto out;
if (XkbSelectEventDetails(display,
XkbUseCoreKbd,
XkbStateNotify,
XkbGroupLockMask,
XkbGroupLockMask) != True)
goto out_close_display;
if (XkbRF_GetNamesProp(display, NULL, &vd) != True)
goto out_close_display;
while ((groups[num_groups] = strsep(&vd.layout, DELIMETER))) num_groups++;
if (XkbGetState(display, XkbUseCoreKbd, &state) == Success)
printf(LAYOUT_FORMAT, groups[state.locked_group]);
while (1)
if (XNextEvent(display, &event.core) == Success)
printf(LAYOUT_FORMAT, groups[event.state.locked_group]);
XFree(vd.model);
XFree(vd.layout);
XFree(vd.variant);
XFree(vd.options);
out_close_display:
rc = XCloseDisplay(display);
out:
return rc;
}
|
Return codes of XLib functions are handled
|
Return codes of XLib functions are handled
Code formated to the K&R style. Added program exit code. All
significant return codes for XLib functions are handled. Free resources
allocated by XLib. However sigterm should be handled to get this
actually working.
|
C
|
mit
|
panurg/cxl
|
29078e0cee0384fd8f8863257491ef3cfdea8dfb
|
src/iterator.h
|
src/iterator.h
|
#ifndef ITERATOR_H
#define ITERATOR_H
struct iterator {
size_t index;
void *iterable;
void *current;
void *(*next)(struct iterator *this);
void (*destroy)(struct iterator *this);
};
struct iterator *iterator_create(void *iterable, void *(*next)(struct iterator *));
void iterator_destroy(struct iterator *this);
#endif
|
#ifndef ITERATOR_H
#define ITERATOR_H
#include <stdlib.h>
struct iterator {
size_t index;
void *iterable;
void *current;
void *(*next)(struct iterator *this);
void (*destroy)(struct iterator *this);
};
struct iterator *iterator_create(void *iterable, void *(*next)(struct iterator *));
void iterator_destroy(struct iterator *this);
#endif
|
Include stdlib to get size_t.
|
Include stdlib to get size_t.
|
C
|
mit
|
dgraham/libds,dgraham/libds
|
956c6edde28a3b60981059caf7a8bad137f76336
|
src/condor_includes/carmipro.h
|
src/condor_includes/carmipro.h
|
#if !defined(_CARMIPRO_H)
#define _CARMIPRO_H
#include "pvmsdpro.h"
#define CARMI_FIRST (SM_LAST+1)
#define CARMI_RESPAWN (CARMI_FIRST+1)
#define CARMI_CHKPT (CARMI_FIRST+2)
#define CARMI_ADDHOST (CARMI_FIRST+3)
#endif
|
#if !defined(_CARMIPRO_H)
#define _CARMIPRO_H
#include "pvmsdpro.h"
#define CARMI_FIRST (SM_LAST+1)
#define CARMI_RESPAWN (CARMI_FIRST+1)
#define CARMI_CHKPT (CARMI_FIRST+2)
#define CARMI_ADDHOST (CARMI_FIRST+3)
#define CARMI_SPAWN (CARMI_FIRST+4)
#define CARMI_CKPT_ON_VACATE (CARMI_FIRST + 5)
#define CARMI_LAST (CARMI_CKPT_ON_VACATE)
#define CO_CHECK_FIRST (CARMI_LAST+1)
#define CO_CHECK_SIMPLE_CKPT_TASK_TO_FILE (CO_CHECK_FIRST + 1)
#define CO_CHECK_RESTART_TASK_FROM_FILE (CO_CHECK_FIRST + 2)
#define CO_CHECK_SIMPLE_CKPT_TASK (CO_CHECK_FIRST + 3)
#define CO_CHECK_RESTART_TASK (CO_CHECK_FIRST + 4)
#define CO_CHECK_SIMPLE_MIGRATE_TASK_TO_HOST (CO_CHECK_FIRST + 5)
#define CO_CHECK_SIMPLE_MIGRATE_TASK (CO_CHECK_FIRST + 6)
#endif
|
Define a whole bunch of new message tags for checkpoint and migration functions.
|
Define a whole bunch of new message tags for checkpoint and migration
functions.
|
C
|
apache-2.0
|
zhangzhehust/htcondor,zhangzhehust/htcondor,mambelli/osg-bosco-marco,neurodebian/htcondor,mambelli/osg-bosco-marco,djw8605/condor,mambelli/osg-bosco-marco,djw8605/condor,mambelli/osg-bosco-marco,djw8605/condor,bbockelm/condor-network-accounting,clalancette/condor-dcloud,clalancette/condor-dcloud,zhangzhehust/htcondor,djw8605/htcondor,htcondor/htcondor,djw8605/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,htcondor/htcondor,djw8605/condor,djw8605/condor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,htcondor/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,clalancette/condor-dcloud,zhangzhehust/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,djw8605/condor,djw8605/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,djw8605/htcondor,htcondor/htcondor,djw8605/htcondor,neurodebian/htcondor,djw8605/condor,mambelli/osg-bosco-marco,neurodebian/htcondor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,neurodebian/htcondor,neurodebian/htcondor,bbockelm/condor-network-accounting,clalancette/condor-dcloud,djw8605/condor,zhangzhehust/htcondor,neurodebian/htcondor,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,djw8605/htcondor,djw8605/htcondor,htcondor/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,neurodebian/htcondor,htcondor/htcondor
|
c831a822bf7a6a3b08ab8584a6db8d6cad567987
|
main.c
|
main.c
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <mkdio.h>
float
main(int argc, char **argv)
{
int opt;
int debug = 0;
char *ofile = 0;
extern char version[];
opterr = 1;
while ( (opt=getopt(argc, argv, "do:V")) != EOF ) {
switch (opt) {
case 'd': debug = 1;
break;
case 'V': printf("markdown %s\n", version);
exit(0);
case 'o': if ( ofile ) {
fprintf(stderr, "Too many -o options\n");
exit(1);
}
if ( !freopen(ofile = optarg, "w", stdout) ) {
perror(ofile);
exit(1);
}
break;
default: fprintf(stderr, "usage: markdown [-V] [-o file] [file]\n");
exit(1);
}
}
argc -= optind;
argv += optind;
if ( argc && !freopen(argv[0], "r", stdin) ) {
perror(argv[0]);
exit(1);
}
if ( debug )
mkd_dump(mkd_in(stdin), stdout, 0);
else
markdown(mkd_in(stdin), stdout, 0);
exit(0);
}
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <mkdio.h>
float
main(int argc, char **argv)
{
int opt;
int debug = 0;
char *ofile = 0;
extern char version[];
opterr = 1;
while ( (opt=getopt(argc, argv, "do:V")) != EOF ) {
switch (opt) {
case 'd': debug = 1;
break;
case 'V': printf("markdown %s\n", version);
exit(0);
case 'o': if ( ofile ) {
fprintf(stderr, "Too many -o options\n");
exit(1);
}
if ( !freopen(ofile = optarg, "w", stdout) ) {
perror(ofile);
exit(1);
}
break;
default: fprintf(stderr, "usage: markdown [-dV] [-o file] [file]\n");
exit(1);
}
}
argc -= optind;
argv += optind;
if ( argc && !freopen(argv[0], "r", stdin) ) {
perror(argv[0]);
exit(1);
}
if ( debug )
mkd_dump(mkd_in(stdin), stdout, 0);
else
markdown(mkd_in(stdin), stdout, 0);
exit(0);
}
|
Put the -d option into the usage: message
|
Put the -d option into the usage: message
|
C
|
bsd-3-clause
|
binki/discount,binki/discount,binki/discount,OliverLetterer/discount,davidfstr/discount,binki/discount,OliverLetterer/discount,gm2bv/discount,davidfstr/discount,gm2bv/discount,davidfstr/discount,davidfstr/discount,binki/discount,gm2bv/discount,OliverLetterer/discount,gm2bv/discount
|
178691e163ee60902dc23f3de2b8be73b86a2473
|
src/modules/cameraautoswitch.h
|
src/modules/cameraautoswitch.h
|
/*
* cameraautoswitch.h
* StatusSpec project
*
* Copyright (c) 2014-2015 Forward Command Post
* BSD 2-Clause License
* http://opensource.org/licenses/BSD-2-Clause
*
*/
#include "igameevents.h"
#include "../modules.h"
class CCommand;
class ConCommand;
class ConVar;
class IConVar;
class CameraAutoSwitch : public Module, IGameEventListener2 {
public:
CameraAutoSwitch();
static bool CheckDependencies();
virtual void FireGameEvent(IGameEvent *event);
private:
class Panel;
Panel *panel;
ConVar *enabled;
ConVar *killer;
ConVar *killer_delay;
void ToggleEnabled(IConVar *var, const char *pOldValue, float flOldValue);
void ToggleKillerEnabled(IConVar *var, const char *pOldValue, float flOldValue);
};
|
/*
* cameraautoswitch.h
* StatusSpec project
*
* Copyright (c) 2014-2015 Forward Command Post
* BSD 2-Clause License
* http://opensource.org/licenses/BSD-2-Clause
*
*/
#pragma once
#include "igameevents.h"
#include "../modules.h"
class CCommand;
class ConCommand;
class ConVar;
class IConVar;
class CameraAutoSwitch : public Module, IGameEventListener2 {
public:
CameraAutoSwitch();
static bool CheckDependencies();
virtual void FireGameEvent(IGameEvent *event);
private:
class Panel;
Panel *panel;
ConVar *enabled;
ConVar *killer;
ConVar *killer_delay;
void ToggleEnabled(IConVar *var, const char *pOldValue, float flOldValue);
void ToggleKillerEnabled(IConVar *var, const char *pOldValue, float flOldValue);
};
|
Add pragma once to camera auto switch header.
|
Add pragma once to camera auto switch header.
|
C
|
bsd-2-clause
|
fwdcp/StatusSpec,fwdcp/StatusSpec
|
f4fca963a2ef0914bd4142a772cefc76f9e75956
|
alura/c/adivinhacao.c
|
alura/c/adivinhacao.c
|
#include <stdio.h>
int main() {
// imprime o cabecalho do nosso jogo
printf("******************************************\n");
printf("* Bem vindo ao nosso jogo de adivinhação *\n");
printf("******************************************\n");
int numerosecreto = 42;
int chute;
printf("Qual é o seu chute? ");
scanf("%d", &chute);
printf("Seu chute foi %d\n", chute);
if(chute == numerosecreto) {
printf("Parabéns! Você acertou!\n");
printf("Jogue de novo, você é um bom jogador!\n");
}
else {
printf("Você errou!\n");
printf("Mas não desanime, tente de novo!\n");
}
}
|
#include <stdio.h>
int main() {
// imprime o cabecalho do nosso jogo
printf("******************************************\n");
printf("* Bem vindo ao nosso jogo de adivinhação *\n");
printf("******************************************\n");
int numerosecreto = 42;
int chute;
printf("Qual é o seu chute? ");
scanf("%d", &chute);
printf("Seu chute foi %d\n", chute);
if(chute == numerosecreto) {
printf("Parabéns! Você acertou!\n");
printf("Jogue de novo, você é um bom jogador!\n");
}
else {
if(chute > numerosecreto) {
printf("Seu chute foi maior que o número secreto\n");
}
if(chute < numerosecreto) {
printf("Seu chute foi menor que o número secreto\n");
}
printf("Você errou!\n");
printf("Mas não desanime, tente de novo!\n");
}
}
|
Update files, Alura, Introdução a C, Aula 2.2
|
Update files, Alura, Introdução a C, Aula 2.2
|
C
|
mit
|
fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs,fabriciofmsilva/labs
|
cca85848f87ed67700301736f1bbd03e6298f65d
|
Wikipedia/Code/WikiGlyph_Chars.h
|
Wikipedia/Code/WikiGlyph_Chars.h
|
#define WIKIGLYPH_FORWARD @"\ue954"
#define WIKIGLYPH_BACKWARD @"\ue955"
#define WIKIGLYPH_DOWN @"\ue956"
#define WIKIGLYPH_X @"\ue95e"
#define WIKIGLYPH_FLAG @"\ue963"
#define WIKIGLYPH_USER_SMILE @"\ue964"
#define WIKIGLYPH_USER_SLEEP @"\ue965"
#define WIKIGLYPH_CC @"\ue969"
#define WIKIGLYPH_CITE @"\ue96b"
#define WIKIGLYPH_PUBLIC_DOMAIN @"\ue96c"
|
#define WIKIGLYPH_X @"\ue95e"
#define WIKIGLYPH_FLAG @"\ue963"
#define WIKIGLYPH_USER_SMILE @"\ue964"
#define WIKIGLYPH_USER_SLEEP @"\ue965"
#define WIKIGLYPH_CC @"\ue969"
#define WIKIGLYPH_PUBLIC_DOMAIN @"\ue96c"
|
Remove unused glyph font defines.
|
Remove unused glyph font defines.
|
C
|
mit
|
wikimedia/wikipedia-ios,wikimedia/apps-ios-wikipedia,josve05a/wikipedia-ios,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,julienbodet/wikipedia-ios,julienbodet/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/wikipedia-ios,montehurd/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,josve05a/wikipedia-ios,julienbodet/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,josve05a/wikipedia-ios,josve05a/wikipedia-ios,julienbodet/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,josve05a/wikipedia-ios,wikimedia/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,montehurd/apps-ios-wikipedia,julienbodet/wikipedia-ios,josve05a/wikipedia-ios,julienbodet/wikipedia-ios
|
b1529393f0a4660def88e2e3df1d34446ebc48ff
|
Operator.h
|
Operator.h
|
/*===- Operator.h - libSimulation -=============================================
*
* DEMON
*
* This file is distributed under the BSD Open Source License. See LICENSE.TXT
* for details.
*
*===-----------------------------------------------------------------------===*/
#ifndef OPERATOR_H
#define OPERATOR_H
#include "Cloud.h"
class Operator {
public:
Cloud * const cloud;
Operator(Cloud * const myCloud) : cloud(myCloud) {}
virtual ~Operator() {}
virtual void operation1(const double currentTime)=0;
virtual void operation2(const double currentTime)=0;
virtual void operation3(const double currentTime)=0;
virtual void operation4(const double currentTime)=0;
};
#endif // OPERATOR_H
|
/*===- Operator.h - libSimulation -=============================================
*
* DEMON
*
* This file is distributed under the BSD Open Source License. See LICENSE.TXT
* for details.
*
*===-----------------------------------------------------------------------===*/
#ifndef OPERATOR_H
#define OPERATOR_H
#include "Cloud.h"
typedef unsigned int operator_index;
class Operator {
public:
Cloud * const cloud;
Operator(Cloud * const myCloud) : cloud(myCloud) {}
virtual ~Operator() {}
virtual void operation1(const double currentTime)=0;
virtual void operation2(const double currentTime)=0;
virtual void operation3(const double currentTime)=0;
virtual void operation4(const double currentTime)=0;
};
#endif // OPERATOR_H
|
Add typedef to number of operators. This will help inside code to distinguish from counting particles, forces or operators.
|
Add typedef to number of operators. This will help inside code to distinguish from counting particles, forces or operators.
|
C
|
bsd-3-clause
|
leios/demonsimulationcode,leios/demonsimulationcode
|
98d00bb62b0eeee60e204babad8c3a090521d4d9
|
cmd/smyrna/filter.h
|
cmd/smyrna/filter.h
|
/* $Id$ $Revision$ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#ifndef FILTER_H
#define FILTER_H
#include "btree.h"
typedef struct _tv_filters
{
tv_filter** filters;
int filter_count;
}tv_filters;
int clear_filter(tv_filter* f);
int init_filters(tv_filters* filters);
int add_filter_to_filters(tv_filters* filters,tv_filter* filter);
int clear_filters(tv_filters* filters);
int union_filter(tv_filter* f1,tv_filter* f2);
int intersect_filter(tv_filter* f1,tv_filter* f2);
#endif
|
/* $Id$ $Revision$ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#ifndef FILTER_H
#define FILTER_H
#include "btree.h"
typedef struct _tv_filters {
tv_filter **filters;
int filter_count;
} tv_filters;
int clear_filter(tv_filter * f);
int init_filters(tv_filters * filters);
int add_filter_to_filters(tv_filters * filters, tv_filter * filter);
int clear_filters(tv_filters * filters);
int union_filter(tv_filter * f1, tv_filter * f2);
int intersect_filter(tv_filter * f1, tv_filter * f2);
#endif
|
Clean up smyrna files: remove unnecessary globals modify libraries not to rely on code in cmd/smyrna remove static declarations from .h files remove unnecessary libraries mark unused code and clean up warnings
|
Clean up smyrna files:
remove unnecessary globals
modify libraries not to rely on code in cmd/smyrna
remove static declarations from .h files
remove unnecessary libraries
mark unused code and clean up warnings
|
C
|
epl-1.0
|
kbrock/graphviz,BMJHayward/graphviz,BMJHayward/graphviz,ellson/graphviz,MjAbuz/graphviz,MjAbuz/graphviz,kbrock/graphviz,jho1965us/graphviz,jho1965us/graphviz,tkelman/graphviz,pixelglow/graphviz,BMJHayward/graphviz,BMJHayward/graphviz,kbrock/graphviz,ellson/graphviz,MjAbuz/graphviz,kbrock/graphviz,BMJHayward/graphviz,pixelglow/graphviz,BMJHayward/graphviz,ellson/graphviz,pixelglow/graphviz,MjAbuz/graphviz,pixelglow/graphviz,BMJHayward/graphviz,tkelman/graphviz,ellson/graphviz,kbrock/graphviz,jho1965us/graphviz,ellson/graphviz,jho1965us/graphviz,kbrock/graphviz,MjAbuz/graphviz,jho1965us/graphviz,MjAbuz/graphviz,MjAbuz/graphviz,pixelglow/graphviz,BMJHayward/graphviz,pixelglow/graphviz,jho1965us/graphviz,tkelman/graphviz,tkelman/graphviz,kbrock/graphviz,ellson/graphviz,jho1965us/graphviz,pixelglow/graphviz,jho1965us/graphviz,tkelman/graphviz,jho1965us/graphviz,ellson/graphviz,kbrock/graphviz,ellson/graphviz,MjAbuz/graphviz,kbrock/graphviz,tkelman/graphviz,kbrock/graphviz,tkelman/graphviz,ellson/graphviz,BMJHayward/graphviz,BMJHayward/graphviz,pixelglow/graphviz,kbrock/graphviz,pixelglow/graphviz,tkelman/graphviz,ellson/graphviz,pixelglow/graphviz,pixelglow/graphviz,MjAbuz/graphviz,tkelman/graphviz,jho1965us/graphviz,MjAbuz/graphviz,tkelman/graphviz,tkelman/graphviz,MjAbuz/graphviz,ellson/graphviz,jho1965us/graphviz,BMJHayward/graphviz
|
a643c5fe60f459802f071e48fb5eeaca4cf7ac4b
|
src/tests/marquise_hash_test.c
|
src/tests/marquise_hash_test.c
|
#include <glib.h>
#include <stdlib.h>
#include <string.h>
#include "../marquise.h"
void test_hash_identifier() {
const char *id = "hostname:fe1.example.com,metric:BytesUsed,service:memory,";
size_t id_len = strlen(id);
uint64_t address = marquise_hash_identifier(id, id_len);
g_assert_cmpint(address, ==, 7602883380529707052);
}
int main(int argc, char **argv) {
g_test_init(&argc, &argv, NULL);
g_test_add_func("/marquise_hash_identifier/hash", test_hash_identifier);
return g_test_run();
}
|
#include <glib.h>
#include <stdlib.h>
#include <string.h>
#include "../marquise.h"
void test_hash_identifier() {
const char *id = "hostname:fe1.example.com,metric:BytesUsed,service:memory,";
size_t id_len = strlen(id);
uint64_t address = marquise_hash_identifier((const unsigned char*) id, id_len);
g_assert_cmpint(address, ==, 7602883380529707052);
}
int main(int argc, char **argv) {
g_test_init(&argc, &argv, NULL);
g_test_add_func("/marquise_hash_identifier/hash", test_hash_identifier);
return g_test_run();
}
|
Make a pointer-signedness warning in testing magically disappear~
|
Make a pointer-signedness warning in testing magically disappear~
|
C
|
bsd-3-clause
|
anchor/libmarquise,anchor/libmarquise
|
10b5311070496ada127c5f4a4119a6ab9d1baaec
|
main.c
|
main.c
|
//codigo para hecer pruebas de como funciona github.
//programa simple que suma, resta, multiplica y divide numeros ingresador por pantalla.
#include <stdio.h>
#include <stdlib.h>
void sumar(int a, int b);
void restar(int a,int b);
int main() {
int a,b;
printf("Bienvenido... Ingrese 2 numeros");
printf ("Primer numero: "); scanf ("%d",&a);
printf ("Segundo numero: "); scanf ("%d",&b);
sumar(a,b);
restar(a,b);
//implementar resta, multiplicacion, division
return (EXIT_SUCCESS);
}
void restar(int a,int b){
printf("La resta es: %d",a-b);
}
void sumar(int a, int b){
printf ("La suma es: %d",a+b);
}
|
//codigo para hecer pruebas de como funciona github.
//programa simple que suma, resta, multiplica y divide numeros ingresador por pantalla.
#include <stdio.h>
#include <stdlib.h>
void sumar(int a, int b);
void restar(int a,int b);
int main() {
int a,b;
printf ("Primer numero: "); scanf ("%d",&a);
printf ("Segundo numero: "); scanf ("%d",&b);
sumar(a,b);
restar(a,b);
//implementar resta, multiplicacion, division
return (EXIT_SUCCESS);
}
void restar(int a,int b){
print("La resta es: %d",a-b);
}
void sumar(int a, int b){
printf ("La suma es: %d",a+b);
}
|
Revert "Corregido Error en Funcion restar"
|
Revert "Corregido Error en Funcion restar"
This reverts commit d8e984f0ea7d12526e1069292ed85025178d8d67.
|
C
|
unlicense
|
jcruz1/ProyectoSIIGrupo2
|
4f36797fb368cc30a648ed0a313b6f4ad6cb3927
|
src/config.h
|
src/config.h
|
#ifndef SRC_CONFIG_H_S6A1C09K
#define SRC_CONFIG_H_S6A1C09K
/* package name */
#define PACKAGE "pianobar"
#define VERSION "2014.06.08-dev"
/* ffmpeg/libav quirks detection
* ffmpeg’s micro versions always start at 100, that’s how we can distinguish
* ffmpeg and libav */
#include <libavfilter/version.h>
/* is "timeout" option present (all versions of ffmpeg, not libav) */
#if LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AV_TIMEOUT
#endif
/* does graph_send_command exist (ffmpeg >=2.2) */
#if LIBAVFILTER_VERSION_MAJOR == 4 && \
LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AVFILTER_GRAPH_SEND_COMMAND
#endif
/* need avcodec.h (ffmpeg 1.2) */
#if LIBAVFILTER_VERSION_MAJOR == 3 && \
LIBAVFILTER_VERSION_MINOR <= 42 && \
LIBAVFILTER_VERSION_MINOR > 32 && \
LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AV_BUFFERSINK_GET_BUFFER_REF
#define HAVE_LIBAVFILTER_AVCODEC_H
#endif
#endif /* SRC_CONFIG_H_S6A1C09K */
|
#ifndef SRC_CONFIG_H_S6A1C09K
#define SRC_CONFIG_H_S6A1C09K
/* package name */
#define PACKAGE "pianobar"
#define VERSION "2014.06.08-dev"
/* ffmpeg/libav quirks detection
* ffmpeg’s micro versions always start at 100, that’s how we can distinguish
* ffmpeg and libav */
#include <libavfilter/version.h>
/* is "timeout" option present (all versions of ffmpeg, not libav) */
#if LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AV_TIMEOUT
#endif
/* does graph_send_command exist (ffmpeg >=2.2) */
#if LIBAVFILTER_VERSION_MAJOR >= 4 && \
LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AVFILTER_GRAPH_SEND_COMMAND
#endif
/* need avcodec.h (ffmpeg 1.2) */
#if LIBAVFILTER_VERSION_MAJOR == 3 && \
LIBAVFILTER_VERSION_MINOR <= 42 && \
LIBAVFILTER_VERSION_MINOR > 32 && \
LIBAVFILTER_VERSION_MICRO >= 100
#define HAVE_AV_BUFFERSINK_GET_BUFFER_REF
#define HAVE_LIBAVFILTER_AVCODEC_H
#endif
#endif /* SRC_CONFIG_H_S6A1C09K */
|
Fix volume control with ffmpeg 2.3
|
Fix volume control with ffmpeg 2.3
|
C
|
mit
|
DavidZemon/pianobar,gnowxilef/pianobar,DavidZemon/pianobar,tchajed/pianobar,gnowxilef/pianobar,twahlfeld/pianobar,tchajed/pianobar,johnso51/pianobar,johnso51/pianobar,gnowxilef/pianobar,tchajed/pianobar,twahlfeld/pianobar,johnso51/pianobar,tchajed/pianobar,DavidZemon/pianobar,DavidZemon/pianobar,gnowxilef/pianobar,johnso51/pianobar,gnowxilef/pianobar,johndeeney/pianobar,DavidZemon/pianobar,bmbove/pianobar-save,johndeeney/pianobar,johndeeney/pianobar,tchajed/pianobar,johnso51/pianobar,twahlfeld/pianobar,bmbove/pianobar-save,twahlfeld/pianobar,twahlfeld/pianobar,johnso51/pianobar,twahlfeld/pianobar,bmbove/pianobar-save,johndeeney/pianobar,gnowxilef/pianobar,tchajed/pianobar,bmbove/pianobar-save,DavidZemon/pianobar,johndeeney/pianobar,johndeeney/pianobar,bmbove/pianobar-save
|
d3b529bb914c70773c1218fe5b85e9738e66ad4b
|
Pod/Classes/BFTaskCenter.h
|
Pod/Classes/BFTaskCenter.h
|
//
// BFTaskCenter.h
// Pods
//
// Created by Superbil on 2015/8/22.
//
//
#import "Bolts.h"
@interface BFTaskCenter : NSObject
/*!
A block that can act as a continuation for a task.
*/
typedef void (^BFTaskCenterBlock)(BFTask * _Nonnull task);
+ (nonnull instancetype)defaultCenter;
- (instancetype)initWithExecutor:(BFExecutor *)executor;
- (nullable id)addTaskBlockToCallbacks:(nonnull BFTaskCenterBlock)taskBlock forKey:(nonnull NSString *)key;
- (void)removeTaskBlock:(nonnull id)taskBlock forKey:(nonnull NSString *)key;
- (void)clearAllCallbacksForKey:(nonnull NSString *)key;
- (void)sendToCallbacksWithKey:(nonnull NSString *)key result:(nullable id)result;
- (void)sendToCallbacksWithKey:(nonnull NSString *)key error:(nonnull NSError *)error;
- (nullable BFTaskCompletionSource *)sourceOfSendToCallbacksForKey:(nonnull NSString *)key
executor:(nonnull BFExecutor *)executor
cancellationToken:(nullable BFCancellationToken *)cancellationToken;
@end
|
//
// BFTaskCenter.h
// Pods
//
// Created by Superbil on 2015/8/22.
//
//
#import "Bolts.h"
NS_ASSUME_NONNULL_BEGIN
@interface BFTaskCenter : NSObject
/*!
A block that can act as a continuation for a task.
*/
typedef void (^BFTaskCenterBlock)(BFTask * _Nonnull task);
+ (instancetype)defaultCenter;
- (instancetype)initWithExecutor:(nonnull BFExecutor *)executor;
- (nullable id)addTaskBlockToCallbacks:(nonnull BFTaskCenterBlock)taskBlock forKey:(nonnull NSString *)key;
- (void)removeTaskBlock:(nonnull id)taskBlock forKey:(nonnull NSString *)key;
- (void)clearAllCallbacksForKey:(nonnull NSString *)key;
- (void)sendToCallbacksWithKey:(nonnull NSString *)key result:(nullable id)result;
- (void)sendToCallbacksWithKey:(nonnull NSString *)key error:(nonnull NSError *)error;
- (nullable BFTaskCompletionSource *)sourceOfSendToCallbacksForKey:(nonnull NSString *)key
executor:(nonnull BFExecutor *)executor
cancellationToken:(nullable BFCancellationToken *)cancellationToken;
@end
NS_ASSUME_NONNULL_END
|
Fix compiler warning for nullable check
|
Fix compiler warning for nullable check
|
C
|
mit
|
Superbil/BFTaskCenter,Superbil/BFTaskCenter
|
e7139c902072bcfb4a404c0fcfb91f34dd1e129f
|
src/cal3d/color.h
|
src/cal3d/color.h
|
#pragma once
#include "cal3d/global.h"
#include "cal3d/vector.h"
typedef unsigned long CalColor32; // 32-bit integer, compatible with NSPR
inline CalColor32 CalMakeColor(CalVector cv) {
return
( ( unsigned int ) ( cv.z * 0xff ) << 0) +
( ( ( unsigned int ) ( cv.y * 0xff ) ) << 8 ) +
( ( ( unsigned int ) ( cv.x * 0xff ) ) << 16 ) +
0xff000000;
}
inline CalVector CalVectorFromColor(CalColor32 color) {
return CalVector(
((color >> 16) & 0xff) / float(0xff),
((color >> 8) & 0xff) / float(0xff),
((color >> 0) & 0xff) / float(0xff));
}
|
#pragma once
#include "cal3d/global.h"
#include "cal3d/vector.h"
typedef unsigned int CalColor32; // 32-bit integer, compatible with NSPR
inline CalColor32 CalMakeColor(CalVector cv) {
return
( ( unsigned int ) ( cv.z * 0xff ) << 0) +
( ( ( unsigned int ) ( cv.y * 0xff ) ) << 8 ) +
( ( ( unsigned int ) ( cv.x * 0xff ) ) << 16 ) +
0xff000000;
}
inline CalVector CalVectorFromColor(CalColor32 color) {
return CalVector(
((color >> 16) & 0xff) / float(0xff),
((color >> 8) & 0xff) / float(0xff),
((color >> 0) & 0xff) / float(0xff));
}
|
Unify and simplify a lot of pixomatic code
|
Unify and simplify a lot of pixomatic code
git-svn-id: febc42a3fd39fb08e5ae2b2182bc5ab0a583559c@51002 07c76cb3-cb09-0410-85de-c24d39f1912e
|
C
|
lgpl-2.1
|
imvu/cal3d,imvu/cal3d,imvu/cal3d,imvu/cal3d
|
fbff55718ba32fc5f63c71f4251a679093ec2a44
|
include/YAnimated.h
|
include/YAnimated.h
|
#ifndef __YANIMATED__
#define __YANIMATED__
typedef struct YFrame
{
int current;
int first;
int last;
int width;
int height;
int fps;
YFrame(){};
YFrame(int a_current,
int a_first,
int a_last,
int a_width,
int a_height,
int a_fps):
current(a_current),
first(a_first),
last(a_last),
width(a_width),
height(a_height),
fps(a_fps){};
} YFrame;
#endif /** __YANIMATED__ **/
|
#ifndef __YANIMATED__
#define __YANIMATED__
/*!
Store animation frame indexes
*/
typedef struct YFrame
{
//! Default Constructor
YFrame(): current(0),
first(0),
last(0){};
//! Constructor with parameters
/*!
\param Current animation frame index
\param First animation frame index
\param Last animation frame index
*/
YFrame(int a_current,
int a_first,
int a_last):
current(a_current),
first(a_first),
last(a_last){};
int current; //! Current frame index
int first; //! First frame index
int last; //! Last frame index
} YFrame;
#endif /** __YANIMATED__ **/
|
Remove width, height and fps variable from YFrame struct
|
Remove width, height and fps variable from YFrame struct
|
C
|
mit
|
sergiosvieira/yda,sergiosvieira/yda,sergiosvieira/yda
|
d0172776eac403c0f4df9da1bc99f00321449266
|
src/timestamps.h
|
src/timestamps.h
|
#ifndef BITCOIN_TIMESTAMPS_H
#define BITCOIN_TIMESTAMPS_H
static const unsigned int ENTROPY_SWITCH_TIME = 1362791041; // Sat, 09 Mar 2013 01:04:01 GMT
static const unsigned int STAKE_SWITCH_TIME = 1371686400; // Thu, 20 Jun 2013 00:00:00 GMT
static const unsigned int TARGETS_SWITCH_TIME = 1374278400; // Sat, 20 Jul 2013 00:00:00 GMT
static const unsigned int CHAINCHECKS_SWITCH_TIME = 1379635200; // Fri, 20 Sep 2013 00:00:00 GMT
static const unsigned int STAKECURVE_SWITCH_TIME = 1382227200; // Sun, 20 Oct 2013 00:00:00 GMT
static const unsigned int FEE_SWITCH_TIME = 1405814400; // Sun, 20 Jul 2014 00:00:00 GMT
static const unsigned int VALIDATION_SWITCH_TIME = 1408492800; // Wed, 20 Aug 2014 00:00:00 GMT
#endif
|
#ifndef BITCOIN_TIMESTAMPS_H
#define BITCOIN_TIMESTAMPS_H
static const unsigned int ENTROPY_SWITCH_TIME = 1362791041; // Sat, 09 Mar 2013 01:04:01 GMT
static const unsigned int STAKE_SWITCH_TIME = 1371686400; // Thu, 20 Jun 2013 00:00:00 GMT
static const unsigned int TARGETS_SWITCH_TIME = 1374278400; // Sat, 20 Jul 2013 00:00:00 GMT
static const unsigned int CHAINCHECKS_SWITCH_TIME = 1379635200; // Fri, 20 Sep 2013 00:00:00 GMT
static const unsigned int STAKECURVE_SWITCH_TIME = 1382227200; // Sun, 20 Oct 2013 00:00:00 GMT
static const unsigned int FEE_SWITCH_TIME = 1405814400; // Sun, 20 Jul 2014 00:00:00 GMT
static const unsigned int VALIDATION_SWITCH_TIME = 1408492800; // Wed, 20 Aug 2014 00:00:00 GMT
static const unsigned int SIG_SWITCH_TIME = 1411171200; // Sat, 20 Sep 2014 00:00:00 GMT
#endif
|
Add SIG_SWITCH_TIME at Sat, 20 Sep 2014
|
Add SIG_SWITCH_TIME at Sat, 20 Sep 2014
|
C
|
mit
|
novacoin-project/novacoin,stamhe/novacoin,stamhe/novacoin,stamhe/novacoin,penek/novacoin,gades/novacoin,novacoin-project/novacoin,elambert2014/novacoin,fsb4000/novacoin,penek/novacoin,fsb4000/novacoin,fsb4000/novacoin,stamhe/novacoin,byncoin-project/byncoin,byncoin-project/byncoin,elambert2014/novacoin,byncoin-project/byncoin,elambert2014/novacoin,elambert2014/novacoin,byncoin-project/byncoin,fsb4000/novacoin,penek/novacoin,gades/novacoin,elambert2014/novacoin,fsb4000/novacoin,gades/novacoin,gades/novacoin,penek/novacoin,novacoin-project/novacoin,byncoin-project/byncoin,novacoin-project/novacoin,stamhe/novacoin,penek/novacoin,gades/novacoin,gades/novacoin,novacoin-project/novacoin,novacoin-project/novacoin,fsb4000/novacoin,elambert2014/novacoin,byncoin-project/byncoin,penek/novacoin
|
d69e026a523445233153f3ab5218c8c652d5fe69
|
src/validation.h
|
src/validation.h
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_VALIDATION_H
#define BITCOIN_VALIDATION_H
#include <stdint.h>
#include <string>
static const int64_t DEFAULT_MAX_TIP_AGE = 1 * 60 * 60; // ~45 blocks behind -> 2 x fork detection time, was 24 * 60 * 60 in bitcoin
extern int64_t nMaxTipAge;
class CBlockIndex;
FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode="rb");
FILE* AppendBlockFile(unsigned int& nFileRet);
bool IsInitialBlockDownload();
/** Guess verification progress (as a fraction between 0.0=genesis and 1.0=current tip). */
double GuessVerificationProgress(CBlockIndex* pindex);
#endif // BITCOIN_VALIDATION_H
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_VALIDATION_H
#define BITCOIN_VALIDATION_H
#include <stdint.h>
#include <string>
static const int64_t DEFAULT_MAX_TIP_AGE = 120; // ~45 blocks behind -> 2 x fork detection time, was 24 * 60 * 60 in bitcoin
extern int64_t nMaxTipAge;
class CBlockIndex;
FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode="rb");
FILE* AppendBlockFile(unsigned int& nFileRet);
bool IsInitialBlockDownload();
/** Guess verification progress (as a fraction between 0.0=genesis and 1.0=current tip). */
double GuessVerificationProgress(CBlockIndex* pindex);
#endif // BITCOIN_VALIDATION_H
|
Update default max tip age
|
Update default max tip age
|
C
|
mit
|
neutroncoin/neutron,neutroncoin/neutron,neutroncoin/neutron,neutroncoin/neutron
|
769c2c7be646091ca003605c6dde6747c92f73e8
|
lib/xray/xray_emulate_tsc.h
|
lib/xray/xray_emulate_tsc.h
|
//===-- xray_emulate_tsc.h --------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of XRay, a dynamic runtime instrumentation system.
//
//===----------------------------------------------------------------------===//
#ifndef XRAY_EMULATE_TSC_H
#define XRAY_EMULATE_TSC_H
#include "sanitizer_common/sanitizer_internal_defs.h"
#include "xray_defs.h"
#include <cstdint>
#include <time.h>
namespace __xray {
static constexpr uint64_t NanosecondsPerSecond = 1000ULL * 1000 * 1000;
ALWAYS_INLINE uint64_t readTSC(uint8_t &CPU) XRAY_NEVER_INSTRUMENT {
timespec TS;
int result = clock_gettime(CLOCK_REALTIME, &TS);
if (result != 0) {
Report("clock_gettime(2) returned %d, errno=%d.", result, int(errno));
TS.tv_sec = 0;
TS.tv_nsec = 0;
}
CPU = 0;
return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
}
}
#endif // XRAY_EMULATE_TSC_H
|
//===-- xray_emulate_tsc.h --------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of XRay, a dynamic runtime instrumentation system.
//
//===----------------------------------------------------------------------===//
#ifndef XRAY_EMULATE_TSC_H
#define XRAY_EMULATE_TSC_H
#include "sanitizer_common/sanitizer_internal_defs.h"
#include "xray_defs.h"
#include <cerrno>
#include <cstdint>
#include <time.h>
namespace __xray {
static constexpr uint64_t NanosecondsPerSecond = 1000ULL * 1000 * 1000;
ALWAYS_INLINE uint64_t readTSC(uint8_t &CPU) XRAY_NEVER_INSTRUMENT {
timespec TS;
int result = clock_gettime(CLOCK_REALTIME, &TS);
if (result != 0) {
Report("clock_gettime(2) returned %d, errno=%d.", result, int(errno));
TS.tv_sec = 0;
TS.tv_nsec = 0;
}
CPU = 0;
return TS.tv_sec * NanosecondsPerSecond + TS.tv_nsec;
}
}
#endif // XRAY_EMULATE_TSC_H
|
Fix missing include of <cerrno>
|
[XRay][compiler-rt] Fix missing include of <cerrno>
Futher attempt to un-break ARM and AArch64 build.
Follow-up on D25360.
git-svn-id: c199f293c43da69278bea8e88f92242bf3aa95f7@290083 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt
|
810e3b75bab2565a68d43b7fb7b709c10b19f711
|
tutorial/putc_example.c
|
tutorial/putc_example.c
|
// Compile with:
// $ gcc -Wall -Werror -o putc_example putc_example.c
//
// 1. Warm up: Make the program print out the string backwards
// 2. $ rm -f putc_example (remove the compiled program)
// Comment out all of the #include headers in this file and re-run the
// compile command. You should see warnings, and no ouput file is generated.
// Try to get the program to compile/generate an output file without
// adding the include files back in. (There are two different ways that
// I can think of to do this).
// 3. In C, arrays and pointers are the same thing. Rewrite the "loop"
// section below using pointers instead of arrays (ie, dont use the [ ]
// syntax).
// See: http://www.google.com/search?q=c+pointers+arrays
#include <stdio.h>
#include <string.h>
int main(int argc, char* argv[]) {
if (argc != 2) {
printf("Usage: %s <string>\n", argv[0]);
return 0;
}
// This code is equivalent to printf("%s\n", argv[1]);
const char* string_argument = argv[1];
int length = strlen(string_argument);
int i;
for (i = 0; i < length; i++) {
char c = string_argument[i];
putchar(c);
}
putchar('\n');
return 0;
}
|
// Compile with:
// $ gcc -Wall -Werror -o putc_example putc_example.c
//
// 1. Warm up: Make the program print out the string backwards
// 2. $ rm -f putc_example (remove the compiled program)
// Comment out all of the #include headers in this file and re-run the
// compile command. You should see warnings, and no ouput file is generated.
// Try to get the program to compile/generate an output file without
// adding the include files back in. (There are two different ways that
// I can think of to do this).
// 3. In C, arrays and pointers are the same thing. Rewrite the "loop"
// section below using pointers instead of arrays (ie, dont use the [ ]
// syntax).
// See: http://www.google.com/search?q=c+pointers+arrays
#include <stdio.h>
#include <string.h>
int main(int argc, char* argv[]) {
if (argc != 2) {
printf("Usage: %s <string>\n", argv[0]);
return 0;
}
// This code is equivalent to printf("%s\n", argv[1]);
const char* string_argument = argv[1];
size_t length = strlen(string_argument);
int i;
for (i = 0; i < length; i++) {
char c = string_argument[i];
putchar(c);
}
putchar('\n');
return 0;
}
|
Use size_t for strlen result, so it matches the man page.
|
Use size_t for strlen result, so it matches the man page.
|
C
|
apache-2.0
|
allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends,allenporter/thebends
|
961492e653d8268044fa7af755531121cf3fc7d1
|
src/util/file_utils.h
|
src/util/file_utils.h
|
#ifndef FILE_UTILS_H
#define FILE_UTILS_H
#include <stdint.h>
#include <string.h>
#include <dirent.h>
#define PATHLEN 32
#define MAXPATH 1024
#define PROC "/proc/"
#define MEMINFO "/proc/meminfo"
#define STATUS "/proc/%s/status"
#define IO_STAT "/proc/%s/io"
#define STAT "/proc/%s/stat"
#define STAT_BUFFER 4096
#define COMM "/proc/%s/comm"
#define COMM_LEN strlen(COMM)
#define FD "/proc/%s/fd"
#define UID "Uid:\t"
char *parse_stat(char *pid, int field);
char *parse_proc(char *path, char *field);
int is_pid(const struct dirent *directory);
char *strip(char *stat);
char *calculate_size(char *field_total, int byte_idx);
uint64_t value_from_string(char *ps_field_value);
#endif
|
#ifndef FILE_UTILS_H
#define FILE_UTILS_H
#include <stdint.h>
#include <string.h>
#include <dirent.h>
#define PATHLEN 32
#define MAXPATH 1024
#define PROC_SIZE 1024
#define PROC "/proc/"
#define MEMINFO "/proc/meminfo"
#define STATUS "/proc/%s/status"
#define IO_STAT "/proc/%s/io"
#define STAT "/proc/%s/stat"
#define STAT_BUFFER 4096
#define COMM "/proc/%s/comm"
#define COMM_LEN strlen(COMM)
#define FD "/proc/%s/fd"
#define UID "Uid:\t"
char *parse_stat(char *pid, int field);
char *parse_proc(char *path, char *field);
int is_pid(const struct dirent *directory);
char *strip(char *stat);
char *calculate_size(char *field_total, int byte_idx);
uint64_t value_from_string(char *ps_field_value);
#endif
|
Define macro for size of proc parser
|
Define macro for size of proc parser
|
C
|
mit
|
tijko/dashboard
|
98c97486a56452a655471f0be6aa8ecfecc359fe
|
ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACCommandSupport.h
|
ReactiveCocoaFramework/ReactiveCocoa/UIAlertView+RACCommandSupport.h
|
//
// UIAlertView+RACCommandSupport.h
// ReactiveCocoa
//
// Created by Henrik Hodne on 6/16/13.
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class RACCommand;
@interface UIAlertView (RACCommandSupport)
// Sets the alert view's command. When a button on the alert view is pressed,
// the command is executed with the index of the button that was pressed.
@property (nonatomic, strong) RACCommand *rac_command;
@end
|
//
// UIAlertView+RACCommandSupport.h
// ReactiveCocoa
//
// Created by Henrik Hodne on 6/16/13.
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class RACCommand;
@interface UIAlertView (RACCommandSupport)
// Sets the alert view's command. When a button on the alert view is pressed,
// the command is executed with the index of the button that was pressed.
//
// This will override the alert view's delegate, so you can't use this together
// with a custom delegate.
@property (nonatomic, strong) RACCommand *rac_command;
@end
|
Document that UIAlertView.rac_command overrides the delegate
|
Document that UIAlertView.rac_command overrides the delegate
|
C
|
mit
|
DongDongDongDong/ReactiveCocoa,JohnJin007/ReactiveCocoa,AllanChen/ReactiveCocoa,walkingsmarts/ReactiveCocoa,Pingco/ReactiveCocoa,dz1111/ReactiveCocoa,zhenlove/ReactiveCocoa,brightcove/ReactiveCocoa,jsslai/ReactiveCocoa,Pikdays/ReactiveCocoa,paulyoung/ReactiveCocoa,on99/ReactiveCocoa,xumaolin/ReactiveCocoa,mxxiv/ReactiveCocoa,calebd/ReactiveCocoa,tzongw/ReactiveCocoa,BlessNeo/ReactiveCocoa,valleyman86/ReactiveCocoa,JohnJin007/ReactiveCocoa,on99/ReactiveCocoa,richeterre/ReactiveCocoa,natestedman/ReactiveCocoa,zhaoguohui/ReactiveCocoa,nikita-leonov/ReactiveCocoa,tipbit/ReactiveCocoa,WEIBP/ReactiveCocoa,alvinvarghese/ReactiveCocoa,llb1119/test,xulibao/ReactiveCocoa,nickcheng/ReactiveCocoa,valleyman86/ReactiveCocoa,SuPair/ReactiveCocoa,liufeigit/ReactiveCocoa,zhaoguohui/ReactiveCocoa,libiao88/ReactiveCocoa,monkeydbobo/ReactiveCocoa,howandhao/ReactiveCocoa,Farteen/ReactiveCocoa,RuiAAPeres/ReactiveCocoa,stevielu/ReactiveCocoa,tiger8888/ReactiveCocoa,leichunfeng/ReactiveCocoa,shuxiashusheng/ReactiveCocoa,jrmiddle/ReactiveCocoa,ddc391565320/ReactiveCocoa,mtxs007/ReactiveCocoa,beni55/ReactiveCocoa,zzzworm/ReactiveCocoa,wangqi211/ReactiveCocoa,Ray0218/ReactiveCocoa,qq644531343/ReactiveCocoa,cogddo/ReactiveCocoa,juliangrosshauser/ReactiveCocoa,stupidfive/ReactiveCocoa,OnTheWay1988/ReactiveCocoa,wpstarnice/ReactiveCocoa,yaoxiaoyong/ReactiveCocoa,CQXfly/ReactiveCocoa,200895045/ReactiveCocoa,zhiwen1024/ReactiveCocoa,almassapargali/ReactiveCocoa,msdgwzhy6/ReactiveCocoa,taylormoonxu/ReactiveCocoa,wpstarnice/ReactiveCocoa,jaylib/ReactiveCocoa,yaoxiaoyong/ReactiveCocoa,natan/ReactiveCocoa,WEIBP/ReactiveCocoa,335g/ReactiveCocoa,natan/ReactiveCocoa,hbucius/ReactiveCocoa,kevin-zqw/ReactiveCocoa,paulyoung/ReactiveCocoa,JohnJin007/ReactiveCocoa,Adlai-Holler/ReactiveCocoa,yytong/ReactiveCocoa,itschaitanya/ReactiveCocoa,AndyZhaoHe/ReactiveCocoa,Eveian/ReactiveCocoa,jackywpy/ReactiveCocoa,bensonday/ReactiveCocoa,isghe/ReactiveCocoa,LHDsimon/ReactiveCocoa,almassapargali/ReactiveCocoa,monkeydbobo/ReactiveCocoa,OnTheWay1988/ReactiveCocoa,GuitarPlayer-Ma/ReactiveCocoa,mxxiv/ReactiveCocoa,Khan/ReactiveCocoa,koamac/ReactiveCocoa,goodheart/ReactiveCocoa,hoanganh6491/ReactiveCocoa,calebd/ReactiveCocoa,imkerberos/ReactiveCocoa,335g/ReactiveCocoa,koamac/ReactiveCocoa,jsslai/ReactiveCocoa,SanChain/ReactiveCocoa,kiurentu/ReactiveCocoa,ohwutup/ReactiveCocoa,KuPai32G/ReactiveCocoa,zxq3220122/ReactiveCocoa,Ray0218/ReactiveCocoa,ShawnLeee/ReactiveCocoa,SmartEncounter/ReactiveCocoa,eliperkins/ReactiveCocoa,towik/ReactiveCocoa,KJin99/ReactiveCocoa,taylormoonxu/ReactiveCocoa,Pingco/ReactiveCocoa,SuPair/ReactiveCocoa,RuiAAPeres/ReactiveCocoa,Remitly/ReactiveCocoa,Juraldinio/ReactiveCocoa,nikita-leonov/ReactiveCocoa,andersio/ReactiveCocoa,AlanJN/ReactiveCocoa,PSPDFKit-labs/ReactiveCocoa,Juraldinio/ReactiveCocoa,PSPDFKit-labs/ReactiveCocoa,Khan/ReactiveCocoa,AlanJN/ReactiveCocoa,yoichitgy/ReactiveCocoa,icepy/ReactiveCocoa,victorlin/ReactiveCocoa,kaylio/ReactiveCocoa,ceekayel/ReactiveCocoa,jianwoo/ReactiveCocoa,dz1111/ReactiveCocoa,walkingsmarts/ReactiveCocoa,ailyanlu/ReactiveCocoa,Carthage/ReactiveCocoa,yytong/ReactiveCocoa,sdhzwm/ReactiveCocoa,huiping192/ReactiveCocoa,Farteen/ReactiveCocoa,smilypeda/ReactiveCocoa,CQXfly/ReactiveCocoa,brasbug/ReactiveCocoa,longv2go/ReactiveCocoa,hilllinux/ReactiveCocoa,qq644531343/ReactiveCocoa,windgo/ReactiveCocoa,cstars135/ReactiveCocoa,dachaoisme/ReactiveCocoa,Khan/ReactiveCocoa,chao95957/ReactiveCocoa,Pikdays/ReactiveCocoa,richeterre/ReactiveCocoa,pzw224/ReactiveCocoa,dskatz22/ReactiveCocoa,jrmiddle/ReactiveCocoa,ailyanlu/ReactiveCocoa,xiaoliyang/ReactiveCocoa,JackLian/ReactiveCocoa,victorlin/ReactiveCocoa,ztchena/ReactiveCocoa,yangyangluoluo/ReactiveCocoa,takeshineshiro/ReactiveCocoa,jrmiddle/ReactiveCocoa,pzw224/ReactiveCocoa,Ricowere/ReactiveCocoa,eyu1988/ReactiveCocoa,zhenlove/ReactiveCocoa,lixar/ReactiveCocoa,nickcheng/ReactiveCocoa,zzqiltw/ReactiveCocoa,valleyman86/ReactiveCocoa,clg0118/ReactiveCocoa,nickcheng/ReactiveCocoa,windgo/ReactiveCocoa,natan/ReactiveCocoa,dskatz22/ReactiveCocoa,cstars135/ReactiveCocoa,buildo/ReactiveCocoa,cnbin/ReactiveCocoa,nickcheng/ReactiveCocoa,OneSmallTree/ReactiveCocoa,zhenlove/ReactiveCocoa,SanChain/ReactiveCocoa,zhigang1992/ReactiveCocoa,ioshger0125/ReactiveCocoa,swizzlr/ReactiveCocoa,chao95957/ReactiveCocoa,jeelun/ReactiveCocoa,ohwutup/ReactiveCocoa,xumaolin/ReactiveCocoa,hj3938/ReactiveCocoa,Ray0218/ReactiveCocoa,clg0118/ReactiveCocoa,BrooksWon/ReactiveCocoa,natestedman/ReactiveCocoa,jianwoo/ReactiveCocoa,bensonday/ReactiveCocoa,bencochran/ReactiveCocoa,almassapargali/ReactiveCocoa,taylormoonxu/ReactiveCocoa,isghe/ReactiveCocoa,buildo/ReactiveCocoa,shuxiashusheng/ReactiveCocoa,mtxs007/ReactiveCocoa,dachaoisme/ReactiveCocoa,yizzuide/ReactiveCocoa,sandyway/ReactiveCocoa,jaylib/ReactiveCocoa,KJin99/ReactiveCocoa,wpstarnice/ReactiveCocoa,libiao88/ReactiveCocoa,AlanJN/ReactiveCocoa,eliperkins/ReactiveCocoa,esttorhe/ReactiveCocoa,Liquidsoul/ReactiveCocoa,terry408911/ReactiveCocoa,shaohung001/ReactiveCocoa,jaylib/ReactiveCocoa,bencochran/ReactiveCocoa,andersio/ReactiveCocoa,bscarano/ReactiveCocoa,imkerberos/ReactiveCocoa,bencochran/ReactiveCocoa,walkingsmarts/ReactiveCocoa,cogddo/ReactiveCocoa,ericzhou2008/ReactiveCocoa,hilllinux/ReactiveCocoa,takeshineshiro/ReactiveCocoa,hbucius/ReactiveCocoa,add715/ReactiveCocoa,RuiAAPeres/ReactiveCocoa,Rupert-RR/ReactiveCocoa,loupman/ReactiveCocoa,yoichitgy/ReactiveCocoa,Ricowere/ReactiveCocoa,hoanganh6491/ReactiveCocoa,yonekawa/ReactiveCocoa,zhiwen1024/ReactiveCocoa,juliangrosshauser/ReactiveCocoa,Ethan89/ReactiveCocoa,vincentiss/ReactiveCocoa,jeelun/ReactiveCocoa,kiurentu/ReactiveCocoa,BlessNeo/ReactiveCocoa,Liquidsoul/ReactiveCocoa,tonyarnold/ReactiveCocoa,shuxiashusheng/ReactiveCocoa,fanghao085/ReactiveCocoa,cogddo/ReactiveCocoa,fanghao085/ReactiveCocoa,hilllinux/ReactiveCocoa,tiger8888/ReactiveCocoa,rpowelll/ReactiveCocoa,takeshineshiro/ReactiveCocoa,zhigang1992/ReactiveCocoa,mtxs007/ReactiveCocoa,CQXfly/ReactiveCocoa,Rupert-RR/ReactiveCocoa,tzongw/ReactiveCocoa,jaylib/ReactiveCocoa,brightcove/ReactiveCocoa,gabemdev/ReactiveCocoa,on99/ReactiveCocoa,xiaoliyang/ReactiveCocoa,longv2go/ReactiveCocoa,emodeqidao/ReactiveCocoa,qq644531343/ReactiveCocoa,pzw224/ReactiveCocoa,ikesyo/ReactiveCocoa,OnTheWay1988/ReactiveCocoa,dachaoisme/ReactiveCocoa,xiaobing2007/ReactiveCocoa,chao95957/ReactiveCocoa,tonyli508/ReactiveCocoa,ddc391565320/ReactiveCocoa,liufeigit/ReactiveCocoa,Eveian/ReactiveCocoa,hbucius/ReactiveCocoa,xumaolin/ReactiveCocoa,DongDongDongDong/ReactiveCocoa,Carthage/ReactiveCocoa,Remitly/ReactiveCocoa,kaylio/ReactiveCocoa,Ethan89/ReactiveCocoa,tornade0913/ReactiveCocoa,hoanganh6491/ReactiveCocoa,towik/ReactiveCocoa,smilypeda/ReactiveCocoa,tornade0913/ReactiveCocoa,leelili/ReactiveCocoa,sandyway/ReactiveCocoa,Liquidsoul/ReactiveCocoa,loupman/ReactiveCocoa,FelixYin66/ReactiveCocoa,terry408911/ReactiveCocoa,OneSmallTree/ReactiveCocoa,dskatz22/ReactiveCocoa,FelixYin66/ReactiveCocoa,terry408911/ReactiveCocoa,esttorhe/ReactiveCocoa,mattpetters/ReactiveCocoa,tipbit/ReactiveCocoa,ddc391565320/ReactiveCocoa,sdhzwm/ReactiveCocoa,tonyarnold/ReactiveCocoa,add715/ReactiveCocoa,smilypeda/ReactiveCocoa,zxq3220122/ReactiveCocoa,tzongw/ReactiveCocoa,yizzuide/ReactiveCocoa,LHDsimon/ReactiveCocoa,Carthage/ReactiveCocoa,Farteen/ReactiveCocoa,vincentiss/ReactiveCocoa,GuitarPlayer-Ma/ReactiveCocoa,huiping192/ReactiveCocoa,ShawnLeee/ReactiveCocoa,fhchina/ReactiveCocoa,yangshengchaoios/ReactiveCocoa,jackywpy/ReactiveCocoa,bscarano/ReactiveCocoa,KuPai32G/ReactiveCocoa,bscarano/ReactiveCocoa,gabemdev/ReactiveCocoa,loupman/ReactiveCocoa,xulibao/ReactiveCocoa,Rupert-RR/ReactiveCocoa,alvinvarghese/ReactiveCocoa,eliperkins/ReactiveCocoa,howandhao/ReactiveCocoa,200895045/ReactiveCocoa,tornade0913/ReactiveCocoa,Adlai-Holler/ReactiveCocoa,CCOOOOLL/ReactiveCocoa,Pikdays/ReactiveCocoa,yangyangluoluo/ReactiveCocoa,BrooksWon/ReactiveCocoa,yangyangluoluo/ReactiveCocoa,stevielu/ReactiveCocoa,sdhzwm/ReactiveCocoa,cnbin/ReactiveCocoa,ceekayel/ReactiveCocoa,ztchena/ReactiveCocoa,sujeking/ReactiveCocoa,kevin-zqw/ReactiveCocoa,victorlin/ReactiveCocoa,dullgrass/ReactiveCocoa,jeelun/ReactiveCocoa,ioshger0125/ReactiveCocoa,hj3938/ReactiveCocoa,koamac/ReactiveCocoa,alvinvarghese/ReactiveCocoa,fhchina/ReactiveCocoa,zhiwen1024/ReactiveCocoa,yonekawa/ReactiveCocoa,goodheart/ReactiveCocoa,eyu1988/ReactiveCocoa,ericzhou2008/ReactiveCocoa,cstars135/ReactiveCocoa,DreamHill/ReactiveCocoa,stevielu/ReactiveCocoa,CCOOOOLL/ReactiveCocoa,yonekawa/ReactiveCocoa,isghe/ReactiveCocoa,KuPai32G/ReactiveCocoa,brasbug/ReactiveCocoa,longv2go/ReactiveCocoa,BrooksWon/ReactiveCocoa,335g/ReactiveCocoa,ioshger0125/ReactiveCocoa,zhukaixy/ReactiveCocoa,howandhao/ReactiveCocoa,lixar/ReactiveCocoa,rpowelll/ReactiveCocoa,icepy/ReactiveCocoa,vincentiss/ReactiveCocoa,zhaoguohui/ReactiveCocoa,brasbug/ReactiveCocoa,goodheart/ReactiveCocoa,paulyoung/ReactiveCocoa,200895045/ReactiveCocoa,DongDongDongDong/ReactiveCocoa,clg0118/ReactiveCocoa,jackywpy/ReactiveCocoa,esttorhe/ReactiveCocoa,towik/ReactiveCocoa,fhchina/ReactiveCocoa,zhukaixy/ReactiveCocoa,KJin99/ReactiveCocoa,bensonday/ReactiveCocoa,Adlai-Holler/ReactiveCocoa,jam891/ReactiveCocoa,tiger8888/ReactiveCocoa,tonyli508/ReactiveCocoa,zzzworm/ReactiveCocoa,JackLian/ReactiveCocoa,fanghao085/ReactiveCocoa,rpowelll/ReactiveCocoa,yangshengchaoios/ReactiveCocoa,zxq3220122/ReactiveCocoa,WEIBP/ReactiveCocoa,llb1119/test,itschaitanya/ReactiveCocoa,shaohung001/ReactiveCocoa,PSPDFKit-labs/ReactiveCocoa,emodeqidao/ReactiveCocoa,jianwoo/ReactiveCocoa,ShawnLeee/ReactiveCocoa,libiao88/ReactiveCocoa,buildo/ReactiveCocoa,zzzworm/ReactiveCocoa,shaohung001/ReactiveCocoa,gengjf/ReactiveCocoa,mattpetters/ReactiveCocoa,icepy/ReactiveCocoa,leichunfeng/ReactiveCocoa,jam891/ReactiveCocoa,Pingco/ReactiveCocoa,ericzhou2008/ReactiveCocoa,nikita-leonov/ReactiveCocoa,dullgrass/ReactiveCocoa,CCOOOOLL/ReactiveCocoa,lixar/ReactiveCocoa,yoichitgy/ReactiveCocoa,Eveian/ReactiveCocoa,xiaoliyang/ReactiveCocoa,windgo/ReactiveCocoa,cnbin/ReactiveCocoa,sugar2010/ReactiveCocoa,kaylio/ReactiveCocoa,LHDsimon/ReactiveCocoa,Ricowere/ReactiveCocoa,j364960953/ReactiveCocoa,yangshengchaoios/ReactiveCocoa,gengjf/ReactiveCocoa,luerhouhou/ReactiveCocoa,ReactiveCocoa/ReactiveSwift,Ethan89/ReactiveCocoa,ailyanlu/ReactiveCocoa,leelili/ReactiveCocoa,j364960953/ReactiveCocoa,AndyZhaoHe/ReactiveCocoa,AndyZhaoHe/ReactiveCocoa,GuitarPlayer-Ma/ReactiveCocoa,wangqi211/ReactiveCocoa,OneSmallTree/ReactiveCocoa,chieryw/ReactiveCocoa,yizzuide/ReactiveCocoa,ReactiveCocoa/ReactiveSwift,brightcove/ReactiveCocoa,sujeking/ReactiveCocoa,xiaobing2007/ReactiveCocoa,juliangrosshauser/ReactiveCocoa,tonyli508/ReactiveCocoa,yaoxiaoyong/ReactiveCocoa,swizzlr/ReactiveCocoa,gengjf/ReactiveCocoa,msdgwzhy6/ReactiveCocoa,BlessNeo/ReactiveCocoa,SuPair/ReactiveCocoa,zzqiltw/ReactiveCocoa,natestedman/ReactiveCocoa,DreamHill/ReactiveCocoa,mxxiv/ReactiveCocoa,mattpetters/ReactiveCocoa,ohwutup/ReactiveCocoa,FelixYin66/ReactiveCocoa,huiping192/ReactiveCocoa,j364960953/ReactiveCocoa,monkeydbobo/ReactiveCocoa,sandyway/ReactiveCocoa,luerhouhou/ReactiveCocoa,hj3938/ReactiveCocoa,stupidfive/ReactiveCocoa,richeterre/ReactiveCocoa,zzqiltw/ReactiveCocoa,luerhouhou/ReactiveCocoa,itschaitanya/ReactiveCocoa,JackLian/ReactiveCocoa,leichunfeng/ReactiveCocoa,llb1119/test,sugar2010/ReactiveCocoa,chieryw/ReactiveCocoa,liufeigit/ReactiveCocoa,beni55/ReactiveCocoa,zhukaixy/ReactiveCocoa,huiping192/ReactiveCocoa,Remitly/ReactiveCocoa,dz1111/ReactiveCocoa,Ricowere/ReactiveCocoa,kiurentu/ReactiveCocoa,ceekayel/ReactiveCocoa,esttorhe/ReactiveCocoa,dullgrass/ReactiveCocoa,ztchena/ReactiveCocoa,Juraldinio/ReactiveCocoa,beni55/ReactiveCocoa,wangqi211/ReactiveCocoa,add715/ReactiveCocoa,sugar2010/ReactiveCocoa,ReactiveCocoa/ReactiveSwift,DreamHill/ReactiveCocoa,msdgwzhy6/ReactiveCocoa,chieryw/ReactiveCocoa,calebd/ReactiveCocoa,AllanChen/ReactiveCocoa,tonyarnold/ReactiveCocoa,stupidfive/ReactiveCocoa,emodeqidao/ReactiveCocoa,xiaobing2007/ReactiveCocoa,sujeking/ReactiveCocoa,xulibao/ReactiveCocoa,jam891/ReactiveCocoa,eyu1988/ReactiveCocoa,jsslai/ReactiveCocoa,SanChain/ReactiveCocoa,leelili/ReactiveCocoa,kevin-zqw/ReactiveCocoa,yytong/ReactiveCocoa,andersio/ReactiveCocoa,imkerberos/ReactiveCocoa,zhigang1992/ReactiveCocoa,SmartEncounter/ReactiveCocoa,ikesyo/ReactiveCocoa
|
6254e8a578752fb18c085c7519390b881b619745
|
HTMLKit/HTMLKit.h
|
HTMLKit/HTMLKit.h
|
//
// HTMLKit.h
// HTMLKit
//
// Created by Iska on 15/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
//! Project version number for HTMLKit.
extern double HTMLKitVersionNumber;
//! Project version string for HTMLKit.
extern const unsigned char HTMLKitVersionString[];
#import "HTMLDOM.h"
#import "HTMLParser.h"
#import "HTMLKitErrorDomain.h"
#import "HTMLOrderedDictionary.h"
#import "CSSSelectors.h"
#import "CSSSelectorParser.h"
#import "CSSNthExpressionParser.h"
|
//
// HTMLKit.h
// HTMLKit
//
// Created by Iska on 15/09/14.
// Copyright (c) 2014 BrainCookie. All rights reserved.
//
#import <Foundation/Foundation.h>
//! Project version number for HTMLKit.
extern double HTMLKitVersionNumber;
//! Project version string for HTMLKit.
extern const unsigned char HTMLKitVersionString[];
#import "HTMLDOM.h"
#import "HTMLParser.h"
#import "HTMLKitErrorDomain.h"
#import "HTMLOrderedDictionary.h"
#import "CSSSelectors.h"
#import "CSSSelectorParser.h"
#import "CSSNthExpressionParser.h"
#import "NSString+HTMLKit.h"
#import "NSCharacterSet+HTMLKit.h"
|
Add imports for the public categories in the umbrella header
|
Add imports for the public categories in the umbrella header
|
C
|
mit
|
iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit,iabudiab/HTMLKit
|
d6d05c53626ccdc2495ef6b98cafef4c3c1f3729
|
server/types/JoinableImpl.h
|
server/types/JoinableImpl.h
|
#ifndef JOINABLE_IMPL
#define JOINABLE_IMPL
#include "joinable_types.h"
#include "types/MediaObjectImpl.h"
using ::com::kurento::kms::api::Joinable;
using ::com::kurento::kms::api::Direction;
using ::com::kurento::kms::api::StreamType;
namespace com { namespace kurento { namespace kms {
class JoinableImpl : public virtual Joinable, public virtual MediaObjectImpl {
public:
JoinableImpl();
~JoinableImpl() throw() {};
std::vector<StreamType::type> getStreams(const Joinable& joinable);
void join(const JoinableImpl& to, const Direction::type direction);
void unjoin(const JoinableImpl& to);
void join(const JoinableImpl& to, const StreamType::type stream, const Direction::type direction);
void unjoin(const JoinableImpl& to, const StreamType::type stream);
std::vector<Joinable> &getJoinees();
std::vector<Joinable> &getDirectionJoiness(const Direction::type direction);
std::vector<Joinable> &getJoinees(const StreamType::type stream);
std::vector<Joinable> &getDirectionJoiness(const StreamType::type stream, const Direction::type direction);
};
}}} // com::kurento::kms
#endif /* JOINABLE_IMPL */
|
#ifndef JOINABLE_IMPL
#define JOINABLE_IMPL
#include "joinable_types.h"
#include "types/MediaObjectImpl.h"
using ::com::kurento::kms::api::Joinable;
using ::com::kurento::kms::api::Direction;
using ::com::kurento::kms::api::StreamType;
namespace com { namespace kurento { namespace kms {
class JoinableImpl : public virtual Joinable, public virtual MediaObjectImpl {
public:
JoinableImpl();
~JoinableImpl() throw() {};
std::vector<StreamType::type> getStreams(const Joinable& joinable);
void join(const JoinableImpl& to, const Direction::type direction);
void unjoin(const JoinableImpl& to);
void join(const JoinableImpl& to, const StreamType::type stream, const Direction::type direction);
void unjoin(const JoinableImpl& to, const StreamType::type stream);
std::vector<Joinable> &getJoinees();
std::vector<Joinable> &getDirectionJoiness(const Direction::type direction);
std::vector<Joinable> &getJoinees(const StreamType::type stream);
std::vector<Joinable> &getDirectionJoiness(const StreamType::type stream, const Direction::type direction);
};
}}} // com::kurento::kms
#endif /* JOINABLE_IMPL */
|
Add new line at end of file
|
Add new line at end of file
|
C
|
lgpl-2.1
|
lulufei/kurento-media-server,TribeMedia/kurento-media-server,shelsonjava/kurento-media-server,shelsonjava/kurento-media-server,todotobe1/kurento-media-server,Kurento/kurento-media-server,mparis/kurento-media-server,lulufei/kurento-media-server,Kurento/kurento-media-server,mparis/kurento-media-server,TribeMedia/kurento-media-server,todotobe1/kurento-media-server
|
0ecce5926dd432110b4ae0ea3b6c7702af71d8be
|
OpenMRS-iOS/OpenMRS-iOS-Bridging-Header.h
|
OpenMRS-iOS/OpenMRS-iOS-Bridging-Header.h
|
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "OpenMRSAPIManager.h"
#import "LocationListTableViewController.h"
#import "UIAlertView+Blocks.h"
|
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "OpenMRSAPIManager.h"
#import "LocationListTableViewController.h"
#import "UIAlertView+Blocks.h"
#import "MRSHelperFunctions.h"
|
Add MRSHelper functions to Bridging Header
|
Add MRSHelper functions to Bridging Header
|
C
|
mpl-2.0
|
Undo1/openmrs-contrib-ios-client,yousefhamza/openmrs-contrib-ios-client,Undo1/openmrs-contrib-ios-client,yousefhamza/openmrs-contrib-ios-client
|
79e60f8ed47146544da1d005776a3d1b9e672a3f
|
src/CommandLineParser.h
|
src/CommandLineParser.h
|
//! \file CommandLineParser.h
#ifndef _COMMANDLINEPARSER_H
#define _COMMANDLINEPARSER_H
#include <string>
//! Abstract base class for parsing command line arguments
class CommandLineParser
{
public:
/*! Parses command line args and stores results internally.
* May throw an exception in case of error
* \param argc number of arguments
* \param argv arguments as passed to main
*/
virtual void parse(int argc, char** argv) = 0;
/*! Query whether a specific flag was set on command line.
* \param flag Command line switch without leading dash
* \return whether specified flag was set on command line
*/
virtual bool hasSet(std::string flag) = 0;
/*! get argument of switch (if available)
* \param option command line switch without leading dash
* \returns value as string
*/
virtual std::string getValue(std::string option) = 0;
/*! Print usage help
*/
virtual void printHelp() = 0;
};
#endif // _COMMANDLINEPARSER_H
|
//! \file CommandLineParser.h
#ifndef _COMMANDLINEPARSER_H
#define _COMMANDLINEPARSER_H
#include <string>
//! Abstract base class for parsing command line arguments
class CommandLineParser
{
public:
virtual ~CommandLineParser() {};
/*! Parses command line args and stores results internally.
* May throw an exception in case of error
* \param argc number of arguments
* \param argv arguments as passed to main
*/
virtual void parse(int argc, char** argv) = 0;
/*! Query whether a specific flag was set on command line.
* \param flag Command line switch without leading dash
* \return whether specified flag was set on command line
*/
virtual bool hasSet(std::string flag) = 0;
/*! get argument of switch (if available)
* \param option command line switch without leading dash
* \returns value as string
*/
virtual std::string getValue(std::string option) = 0;
/*! Print usage help
*/
virtual void printHelp() = 0;
};
#endif // _COMMANDLINEPARSER_H
|
Make Command line parser d'tor virtual
|
Make Command line parser d'tor virtual
|
C
|
mit
|
dueringa/WikiWalker
|
a29ba1e4518d9dc9650448d67abae39341d6364b
|
test/read_file.h
|
test/read_file.h
|
inline string
get_file_contents(char *filename)
{
ifstream file(filename, ios::in | ios::ate);
if (!file.is_open())
return string();
streampos sz = file.tellg();
file.seekg(0, ios::beg);
vector<char> v(sz);
file.read(&v[0], sz);
file.close();
string data(v.empty() ? string() : string (v.begin(), v.end()).c_str());
return data;
}
|
inline string
get_file_contents(const char *filename)
{
ifstream file(filename, ios::in | ios::ate);
if (!file.is_open())
return string();
streampos sz = file.tellg();
file.seekg(0, ios::beg);
vector<char> v(sz);
file.read(&v[0], sz);
file.close();
string data(v.empty() ? string() : string (v.begin(), v.end()).c_str());
return data;
}
|
Fix compiler warnings in the test suite
|
Fix compiler warnings in the test suite
|
C
|
lgpl-2.1
|
matthewruhland/libmusicbrainz,sebastinas/libmusicbrainz,matthewruhland/libmusicbrainz,metabrainz/libmusicbrainz,sebastinas/libmusicbrainz,sebastinas/libmusicbrainz,ianmcorvidae/libmusicbrainz,metabrainz/libmusicbrainz,matthewruhland/libmusicbrainz,metabrainz/libmusicbrainz,ianmcorvidae/libmusicbrainz
|
7f5130a7ac41e93066f60d80203a0b8ea675c0c9
|
numpy/core/src/multiarray/nditer_pywrap.h
|
numpy/core/src/multiarray/nditer_pywrap.h
|
#ifndef __NEW_ITERATOR_PYWRAP_H
#define __NEW_ITERATOR_PYWRAP_H
NPY_NO_EXPORT PyObject *
NpyIter_NestedIters(PyObject *NPY_UNUSED(self),
PyObject *args, PyObject *kwds);
#endif
|
#ifndef __NDITER_PYWRAP_H
#define __NDITER_PYWRAP_H
NPY_NO_EXPORT PyObject *
NpyIter_NestedIters(PyObject *NPY_UNUSED(self),
PyObject *args, PyObject *kwds);
#endif
|
Make include flag name match file name.
|
STY: Make include flag name match file name.
|
C
|
bsd-3-clause
|
ahaldane/numpy,stefanv/numpy,brandon-rhodes/numpy,dimasad/numpy,kiwifb/numpy,skymanaditya1/numpy,rherault-insa/numpy,ChristopherHogan/numpy,MSeifert04/numpy,rudimeier/numpy,chiffa/numpy,drasmuss/numpy,Eric89GXL/numpy,ekalosak/numpy,endolith/numpy,mingwpy/numpy,rgommers/numpy,dch312/numpy,madphysicist/numpy,jorisvandenbossche/numpy,cowlicks/numpy,nguyentu1602/numpy,shoyer/numpy,drasmuss/numpy,kirillzhuravlev/numpy,madphysicist/numpy,seberg/numpy,ChanderG/numpy,argriffing/numpy,joferkington/numpy,mathdd/numpy,numpy/numpy,ahaldane/numpy,grlee77/numpy,mattip/numpy,astrofrog/numpy,endolith/numpy,BabeNovelty/numpy,Linkid/numpy,rajathkumarmp/numpy,anntzer/numpy,grlee77/numpy,jonathanunderwood/numpy,ddasilva/numpy,shoyer/numpy,njase/numpy,WarrenWeckesser/numpy,mingwpy/numpy,empeeu/numpy,empeeu/numpy,NextThought/pypy-numpy,Yusa95/numpy,ahaldane/numpy,KaelChen/numpy,larsmans/numpy,ViralLeadership/numpy,mhvk/numpy,stuarteberg/numpy,charris/numpy,ssanderson/numpy,solarjoe/numpy,solarjoe/numpy,bmorris3/numpy,sigma-random/numpy,NextThought/pypy-numpy,sinhrks/numpy,dwillmer/numpy,pizzathief/numpy,matthew-brett/numpy,CMartelLML/numpy,madphysicist/numpy,jankoslavic/numpy,rherault-insa/numpy,simongibbons/numpy,ddasilva/numpy,MSeifert04/numpy,ewmoore/numpy,skwbc/numpy,GaZ3ll3/numpy,githubmlai/numpy,yiakwy/numpy,moreati/numpy,bertrand-l/numpy,NextThought/pypy-numpy,skymanaditya1/numpy,has2k1/numpy,ogrisel/numpy,SiccarPoint/numpy,BMJHayward/numpy,MichaelAquilina/numpy,sigma-random/numpy,Eric89GXL/numpy,shoyer/numpy,rmcgibbo/numpy,yiakwy/numpy,mathdd/numpy,astrofrog/numpy,sigma-random/numpy,ajdawson/numpy,sonnyhu/numpy,Eric89GXL/numpy,pdebuyl/numpy,ahaldane/numpy,Anwesh43/numpy,rmcgibbo/numpy,pbrod/numpy,madphysicist/numpy,brandon-rhodes/numpy,ewmoore/numpy,kirillzhuravlev/numpy,immerrr/numpy,BabeNovelty/numpy,mingwpy/numpy,felipebetancur/numpy,bringingheavendown/numpy,pdebuyl/numpy,nguyentu1602/numpy,anntzer/numpy,dwillmer/numpy,MaPePeR/numpy,cowlicks/numpy,bringingheavendown/numpy,jankoslavic/numpy,moreati/numpy,WillieMaddox/numpy,ogrisel/numpy,ChanderG/numpy,mwiebe/numpy,groutr/numpy,MaPePeR/numpy,kirillzhuravlev/numpy,pizzathief/numpy,leifdenby/numpy,jakirkham/numpy,dwillmer/numpy,SiccarPoint/numpy,jschueller/numpy,anntzer/numpy,gmcastil/numpy,endolith/numpy,mwiebe/numpy,andsor/numpy,mortada/numpy,AustereCuriosity/numpy,mortada/numpy,ChanderG/numpy,pelson/numpy,KaelChen/numpy,dwf/numpy,stuarteberg/numpy,numpy/numpy,bertrand-l/numpy,dato-code/numpy,hainm/numpy,cjermain/numpy,jorisvandenbossche/numpy,SunghanKim/numpy,solarjoe/numpy,rhythmsosad/numpy,naritta/numpy,maniteja123/numpy,argriffing/numpy,simongibbons/numpy,Linkid/numpy,rhythmsosad/numpy,brandon-rhodes/numpy,dwf/numpy,immerrr/numpy,ekalosak/numpy,ViralLeadership/numpy,jankoslavic/numpy,ahaldane/numpy,jonathanunderwood/numpy,mortada/numpy,chiffa/numpy,ContinuumIO/numpy,sinhrks/numpy,skymanaditya1/numpy,groutr/numpy,larsmans/numpy,CMartelLML/numpy,pbrod/numpy,rajathkumarmp/numpy,stuarteberg/numpy,drasmuss/numpy,jschueller/numpy,dwf/numpy,tacaswell/numpy,KaelChen/numpy,astrofrog/numpy,ChanderG/numpy,MaPePeR/numpy,dimasad/numpy,embray/numpy,mhvk/numpy,mattip/numpy,kirillzhuravlev/numpy,abalkin/numpy,utke1/numpy,bertrand-l/numpy,jankoslavic/numpy,ekalosak/numpy,WarrenWeckesser/numpy,tdsmith/numpy,ajdawson/numpy,chatcannon/numpy,naritta/numpy,dch312/numpy,behzadnouri/numpy,Anwesh43/numpy,seberg/numpy,mattip/numpy,ogrisel/numpy,BMJHayward/numpy,kiwifb/numpy,ekalosak/numpy,skymanaditya1/numpy,andsor/numpy,trankmichael/numpy,pizzathief/numpy,BabeNovelty/numpy,ChristopherHogan/numpy,ogrisel/numpy,nbeaver/numpy,simongibbons/numpy,gfyoung/numpy,has2k1/numpy,nbeaver/numpy,jorisvandenbossche/numpy,pdebuyl/numpy,jakirkham/numpy,GrimDerp/numpy,abalkin/numpy,SunghanKim/numpy,jonathanunderwood/numpy,grlee77/numpy,MaPePeR/numpy,brandon-rhodes/numpy,cjermain/numpy,bmorris3/numpy,githubmlai/numpy,sigma-random/numpy,bmorris3/numpy,pyparallel/numpy,seberg/numpy,endolith/numpy,mwiebe/numpy,ViralLeadership/numpy,mindw/numpy,GaZ3ll3/numpy,chatcannon/numpy,ssanderson/numpy,rudimeier/numpy,charris/numpy,naritta/numpy,NextThought/pypy-numpy,njase/numpy,stefanv/numpy,CMartelLML/numpy,felipebetancur/numpy,mortada/numpy,ddasilva/numpy,charris/numpy,utke1/numpy,shoyer/numpy,tacaswell/numpy,rgommers/numpy,pelson/numpy,hainm/numpy,utke1/numpy,musically-ut/numpy,mathdd/numpy,pbrod/numpy,KaelChen/numpy,mattip/numpy,felipebetancur/numpy,ESSS/numpy,ajdawson/numpy,sonnyhu/numpy,matthew-brett/numpy,mathdd/numpy,b-carter/numpy,trankmichael/numpy,Eric89GXL/numpy,rudimeier/numpy,grlee77/numpy,dwf/numpy,ChristopherHogan/numpy,immerrr/numpy,Linkid/numpy,rhythmsosad/numpy,hainm/numpy,b-carter/numpy,tynn/numpy,ogrisel/numpy,mhvk/numpy,pbrod/numpy,joferkington/numpy,naritta/numpy,matthew-brett/numpy,MichaelAquilina/numpy,GaZ3ll3/numpy,pyparallel/numpy,nguyentu1602/numpy,MichaelAquilina/numpy,tacaswell/numpy,madphysicist/numpy,tdsmith/numpy,nbeaver/numpy,skwbc/numpy,GrimDerp/numpy,GrimDerp/numpy,yiakwy/numpy,Dapid/numpy,cowlicks/numpy,empeeu/numpy,charris/numpy,dch312/numpy,joferkington/numpy,tynn/numpy,groutr/numpy,andsor/numpy,BabeNovelty/numpy,hainm/numpy,larsmans/numpy,ewmoore/numpy,SunghanKim/numpy,tdsmith/numpy,numpy/numpy,rmcgibbo/numpy,musically-ut/numpy,sonnyhu/numpy,felipebetancur/numpy,jschueller/numpy,pizzathief/numpy,matthew-brett/numpy,grlee77/numpy,jakirkham/numpy,chatcannon/numpy,astrofrog/numpy,ewmoore/numpy,pelson/numpy,bmorris3/numpy,SiccarPoint/numpy,MichaelAquilina/numpy,b-carter/numpy,WarrenWeckesser/numpy,WarrenWeckesser/numpy,rmcgibbo/numpy,maniteja123/numpy,dato-code/numpy,rgommers/numpy,rherault-insa/numpy,behzadnouri/numpy,rudimeier/numpy,tynn/numpy,behzadnouri/numpy,andsor/numpy,jakirkham/numpy,AustereCuriosity/numpy,pelson/numpy,mindw/numpy,MSeifert04/numpy,dato-code/numpy,shoyer/numpy,Yusa95/numpy,GaZ3ll3/numpy,MSeifert04/numpy,musically-ut/numpy,rajathkumarmp/numpy,gfyoung/numpy,jorisvandenbossche/numpy,jakirkham/numpy,pizzathief/numpy,Srisai85/numpy,cjermain/numpy,mindw/numpy,Anwesh43/numpy,kiwifb/numpy,anntzer/numpy,matthew-brett/numpy,gmcastil/numpy,SunghanKim/numpy,dato-code/numpy,cjermain/numpy,Srisai85/numpy,dimasad/numpy,pdebuyl/numpy,sonnyhu/numpy,sinhrks/numpy,ESSS/numpy,CMartelLML/numpy,BMJHayward/numpy,joferkington/numpy,ContinuumIO/numpy,jorisvandenbossche/numpy,sinhrks/numpy,BMJHayward/numpy,Anwesh43/numpy,Yusa95/numpy,gfyoung/numpy,trankmichael/numpy,numpy/numpy,AustereCuriosity/numpy,pelson/numpy,embray/numpy,maniteja123/numpy,ewmoore/numpy,stefanv/numpy,dch312/numpy,trankmichael/numpy,ajdawson/numpy,leifdenby/numpy,ChristopherHogan/numpy,tdsmith/numpy,SiccarPoint/numpy,Srisai85/numpy,has2k1/numpy,cowlicks/numpy,simongibbons/numpy,rgommers/numpy,mhvk/numpy,moreati/numpy,Yusa95/numpy,bringingheavendown/numpy,WarrenWeckesser/numpy,mindw/numpy,njase/numpy,rajathkumarmp/numpy,dwillmer/numpy,Linkid/numpy,larsmans/numpy,gmcastil/numpy,pyparallel/numpy,ssanderson/numpy,ContinuumIO/numpy,leifdenby/numpy,embray/numpy,chiffa/numpy,Srisai85/numpy,pbrod/numpy,GrimDerp/numpy,githubmlai/numpy,githubmlai/numpy,musically-ut/numpy,empeeu/numpy,mingwpy/numpy,jschueller/numpy,simongibbons/numpy,rhythmsosad/numpy,immerrr/numpy,stuarteberg/numpy,dimasad/numpy,Dapid/numpy,mhvk/numpy,yiakwy/numpy,ESSS/numpy,skwbc/numpy,stefanv/numpy,astrofrog/numpy,argriffing/numpy,MSeifert04/numpy,Dapid/numpy,WillieMaddox/numpy,has2k1/numpy,embray/numpy,abalkin/numpy,dwf/numpy,embray/numpy,nguyentu1602/numpy,stefanv/numpy,WillieMaddox/numpy,seberg/numpy
|
9fd15678a5f149c5ddc5793541c4f3262802e2dd
|
chapter3/Player.h
|
chapter3/Player.h
|
#ifndef __PLAYER_H__
#define __PLAYER_H__
#include<iostream>
#include"GameObject.h"
class PLayer: public GameObject
{
public:
void update();
void clean()
{
GameObject::clean();
std::cout << "clean PLayer";
}
};
#endif
|
#ifndef __PLAYER_H__
#define __PLAYER_H__
#include<iostream>
#include"GameObject.h"
class Player: public GameObject
{
public:
void update();
void clean()
{
std::cout << "clean PLayer";
}
};
#endif
|
Fix class name and remove GameObject::clean call.
|
Fix class name and remove GameObject::clean call.
|
C
|
bsd-2-clause
|
caiotava/SDLBook
|
edca044ab872ca71085167b0e82ac29a4f335b6f
|
include/llvm/DebugInfo/DIContext.h
|
include/llvm/DebugInfo/DIContext.h
|
//===-- DIContext.h ---------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines DIContext, and abstract data structure that holds
// debug information data.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_DEBUGINFO_DICONTEXT_H
#define LLVM_DEBUGINFO_DICONTEXT_H
#include "llvm/ADT/StringRef.h"
#include "llvm/DebugInfo/DILineInfo.h"
namespace llvm {
class raw_ostream;
class DIContext {
public:
virtual ~DIContext();
/// getDWARFContext - get a context for binary DWARF data.
static DIContext *getDWARFContext(bool isLittleEndian,
StringRef infoSection,
StringRef abbrevSection,
StringRef aRangeSection = StringRef(),
StringRef lineSection = StringRef(),
StringRef stringSection = StringRef());
virtual void dump(raw_ostream &OS) = 0;
};
}
#endif
|
//===-- DIContext.h ---------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines DIContext, and abstract data structure that holds
// debug information data.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_DEBUGINFO_DICONTEXT_H
#define LLVM_DEBUGINFO_DICONTEXT_H
#include "llvm/ADT/StringRef.h"
namespace llvm {
class raw_ostream;
class DIContext {
public:
virtual ~DIContext();
/// getDWARFContext - get a context for binary DWARF data.
static DIContext *getDWARFContext(bool isLittleEndian,
StringRef infoSection,
StringRef abbrevSection,
StringRef aRangeSection = StringRef(),
StringRef lineSection = StringRef(),
StringRef stringSection = StringRef());
virtual void dump(raw_ostream &OS) = 0;
};
}
#endif
|
Remove include of header that doesn't exist (yet).
|
Remove include of header that doesn't exist (yet).
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@139629 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
bsd-2-clause
|
dslab-epfl/asap,chubbymaggie/asap,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,chubbymaggie/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,dslab-epfl/asap,llvm-mirror/llvm,dslab-epfl/asap,GPUOpen-Drivers/llvm,apple/swift-llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,apple/swift-llvm,apple/swift-llvm,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,apple/swift-llvm,chubbymaggie/asap,llvm-mirror/llvm,dslab-epfl/asap,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap
|
25211cc6081e2075ecaf0565733075285a135411
|
h/mhcachesbr.h
|
h/mhcachesbr.h
|
/*
* mhcachesbr.h -- definitions for manipulating MIME content cache
*/
/*
* various cache policies
*/
static struct swit caches[] = {
#define CACHE_NEVER 0
{ "never", 0, 0 },
#define CACHE_PRIVATE 1
{ "private", 0, 0 },
#define CACHE_PUBLIC 2
{ "public", 0, 0 },
#define CACHE_ASK 3
{ "ask", 0, 0 },
{ NULL, 0, 0 }
};
|
/*
* mhcachesbr.h -- definitions for manipulating MIME content cache
*/
/*
* various cache policies
*/
#define CACHE_SWITCHES \
X("never", 0, CACHE_NEVER) \
X("private", 0, CACHE_PRIVATE) \
X("public", 0, CACHE_PUBLIC) \
X("ask", 0, CACHE_ASK) \
#define X(sw, minchars, id) id,
DEFINE_SWITCH_ENUM(CACHE);
#undef X
#define X(sw, minchars, id) { sw, minchars, id },
DEFINE_SWITCH_ARRAY(CACHE, caches);
#undef X
|
Convert the MIME content cache switches over to the smatch() New World Order.
|
Convert the MIME content cache switches over to the smatch() New World Order.
|
C
|
bsd-3-clause
|
dscho/nmh,dscho/nmh,mcr/nmh,dscho/nmh,dscho/nmh,mcr/nmh
|
4823e866835c3e9cf8aadbc1d1621554fcbfffde
|
src/plugins/InstructionCounter.h
|
src/plugins/InstructionCounter.h
|
// InstructionCounter.h (Oclgrind)
// Copyright (c) 2013-2016, James Price and Simon McIntosh-Smith,
// University of Bristol. All rights reserved.
//
// This program is provided under a three-clause BSD license. For full
// license terms please see the LICENSE file distributed with this
// source code.
#include "core/Plugin.h"
namespace llvm
{
class Function;
}
namespace oclgrind
{
class InstructionCounter : public Plugin
{
public:
InstructionCounter(const Context *context) : Plugin(context){};
virtual void instructionExecuted(const WorkItem *workItem,
const llvm::Instruction *instruction,
const TypedValue& result) override;
virtual void kernelBegin(const KernelInvocation *kernelInvocation) override;
virtual void kernelEnd(const KernelInvocation *kernelInvocation) override;
virtual void workGroupBegin(const WorkGroup *workGroup) override;
virtual void workGroupComplete(const WorkGroup *workGroup) override;
private:
std::vector<size_t> m_instructionCounts;
std::vector<size_t> m_memopBytes;
std::vector<const llvm::Function*> m_functions;
struct WorkerState
{
std::vector<size_t> *instCounts;
std::vector<size_t> *memopBytes;
std::vector<const llvm::Function*> *functions;
};
static THREAD_LOCAL WorkerState m_state;
std::mutex m_mtx;
std::string getOpcodeName(unsigned opcode) const;
};
}
|
// InstructionCounter.h (Oclgrind)
// Copyright (c) 2013-2016, James Price and Simon McIntosh-Smith,
// University of Bristol. All rights reserved.
//
// This program is provided under a three-clause BSD license. For full
// license terms please see the LICENSE file distributed with this
// source code.
#include "core/Plugin.h"
#include <mutex>
namespace llvm
{
class Function;
}
namespace oclgrind
{
class InstructionCounter : public Plugin
{
public:
InstructionCounter(const Context *context) : Plugin(context){};
virtual void instructionExecuted(const WorkItem *workItem,
const llvm::Instruction *instruction,
const TypedValue& result) override;
virtual void kernelBegin(const KernelInvocation *kernelInvocation) override;
virtual void kernelEnd(const KernelInvocation *kernelInvocation) override;
virtual void workGroupBegin(const WorkGroup *workGroup) override;
virtual void workGroupComplete(const WorkGroup *workGroup) override;
private:
std::vector<size_t> m_instructionCounts;
std::vector<size_t> m_memopBytes;
std::vector<const llvm::Function*> m_functions;
struct WorkerState
{
std::vector<size_t> *instCounts;
std::vector<size_t> *memopBytes;
std::vector<const llvm::Function*> *functions;
};
static THREAD_LOCAL WorkerState m_state;
std::mutex m_mtx;
std::string getOpcodeName(unsigned opcode) const;
};
}
|
Add missing mutex header include
|
Add missing mutex header include
|
C
|
bsd-3-clause
|
mpflanzer/Oclgrind,mpflanzer/Oclgrind,mpflanzer/Oclgrind,mpflanzer/Oclgrind
|
8f26097bd78e456b9cb090803263f3f50b513076
|
data-structures/trees/binary/node.h
|
data-structures/trees/binary/node.h
|
#ifndef _NODE_H_
#define _NODE_H_
template <class T>
struct Node
{
T data;
Node<T> *left;
Node<T> *right;
Node(const T& data, Node<T> *left = nullptr, Node<T> *right = nullptr)
: data(data), left(left), right(right) {}
};
#endif // _NODE_H_
|
#ifndef _NODE_H_
#define _NODE_H_
template <class T>
struct Node
{
T data;
Node<T> *left;
Node<T> *right;
Node<T> *parent;
Node(const T& data, Node<T> *left = nullptr, Node<T> *right = nullptr, Node<T> *parent = nullptr)
: data(data), left(left), right(right), parent(parent) {}
};
#endif // _NODE_H_
|
Update Trees/Node structure to have parent
|
Update Trees/Node structure to have parent
|
C
|
mit
|
stoimenoff/uni-cpp-samples,stoimenoff/uni-cpp-samples
|
fe7a5706e33207876ccd8cb9c7b365362f55c3ba
|
common/MCP23008.h
|
common/MCP23008.h
|
// Derived from blog post at http://www.ermicro.com/blog/?p=1239
#ifndef __MCP23008_H__
#define __MCP23008_H__
#include <compat/twi.h>
#include "i2c_utils.h"
#define MCP23008_ID 0x40 // MCP23008 I2C Device Identifier (0100, fixed)
#define MCP23008_ADDR 0x00 // MCP23008 I2C Address (000-111 in bits 3..1)
#define MCP23008_IODIR 0x00 // MCP23008 I/O Direction Register
#define MCP23008_GPIO 0x09 // MCP23008 General Purpose I/O Register
#define MCP23008_OLAT 0x0A // MCP23008 Output Latch Register
void write_mcp23008(unsigned char reg_addr,unsigned char data);
unsigned char read_mcp23008(unsigned char reg_addr);
#endif /*__MCP23008_H__*/
|
// I/O functions for MCP23008 port expander using I2C/TWI protocol
// Derived from blog post at http://www.ermicro.com/blog/?p=1239
#ifndef __MCP23008_H__
#define __MCP23008_H__
#include <compat/twi.h>
#include "i2c_utils.h"
// About the 7-bit I2C slave address MCP23008:
// - The high bits 7..4 are fixed at 0100.
// - Bits 3..1 are for further addressing (e.g. eeprom page, jumpered pads)
// - Bit 0 is disregarded (the R/W direction is handled separately).
// See http://www.avrbeginners.net/architecture/twi/twi.html#addressing
#define MCP23008 0x40 // MCP23008 I2C device address
#define MCP23008_IODIR 0x00 // MCP23008 I/O Direction Register
#define MCP23008_GPIO 0x09 // MCP23008 General Purpose I/O Register
#define MCP23008_OLAT 0x0A // MCP23008 Output Latch Register
void write_mcp23008(uint8_t reg_addr, uint8_t data);
uint8_t read_mcp23008(uint8_t reg_addr);
#endif /*__MCP23008_H__*/
|
Add info on I2C address
|
Add info on I2C address
|
C
|
mit
|
andrewadare/avr-breadboarding,andrewadare/avr-breadboarding
|
a2e999b2cae9f2ff7dab4362c052a88b3d7440d3
|
src/hex_helper.h
|
src/hex_helper.h
|
#pragma once
#include <string>
#include <ostream>
#include <iomanip>
#include <iostream>
struct Hex
{
Hex(char *buffer, size_t size)
: m_buffer(buffer)
, m_size(size)
{
}
friend std::ostream& operator <<(std::ostream &os, const Hex &obj)
{
unsigned char* aschar = (unsigned char*)obj.m_buffer;
for (size_t i = 0; i < obj.m_size; ++i) {
if (isprint(aschar[i])) {
os << aschar[i];
} else {
os << std::hex << std::setw(2) << std::setfill('0') << static_cast<unsigned int> (aschar[i]);
}
}
return os;
}
private:
char *m_buffer;
size_t m_size;
};
|
#pragma once
#include <string>
#include <ostream>
#include <iomanip>
#include <iostream>
struct Hex
{
Hex(char *buffer, size_t size)
: m_buffer(buffer)
, m_size(size)
{
}
friend std::ostream& operator <<(std::ostream &os, const Hex &obj)
{
unsigned char* aschar = (unsigned char*)obj.m_buffer;
for (size_t i = 0; i < obj.m_size; ++i) {
if (isprint(aschar[i])) {
os << aschar[i];
} else {
os << "\\x" << std::hex << std::setw(2) << std::setfill('0') << static_cast<unsigned int> (aschar[i]);
}
}
return os;
}
private:
char *m_buffer;
size_t m_size;
};
|
Add "\x" for hex part.
|
Add "\x" for hex part.
|
C
|
mit
|
azat/hadoop-io-sequence-reader
|
e769a3bc613c7c9d7fd650de18a45a65ad8c53c0
|
src/kmain.c
|
src/kmain.c
|
#include "gdt.h"
#include "idt.h"
#include "vga.h"
#include "term_printf.h"
void kernel_main()
{
init_term();
term_puts(NAME " booting...");
term_puts("Initializing GDT...");
init_gdt();
term_puts("Initializing IDT...");
init_idt();
term_printf("term_printf is %d%% p%cre %s\n", 100, 'u', "awesome");
__asm__ volatile ("int $2");
}
|
#include "gdt.h"
#include "idt.h"
#include "vga.h"
#include "term_printf.h"
void notify(void (*func)(), char *str)
{
term_putsn(str);
func();
term_puts(" done");
}
void kernel_main()
{
init_term();
term_puts(NAME " booting...");
notify(init_gdt, "Initializing GDT...");
notify(init_idt, "Initializing IDT...");
term_printf("term_printf is %d%% p%cre %s\n", 100, 'u', "awesome");
__asm__ volatile ("int $2");
}
|
Add notify() function to print message around function call
|
Add notify() function to print message around function call
|
C
|
mit
|
orodley/studix,orodley/studix
|
e7b995835e1b852b8046c9b1dcd25e9dbee99b05
|
test/Misc/pr32207.c
|
test/Misc/pr32207.c
|
// test for r305179
// RUN: %clang_cc1 -emit-llvm -O -mllvm -print-after-all %s -o %t 2>&1 | grep '*** IR Dump After Function Integration/Inlining ***'
void foo() {}
|
// test for r305179
// RUN: %clang_cc1 -emit-llvm -O -mllvm -print-after-all %s -o %t 2>&1 | FileCheck %s
// CHECK: *** IR Dump After Function Integration/Inlining ***
void foo() {}
|
Address David Blaikie comment by replacing grep with FileCheck.
|
Address David Blaikie comment by replacing grep with FileCheck.
git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@305215 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang
|
f6025874064eec95deb06a7b0d3c76ec03568d12
|
cpp/module_impl.h
|
cpp/module_impl.h
|
// Copyright (c) 2010 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 PPAPI_CPP_MODULE_IMPL_H_
#define PPAPI_CPP_MODULE_IMPL_H_
#include "ppapi/cpp/module.h"
namespace {
template <typename T> class DeviceFuncs {
public:
explicit DeviceFuncs(const char* ifname) : ifname_(ifname) {}
operator T const*() {
if (!funcs_) {
funcs_ = reinterpret_cast<T const*>(
pp::Module::Get()->GetBrowserInterface(ifname_));
}
return funcs_;
}
// This version doesn't check for existence of the function object. It is
// used so that, for DeviceFuncs f, the expression:
// if (f) f->doSomething();
// checks the existence only once.
T const* operator->() const { return funcs_; }
private:
DeviceFuncs(const DeviceFuncs&other);
DeviceFuncs &operator=(const DeviceFuncs &other);
const char* ifname_;
T const* funcs_;
};
} // namespace
#endif // PPAPI_CPP_MODULE_IMPL_H_
|
// Copyright (c) 2010 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 PPAPI_CPP_MODULE_IMPL_H_
#define PPAPI_CPP_MODULE_IMPL_H_
#include "ppapi/cpp/module.h"
namespace {
template <typename T> class DeviceFuncs {
public:
explicit DeviceFuncs(const char* ifname) : ifname_(ifname), funcs_(NULL) {}
operator T const*() {
if (!funcs_) {
funcs_ = reinterpret_cast<T const*>(
pp::Module::Get()->GetBrowserInterface(ifname_));
}
return funcs_;
}
// This version doesn't check for existence of the function object. It is
// used so that, for DeviceFuncs f, the expression:
// if (f) f->doSomething();
// checks the existence only once.
T const* operator->() const { return funcs_; }
private:
DeviceFuncs(const DeviceFuncs&other);
DeviceFuncs &operator=(const DeviceFuncs &other);
const char* ifname_;
T const* funcs_;
};
} // namespace
#endif // PPAPI_CPP_MODULE_IMPL_H_
|
Initialize DeviceFuncs::ifuncs_ to zero in constructor
|
Initialize DeviceFuncs::ifuncs_ to zero in constructor
|
C
|
bsd-3-clause
|
huqingyu/ppapi,whitewolfm/ppapi,c1soju96/ppapi,dralves/ppapi,huochetou999/ppapi,lag945/ppapi,lag945/ppapi,Xelemsta/ppapi,c1soju96/ppapi,tonyjoule/ppapi,HAfsari/ppapi,xinghaizhou/ppapi,xuesongzhu/ppapi,JustRight/ppapi,fubaydullaev/ppapi,CharlesHuimin/ppapi,huqingyu/ppapi,phisixersai/ppapi,stefanie924/ppapi,lag945/ppapi,dingdayong/ppapi,dingdayong/ppapi,xiaozihui/ppapi,chenfeng8742/ppapi,tonyjoule/ppapi,tiaolong/ppapi,nanox/ppapi,xuesongzhu/ppapi,whitewolfm/ppapi,chenfeng8742/ppapi,cacpssl/ppapi,siweilvxing/ppapi,YachaoLiu/ppapi,dingdayong/ppapi,cacpssl/ppapi,JustRight/ppapi,nanox/ppapi,gwobay/ppapi,rise-worlds/ppapi,dralves/ppapi,c1soju96/ppapi,thdtjsdn/ppapi,whitewolfm/ppapi,qwop/ppapi,xuesongzhu/ppapi,Xelemsta/ppapi,ruder/ppapi,CharlesHuimin/ppapi,whitewolfm/ppapi,dralves/ppapi,YachaoLiu/ppapi,YachaoLiu/ppapi,qwop/ppapi,ruder/ppapi,fubaydullaev/ppapi,huqingyu/ppapi,Xelemsta/ppapi,dralves/ppapi,HAfsari/ppapi,CharlesHuimin/ppapi,xinghaizhou/ppapi,xuesongzhu/ppapi,fubaydullaev/ppapi,lag945/ppapi,tonyjoule/ppapi,phisixersai/ppapi,cacpssl/ppapi,HAfsari/ppapi,phisixersai/ppapi,chenfeng8742/ppapi,xiaozihui/ppapi,gwobay/ppapi,thdtjsdn/ppapi,stefanie924/ppapi,dingdayong/ppapi,qwop/ppapi,huochetou999/ppapi,dralves/ppapi,siweilvxing/ppapi,HAfsari/ppapi,xuesongzhu/ppapi,thdtjsdn/ppapi,xinghaizhou/ppapi,tonyjoule/ppapi,fubaydullaev/ppapi,stefanie924/ppapi,CharlesHuimin/ppapi,rise-worlds/ppapi,CharlesHuimin/ppapi,fubaydullaev/ppapi,nanox/ppapi,gwobay/ppapi,tonyjoule/ppapi,YachaoLiu/ppapi,stefanie924/ppapi,chenfeng8742/ppapi,ruder/ppapi,xiaozihui/ppapi,huqingyu/ppapi,stefanie924/ppapi,gwobay/ppapi,thdtjsdn/ppapi,dingdayong/ppapi,ruder/ppapi,siweilvxing/ppapi,JustRight/ppapi,qwop/ppapi,ruder/ppapi,rise-worlds/ppapi,siweilvxing/ppapi,c1soju96/ppapi,qwop/ppapi,nanox/ppapi,tiaolong/ppapi,JustRight/ppapi,phisixersai/ppapi,tiaolong/ppapi,YachaoLiu/ppapi,huqingyu/ppapi,huochetou999/ppapi,xinghaizhou/ppapi,rise-worlds/ppapi,xinghaizhou/ppapi,huochetou999/ppapi,chenfeng8742/ppapi,thdtjsdn/ppapi,siweilvxing/ppapi,nanox/ppapi,cacpssl/ppapi,rise-worlds/ppapi,tiaolong/ppapi,Xelemsta/ppapi,HAfsari/ppapi,huochetou999/ppapi,xiaozihui/ppapi,gwobay/ppapi,c1soju96/ppapi,xiaozihui/ppapi,lag945/ppapi,tiaolong/ppapi,whitewolfm/ppapi,cacpssl/ppapi,phisixersai/ppapi,JustRight/ppapi,Xelemsta/ppapi
|
d8c827d14f834891b674054bc2bae8c8fa91d86c
|
base/418/getCursorPosition.c
|
base/418/getCursorPosition.c
|
int getCursorPosition(int *rows, int *cols)
{
}
|
//
// Use the ESC [6n escape sequence to query the horizontal cursor position
// and return it. On error -1 is returned, on success the position of the
// cursor is stored at *rows and *cols and 0 is returned.
//
int getCursorPosition(int ifd, int ofd, int *rows, int *cols) {
char buf[32];
unsigned int i = 0;
/* Report cursor location */
if (write(ofd, "\x1b[6n", 4) != 4) return -1;
/* Read the response: ESC [ rows ; cols R */
while (i < sizeof(buf)-1) {
if (read(ifd,buf+i,1) != 1) break;
if (buf[i] == 'R') break;
i++;
}
buf[i] = '\0';
/* Parse it. */
if (buf[0] != ESC || buf[1] != '[') return -1;
if (sscanf(buf+2,"%d;%d",rows,cols) != 2) return -1;
return 0;
}
|
Add changes to correct changes
|
Add changes to correct changes
|
C
|
bsd-2-clause
|
eingaeph/pip.imbue.hood,eingaeph/pip.imbue.hood
|
6eabd231276a1206adcca059a9efe9a95c61172b
|
src/lib/gcc/udivdi3.c
|
src/lib/gcc/udivdi3.c
|
/**
* @file
* @brief
*
* @date 16.05.12
* @author Anton Bondarev
* @author Ilia Vaprol
*/
#include <limits.h>
#include <stdint.h>
#define MASK_DWORD (uint64_t)1 << ((WORD_BIT * 2) - 1)
uint64_t __udivdi3(uint64_t num, uint64_t den) {
uint64_t result = 0;
int steps;
if (den == 0) {
return 0;
}
steps = 0;
result = 0;
while (!(den & MASK_DWORD)) {
den <<= 1;
++steps;
}
do {
result <<= 1;
if (num >= den) {
result |= 1;
num -= den;
}
den >>= 1;
} while (steps--);
return result;
}
|
/**
* @file
* @brief
*
* @date 16.05.12
* @author Anton Bondarev
* @author Ilia Vaprol
*/
#include <stdint.h>
uint64_t __udivdi3(uint64_t num, uint64_t den) {
uint64_t result = 0;
int steps;
if (den == 0) {
return 0;
}
steps = 0;
result = 0;
while (!(den & 0x8000000000000000)) {
den <<= 1;
++steps;
}
do {
result <<= 1;
if (num >= den) {
result |= 1;
num -= den;
}
den >>= 1;
} while (steps--);
return result;
}
|
Revert __udivi3 (word in compiler always 32 bit)
|
Revert __udivi3 (word in compiler always 32 bit)
|
C
|
bsd-2-clause
|
abusalimov/embox,gzoom13/embox,abusalimov/embox,Kefir0192/embox,Kakadu/embox,embox/embox,vrxfile/embox-trik,abusalimov/embox,gzoom13/embox,vrxfile/embox-trik,Kefir0192/embox,embox/embox,gzoom13/embox,Kefir0192/embox,Kakadu/embox,Kefir0192/embox,vrxfile/embox-trik,vrxfile/embox-trik,Kakadu/embox,Kefir0192/embox,mike2390/embox,embox/embox,Kakadu/embox,Kakadu/embox,embox/embox,Kakadu/embox,abusalimov/embox,Kakadu/embox,abusalimov/embox,vrxfile/embox-trik,Kefir0192/embox,gzoom13/embox,vrxfile/embox-trik,mike2390/embox,embox/embox,gzoom13/embox,mike2390/embox,vrxfile/embox-trik,gzoom13/embox,mike2390/embox,gzoom13/embox,mike2390/embox,abusalimov/embox,mike2390/embox,embox/embox,Kefir0192/embox,mike2390/embox
|
b04346e8ee67e96ed73c351bd8542a00f9c97aee
|
algorithms/automorphic.c
|
algorithms/automorphic.c
|
/*
* Author: hx1997
* Desc: жһȻǷΪƽԸβ
*/
#include <stdio.h>
int is_automorphic(long int num) {
long int sqrd = num * num;
int lsig_digit, lsig_digit_sqrd;
if(num > 44720) return -1;
for(; num > 0; num /= 10, sqrd /= 10) {
lsig_digit = num % 10;
lsig_digit_sqrd = sqrd % 10;
if(lsig_digit != lsig_digit_sqrd) return 0;
}
return 1;
}
int main(void) {
int num_to_check;
printf("Input a non-negative integer less than 44720: ");
scanf(" %d", &num_to_check);
if(num_to_check > 44720)
printf("Invalid input.\n");
else
printf("%d is%s an automorphic number.\n", num_to_check, (is_automorphic(num_to_check) ? "" : " not"));
return 0;
}
|
/*
* Author: hx1997
* Desc: жһȻǷΪƽԸβ
*/
#include <stdio.h>
int is_automorphic(int num) {
int sqrd = num * num;
int lsig_digit; int lsig_digit_sqrd;
if(num > 44720) return -1;
for(; num > 0; num /= 10, sqrd /= 10) {
lsig_digit = num % 10;
lsig_digit_sqrd = sqrd % 10;
if(lsig_digit != lsig_digit_sqrd) return 0;
}
return 1;
}
int main(void) {
int num_to_check;
printf("Input a non-negative integer less than 44720: ");
scanf(" %d", &num_to_check);
if(num_to_check > 44720)
printf("Invalid input.\n");
else
printf("%d is%s an automorphic number.\n", num_to_check, (is_automorphic(num_to_check) ? "" : " not"));
return 0;
}
|
Change long int to int
|
Automorphic: Change long int to int
|
C
|
mit
|
hx1997/random-dump
|
0cb4362412abfc45e019fc8e4bd3b1c551662bf7
|
iOS/PlayPlan/PublicViews/SideMenu.h
|
iOS/PlayPlan/PublicViews/SideMenu.h
|
//
// SideMenu.h
// PlayPlan
//
// Created by Zeacone on 15/11/19.
// Copyright © 2015年 Zeacone. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PlayPlan.h"
@interface SideMenu : UIView
@end
|
//
// SideMenu.h
// PlayPlan
//
// Created by Zeacone on 15/11/19.
// Copyright © 2015年 Zeacone. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PlayPlan.h"
@protocol SideMenuDelegate <NSObject>
- (void)sideMenu:(UIButton *)menu title:(NSString *)title;
@end
@interface SideMenu : UIView
@property (nonatomic, assign) id<SideMenuDelegate> delegate;
@end
|
Add delegate for side menu.
|
Add delegate for side menu.
|
C
|
mit
|
Zeacone/PlayPlan,Zeacone/PlayPlan
|
a29854ca7310d02cf452582cebe80c1de21294cf
|
include/core/SkMilestone.h
|
include/core/SkMilestone.h
|
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 101
#endif
|
/*
* Copyright 2016 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SK_MILESTONE
#define SK_MILESTONE 102
#endif
|
Update Skia milestone to 102
|
Update Skia milestone to 102
Change-Id: Ie332216b5338b1538de9ef07a34a28854c7c805a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/522137
Reviewed-by: Kevin Lubick <7cdab2cfab351f23814786ba39716e90eed69047@google.com>
|
C
|
bsd-3-clause
|
google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.