HomeSort by relevance Sort by last modified time
    Searched defs:xpath (Results 151 - 175 of 270) sorted by null

1 2 3 4 5 67 8 91011

  /external/apache-xml/src/main/java/org/apache/xpath/
SourceTreeManager.java 21 package org.apache.xpath;
VariableStack.java 21 package org.apache.xpath;
26 import org.apache.xpath.objects.XObject;
27 import org.apache.xpath.res.XPATHErrorResources;
294 * @param xctxt The XPath context, which must be passed in order to
351 * @param xctxt The XPath context, which must be passed in order to
434 * @param xctxt The XPath context, which must be passed in order to
461 * @param xctxt The XPath context, which must be passed in order to
488 * @param xctxt The XPath context, which must be passed in order to
NodeSet.java 21 package org.apache.xpath;
25 import org.apache.xpath.axes.ContextNodeList;
26 import org.apache.xpath.res.XPATHErrorResources;
180 * no equivalent in the XPath data model.
512 * @param support The XPath runtime context.
540 * @param support The XPath runtime context.
565 * @param support The XPath runtime context.
627 * @param support The XPath runtime context.
700 * @param support The XPath runtime context.
    [all...]
NodeSetDTM.java 21 package org.apache.xpath;
29 import org.apache.xpath.res.XPATHErrorResources;
232 * @param context The XPath runtime context for this
293 * no equivalent in the XPath data model.
671 // * @param support The XPath runtime context.
699 * @param support The XPath runtime context.
725 // * @param support The XPath runtime context.
787 * @param support The XPath runtime context.
861 * @param support The XPath runtime context.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
AxesWalker.java 21 package org.apache.xpath.axes;
29 import org.apache.xpath.Expression;
30 import org.apache.xpath.ExpressionOwner;
31 import org.apache.xpath.XPathContext;
32 import org.apache.xpath.XPathVisitor;
33 import org.apache.xpath.compiler.Compiler;
34 import org.apache.xpath.res.XPATHErrorResources;
62 * Initialize an AxesWalker during the parse of the XPath expression.
408 * @param xctxt XPath runtime context.
DescendantIterator.java 21 package org.apache.xpath.axes;
28 import org.apache.xpath.Expression;
29 import org.apache.xpath.XPathContext;
30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.compiler.OpMap;
33 import org.apache.xpath.patterns.NodeTest;
38 * @see org.apache.xpath.axes.LocPathIterator
184 org.apache.xpath.VariableStack vars;
258 * @param context The XPath runtime context for thi
    [all...]
FilterExprIteratorSimple.java 21 package org.apache.xpath.axes;
26 import org.apache.xpath.Expression;
27 import org.apache.xpath.ExpressionOwner;
28 import org.apache.xpath.VariableStack;
29 import org.apache.xpath.XPathContext;
30 import org.apache.xpath.XPathVisitor;
31 import org.apache.xpath.objects.XNodeSet;
73 * @param context The XPath runtime context for this
116 result = (org.apache.xpath.objects.XNodeSet) expr.execute(xctxt);
123 result = (org.apache.xpath.objects.XNodeSet) expr.execute(xctxt)
    [all...]
FilterExprWalker.java 21 package org.apache.xpath.axes;
26 import org.apache.xpath.Expression;
27 import org.apache.xpath.ExpressionOwner;
28 import org.apache.xpath.XPathContext;
29 import org.apache.xpath.XPathVisitor;
30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.objects.XNodeSet;
37 * @see <a href="http://www.w3.org/TR/xpath#NT-FilterExpr">XPath FilterExpr descriptions</a
    [all...]
OneStepIterator.java 21 package org.apache.xpath.axes;
27 import org.apache.xpath.Expression;
28 import org.apache.xpath.XPathContext;
29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
35 * @see org.apache.xpath.axes#LocPathIterator
90 * @param context The XPath runtime context for this
UnionPathIterator.java 21 package org.apache.xpath.axes;
26 import org.apache.xpath.Expression;
27 import org.apache.xpath.ExpressionOwner;
28 import org.apache.xpath.XPathVisitor;
29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
35 * and fetches nodes one at a time in document order based on a XPath
36 * <a href="http://www.w3.org/TR/xpath#NT-UnionExpr">UnionExpr</a>.
64 * @param context The XPath runtime context for this
    [all...]
