代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/137626/5822807
c plural.c
/* A Bison parser, made from plural.y
by GNU Bison version 1.28 */
#define YYBISON 1 /* Identify Bison output. */
#define yyparse gettext__parse
#define yylex gettext__lex
#define yyerror g
www.eeworm.com/read/124745/6040612
c filters.c
/*
* filters.c Routines to parse Ascend's filter attributes.
*
* Version: $Id: filters.c,v 1.36 2004/02/26 19:04:20 aland Exp $
*
* This library is free software; you can redistribute it and/or
www.eeworm.com/read/101082/6249772
c m_atoi.c
/* m_atoi.c - parse a string representation of a message number */
#include "../h/mh.h"
m_atoi (str)
register char *str;
{
register int i;
register char *cp;
i = 0;
cp = str;
www.eeworm.com/read/101082/6250289
c m_atoi.c
/* m_atoi.c - parse a string representation of a message number */
#include "../h/mh.h"
m_atoi (str)
register char *str;
{
register int i;
register char *cp;
i = 0;
cp = str;
www.eeworm.com/read/101082/6253281
c getcmd.c
#ifndef lint
static char sccsid[] = "@(#)getcmd.c 4.2 (ULTRIX) 10/10/90";
#endif lint
/*
* .TITLE GETCMD - Parse and verify a command line.
* .IDENT /1-001/
*
* COPYRIGHT (C) 1985 DIGITAL EQUIP
www.eeworm.com/read/264458/6358230
pas yaccpars.pas
{
Yacc parse table construction.
Copyright (c) 1990-92 Albert Graef
Copyright (C) 1996 Berend de Boer
This program is fr
www.eeworm.com/read/494678/6359932
cpp parseutils.cpp
/* parseutils.cpp : code for utils to parse and handle scans
* Author: Maxie D. Schmidt (created 5/26/2006) */
#include "parseutils.h"
// externs default value:
double ZERO_INST_PR0_PG
www.eeworm.com/read/484435/6576198
h treedir.h
#ifndef TREEDIR_H
#define TREEDIR_H
#include "parse.h"
void treedir_init();
void treedir_display();
unsigned char treedir_user_action(event_t event);
#endif
www.eeworm.com/read/405906/11455159
c parser.c
#include "global.h"
int lookahead;
parse()
{
int t;
lookahead = lexan();
while (lookahead != DONE)
{
expr();
if(flag==0) //欲进行求值操作
{
if(wflag!=1) //不含标志符的表达式
www.eeworm.com/read/401165/11563409
y vbs_grammar.y
%{
// the grammar descript for the subset of VBScript language
// written by me.xinxin@gmail.com
%}
%name-prefix="vbs_"
%pure-parser
%locations
%debug
%error-verbose
%parse-param { Cvbs_context* cn