代码搜索结果

找到约 10,000 项符合 Switch 的代码

51_00_os.lnp

"main.obj", "OS_core.obj", "task_switch.obj", "UART.obj" TO "51_00_OS" RAMSIZE(256) CODE( 0X0000-0X1FFF )

env.linux

setenv HTKCF '-ansi -Wall -Wno-switch -g -O2 -DOSS_AUDIO' setenv HTKLF '-L/usr/X11/lib' setenv HTKCC 'gcc' setenv Arch linux setenv Objcopy "echo" setenv PRILF '-x' setenv CPU linux setenv SHRLF '-sha

qpsk_modul.m

function y=qpsk_modul(x) for k=1:length(x)./2 temp1=x((1:2)+(k-1)*2); yy=temp1(1)*2+temp1(2); y_t=0; switch yy, case 0, y_t=1+i; case 1, y_t=-1+

qpsk_modul.m

function y=qpsk_modul(x) for k=1:length(x)./2 temp1=x((1:2)+(k-1)*2); yy=temp1(1)*2+temp1(2); y_t=0; switch yy, case 0, y_t=1+i; case 1, y_t=-1+

qpsk_modul.m

function y=qpsk_modul(x) for k=1:length(x)./2 temp1=x((1:2)+(k-1)*2); yy=temp1(1)*2+temp1(2); y_t=0; switch yy, case 0, y_t=1+i; case 1, y_t=-1+

scdlg.cpp

// SCDlg.cpp : implementation file // #include "stdafx.h" #include "SC.h" #include "SCDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endi

withfinally.java

//: c09:WithFinally.java // Finally Guarantees cleanup. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class WithFi

onoffswitch.java

//: c09:OnOffSwitch.java // Why use finally? // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.txt. public class OnOffSwitch {

withfinally.java

//: exceptions/WithFinally.java // Finally Guarantees cleanup. public class WithFinally { static Switch sw = new Switch(); public static void main(String[] args) { try { sw.on();

onoffswitch.java

//: exceptions/OnOffSwitch.java // Why use finally? public class OnOffSwitch { private static Switch sw = new Switch(); public static void f() throws OnOffException1,OnOffException2 {}