• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching defs:pattern

2  * pattern.c: Implemetation of selectors for nodes
18 * - making clear how pattern starting with / or . need to be handled,
36 #include <libxml/pattern.h>
106 struct _xmlStreamCtxt *next;/* link to next sub pattern if | */
164 struct _xmlPattern *next; /* next pattern if | is used */
165 const xmlChar *pattern; /* the pattern */
238 if (comp->pattern != NULL)
239 xmlFree((xmlChar *)comp->pattern);
279 * @pattern: the pattern context
284 * Create a new XML pattern parser context
289 xmlNewPatParserContext(const xmlChar *pattern, xmlDictPtr dict,
293 if (pattern == NULL)
304 cur->cur = pattern;
305 cur->base = pattern;
486 * @comp: the precompiled pattern
489 * Test whether the node matches the pattern
1306 "Failed to compile pattern %s\n", ctxt->base);
1480 * build a new compiled pattern for streaming
1512 * @comp: the compiled pattern for streaming
1514 * Free the compiled pattern for streaming
1529 * @comp: the compiled pattern for streaming
1534 * Add a new step to the compiled pattern
1564 * @comp: the precompiled pattern
1566 * Tries to stream compile a pattern
1717 * If this should behave like a real pattern, we will mark
1912 * For non-pattern like evaluation like XML Schema IDCs
2073 * expressions if the *pattern* behaviour is used.
2309 * Query if the streaming pattern additionally needs to be fed with
2338 * @pattern: the pattern to compile
2343 * Compile a pattern.
2345 * Returns the compiled form of the pattern or NULL in case of error
2348 xmlPatterncompile(const xmlChar *pattern, xmlDict *dict, int flags,
2357 if (pattern == NULL)
2360 start = pattern;
2445 * @comp: the precompiled pattern
2448 * Test whether the node matches the pattern
2471 * @comp: the precompiled pattern
2473 * Get a streaming context for that pattern
2509 * @comp: the precompiled pattern
2511 * Check if the pattern is streamable i.e. xmlPatternGetStreamCtxt()
2530 * @comp: the precompiled pattern
2532 * Check the maximum depth reachable by a pattern
2557 * @comp: the precompiled pattern
2559 * Check the minimum depth reachable by a pattern, 0 mean the / or . are
2584 * @comp: the precompiled pattern
2586 * Check if the pattern must be looked at from the root.