代码搜索:Scanner
找到约 4,788 项符合「Scanner」的源代码
代码结果 4,788
www.eeworm.com/read/114134/15075257
java scanner.java
package java_cup.runtime;
/**
* Defines the Scanner interface, which CUP uses in the default
* implementation of lr_parser.scan(). Integration
* of scanners implementing Scanne
www.eeworm.com/read/114134/15075302
java scanner.java
// Simple Example Scanner Class
package java_cup.simple_calc;
import java_cup.runtime.Symbol;
public class scanner implements java_cup.runtime.Scanner {
final java.io.InputStream instream;
pub
www.eeworm.com/read/114134/15075308
class scanner.class
www.eeworm.com/read/213830/15123952
cpp scanner.cpp
// scanner.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current
www.eeworm.com/read/213483/15134156
cpp scanner.cpp
#include
#include
#include
int m = 0;
int n = 0;
int x[50], y[50];
char * reservechar[] = {"PROGRAM", "CONST", "VAR", "INTEGER", "LONG", "PROCEDURE",
www.eeworm.com/read/212337/15159445
java scanner.java
package jeex.tiny;
import java.io.*;
/**
* A class for lexical analyse.
*/
class Scanner implements Tokens {
private char[] buf ; // hold the file in buf wholly
private int bp = 0; /
www.eeworm.com/read/212337/15159448
class scanner.class
www.eeworm.com/read/209274/15224131
h scanner.h
#pragma once
#include "Grammar.h"
using namespace std;
//这里定义了词法分析
class Scanner
{
public:
Scanner(Grammar *grammer);
~Scanner() {};
void scan();
void printoken();
list tokenl
www.eeworm.com/read/209274/15224147
cpp scanner.cpp
#include "stdafx.h"
#include "Scanner.h"
char Scanner::alphaprocess(char buffer) //关键字和标识符处理子函数
{
symbol atype;
int i=-1;
char alphatp[20];
while ( (isalpha(buffer)) || (isdigit(bu
www.eeworm.com/read/208728/15238477
java scanner.java
/*
* @(#)Scanner.java 2.1 2003/10/07
*
* Copyright (C) 1999, 2003 D.A. Watt and D.F. Brown
* Dept. of Computing Science, University of Glasgow, Glasgow G12 8QQ Scotland
* a