代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/132649/5914276
cpp scanner.cpp
/*
* ===========================================================================
* PRODUCTION $Log: scanner.cpp,v $
* PRODUCTION Revision 1000.4 2004/06/01 20:49:09 gouriano
* PRODUCTION PRODUCT
www.eeworm.com/read/131315/5931853
c scanner.c
/*
* Copyright (c) 1983 The Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pr
www.eeworm.com/read/131315/5938301
l scanner.l
%{
#ifndef lint
static char RCSid[] = "$Header: scanner.l,v 2.1 86/07/29 06:48:21 jqj Exp $";
#endif
/*
* scanner.l -- scanner for the XNS courier compiler
*/
/* $Log: scanner.l,v $
* Revision 2.1
www.eeworm.com/read/131315/5944697
c scanner.c
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Edward Wang at The Universit
www.eeworm.com/read/126074/6018356
h scanner.h
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/*
www.eeworm.com/read/126074/6018391
c scanner.c
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/*
www.eeworm.com/read/125608/6027520
lex scanner.lex
import java.util.*;
import java.lang.*;
import java_cup.runtime.*;
%%
%{
static scanner foo;
public static void init() {
foo = new scanner(System.in);
}
public static token next_token() throws j
www.eeworm.com/read/125608/6027566
lex scanner.lex
import java.util.*;
import java.lang.*;
import java_cup.runtime.*;
import java.io.*;
%%
%{
static scanner foo;
public static void init(InputStream is) {
foo = new scanner(is);
}
public static to