代码搜索:L
找到约 10,000 项符合「L」的源代码
代码结果 10,000
www.eeworm.com/read/192961/8261962
l uri.l
/*
* uri.l -- Routines dealing with URI, mainly parsing and merging.
* Created: Xie Han, OS lab of Peking University.
*
* The grammar of URI is quite simply so yacc is not needed.
*
www.eeworm.com/read/393733/8268186
gif l.gif
www.eeworm.com/read/293060/8315662
class l.class
www.eeworm.com/read/293018/8318335
l mgllex.l
%{
#include "mglyac.h"
#include
extern int lineno;
%}
ws [ \t]+
comment #.*
qstring \"[^\"\n]*[\"\n]
id [a-zA-Z][a-zA-Z0-9]*
nl \n
%%
{ws} ;
{comment} ;
{q
www.eeworm.com/read/293018/8318372
l paslex.l
%{
(* PASLEX.L: lexical analyzer for Pascal, adapted to TP Lex, 2-28-89 AG *)
%}
%{
(*
* lex input file for pascal scanner
*
* extensions: to ways to spell "external" and "->" ok for
www.eeworm.com/read/293018/8318377
l lengs.l
%{
(* This is a Lex demonstration program taken from the UNIX manual which
which counts words in a file.
Usage: lengs
www.eeworm.com/read/293018/8318383
l yreflex.l
%{
(* Lexical analyzer for the YREF program, V1.1 4-30-91 AG
implements a lexical analyzer for Yacc grammars *)
function yywrap : Boolean;
begin
yywrap := true; (* files are closed
www.eeworm.com/read/293018/8318408
l digram.l
%{
(* Lex demonstration program for the use of the REJECT routine, taken from
the UNIX manual. This program produces a digram table of the input file
(counts all pairs of lowercase letter
www.eeworm.com/read/293018/8318437
l exprlex.l
(* Lexical analyzer for the sample Yacc program in Expr.y. *)
L [A-Za-z]
D [0-9]
%%
var result : integer;
{D}+(\.{D}+)?([Ee][+-]?{D}+)? begin
val(yytext, yylval.yyReal,