WalkingIterator.java 21 package org.apache.xpath.axes;
25 import org.apache.xpath.Expression;
26 import org.apache.xpath.ExpressionOwner;
27 import org.apache.xpath.VariableStack;
28 import org.apache.xpath.XPathVisitor;
29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
147 * @param context The XPath runtime context for this
300 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
FunctionTable.java 21 package org.apache.xpath.compiler;
23 import org.apache.xpath.Expression;
24 import org.apache.xpath.functions.Function;
29 * The function table for XPath.
178 m_functions[FUNC_CURRENT] = org.apache.xpath.functions.FuncCurrent.class;
179 m_functions[FUNC_LAST] = org.apache.xpath.functions.FuncLast.class;
180 m_functions[FUNC_POSITION] = org.apache.xpath.functions.FuncPosition.class;
181 m_functions[FUNC_COUNT] = org.apache.xpath.functions.FuncCount.class;
182 m_functions[FUNC_ID] = org.apache.xpath.functions.FuncId.class;
186 org.apache.xpath.functions.FuncLocalPart.class
    [all...]
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
OpMap.java 21 package org.apache.xpath.compiler;
25 import org.apache.xpath.patterns.NodeTest;
26 import org.apache.xpath.res.XPATHErrorResources;
29 * This class represents the data structure basics of the XPath
78 * Get the XPath as a list of tokens.
88 * Get the XPath as a list of tokens.
124 * Get the opcode list that describes the XPath operations. It contains
129 * @return An IntVector that is the opcode list that describes the XPath operations.
266 * int posOfPredicate = xpath.getNextOpPos(stepPos);
268 * OpCodes.OP_PREDICATE == xpath.getOp(posOfPredicate)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtFunction.java 21 package org.apache.xpath.functions;
26 import org.apache.xpath.Expression;
27 import org.apache.xpath.ExpressionNode;
28 import org.apache.xpath.ExpressionOwner;
29 import org.apache.xpath.ExtensionsProvider;
30 import org.apache.xpath.XPathContext;
31 import org.apache.xpath.XPathVisitor;
32 import org.apache.xpath.objects.XNull;
33 import org.apache.xpath.objects.XObject;
34 import org.apache.xpath.res.XPATHErrorResources
    [all...]
ObjectFactory.java 22 package org.apache.xpath.functions;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObject.java 21 package org.apache.xpath.objects;
29 import org.apache.xpath.Expression;
30 import org.apache.xpath.ExpressionOwner;
31 import org.apache.xpath.NodeSetDTM;
32 import org.apache.xpath.XPathContext;
33 import org.apache.xpath.XPathException;
34 import org.apache.xpath.XPathVisitor;
35 import org.apache.xpath.res.XPATHErrorResources;
42 * This class represents an XPath object, and is capable of
44 * This class acts as the base class to other XPath type objects
    [all...]
XStringForFSB.java 21 package org.apache.xpath.objects;
28 import org.apache.xpath.res.XPATHErrorResources;
955 // The following are permitted in the Double.valueOf, but not by the XPath spec:
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Operation.java 21 package org.apache.xpath.operations;
23 import org.apache.xpath.Expression;
24 import org.apache.xpath.ExpressionOwner;
25 import org.apache.xpath.XPathContext;
26 import org.apache.xpath.XPathVisitor;
27 import org.apache.xpath.objects.XObject;
168 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
NodeTest.java 21 package org.apache.xpath.patterns;
25 import org.apache.xpath.Expression;
26 import org.apache.xpath.ExpressionOwner;
27 import org.apache.xpath.XPath;
28 import org.apache.xpath.XPathContext;
29 import org.apache.xpath.XPathVisitor;
30 import org.apache.xpath.objects.XNumber;
31 import org.apache.xpath.objects.XObject;
44 * @see <a href="http://www.w3.org/TR/xpath#NT-NameTest">the XPath NameTest production.</a>
    [all...]
  /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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 37 * (Xpath to watch for); (what to execute if condition is met); (commandline args to the executable)...
139 String xpath = feedWatchActions[i].trim(); local
146 oldFeedWatcher.setXpath(xpath);
153 newFeedWatcher.setXpath(xpath);
168 " -xpath \"" + xpath + "\"" + //$NON-NLS-1$ //$NON-NLS-2$
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 19 package javax.xml.xpath;
218 if (debug) debugPrintln("attempting to use the platform default W3C DOM XPath lib");
219 return createInstance("org.apache.xpath.jaxp.XPathFactoryImpl");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
511 def xpath(self,id): member in class:NNTP
512 """Process an XPATH command (optional server extension) Arguments:
518 resp = self.shortcmd("XPATH " + id)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nntplib.py 28 # xover, xgtitle, xpath, date methods by Kevan Heydon
511 def xpath(self,id): member in class:NNTP
512 """Process an XPATH command (optional server extension) Arguments:
518 resp = self.shortcmd("XPATH " + id)

Completed in 389 milliseconds

1 2 3 4 5 67 8 91011