代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/359187/6841961
m grammatical_inference.m
function [A,I,S,P] = Grammatical_Inference(x, labels)
% Bottom-Up Parsing
%
% Inputs:
% x - Text vectors to parse
% labels - Labels for the text vectors {-1, 1}
%
% Output:
www.eeworm.com/read/195484/8150067
c testcolor.c
/* Pango
* test-color.c: Test program for pango_color_parse()
*
* Copyright (C) 2002 Matthias Clasen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms
www.eeworm.com/read/193679/8207296
pas icqsock.pas
unit ICQSock;
{(C) Alex Demchenko}
{ Modified by NighTrader 02-04-2003 }
//{$DEFINE DEBUG} {Show debug errors}
//{$DEFINE PARSE} {Dump packets into file}
interface
uses
{$IFDEF DEBUGDC}
www.eeworm.com/read/393214/8303714
java parseexception.java
/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 4.1 */
/* JavaCCOptions:KEEP_LINE_COL=null */
package cmm;
/**
* This exception is thrown when parse errors are encoun
www.eeworm.com/read/367274/9763381
pl afmmetrics.pl
#!/usr/bin/perl
#
# Parse AFM metric files
#
@widths = ((undef)x256);
while ( $line = ) {
if ( $line =~ /^\s*FontName\s+(.*)\s*$/ ) {
$fontname = $1;
} elsif ( $line =~ /^
www.eeworm.com/read/415311/11077115
m grammatical_inference.m
function [A,I,S,P] = Grammatical_Inference(x, labels)
% Bottom-Up Parsing
%
% Inputs:
% x - Text vectors to parse
% labels - Labels for the text vectors {-1, 1}
%
% Output:
www.eeworm.com/read/268544/11135185
txt npc_gvg_steward.txt
//=========================================================================
// 管理人的全部函数
// callfunc "StewardMain","AgitCode",MasterRoomX,MasterRoomY;
//
// ■ parse结束处理
// 里面全部使用close指令,它带有end指令的效
www.eeworm.com/read/335984/12484926
pl afmmetrics.pl
#!/usr/bin/perl
#
# Parse AFM metric files
#
@widths = ((undef)x256);
while ( $line = ) {
if ( $line =~ /^\s*FontName\s+(.*)\s*$/ ) {
$fontname = $1;
} elsif ( $line =~ /^
www.eeworm.com/read/134303/13998295
txt 16w.txt
// CorbaBankClient.java
import java.util.*;
import org.omg.CosNaming.*;
public class CorbaBankClient {
private static NameComponent[] parse(String name) {
StringTokenizer stoker = new Strin
www.eeworm.com/read/236526/14012653
txt ipaddress类.txt
using System.Net;
IPAddress ia=IPAddress.Parse("192.168.1.2");
int iAddress=(int)ia.Address;
string sAddress=ia.ToString();
tbIPAddress.Text=sAddress;