代码搜索结果
找到约 10,000 项符合
Y 的代码
sql.y
%{
/*
* Implementation of the Microsoft Installer (msi.dll)
*
* Copyright 2002-2004 Mike McCormack for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* mo
gram.y
%{
/* $OpenBSD: gram.y,v 1.11 2001/01/23 06:02:58 angelos Exp $ */
/* $NetBSD: gram.y,v 1.14 1997/02/02 21:12:32 thorpej Exp $ */
/*
* Copyright (c) 1992, 1993
* The Regents of the University of Ca
parser.y
%{
/*
* This file is part of the KDE libraries
* Copyright (C) 2002-2003 Lars Knoll (knoll@kde.org)
* Copyright (C) 2004 Apple Computer, Inc.
*
* This library is free software; you c
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
xpathparser.y
%{
/* XPathParser.java -- An XPath 1.0 parser.
Copyright (C) 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or
y.output
Grammar
0 $accept: file $end
1 @1: /* empty */
2 file: graph_type T_id @1 '{' stmt_list '}'
3 | error
4 | /* empty */
5 graph_type: T_graph
6 | T_stri
rc.y
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Res
else.y
%token IF cond THEN ELSE OTHER
%start stat
%%
stat : IF cond THEN stat ELSE stat
| IF cond THEN stat
| OTHER
;
cansi.y
%{ /* include files */
#include
#include
#include "parsedef.h"
#include "imps.h"
%}
%token T_INTEGER
%token T_SINGLECHAR
%token T_LONGINT
%token T_UNSINT
%token T_UNS
expr.y
%{
#include
%}
%token '+' '-' '*' '/' 'd'
%start expr
%%
expr : term
{ printf( "expr\t::= term\n" ); }
;
term : term '+' factor
{ printf( "term\t::= term '+' factor\