Searched refs:parser (Results 76 - 100 of 523) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/dtc/
H A DMakefile.dtc8 DTC_GEN_SRCS = dtc-lexer.lex.c dtc-parser.tab.c
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/mtd/
H A Dpartitions.h66 extern int register_mtd_parser(struct mtd_part_parser *parser);
67 extern int deregister_mtd_parser(struct mtd_part_parser *parser);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/examples/
H A Dio2.c12 #include <libxml/parser.h>
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 */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/ipkg-install/usr/share/doc/libxml2-2.7.2/html/
H A Dio2.c12 #include <libxml/parser.h>
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 */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/examples/
H A Dio2.c12 #include <libxml/parser.h>
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 */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/
H A Dactivation-helper.c31 #include "config-parser-trivial.h"
47 desktop_file_for_name (BusConfigParser *parser, argument
82 service_dirs = bus_config_parser_get_service_dirs (parser);
384 get_correct_parser (BusConfigParser **parser, DBusError *error) argument
438 *parser = bus_config_load (&config_file, TRUE, NULL, error);
439 if (*parser == NULL)
454 launch_bus_name (const char *bus_name, BusConfigParser *parser, DBusError *error) argument
465 desktop_file = desktop_file_for_name (parser, bus_name, error);
491 check_dbus_user (BusConfigParser *parser, DBusError *error) argument
495 dbus_user = bus_config_parser_get_user (parser);
514 BusConfigParser *parser; local
[all...]
H A Dbus.c34 #include "config-parser.h"
270 BusConfigParser *parser,
304 pidfile = bus_config_parser_get_pidfile (parser);
345 context->type = _dbus_strdup (bus_config_parser_get_type (parser));
346 if (bus_config_parser_get_type (parser) != NULL && context->type == NULL)
349 user = bus_config_parser_get_user (parser);
395 auth_mechanisms_list = bus_config_parser_get_mechanisms (parser);
445 addresses = bus_config_parser_get_addresses (parser);
471 context->fork = bus_config_parser_get_fork (parser);
472 context->syslog = bus_config_parser_get_syslog (parser);
269 process_config_first_time_only(BusContext *context, BusConfigParser *parser, const DBusString *address, BusContextFlags flags, DBusError *error) argument
496 process_config_every_time(BusContext *context, BusConfigParser *parser, dbus_bool_t is_reload, DBusError *error) argument
664 process_config_postinit(BusContext *context, BusConfigParser *parser, DBusError *error) argument
710 BusConfigParser *parser; local
955 BusConfigParser *parser; local
[all...]
H A DMakefile90 activation-exit-codes.h bus.c bus.h config-parser.c \
91 config-parser.h config-parser-common.c config-parser-common.h \
107 config-parser.$(OBJEXT) config-parser-common.$(OBJEXT) \
126 config-parser-common.c config-parser-common.h \
127 config-parser-trivial.c config-parser
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Doggparseflac.c83 AVCodecParserContext *parser = av_parser_init(AV_CODEC_ID_FLAC); local
87 if (!parser)
93 parser->flags = PARSER_FLAG_COMPLETE_FRAMES;
94 av_parser_parse2(parser, st->codec,
98 av_parser_close(parser);
H A Dflacdec.c185 AVCodecParserContext *parser; local
193 parser = av_parser_init(st->codec->codec_id);
194 if (!parser){
197 parser->flags |= PARSER_FLAG_USE_CODEC_TS;
208 ret = av_parser_parse2(parser, st->codec,
215 if (parser->pts != AV_NOPTS_VALUE){
218 *ppos = parser->next_frame_offset - size;
219 pts = parser->pts;
224 av_parser_close(parser);
H A Dseek.h29 * structure to store parser state of one AVStream
33 AVCodecParserContext *parser; member in struct:AVParserStreamState
40 * structure to store parser state of AVFormat
87 * Store current parser state and file position.
90 * to store the parser state. Depending on the outcome of the seek, either the original
93 * @note As a side effect, the original parser state is reset, since structures
98 * @return parser state object or NULL if memory could not be allocated
103 * Restore previously saved parser state and file position.
115 * Free previously saved parser state.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libantlr3c-3.2/src/
H A Dantlr3baserecognizer.c3 * Any function can be overridden by a lexer/parser/tree parser or by the
44 /* Interface functions -standard implementations cover parser and treeparser
45 * almost completely but are overridden by the parser or tree parser as needed. Lexer overrides
273 pANTLR3_PARSER parser; local
286 parser = NULL;
301 parser = (pANTLR3_PARSER) (recognizer->super);
302 cts = (pANTLR3_COMMON_TOKEN_STREAM)(parser->tstream->super);
303 is = parser
418 pANTLR3_PARSER parser; local
491 pANTLR3_PARSER parser; local
644 pANTLR3_PARSER parser; local
1003 pANTLR3_PARSER parser; local
1318 pANTLR3_PARSER parser; local
1427 pANTLR3_PARSER parser; local
1557 pANTLR3_PARSER parser; local
1623 pANTLR3_PARSER parser; local
1719 pANTLR3_PARSER parser; local
1769 pANTLR3_PARSER parser; local
1922 pANTLR3_PARSER parser; local
1997 pANTLR3_PARSER parser; local
2058 pANTLR3_PARSER parser; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dhttaghnd.tex27 This attribute is used to access parent parser. It is protected so that
62 // change state of parser (e.g. set bold face)
65 // restore original state of parser
75 This method calls parser's \helpref{DoParsing}{wxhtmlparserdoparsing} method
87 \func{virtual void}{SetParser}{\param{wxHtmlParser }{*parser}}
89 Assigns {\it parser} to this handler. Each {\bf instance} of handler
90 is guaranteed to be called only from the parser.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DExternalConnector.cpp424 void CaMuleExternalConnector::OnInitCmdLine(wxCmdLineParser& parser, const char* appname) argument
428 parser.AddSwitch(wxEmptyString, wxT("help"),
431 parser.AddOption(wxT("h"), wxT("host"),
434 parser.AddOption(wxT("p"), wxT("port"),
437 parser.AddOption(wxT("P"), wxT("password"),
440 parser.AddOption(wxT("f"), wxT("config-file"),
443 parser.AddSwitch(wxT("q"), wxT("quiet"),
446 parser.AddSwitch(wxT("v"), wxT("verbose"),
449 parser.AddOption(wxT("l"), wxT("locale"),
452 parser
463 OnCmdLineParsed(wxCmdLineParser& parser) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-om-parser.c27 #include "cr-om-parser.h"
33 *This parser uses (and sits) the SAC api of libcroco defined
34 *in cr-parser.h and cr-doc-handler.h
38 CRParser *parser; member in struct:_CROMParserPriv
150 && PRIVATE (a_this)->parser,
153 status = cr_parser_get_sac_handler (PRIVATE (a_this)->parser,
181 status = cr_parser_set_sac_handler (PRIVATE (a_this)->parser,
795 PRIVATE (result)->parser = cr_parser_new_from_input (a_input);
797 if (!PRIVATE (result)->parser) {
842 if (!PRIVATE (a_this)->parser) {
886 CROMParser *parser = NULL; local
976 CROMParser *parser = NULL; local
1077 CROMParser *parser = NULL; local
[all...]
H A Dcr-statement.c27 #include "cr-parser.h"
933 CRParser *parser = NULL; local
937 parser = cr_parser_new_from_buf ((guchar*)a_buf, strlen (a_buf),
939 g_return_val_if_fail (parser, FALSE);
941 status = cr_parser_set_use_core_grammar (parser, TRUE);
946 status = cr_parser_parse_statement_core (parser);
952 if (parser) {
953 cr_parser_destroy (parser);
1052 CRParser *parser = NULL; local
1057 parser
1188 CRParser *parser = NULL; local
1374 CRParser *parser = NULL; local
1502 CRParser *parser = NULL; local
1619 CRParser *parser = NULL; local
1718 CRParser *parser = NULL; local
[all...]
H A Dcr-declaration.c28 #include "cr-parser.h"
121 CRParser *parser = NULL; local
129 parser = cr_parser_new_from_buf ((guchar*)a_str, strlen (a_str), a_enc, FALSE);
130 g_return_val_if_fail (parser, NULL);
132 status = cr_parser_try_to_skip_spaces_and_comments (parser);
136 status = cr_parser_parse_declaration (parser, &property,
150 if (parser) {
151 cr_parser_destroy (parser);
152 parser = NULL;
187 CRParser *parser local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-om-parser.c27 #include "cr-om-parser.h"
33 *This parser uses (and sits) the SAC api of libcroco defined
34 *in cr-parser.h and cr-doc-handler.h
38 CRParser *parser; member in struct:_CROMParserPriv
150 && PRIVATE (a_this)->parser,
153 status = cr_parser_get_sac_handler (PRIVATE (a_this)->parser,
181 status = cr_parser_set_sac_handler (PRIVATE (a_this)->parser,
795 PRIVATE (result)->parser = cr_parser_new_from_input (a_input);
797 if (!PRIVATE (result)->parser) {
842 if (!PRIVATE (a_this)->parser) {
886 CROMParser *parser = NULL; local
976 CROMParser *parser = NULL; local
1077 CROMParser *parser = NULL; local
[all...]
H A Dcr-statement.c27 #include "cr-parser.h"
933 CRParser *parser = NULL; local
937 parser = cr_parser_new_from_buf ((guchar*)a_buf, strlen (a_buf),
939 g_return_val_if_fail (parser, FALSE);
941 status = cr_parser_set_use_core_grammar (parser, TRUE);
946 status = cr_parser_parse_statement_core (parser);
952 if (parser) {
953 cr_parser_destroy (parser);
1052 CRParser *parser = NULL; local
1057 parser
1188 CRParser *parser = NULL; local
1374 CRParser *parser = NULL; local
1502 CRParser *parser = NULL; local
1619 CRParser *parser = NULL; local
1718 CRParser *parser = NULL; local
[all...]
H A Dcr-declaration.c28 #include "cr-parser.h"
121 CRParser *parser = NULL; local
129 parser = cr_parser_new_from_buf ((guchar*)a_str, strlen (a_str), a_enc, FALSE);
130 g_return_val_if_fail (parser, NULL);
132 status = cr_parser_try_to_skip_spaces_and_comments (parser);
136 status = cr_parser_parse_declaration (parser, &property,
150 if (parser) {
151 cr_parser_destroy (parser);
152 parser = NULL;
187 CRParser *parser local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/sound/
H A Dseq_virmidi.h31 * opened. Each instance has its own input buffer and MIDI parser
40 struct snd_midi_event *parser; member in struct:snd_virmidi
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dappbase.cpp177 wxCmdLineParser parser(argc, argv);
179 OnInitCmdLine(parser);
182 switch ( parser.Parse(false /* don't show usage */) )
185 cont = OnCmdLineHelp(parser);
189 cont = OnCmdLineParsed(parser);
193 cont = OnCmdLineError(parser);
335 void wxAppConsole::OnInitCmdLine(wxCmdLineParser& parser) argument
371 parser.SetDesc(cmdLineDesc);
374 bool wxAppConsole::OnCmdLineParsed(wxCmdLineParser& parser) argument
377 if ( parser
388 OnCmdLineHelp(wxCmdLineParser& parser) argument
395 OnCmdLineError(wxCmdLineParser& parser) argument
[all...]

Completed in 216 milliseconds

1234567891011>>