代码搜索:parser
找到约 10,000 项符合「parser」的源代码
代码结果 10,000
www.eeworm.com/read/181089/9274776
c parser.c
/* A Bison parser, made from parser.y
by GNU bison 1.35. */
#define YYBISON 1 /* Identify Bison output. */
# define AND_SY 257
# define ASM_SY 258
# define ASSIGNMINUS_SY 259
# define
www.eeworm.com/read/180805/9294926
c parser.c
#include"global.h"
int lookahead;
parse() //分析并翻译表达式列表
{
lookahead = lexan();
while(lookahead !=DONE){
expr();match(';');
}
}
expr()
{
int t;
term();
while(1)
switch(lookahead
www.eeworm.com/read/376636/9311281
cpp parser.cpp
/**************************************************
* file: Parser.cpp
* date: 2006-04-12
* author: wuzuyang
* describe: parser
**************************************************/
//#define TRACE_DEB
www.eeworm.com/read/376636/9311295
h parser.h
/**************************************************
* file: Parser.h
* date: 2006-04-12
* author: wuzuyang
* describe: none; parser
**************************************************/
#include "commo
www.eeworm.com/read/376170/9327577
cpp parser.cpp
/*
* parser.cpp
*/
#include "parser.h"
#include "qgo_interface.h"
#include "tables.h"
#include
// Parsing of Go Server messages
Parser::Parser() : QObject(), Misc()
{
// ge
www.eeworm.com/read/376170/9327582
h parser.h
/*
* parser.h
*/
#ifndef PARSER_H
#define PARSER_H
#include
#include
#include "gs_globals.h"
#include "tables.h"
#include "misc.h"
#include "qgo_interface.h"
class Playe
www.eeworm.com/read/374570/9395924
h parser.h
#ifndef _LISA_PARSER_H
#define _LISA_PARSER_H
#include
#include "main.h"
/*
PROTOS
*/
void initParser( void );
struct lisa_node *parse( void );
void pushbackNode( struct lis
www.eeworm.com/read/374570/9395932
c parser.c
#include "parser.h"
/*
GLOBALS
*/
// NOTE:
// 'END' keyword or directive is used while searching keywords/directives into the array.
// See 'parse' function on identifier match for an example
www.eeworm.com/read/178315/9408676
h parser.h
/* A Bison parser, made by GNU Bison 1.875a. */
/* Skeleton parser for Yacc-like parsing with Bison,
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This
www.eeworm.com/read/178315/9408680
y parser.y
/* Hey Emacs, this is code for yacc to eat, treat it as -*-C-*- code */
%{
#include
#include "conf.h"
#include "config.h"
extern int yylineno;
#define conf_set(key,value) \
if (conf