代码搜索:CASE
找到约 10,000 项符合「CASE」的源代码
代码结果 10,000
www.eeworm.com/read/349723/3141089
sxnf if_case.sxnf
LCANET,5
PROG,Synopsys,1997.08,"Created from if_case.db"
PART,4005epc84-2
SYM,U117,IBUF,SCHNM=IBUF,LIBVER=2.0.0
PIN,O,O,n260,,
PIN,I,I,ADDR_A,,
END
SYM,U118,IBUF,SCHNM=IBUF,LIBVER=2.0.0
PIN,O,O,n26
www.eeworm.com/read/349723/3141091
bld if_case.bld
ngdbuild: version M1.4.12
Copyright (c) 1995-1997 Xilinx, Inc. All rights reserved.
Command Line: ngdbuild if_case.sxnf
Launcher: Using rule SYN_XNF_RULE
Launcher: if_case.ngo being compiled beca
www.eeworm.com/read/349723/3141096
bgn if_case.bgn
Loading device database for application Bitgen from file "if_case.ncd".
"if_case" is an NCD, version 2.27, device xc4005e, package pc84, speed -2
Loading device for application Bitgen from file '4
www.eeworm.com/read/340665/3281843
java case.java
// Simple compiler test.
public class Case
{
public static int foo (int i, support.Case x)
{
switch (i)
{
case x.A:
return 1;
default:
return 0;
}
}
}
www.eeworm.com/read/340665/3281903
java case.java
package support;
public class Case
{
public static final int A = 9;
}
www.eeworm.com/read/338159/3320015
cpp case.cpp
/****************************/
/* FastScript v1.0 */
/* 'Case' operator demo */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
i = 0;
www.eeworm.com/read/338159/3320030
cpp case.cpp
/****************************/
/* FastScript v1.0 */
/* 'Case' operator demo */
/****************************/
int i, j;
{
i = 0;
switch (i)
{
case 1: j = 1;
www.eeworm.com/read/338159/3320056
js case.js
//****************************/
//* FastScript v1.0 */
//* 'Case' operator demo */
//****************************/
var i, j;
i = 0;
switch (i)
{
case 1: j = 1;