代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/367274/9763623
pl version.pl
#!/usr/bin/perl
#
# version.pl
#
# Parse the NASM version file and produce appropriate macros
#
# The NASM version number is assumed to consist of:
#
# .[.][pl
www.eeworm.com/read/171168/9768485
lua set text strings.lua
-- Set Text Strings
-- For this example, keep the strings in a table, you could parse a textfile
textstrings = {}
textstrings[0] = "This is text string 0"
textstrings[1] = "Text string 1"
texts
www.eeworm.com/read/205013/15329798
awk addopcodes.awk
#!/usr/bin/awk
#
# This script appends additional token codes to the end of the
# parse.h file that lemon generates. These extra token codes are
# not used by the parser. But they are used by the to
www.eeworm.com/read/201859/15394240
java reduce_action.java
package java_cup;
/** This class represents a reduce action within the parse table.
* The action simply stores the production that it reduces with and
* responds to queries about its type.
*
www.eeworm.com/read/109854/15546633
cpp parseclass.cpp
#include "parseClass.h"
#include
#include
#include
#include
#include
#include
using namespace std;
int Parse::ParseNumber(string &a
www.eeworm.com/read/101658/15822534
frm taste.frm
MODULE -->Grammar;
(* Simple Taste Compiler/Interpreter *)
FROM -->Scanner IMPORT lst, src, errors, Error, CharAt;
FROM -->Parser IMPORT Parse, Successful;
IMPORT
TC, ProgramArgs, Str
www.eeworm.com/read/101658/15822538
frm pretty.frm
MODULE -->Grammar;
(* Simple Taste pretty printer program *)
FROM -->Scanner IMPORT lst, src, errors, Error, CharAt;
FROM -->Parser IMPORT Parse, Successful;
IMPORT
Prettier, ProgramA
www.eeworm.com/read/101658/15822543
frm xref.frm
MODULE -->Grammar;
(* Simple Taste cross reference program *)
FROM -->Scanner IMPORT lst, src, errors, Error, CharAt;
FROM -->Parser IMPORT Parse, Successful;
IMPORT
CrossRef, Program
www.eeworm.com/read/101658/15822552
frm taste.frm
MODULE -->Grammar;
(* Simple Taste Compiler/Interpreter *)
FROM -->Scanner IMPORT lst, src, errors, Error, CharAt;
FROM -->Parser IMPORT Parse, Successful;
IMPORT SYSTEM, Storage, FileIO,