代码搜索结果

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

machine.c

/* machine.c * Translate the Kaffe instruction set to the native one. * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for in

machine.h

/* machine.h * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file.

machine.c

/* machine.c * Translate the Kaffe instruction set to the native one. * * Copyright (c) 1996-1999 * Transvirtual Technologies, Inc. All rights reserved. * * Copyright (c) 2003, 2004 * Kaffe.or

machine.h

/* machine.h * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * Copyright (c) 2004 * Kaffe.org contributors. See ChangeLog for details. All rights reserved.

machine.c

/* * machine.c * Java virtual machine interpreter. * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * Copyright (c) 2004 * Kaffe.org contributors, see Cha

machine.h

/* * machine.h * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file.

machine.java

/* * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * no

machine.java

/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either v

machine.cpp

#include "Machine.h" #include Machine::Machine() { } Machine::~Machine() { } void Machine::explain() { printf("phane can machine\n"); }

machine.h

#ifndef MACHINE_H #define MACHINE_H class Machine { public: Machine(); ~Machine(); void explain(); }; #endif