HomeSort by relevance Sort by last modified time
    Searched refs:XPath (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 33 import org.apache.xpath.Expression;
34 import org.apache.xpath.ExpressionOwner;
35 import org.apache.xpath.XPath;
36 import org.apache.xpath.XPathContext;
91 * Store XPath away for later processing.
93 protected XPath m_xpath = null;
98 * @param xpath The XPath expression for the "select" attribute.
100 public void setSelect(XPath xpath
    [all...]
AVT.java 33 import org.apache.xpath.XPath;
34 import org.apache.xpath.XPathContext;
308 XPath xpath = local
311 m_parts.addElement(new AVTPartXPath(xpath));
RedundentExprEliminator.java 29 import org.apache.xpath.Expression;
30 import org.apache.xpath.ExpressionNode;
31 import org.apache.xpath.ExpressionOwner;
32 import org.apache.xpath.XPath;
33 import org.apache.xpath.axes.AxesWalker;
34 import org.apache.xpath.axes.FilterExprIteratorSimple;
35 import org.apache.xpath.axes.FilterExprWalker;
36 import org.apache.xpath.axes.LocPathIterator;
37 import org.apache.xpath.axes.SelfIteratorNoPredicate
850 XPath xpath = new XPath(lpi); local
881 XPath xpath = new XPath(lpi); local
    [all...]
TemplateList.java 32 import org.apache.xpath.Expression;
33 import org.apache.xpath.XPath;
34 import org.apache.xpath.XPathContext;
35 import org.apache.xpath.compiler.PsuedoNames;
36 import org.apache.xpath.patterns.NodeTest;
37 import org.apache.xpath.patterns.StepPattern;
38 import org.apache.xpath.patterns.UnionPattern;
66 XPath matchXPath = template.getMatch();
381 * @return {@link org.apache.xpath.patterns.NodeTest#SCORE_NODETEST},
    [all...]
ElemApplyTemplates.java 33 import org.apache.xpath.VariableStack;
34 import org.apache.xpath.XPath;
35 import org.apache.xpath.XPathContext;
36 import org.apache.xpath.objects.XObject;
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 47 import org.apache.xpath.XPath;
48 import org.apache.xpath.compiler.FunctionTable;
49 import org.apache.xpath.functions.Function;
72 * The function table of XPath and XSLT;
141 * Process an expression string into an XPath.
144 * @param str A non-null reference to a valid or invalid XPath expression string.
146 * @return A non-null reference to an XPath object that represents the string argument.
151 public XPath createXPath(String str, ElemTemplateElement owningTemplate)
155 XPath xpath = new XPath(str, owningTemplate, this, XPath.SELECT, handler, local
176 XPath xpath = new XPath(str, owningTemplate, this, XPath.MATCH, handler, local
    [all...]
XSLTAttributeDef.java 39 import org.apache.xpath.XPath;
741 * an XPath value.
749 * @return an XPath object that may be used for evaluation.
763 XPath expr = handler.createXPath(value, owner);
819 * an XPath match pattern value.
827 * @return An XPath pattern that may be used to evaluate the XPath.
841 XPath pattern = handler.createMatchPatternXPath(value, owner);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
XPathFactoryImpl.java 20 package org.apache.xpath.jaxp;
22 import org.apache.xpath.res.XPATHErrorResources;
26 import javax.xml.xpath.XPathFactory;
27 import javax.xml.xpath.XPathFactoryConfigurationException;
28 import javax.xml.xpath.XPathFunctionResolver;
29 import javax.xml.xpath.XPathVariableResolver;
99 * <p>Returns a new <code>XPath</code> object using the underlying
102 * @return New <code>XPath</code>
104 public javax.xml.xpath.XPath newXPath()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.h 38 namespace XPath {
125 } // XPath
XPathResult.cpp 37 using namespace XPath;
XPathValue.h 35 namespace XPath {
XPathParser.cpp 43 using namespace XPath;
45 extern int xpathyyparse(WebCore::XPath::Parser*);
125 // (check http://www.w3.org/TR/xpath#exprlex).
XPathPath.cpp 37 namespace XPath {
96 // http://www.w3.org/TR/xpath/
XPathGrammar.y 50 using namespace XPath;
55 %parse-param { WebCore::XPath::Parser* parser }
XPathNodeSet.cpp 35 namespace XPath {
XPathPredicate.cpp 38 namespace XPath {
219 // This is not only an optimization, http://www.w3.org/TR/xpath
XPathStep.cpp 40 namespace XPath {
174 // In XPath land, namespace nodes are not accessible on the attribute axis.
239 if (context->isAttributeNode()) // In XPath model, attribute nodes do not have children.
247 if (context->isAttributeNode()) // In XPath model, attribute nodes do not have children.
340 if (n && n->namespaceURI() != XMLNSNames::xmlnsNamespaceURI) { // In XPath land, namespace nodes are not accessible on the attribute axis.
358 // XPath namespace nodes are not implemented yet.
367 if (context->isAttributeNode()) // In XPath model, attribute nodes do not have children.
XPathFunctions.cpp 41 namespace XPath {
366 // The local part of an XPath expanded-name matches DOM local name for most node types, except for namespace nodes and processing instruction nodes.
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Variable.java 21 package org.apache.xpath.operations;
27 import org.apache.xpath.Expression;
28 import org.apache.xpath.ExpressionOwner;
29 import org.apache.xpath.XPath;
30 import org.apache.xpath.XPathContext;
31 import org.apache.xpath.XPathVisitor;
32 import org.apache.xpath.axes.PathComponent;
33 import org.apache.xpath.axes.WalkerFactory;
34 import org.apache.xpath.objects.XNodeSet
329 XPath xpath = vvar.getSelect(); local
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 42 import javax.xml.xpath.XPath;
43 import javax.xml.xpath.XPathConstants;
44 import javax.xml.xpath.XPathExpression;
45 import javax.xml.xpath.XPathExpressionException;
46 import javax.xml.xpath.XPathFactory;
49 * Find matching UiElement by XPath.
52 private static final XPath XPATH_COMPILER = XPathFactory.newInstance().newXPath();
81 Logs.log(Log.DEBUG, "XPath evaluation returns null for " + xPathString);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Lexer.java 21 package org.apache.xpath.compiler;
26 import org.apache.xpath.res.XPATHErrorResources;
29 * This class is in charge of lexical processing of the XPath
36 * The target XPath.
41 * The prefix resolver to map prefixes to namespaces in the XPath.
46 * The XPath processor object.
568 * @param pat The XPath name string.
645 // To older XPath code it doesn't matter if
  /external/chromium_org/third_party/libxml/src/
libxml2.spec 18 In this case one can use the built-in XPath and XPointer implementation
37 In this case one can use the built-in XPath and XPointer implementation
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedUpdateEntryTask.java 26 import javax.xml.xpath.XPath;
27 import javax.xml.xpath.XPathConstants;
28 import javax.xml.xpath.XPathExpressionException;
29 import javax.xml.xpath.XPathFactory;
50 * xpath - xpath string representing the object to modify
62 private static final XPath xp = XPathFactory.newInstance().newXPath();
71 private String xpath; field in class:RSSFeedUpdateEntryTask
90 public void setXpath(String xpath) {
    [all...]
  /prebuilts/tools/common/m2/internal/jdom/jdom/1.0/
jdom-1.0.jar 
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 23 XPath: !!document.evaluate,
    [all...]

Completed in 1388 milliseconds

1 23 4