HomeSort by relevance Sort by last modified time
    Searched defs:xpath (Results 176 - 194 of 194) sorted by null

1 2 3 4 5 6 78

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
LocPathIterator.java 21 package org.apache.xpath.axes;
29 import org.apache.xpath.ExpressionOwner;
30 import org.apache.xpath.XPathContext;
31 import org.apache.xpath.XPathVisitor;
32 import org.apache.xpath.compiler.Compiler;
33 import org.apache.xpath.objects.XNodeSet;
34 import org.apache.xpath.objects.XObject;
35 import org.apache.xpath.res.XPATHErrorResources;
39 * and fetches nodes one at a time in document order based on a XPath
40 * <a href="http://www.w3.org/TR/xpath#NT-LocationPath>LocationPath</a>
    [all...]
NodeSequence.java 21 package org.apache.xpath.axes;
30 import org.apache.xpath.NodeSetDTM;
31 import org.apache.xpath.XPathContext;
32 import org.apache.xpath.objects.XObject;
706 * @see org.apache.xpath.Expression#fixupVariables(Vector, int)
WalkerFactory.java 21 package org.apache.xpath.axes;
27 import org.apache.xpath.Expression;
28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.FunctionTable;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
32 import org.apache.xpath.objects.XNumber;
33 import org.apache.xpath.patterns.ContextMatchStepPattern;
34 import org.apache.xpath.patterns.FunctionPattern;
35 import org.apache.xpath.patterns.NodeTest
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 21 package org.apache.xpath.compiler;
34 import org.apache.xpath.Expression;
35 import org.apache.xpath.axes.UnionPathIterator;
36 import org.apache.xpath.axes.WalkerFactory;
37 import org.apache.xpath.functions.FuncExtFunction;
38 import org.apache.xpath.functions.FuncExtFunctionAvailable;
39 import org.apache.xpath.functions.Function;
40 import org.apache.xpath.functions.WrongNumberArgsException;
41 import org.apache.xpath.objects.XNumber;
42 import org.apache.xpath.objects.XString
    [all...]
XPathParser.java 21 package org.apache.xpath.compiler;
28 import org.apache.xpath.XPathProcessorException;
29 import org.apache.xpath.domapi.XPathStylesheetDOM3Exception;
30 import org.apache.xpath.objects.XNumber;
31 import org.apache.xpath.objects.XString;
32 import org.apache.xpath.res.XPATHErrorResources;
35 * Tokenizes and parses XPath expressions. This should really be named
47 * The XPath to be processed.
90 * Given an string, init an XPath object for selections,
95 * @param expression A string conforming to the XPath grammar
    [all...]
  /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...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
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...]
  /external/apache-xml/src/main/java/org/apache/xpath/res/
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/xpath/
XPathContext.java 21 package org.apache.xpath;
49 import org.apache.xpath.axes.SubContextList;
50 import org.apache.xpath.objects.XObject;
51 import org.apache.xpath.objects.DTMXRTreeFrag;
52 import org.apache.xpath.objects.XString;
53 import org.apache.xpath.res.XPATHErrorResources;
58 * Default class for the runtime execution context for XPath.
103 org.apache.xpath.objects.XMLStringFactoryImpl.getFactory());
230 * Create a new <code>DTMIterator</code> based on an XPath
231 * <a href="http://www.w3.org/TR/xpath#NT-LocationPath>LocationPath</a> o
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
Main.java 70 import javax.xml.xpath.XPath;
71 import javax.xml.xpath.XPathExpressionException;
588 XPath xpath = AndroidXPathFactory.newXPath(); local
592 packageName = xpath.evaluate("/manifest/@package",
598 activityName = xpath.evaluate("/manifest/application/activity[1]/@android:name",
600 // xpath will return empty string when there's no match
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java 47 import javax.xml.xpath.XPath;
48 import javax.xml.xpath.XPathConstants;
49 import javax.xml.xpath.XPathExpressionException;
50 import javax.xml.xpath.XPathFactory;
87 /** The xpath to find a project name in an Ant build file. */
685 XPath xpath = factory.newXPath(); local
687 projectName = xpath.evaluate(XPATH_PROJECT_NAME,
836 XPath xpath = factory.newXPath(); local
963 XPath xpath = AndroidXPathFactory.newXPath(); local
    [all...]
  /external/jdiff/
xerces.jar 
  /external/libxml2/
xmlschemas.c 30 * IDC XPath expression and chameleon includes: the targetNamespace is changed, so
31 * XPath will have trouble to resolve to this namespace, since not known.
717 * XPath expression.
725 const xmlChar *xpath; /* the XPath expression */ member in struct:_xmlSchemaIDCSelect
726 void *xpathComp; /* the compiled XPath expression */
819 * The state object used to evaluate XPath expressions.
907 int appliedXPath; /* Indicates that an XPath has been applied. */
    [all...]
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1882 milliseconds

1 2 3 4 5 6 78