HomeSort by relevance Sort by last modified time
    Searched full:xpath (Results 276 - 300 of 1233) sorted by null

<<11121314151617181920>>

  /external/autotest/server/cros/ap_configurators/
belkinF7D_ap_configurator.py 32 xpath = '//select[@name="wbr"]'
33 self.select_item_from_popup_by_xpath(mode_name, xpath,
belkinF9K_ap_configurator.py 56 xpath = '//input[@name="pws"]'
60 self.wait_for_object_by_xpath(xpath, wait_time=10)
64 self.wait_for_object_by_xpath(xpath, wait_time=10)
65 self.set_content_of_text_field_by_xpath('password', xpath,
164 xpath = '//input[@name="ssid"]'
165 self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=True)
177 xpath = '//select[@name="wchan"]'
178 self.select_item_from_popup_by_xpath(channel_choices[position], xpath)
194 xpath = '//select[@name="wbr"]'
195 self.wait_for_object_by_xpath(xpath)
    [all...]
netgear2000_ap_configurator.py 89 xpath = '//select[@name="opmode"]'
90 self.select_item_from_popup_by_xpath(mode, xpath)
98 xpath = '//input[@name="ssid_bc" and @type="checkbox"]'
99 check_box = self.wait_for_object_by_xpath(xpath)
105 self.set_check_box_selected_by_xpath(xpath, selected=visible,
  /external/libxml2/test/c14n/without-comments/
test-1.xml 5 <!ENTITY xpath "http://www.w3.org/TR/1999/REC-xpath-19991116">
  /external/libxml2/test/schemas/
bug455953_0.xsd 23 <xs:selector xpath="tns:MainA" />
24 <xs:field xpath="@MainID" />
  /libcore/dom/src/test/java/org/w3c/domts/level3/xpath/
TestBatik.java 12 package org.w3c.domts.level3.xpath;
37 "org.w3c.domts.level3.xpath.alltests");
TestDefaultParser.java 14 package org.w3c.domts.level3.xpath;
39 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
TestDefaultParserAltConfig.java 14 package org.w3c.domts.level3.xpath;
42 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
TestXalan.java 14 package org.w3c.domts.level3.xpath;
31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
TestXalanAltConfig.java 14 package org.w3c.domts.level3.xpath;
31 Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level3.xpath.alltests");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuEditorDelegate.java 35 import javax.xml.xpath.XPath;
36 import javax.xml.xpath.XPathConstants;
37 import javax.xml.xpath.XPathExpressionException;
109 XPath xpath = AndroidXPathFactory.newXPath(); local
110 Node node = (Node) xpath.evaluate("/" + root_desc.getXmlName(), //$NON-NLS-1$
123 AdtPlugin.log(e, "XPath error when trying to find '%s' element in XML.", //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesEditorDelegate.java 35 import javax.xml.xpath.XPath;
36 import javax.xml.xpath.XPathConstants;
37 import javax.xml.xpath.XPathExpressionException;
104 XPath xpath = AndroidXPathFactory.newXPath(); local
105 Node node = (Node) xpath.evaluate("/" + resources_desc.getXmlName(), //$NON-NLS-1$
114 AdtPlugin.log(e, "XPath error when trying to find '%s' element in XML.", //$NON-NLS-1$
  /hardware/interfaces/audio/effect/2.0/xml/
audio_effects_conf_V2_0.xsd 221 <xs:selector xpath="aec:libraries/aec:library"/>
222 <xs:field xpath="@name"/>
225 <xs:selector xpath="aec:effects/aec:effect"/>
226 <xs:field xpath="@library"/>
229 <xs:selector xpath="aec:effects/aec:effect/aec:libsw"/>
230 <xs:field xpath="@library"/>
233 <xs:selector xpath="aec:effects/aec:effect/aec:libhw"/>
234 <xs:field xpath="@library"/>
237 <xs:selector xpath="aec:effects/aec:effect"/>
238 <xs:field xpath="@name"/
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemWhen.java 23 import org.apache.xpath.XPath;
46 private XPath m_test;
55 public void setTest(XPath v)
67 public XPath getTest()
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.
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ChildIterator.java 21 package org.apache.xpath.axes;
25 import org.apache.xpath.XPathContext;
26 import org.apache.xpath.compiler.Compiler;
32 * @see org.apache.xpath.axes.LocPathIterator
63 * @param xctxt The XPath runtime context.
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...]
  /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;
  /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;
  /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...]
  /prebuilts/misc/windows/sdl2/test/
configure.in 103 XPATH=""
106 XPATH="-L$ac_x_libraries"
160 GLESLIB="$XPATH -lGLESv1_CM"
164 #GLES2LIB="$XPATH -lGLESv2"
168 GLLIB="$XPATH $SYS_GL_LIBS"

Completed in 762 milliseconds

<<11121314151617181920>>