代码搜索:State Machine
找到约 10,000 项符合「State Machine」的源代码
代码结果 10,000
www.eeworm.com/read/169491/5420710
h state.h
/* -*- indent-tabs-mode:T; c-basic-offset:8; tab-width:8; -*- vi: set ts=8:
* $Id: state.h,v 2.3 2003/03/08 05:27:26 tramm Exp $
*
* (c) Aaron Kahn
* (c) Trammell Hudson
*
* State communication
www.eeworm.com/read/169491/5420716
c state.c
/* -*- indent-tabs-mode:T; c-basic-offset:8; tab-width:8; -*- vi: set ts=8:
* $Id: state.c,v 2.1 2003/02/03 20:34:23 dennisda Exp $
*
* (c) Aaron Kahn
* (c) Trammell Hudson
*
* State communicati
www.eeworm.com/read/168845/5434270
hpp state.hpp
#ifndef BOOST_FSM_STATE_INCLUDED
#define BOOST_FSM_STATE_INCLUDED
// Copyright Aleksey Gurtovoy 2002-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanyin
www.eeworm.com/read/164604/5488769
java state.java
package headfirst.proxy.gumballmonitor;
import java.io.*;
public interface State extends Serializable {
public void insertQuarter();
public void ejectQuarter();
public void turnCrank();
public
www.eeworm.com/read/164604/5488780
java state.java
package headfirst.proxy.gumball;
import java.io.*;
public interface State extends Serializable {
public void insertQuarter();
public void ejectQuarter();
public void turnCrank();
public void d
www.eeworm.com/read/164604/5488917
java state.java
package headfirst.state.gumballstate;
public interface State {
public void insertQuarter();
public void ejectQuarter();
public void turnCrank();
public void dispense();
}
www.eeworm.com/read/164604/5488925
java state.java
package headfirst.state.gumballstatewinner;
public interface State {
public void insertQuarter();
public void ejectQuarter();
public void turnCrank();
public void dispense();
}
www.eeworm.com/read/346982/3179081
h state.h
//enum for one hot coding
enum onehot_t {
STATE_0 = 0, STATE_1 = 1, STATE_2 = 2, STATE_3 = 4,
STATE_4 = 8, STATE_5 = 16, STATE_6 = 32 };
struct state_t {
onehot_t state;
int delay;
uns
www.eeworm.com/read/346982/3179122
h state.h
//enum for one hot coding
struct state_t {
enum onehot_t {
STATE_0 = 0, STATE_1 = 1, STATE_2 = 2, STATE_3 = 4,
STATE_4 = 8, STATE_5 = 16, STATE_6 = 32 };
state_t::onehot_t state;
int
www.eeworm.com/read/345837/3196780
cs state.cs
namespace Org.InteliIM.Applications.Messenger.Interactive
{
///
/// Represents a status.
///
public interface Status
{
///
/// Gets the previous status.