代码搜索:parse
找到约 10,000 项符合「parse」的源代码
代码结果 10,000
www.eeworm.com/read/436804/7762395
cpp control.cpp
#include "Control.h"
Control::Control( void ) {
}
Control::Control( int argc, char** argv ) {
// parse the command line options to set all vars
if( ( argc % 2 == 0 ) || ( argc == 1 ) )
www.eeworm.com/read/436802/7762415
cpp control.cpp
#include "Control.h"
Control::Control( void ) {
}
Control::Control( int argc, char** argv ) {
// parse the command line options to set all vars
if( ( argc % 2 == 0 ) || ( argc == 1 ) )
www.eeworm.com/read/436800/7762447
cpp control.cpp
#include "Control.h"
Control::Control( void ) {
}
Control::Control( int argc, char** argv ) {
// parse the command line options to set all vars
if( ( argc % 2 == 0 ) || ( argc == 1 ) )
www.eeworm.com/read/435728/7786392
readme
This is the popt command line option parsing library. While it is similiar
to getopt(3), it contains a number of enhancements, including:
1) popt is fully reentrant
2) popt can parse arbitrary argv
www.eeworm.com/read/435646/7788293
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/399996/7816809
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/299153/7883369
java mimeparser.java
package com.javapatterns.builder.message;
import java.awt.Image;
/**
* This is a class to parse MIME e-mail messages.
*/
class MIMEParser {
private MIMEMessage msg; // The messa
www.eeworm.com/read/399161/7885347
c splitline.c
/* splitline.c - commmand reading and parsing functions for smsh
*
* char *next_cmd(char *prompt, FILE *fp) - get next command
* char **splitline(char *str); - parse a string
www.eeworm.com/read/297175/8048413
c tkparse.c
/*
* tkparse.c
*
* Eric Youngdale was the original author of xconfig.
* Michael Elizabeth Chastain (mec@shout.net) is the current maintainer.
*
* Parse a config.in file and translate it to a wis
www.eeworm.com/read/397099/8068845
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: