HomeSort by relevance Sort by last modified time
    Searched refs:xpathEval (Results 1 - 17 of 17) sorted by null

  /external/libxml2/python/tests/
xpath.py 18 res = ctxt.xpathEval("//*")
26 res = ctxt.xpathEval("foo")
39 res = ctxt.xpathEval("//*")
xpathext.py 16 res = ctxt.xpathEval("//*")
28 res = ctxt.xpathEval("foo(1)")
35 res = ctxt.xpathEval("bar(1)")
xpathns.py 12 for n in d.xpathEval("//namespace::*"):
tstxpath.py 26 res = ctxt.xpathEval("//*")
37 res = ctxt.xpathEval("foo(1)")
44 res = ctxt.xpathEval("bar(1)")
reader5.py 24 if node.xpathEval("@id = 'Aho'"): # use XPath on it
cutnpaste.py 23 fragment = source.xpathEval("//*[name()='fragment']")[0]
xpathleak.py 44 ctxt.xpathEval(expr)
xpathret.py 28 res = ctxt.xpathEval("foo('hello')")
  /external/libxml2/
check-relaxng-test-suite.py 250 dirs = node.xpathEval('dir')
253 res = node.xpathEval('resource')
265 sections = node.xpathEval('string(section)')
273 dirs = node.xpathEval('dir')
276 res = node.xpathEval('resource')
280 tsts = node.xpathEval('incorrect')
286 tsts = node.xpathEval('correct')
296 valids = node.xpathEval('valid')
297 invalids = node.xpathEval('invalid')
321 docs = node.xpathEval('documentation'
    [all...]
check-relaxng-test-suite2.py 264 dirs = node.xpathEval('dir')
267 res = node.xpathEval('resource')
279 sections = node.xpathEval('string(section)')
287 dirs = node.xpathEval('dir')
290 res = node.xpathEval('resource')
294 tsts = node.xpathEval('incorrect')
300 tsts = node.xpathEval('correct')
310 valids = node.xpathEval('valid')
311 invalids = node.xpathEval('invalid')
334 docs = node.xpathEval('documentation'
    [all...]
gentest.py 514 args = ctxt.xpathEval("/api/symbols/function/arg")
516 mod = arg.xpathEval('string(../@file)')
517 func = arg.xpathEval('string(../@name)')
519 type = arg.xpathEval('string(@type)')
525 rets = ctxt.xpathEval("/api/symbols/function/return")
527 mod = ret.xpathEval('string(../@file)')
528 func = ret.xpathEval('string(../@name)')
530 type = ret.xpathEval('string(@type)')
538 enums = ctxt.xpathEval("/api/symbols/typedef[@type='enum']")
540 module = enum.xpathEval('string(@file)'
    [all...]
check-xsddata-test-suite.py 262 dirs = node.xpathEval('dir')
265 res = node.xpathEval('resource')
277 sections = node.xpathEval('string(section)')
285 dirs = node.xpathEval('dir')
288 res = node.xpathEval('resource')
292 tsts = node.xpathEval('incorrect')
298 tsts = node.xpathEval('correct')
308 valids = node.xpathEval('valid')
309 invalids = node.xpathEval('invalid')
332 docs = node.xpathEval('documentation'
    [all...]
check-xinclude-test-suite.py 88 output = test.xpathEval('string(output)')
  /external/libxml2/xstc/
fixup-tests.py 46 xpres = xpmainCtx.xpathEval("/xs:schema")
53 xpres = xpmainCtx.xpathEval("/xs:schema/xs:import")
71 xpres = xpimpCtx.xpathEval("/xs:schema")
  /external/libxml2/doc/examples/
index.py 49 res = ctxt.xpathEval("/api/symbols/*[@name = '%s']" % (name))
55 file = node.xpathEval("string(@file)")
56 info = node.xpathEval("string(info)")
  /external/libxml2/doc/
index.py 989 res = ctxt.xpathEval("//head/title")
995 items = ctxt.xpathEval("//h1 | //h2 | //h3 | //text()")
1083 texts = ctxt.xpathEval("//pre//text()")
1104 anchors = ctxt.xpathEval("//a[@href]")
    [all...]
  /external/libxml2/python/
libxml.py 458 def xpathEval(self, expr):
464 res = ctxt.xpathEval(expr)
483 # res = doc._ctxt.xpathEval(expr)
486 return self.xpathEval(expr)

Completed in 164 milliseconds