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

1 2 3 4 5 67 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSubstring.java 21 package org.apache.xpath.functions;
25 import org.apache.xpath.XPathContext;
26 import org.apache.xpath.objects.XObject;
27 import org.apache.xpath.objects.XString;
28 import org.apache.xpath.res.XPATHErrorResources;
FuncId.java 21 package org.apache.xpath.functions;
28 import org.apache.xpath.NodeSetDTM;
29 import org.apache.xpath.XPathContext;
30 import org.apache.xpath.objects.XNodeSet;
31 import org.apache.xpath.objects.XObject;
32 import org.apache.xpath.res.XPATHErrorResources;
46 * @param xctxt The runtime XPath context.
FuncPosition.java 21 package org.apache.xpath.functions;
25 import org.apache.xpath.XPathContext;
26 import org.apache.xpath.axes.SubContextList;
27 import org.apache.xpath.compiler.Compiler;
28 import org.apache.xpath.objects.XNumber;
29 import org.apache.xpath.objects.XObject;
52 * @param xctxt Runtime XPath context.
FunctionDef1Arg.java 21 package org.apache.xpath.functions;
26 import org.apache.xpath.XPathContext;
27 import org.apache.xpath.objects.XString;
28 import org.apache.xpath.res.XPATHErrorResources;
43 * @param xctxt Runtime XPath context.
73 * @param xctxt Runtime XPath context.
105 * @param xctxt Runtime XPath context.
FunctionMultiArgs.java 21 package org.apache.xpath.functions;
24 import org.apache.xpath.Expression;
25 import org.apache.xpath.ExpressionOwner;
26 import org.apache.xpath.XPathVisitor;
27 import org.apache.xpath.res.XPATHErrorResources;
54 * XPath compiler.
192 * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 21 package org.apache.xpath.operations;
24 import org.apache.xpath.Expression;
25 import org.apache.xpath.XPathContext;
26 import org.apache.xpath.objects.XNodeSet;
27 import org.apache.xpath.objects.XObject;
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/res/
XPATHMessages.java 21 package org.apache.xpath.res;
28 * A utility class for issuing XPath error messages.
33 /** The language specific resource object for XPath messages. */
36 /** The class name of the XPath error message string table. */
38 "org.apache.xpath.res.XPATHErrorResources";
XPATHErrorResources.java 21 package org.apache.xpath.res;
44 * This file contains error and warning messages related to XPath Error
73 * 7) XPath is a specification that describes a notation for identifying
75 * instance of that notation is referred to as an XPath expression.
78 * XPath expression is being evaluated.
299 /* Note to translators: The XPath expression cannot be evaluated with respect
306 //BEGIN: Keys needed for exception messages of JAXP 1.3 XPath API implementation
321 //END: Keys needed for exception messages of JAXP 1.3 XPath API implementation
461 "boolean(...) argument is no longer optional with 19990709 XPath draft."},
488 "Error! Did not find xpath select expression (-select)."}
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemWithParam.java 28 import org.apache.xpath.XPath;
29 import org.apache.xpath.XPathContext;
30 import org.apache.xpath.objects.XObject;
31 import org.apache.xpath.objects.XRTreeFrag;
32 import org.apache.xpath.objects.XString;
61 private XPath m_selectPattern = null;
70 public void setSelect(XPath v)
82 public XPath getSelect()
155 XPath newSelect = ElemVariable.rewriteChildToExpression(this)
    [all...]
ElemCopyOf.java 33 import org.apache.xpath.XPath;
34 import org.apache.xpath.XPathContext;
35 import org.apache.xpath.objects.XObject;
54 public XPath m_selectExpression = null;
62 public void setSelect(XPath expr)
73 public XPath getSelect()
FuncFormatNumb.java 30 import org.apache.xpath.Expression;
31 import org.apache.xpath.XPathContext;
32 import org.apache.xpath.functions.Function3Args;
33 import org.apache.xpath.functions.WrongNumberArgsException;
34 import org.apache.xpath.objects.XObject;
35 import org.apache.xpath.objects.XString;
146 * @param xctxt The XPath runtime state.
ElemVariablePsuedo.java 26 import org.apache.xpath.XPath;
43 public void setSelect(XPath v)
AVTPart.java 24 import org.apache.xpath.XPathContext;
27 * Class to hold a part, either a string or XPath,
51 * @param xctxt The XPath context to use to evaluate this AVT.
64 * Set the XPath support.
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
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...]
MatchPatternIterator.java 21 package org.apache.xpath.axes;
27 import org.apache.xpath.XPathContext;
28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.OpMap;
30 import org.apache.xpath.objects.XObject;
31 import org.apache.xpath.patterns.NodeTest;
32 import org.apache.xpath.patterns.StepPattern;
36 * <a href="http://www.w3.org/TR/xpath#location-paths">LocationPath</a> as a
157 * @param context The XPath runtime context for this
210 org.apache.xpath.VariableStack vars
    [all...]
OneStepIteratorForward.java 21 package org.apache.xpath.axes;
25 import org.apache.xpath.Expression;
26 import org.apache.xpath.compiler.Compiler;
27 import org.apache.xpath.compiler.OpMap;
34 * @see org.apache.xpath.axes#ChildTestIterator
85 * @param context The XPath runtime context for this
100 // * @param xctxt The XPath runtime context.
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)
AttributeIterator.java 21 package org.apache.xpath.axes;
24 import org.apache.xpath.compiler.Compiler;
29 * @see org.apache.xpath.axes#ChildTestIterator
  /external/chromium_org/third_party/libxslt/libexslt/
saxon.c 11 #include <libxml/xpath.h>
56 * @ctxt: an XPath parser context
59 * The supplied string must contain an XPath expression. The result of
105 "{%s}:%s: argument is not an XPath expression\n",
119 * @ctxt: an XPath parser context
156 * @ctxt: an XPath parser context
161 * The supplied string must contain an XPath expression. The result of
162 * the function is the result of evaluating the XPath expression. This
184 * @ctxt: an XPath parser context
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 44 import javax.xml.xpath.XPath;
45 import javax.xml.xpath.XPathConstants;
46 import javax.xml.xpath.XPathExpression;
47 import javax.xml.xpath.XPathExpressionException;
48 import javax.xml.xpath.XPathFactory;
51 * Find matching UiElement by XPath.
54 private static final XPath XPATH_COMPILER = XPathFactory.newInstance().newXPath();
94 Logs.log(Log.DEBUG, "XPath evaluation returns null for " + xPathString);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorPreserveSpace.java 27 import org.apache.xpath.XPath;
71 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), false, thisSheet);
ProcessorStripSpace.java 27 import org.apache.xpath.XPath;
70 WhiteSpaceInfo wsi = new WhiteSpaceInfo((XPath) xpaths.elementAt(i), true, thisSheet);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
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/robolectric/src/main/java/com/xtremelabs/robolectric/res/
AttrResourceLoader.java 8 import javax.xml.xpath.XPathConstants;
9 import javax.xml.xpath.XPathExpression;
10 import javax.xml.xpath.XPathFactory;

Completed in 1268 milliseconds

1 2 3 4 5 67 8 91011>>