Searched refs:parser (Results 176 - 200 of 727) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dbytecode.c20 #define YYCURSOR parser->cursor
21 #define YYMARKER parser->marker
22 #define YYLIMIT parser->limit
23 #define YYTOKEN parser->token
24 #define YYTOKTMP parser->toktmp
25 #define YYLINEPTR parser->lineptr
26 #define YYLINECTPTR parser->linectptr
27 #define YYLINE parser->linect
28 #define YYFILL(n) syck_parser_read(parser)
32 char *get_inline( SyckParser *parser );
[all...]
H A Dyaml2byte.c221 SyckParser *parser = syck_new_parser(); local
222 syck_parser_str_auto( parser, yamlstr, NULL );
223 syck_parser_handler( parser, syck_yaml2byte_handler );
224 syck_parser_error_handler( parser, NULL );
225 syck_parser_implicit_typing( parser, 1 );
226 syck_parser_taguri_expansion( parser, 1 );
227 oid = syck_parse( parser );
229 if ( syck_lookup_sym( parser, oid, (char **)&sav ) == 1 ) {
240 syck_free_parser( parser );
/macosx-10.9.5/ruby-104/ruby/ext/psych/lib/
H A Dpsych.rb7 require 'psych/parser'
21 # Psych is a YAML parser and emitter.
43 # level, is an event based parser. Mid level is access to the raw YAML AST,
48 # The lowest level parser should be used when the YAML input is already known,
51 # more information on using the event based parser.
63 # The high level YAML parser provided by Psych simply takes YAML as input and
64 # returns a Ruby data structure. For information on using the high level parser
170 # Returns a default parser
171 def self.parser singleton method in class:Psych
204 parser
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rdoc/
H A Dtop_level.rb33 # The parser that processed this file
35 attr_accessor :parser
49 @parser = nil
101 # by the ruby parser.
195 @parser,
206 @parser = array[2]
257 return unless @parser < RDoc::Parser::Text
274 @parser and @parser.ancestors.include? RDoc::Parser::Text
/macosx-10.9.5/ruby-104/ruby/lib/uri/
H A Dmailto.rb168 if parser.regexp[:OPAQUE] !~ v || /\A#{MAILBOX_PATTERN}*\z/o !~ v
197 if parser.regexp[:OPAQUE] !~ v ||
256 to = parser.unescape(@to)
262 body = parser.unescape(x[1])
264 to << ', ' + parser.unescape(x[1])
266 head << parser.unescape(x[0]).capitalize + ': ' +
267 parser.unescape(x[1]) + "\n"
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/examples/
H A Dflatten.tcl49 # Create the parser object.
50 # We want to use the Tcl-only parser for this application,
54 set parser [eval ::xml::parser \
61 $parser configure -elementdeclcommand [list ElementDeclaration $out]
64 $parser configure -parameterentitydeclcommand [list PEDecl $out]
67 $parser configure -attlistdeclcommand [list AttListDecl $out]
70 $parser configure -commentcommand [list Comment $out]
76 $parser parse $data
81 $parser pars
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/
H A Dtclxml.c32 TclXML_ParserClassInfo *defaultParser; /* Current default parser */
214 Tcl_CreateObjCommand(interp, "xml::parser", TclXMLCreateParserCmd, NULL, NULL);
494 * Adds a new XML parser.
500 * New parser is available for use in parser instances.
515 Tcl_Obj *ptr = Tcl_NewStringObj("parser class \"", -1);
527 * Set default parser - last wins
541 * Creation command for xml::parser command.
544 * The name of the newly created parser instance.
547 * This creates a parser instanc
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter5/
H A Dparser.ml18 let rec parse_primary = parser
29 let rec parse_args accumulator = parser
31 begin parser
37 let rec parse_ident id = parser
61 begin parser
68 begin parser
73 begin parser
123 and parse_expr = parser
129 let rec parse_args accumulator = parser
134 parser
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_markdown_test.rb15 @parser = RDoc::Markdown.new
28 doc = @parser.parse input
50 doc = @parser.parse input
73 doc = @parser.parse input
171 doc = @parser.parse input
191 doc = @parser.parse input
213 doc = @parser.parse input
227 doc = @parser.parse input
245 doc = @parser.parse input
297 @parser
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Drbt.cpp40 TransliteratorParser parser(status);
41 parser.parse(rules, direction, parseError, status);
46 if (parser.idBlockVector.size() != 0 ||
47 parser.compoundFilter != NULL ||
48 parser.dataVector.size() == 0) {
53 fData = (TransliterationRuleData*)parser.dataVector.orphanElementAt(0);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dxml.js48 function chain(parser) {
49 state.tokenize = parser;
50 return parser(stream, state);
/macosx-10.9.5/WebCore-7537.78.1/xml/parser/
H A DXMLDocumentParserLibxml2.cpp59 #include <libxml/parser.h>
183 void callAndRemoveFirstCallback(XMLDocumentParser* parser) argument
186 callback->call(parser);
196 virtual void call(XMLDocumentParser* parser) = 0;
214 virtual void call(XMLDocumentParser* parser) argument
216 parser->startElementNs(xmlLocalName, xmlPrefix, xmlURI,
232 virtual void call(XMLDocumentParser* parser) argument
234 parser->endElementNs();
244 virtual void call(XMLDocumentParser* parser) argument
246 parser
260 call(XMLDocumentParser* parser) argument
275 call(XMLDocumentParser* parser) argument
290 call(XMLDocumentParser* parser) argument
306 call(XMLDocumentParser* parser) argument
322 call(XMLDocumentParser* parser) argument
501 xmlParserCtxtPtr parser = xmlCreatePushParserCtxt(handlers, 0, 0, 0, 0); local
525 xmlParserCtxtPtr parser = xmlCreateMemoryParserCtxt(chunk.data(), chunk.length()); local
1242 XMLDocumentParser* parser = getParser(closure); local
1538 RefPtr<XMLParserContext> parser = XMLParserContext::createStringParser(&sax, &state); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DPassNameParser.h40 public cl::parser<const PassInfo*> {
48 cl::parser<const PassInfo*>::initialize(O);
84 cl::parser<const PassInfo*>::printOptionInfo(O, GlobalWidth);
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dtest-break.tcl62 set parser [expat xmlparser \
72 $parser reset
73 if {[catch {$parser parse $testData} err]} {
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter7/
H A Dparser.ml19 let rec parse_primary = parser
30 let rec parse_args accumulator = parser
32 begin parser
38 let rec parse_ident id = parser
62 begin parser
69 begin parser
74 begin parser
102 and parse_unary = parser
146 and parse_var_init = parser
151 and parse_var_names accumulator = parser
[all...]
/macosx-10.9.5/CPANInternal-140/XML-SAX/
H A DSAX.pm229 # add/update a parser
232 # remove parser
240 XML::SAX is a SAX parser access API for Perl. It includes classes
242 class for returning any SAX parser installed on the user's system.
247 documentation of that module for how to instantiate a SAX parser:
254 my $p = XML::SAX::ParserFactory->parser(Handler => $handler);
258 This will automatically load a SAX2 parser (defaulting to
266 The first thing to remember in writing a SAX2 parser is to subclass
271 When writing a SAX2 parser that is compatible with XML::SAX, you need
274 the parser exist
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/disassembler/udis86/
H A Dud_optable.py1 # udis86 - scripts/ud_optable.py (optable.xml parser)
95 parser = UdOptableXmlParser()
96 parser.parse( xml, callback )
99 parser = UdOptableXmlParser()
100 parser.parse( sys.argv[ 1 ], printFn )
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DTreeParser.hpp43 /// Get the AST return value squirreled away in the parser
60 * parser (who builds the initial AST) and treeparser.
113 /** AST support code; parser and treeparser delegate to this object */
116 /// The input state of this tree parser.
127 TreeParser* parser; member in class:antlr::TreeParser::Tracer
132 : parser(p), text(t), tree(a)
134 parser->traceIn(text,tree);
138 parser->traceOut(text,tree);
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DWebSocketExtensionDispatcher.cpp112 WebSocketExtensionParser parser(headerValueData.data(), headerValueData.data() + headerValueData.length());
113 while (!parser.finished()) {
116 if (!parser.parseExtension(extensionToken, extensionParameters)) {
139 return parser.parsedSuccessfully();
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXMLErrors.h36 #include <libxml/parser.h>
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/include/
H A Dapr_xml.h207 /** Opaque XML parser structure */
211 * Create an XML parser
212 * @param pool The pool for allocating the parser and the parse results.
213 * @return The new parser.
220 * @param parser A pointer to *parser (needed so calling function can get
228 apr_xml_parser **parser,
235 * Feed input into the parser
236 * @param parser The XML parser fo
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/include/
H A Dapr_xml.h207 /** Opaque XML parser structure */
211 * Create an XML parser
212 * @param pool The pool for allocating the parser and the parse results.
213 * @return The new parser.
220 * @param parser A pointer to *parser (needed so calling function can get
228 apr_xml_parser **parser,
235 * Feed input into the parser
236 * @param parser The XML parser fo
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-c++/detail/
H A DMakefile.am.inc40 atf-c++/detail/parser.cpp \
41 atf-c++/detail/parser.hpp \
/macosx-10.9.5/libxml2-26/libxml2/doc/examples/
H A Dparse2.c4 * purpose: Create a parser context for an XML file, then parse and validate
14 #include <libxml/parser.h>
25 xmlParserCtxtPtr ctxt; /* the parser context */
28 /* create a parser context */
31 fprintf(stderr, "Failed to allocate parser context\n");
46 /* free up the parser context */
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter6/
H A DMakefile25 $(PROJ_SRC_DIR)/parser.ml \

Completed in 157 milliseconds

1234567891011>>