代码搜索结果

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

set_fields.m

function CPD = set_fields(CPD, varargin) % SET_PARAMS Set the parameters (fields) for a tabular_CPD object % CPD = set_params(CPD, name/value pairs) % % The following optional arguments can be spe

aix432.mh

# Host: IBM PowerPC running AIX 4.3.2+ XM_FILE= xm-aix.h NAT_FILE= nm-aix.h # aix-thread.o is not listed in NATDEPFILES as it is pulled in by configure. NATDEPFILES= fork-child.o infptrace.o inftar

innokom.c

/* * (C) Copyright 2002 * Robert Schwebel, Pengutronix, r.schwebel@pengutronix.de * Kyle Harris, Nexus Technologies, Inc., kharris@nexus-tech.net * Marius Groeger, Sysgo Real-Time Solutions GmbH,

clash.bat

;@echo off ;goto make .486 .model flat, stdcall option casemap:none ;::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ;

arm-cpsys.cpp

/************************************************************************** * DSemu - The Next Generation * * Portable ARM9ES core: System control coprocess

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 {

page_sel.c

void page_se(unsigned char page) { switch(page) { case 0x00 : rom_a16=0;rom_a17=0;rom_a18=0; break; case 0x01 : rom_a16=1;rom_a17=0;rom_a18=0; break; case 0x02

onoffswitch14.java

// exceptions/OnOffSwitch14.java // TIJ4 Chapter Exceptions, Exercise 14, page 476 // Show that the OnOffSwitch.java can fail by throwing a // RuntimeException inside the try block. public class