代码搜索结果

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

gram.y

%{ #include #ifndef UNIX #include #endif #include "BT.h" #include "command.h" void CommandPrompt(); int yyerror(char *msg); int yylex(); %} %union { BTkey *key; char

parser.y

%{ #include #include #include "v86bios.h" #include "pci.h" #define YYSTYPE unsigned long #define MAX_VAR 0x20 CARD32 var[MAX_VAR]; CARD32 var_mem; i86biosReg

prec.y

%{ /************************************************************ prec.y Simple calculator. Features floating point arithmetic using the addition, subtraction, multiplication and divide operators,

parser.y

%{ /**************************************************************************** parser.y Parser for a simple calculator. The parser is implemented using a C++ class. This is specified by selectin

calc.y

%{ /************************************************************ calc.y Simple calculator. Features floating point arithmetic using the addition, subtraction, multiplication and divide operators,

multi.y

%{ /************************************************************ multi.y This example demonstates how to generate multiple parsers (and similarly lexical analysers). You will need to build this e

destruct.y

%{ /************************************************************ destruct.y This example demonstrates the use of nonterminal destructors. They are used for preforming cleanup when the parser ente

multinst.y

%{ /************************************************************ multinst.y This example demonstates how to generate multiple instances of parsers and lexical analysers. You will need to build th

gram.y

%{ /********************************************************************** * gram.y - Parser for the PL/pgSQL * procedural language * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/pl

bootparse.y

%{ /*------------------------------------------------------------------------- * * bootparse.y * yacc parser grammar for the "backend" initialization program. * * Portions Copyright (c) 1996-20