代码搜索结果
找到约 10,000 项符合
Y 的代码
playlist.y
%{
#include
%}
%token T_PLAYLIST T_TRACK T_STRING
%%
play_list:
| T_PLAYLIST T_STRING '{' track_list '}'
;
track_list:
| track_list track
;
track: T_TRACK T_STRING
;
%%
playlist.y
%{
#include
%}
%token T_PLAYLIST T_TRACK T_STRING
%%
play_list:
| T_PLAYLIST T_STRING '{' track_list '}'
;
track_list:
| track_list track
;
track: T_TRACK T_STRING
;
%%
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
calc.y
%{
/* A simple integer desk calculator using yacc and gmp.
Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
This program is free software; you can
getdate.y
# dummy
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
bc.y
%right '='
%left '+' '-'
%left '*' '/' '%'
%right '^'
%left UMINUS
%term LETTER DIGIT SQRT _IF FFF EQ
%term _WHILE _FOR NE LE GE INCR DECR
%term _RETURN _BREAK _DEFINE BASE OBASE SCALE
%term EQPL EQ
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
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
getdate.y
%{
/*
** Originally written by Steven M. Bellovin while
** at the University of North Carolina at Chapel Hill. Later tweaked by
** a couple of people on Usenet. Complet