代码搜索:func

找到约 10,000 项符合「func」的源代码

代码结果 10,000
www.eeworm.com/read/368386/2818015

h func.h

/* ** ----------------------------------------------------------------------------- ** ** Perle Specialix driver for Linux ** Ported from existing RIO Driver for SCO sources. * * (C) 1990 - 2000
www.eeworm.com/read/366724/2862158

jsp func.jsp

www.eeworm.com/read/366702/2866809

c __func__.c

// { dg-options "-std=c++0x -pedantic" } const char* foo() { return __func__; }
www.eeworm.com/read/364841/2901139

jsp func.jsp

www.eeworm.com/read/361261/2947905

h func.h

#ifndef FUNC_H #define FUNC_H /* Public Prototypes */ func_t * create_func (char * name, double (*func_ptr)(), int num_args); int remove_func(func_t * func); func_t * find_func(char * name); int init
www.eeworm.com/read/361261/2947920

c func.c

/* Function management */ #include #include #include #include "common.h" #include "fatal.h" #include "func_types.h" #include "func.h" #include "splaytree_types.h" #
www.eeworm.com/read/358144/2999530

jsp func.jsp

www.eeworm.com/read/358128/3003904

result func_in.result

drop table if exists t1, t2; select 1 in (1,2,3); 1 in (1,2,3) 1 select 10 in (1,2,3); 10 in (1,2,3) 0 select NULL in (1,2,3); NULL in (1,2,3) NULL select 1 in (1,NULL,3); 1 in (1,NULL,3) 1 select 3 i
www.eeworm.com/read/358128/3003996

result func_if.result

drop table if exists t1; select IF(0,"ERROR","this"),IF(1,"is","ERROR"),IF(NULL,"ERROR","a"),IF(1,2,3)|0,IF(1,2.0,3.0)+0 ; IF(0,"ERROR","this") IF(1,"is","ERROR") IF(NULL,"ERROR","a") IF(1,2,3)|0 IF(1
www.eeworm.com/read/358128/3004765

test func_if.test

# # Init section # --disable_warnings drop table if exists t1; --enable_warnings # # Simple IF tests # select IF(0,"ERROR","this"),IF(1,"is","ERROR"),IF(NULL,"ERROR","a"),IF(1,2,3)|0,IF(1,2.0,3.0)+0