Searched refs:Parse (Results 1 - 25 of 96) sorted by relevance

1234

/macosx-10.10/CPAN-56/Modules/Parse-Eyapp-1.182/
H A DMakefile1 NAME = Parse-Eyapp
/macosx-10.10/CPAN-56/Modules/Parse-Method-Signatures-1.003014/
H A DMakefile1 NAME = Parse-Method-Signatures
/macosx-10.10/CPAN-56/Modules/Parse-Method-Signatures-1.003016/
H A DMakefile1 NAME = Parse-Method-Signatures
/macosx-10.10/CPAN-56/Modules/Parse-RecDescent-1.967009/
H A DMakefile1 NAME = Parse-RecDescent
/macosx-10.10/perl-103/5.16/updates/Modules/Parse-CPAN-Meta-1.4404/
H A DMakefile1 NAME = Parse-CPAN-Meta
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/
H A DMakefile.PL5 'NAME' => 'Parse::Yapp',
6 'VERSION_FROM' => 'lib/Parse/Yapp/Driver.pm', # finds $VERSION
7 'MAN3PODS' => { 'lib/Parse/Yapp.pm' => '$(INST_MAN3DIR)/Parse::Yapp.3' },
9 'lib/Parse/Yapp.pm' => '$(INST_LIBDIR)/Yapp.pm',
10 'lib/Parse/Yapp/Options.pm' => '$(INST_LIBDIR)/Yapp/Options.pm',
11 'lib/Parse/Yapp/Driver.pm' => '$(INST_LIBDIR)/Yapp/Driver.pm',
12 'lib/Parse/Yapp/Grammar.pm' => '$(INST_LIBDIR)/Yapp/Grammar.pm',
13 'lib/Parse/Yapp/Lalr.pm' => '$(INST_LIBDIR)/Yapp/Lalr.pm',
14 'lib/Parse/Yap
[all...]
H A Dyapp3 # yapp -- Front end to the Parse::Yapp module
6 # (see the pod text in Parse::Yapp module for use and distribution rights)
12 yapp - A perl frontend to the Parse::Yapp module
26 yapp is a frontend to the Parse::Yapp module, which lets you compile
27 Parse::Yapp grammar input files into Perl LALR(1) OO parser modules.
69 use the internal template defined in F<Parse::Yapp::Output.pm>.
71 have a look to the module F<Parse::Yapp::Output.pm> : it should be obvious.
95 Display current version of Parse::Yapp and gracefully exits.
114 See Parse::Yapp(3) for legal use and distribution rights
118 Parse
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DOutput.pm2 # Module Parse::Yapp::Output
5 # (see the pod text in Parse::Yapp module for use and distribution rights)
7 package Parse::Yapp::Output;
8 @ISA=qw ( Parse::Yapp::Lalr );
12 use Parse::Yapp::Lalr;
13 use Parse::Yapp::Driver;
20 my($text)='#Included Parse/Yapp/Driver.pm file'.('-' x 40)."\n";
21 open(DRV,$Parse::Yapp::Driver::FILENAME)
22 or die "BUG: could not open $Parse::Yapp::Driver::FILENAME";
35 my($version)=$Parse
[all...]
H A DGrammar.pm2 # Module Parse::Yapp::Grammar
5 # (see the pod text in Parse::Yapp module for use and distribution rights)
7 package Parse::Yapp::Grammar;
8 @ISA=qw( Parse::Yapp::Options );
14 use Parse::Yapp::Options;
15 use Parse::Yapp::Parse;
26 my($parser)=new Parse::Yapp::Parse;
31 $values = $parser->Parse(
[all...]
H A DOptions.pm2 # Module Parse::Yapp::Options
5 # (see the pod text in Parse::Yapp module for use and distribution rights)
7 package Parse::Yapp::Options;
H A DParse.pm3 # This file was generated using Parse::Yapp version 1.05.
10 package Parse::Yapp::Parse;
14 @ISA= qw ( Parse::Yapp::Driver );
15 use Parse::Yapp::Driver;
19 # (see COPYRIGHT in Parse::Yapp.pm pod section for use and distribution rights)
21 # Parse/Yapp/Parser.yp: Parse::Yapp::Parser.pm source file
23 # Use: yapp -m 'Parse::Yapp::Parse'
1025 sub Parse { subroutine
[all...]
/macosx-10.10/expat-12/tests/
H A Dtest-6295922.py10 parser.Parse(xml)
/macosx-10.10/emacs-93/emacs/lisp/eshell/
H A Desh-arg.el210 "Parse all of the arguments at point from BEG to END.
293 "Parse a single backslash (\) character, which might mean escape.
323 "Parse a literally quoted string. Nothing has special meaning!"
335 "Parse a double quoted string, which allows for variable interpolation."
352 "Parse a special syntax reference, of the form '#<type arg>'."
370 "Parse an argument delimiter, which is essentially a command operator."
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Drx.el338 "Parse and produce code from FORM.
349 "Parse and produce code from FORM, which is `(or FORM1 ...)'."
393 "Parse and produce code from FORM, which is `(any ARG ...)'.
420 "Parse and produce code from FORM. FORM is `(not ...)'."
437 "Parse and produce code from FORM. FORM is `(not-char ...)'."
443 "Parse and produce code from FORM. FORM is `(not-syntax SYNTAX)'."
463 "Parse and produce code from FORM `(= N ...)'."
473 "Parse and produce code from FORM `(>= N ...)'."
483 "Parse and produce code from FORM `(** N M ...)'."
490 "Parse an
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/
H A DYapp.pm2 # Module Parse::Yapp.pm.
6 # See the Copyright section at the end of the Parse/Yapp.pm pod section
10 package Parse::Yapp;
14 @ISA = qw(Parse::Yapp::Output);
16 use Parse::Yapp::Output;
18 # $VERSION is in Parse/Yapp/Driver.pm
27 Parse::Yapp - Perl extension for generating and using LALR parsers.
48 Parse::Yapp (Yet Another Perl Parser compiler) is a collection of modules
52 The script yapp is a front-end to the Parse::Yapp module and let you
96 It is very close to yacc syntax (in fact, I<Parse
[all...]
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/vim-55/runtime/compiler/
H A Dphp.vim21 CompilerSet errorformat=%E<b>Parse\ error</b>:\ %m\ in\ <b>%f</b>\ on\ line\ <b>%l</b><br\ />,
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dietf-drums.el177 "Parse STRING and return a MAILBOX / DISPLAY-NAME pair."
217 "Parse STRING and return a list of MAILBOX / DISPLAY-NAME pairs."
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml2 * Abstract Syntax Tree (aka Parse Tree)
/macosx-10.10/perl-103/5.16/updates/
H A DMakefile11 Parse-CPAN-Meta-1.4404
/macosx-10.10/rsync-45/rsync/
H A Dparams.c33 * function opens the source file, calls the Parse() function to parse
276 * would have been read by Parse(). Unlike a comment
409 static BOOL Parse( FILE *InFile, function
469 } /* Parse */
528 result = Parse( InFile, sfunc, pfunc ); /* (recursive call), then just */
541 result = Parse( InFile, sfunc, pfunc );

Completed in 217 milliseconds

1234