HomeSort by relevance Sort by last modified time
    Searched refs:attrValue (Results 1 - 25 of 656) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 83 // String attrValue;
87 // attrValue = testAddr.getAttributeNS(namespaceURI, localName);
88 // assertEquals("attrValue", "DISTRICT", attrValue);
99 String attrValue;
108 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
109 assertEquals("throw_Equals", "", attrValue);
117 String attrValue;
123 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
124 assertEquals("throw_Equals", "", attrValue);
    [all...]
ElementGetAttributeNodeNS.java 58 String attrValue;
73 attrValue = attribute.getNodeValue();
78 assertEquals("elementgetattributenodens01_attrValue", "", attrValue);
92 String attrValue;
100 attrValue = attribute.getNodeValue();
101 assertEquals("elementgetattributenodens02", "", attrValue);
109 // String attrValue;
118 // attrValue = attribute.getNodeValue();
119 // assertEquals("elementgetattributenodens03", "defaultVal", attrValue);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateattribute.java 67 String attrValue;
72 attrValue = newAttrNode.getNodeValue();
73 assertEquals("value", "", attrValue);
elementaddnewattribute.java 68 String attrValue;
73 attrValue = testEmployee.getAttribute("district");
74 assertEquals("elementAddNewAttributeAssert", "dallas", attrValue);
elementchangeattributevalue.java 71 String attrValue;
76 attrValue = testEmployee.getAttribute("street");
77 assertEquals("elementChangeAttributeValueAssert", "Neither", attrValue);
elementgetelementempty.java 73 String attrValue;
79 attrValue = testEmployee.getAttribute("district");
80 assertEquals("elementGetElementEmptyAssert", "", attrValue);
elementretrieveattrvalue.java 66 String attrValue;
70 attrValue = testAddress.getAttribute("street");
71 assertEquals("attrValue", "No", attrValue);
hc_documentcreateattribute.java 66 String attrValue;
71 attrValue = newAttrNode.getNodeValue();
72 assertEquals("value", "", attrValue);
hc_elementaddnewattribute.java 68 String attrValue;
73 attrValue = testEmployee.getAttribute("lang");
74 assertEquals("attrValue", "EN-us", attrValue);
hc_elementchangeattributevalue.java 70 String attrValue;
75 attrValue = testEmployee.getAttribute("class");
76 assertEquals("elementChangeAttributeValueAssert", "Neither", attrValue);
hc_elementgetelementempty.java 73 String attrValue;
79 attrValue = testEmployee.getAttribute("lang");
80 assertEquals("elementGetElementEmptyAssert", "", attrValue);
hc_elementremoveattribute.java 64 String attrValue;
69 attrValue = testEmployee.getAttribute("class");
70 assertEquals("attrValue", "", attrValue);
hc_elementretrieveattrvalue.java 65 String attrValue;
69 attrValue = testAddress.getAttribute("class");
70 assertEquals("attrValue", "No", attrValue);
hc_nodeattributenodevalue.java 67 String attrValue;
72 attrValue = addrAttr.getNodeValue();
73 assertEquals("nodeValue", "Yes", attrValue);
namednodemapsetnameditemreturnvalue.java 79 String attrValue;
86 attrValue = newNode.getNodeValue();
87 assertEquals("returnedNodeValue", "No", attrValue);
nodeattributenodevalue.java 68 String attrValue;
73 attrValue = addrAttr.getNodeValue();
74 assertEquals("nodeAttributeNodeValueAssert1", "Yes", attrValue);
elementremoveattribute.java 77 String attrValue;
82 attrValue = testEmployee.getAttribute("street");
83 assertEquals("streetYes", "Yes", attrValue);
hc_namednodemapsetnameditemreturnvalue.java 78 String attrValue;
86 attrValue = newNode.getNodeValue();
87 assertEquals("previousAttrValue", "No", attrValue);
hc_namednodemapsetnameditemthatexists.java 79 String attrValue;
88 attrValue = districtNode.getNodeValue();
89 assertEquals("namednodemapSetNamedItemThatExistsAssert", "", attrValue);
namednodemapsetnameditemthatexists.java 80 String attrValue;
89 attrValue = districtNode.getNodeValue();
90 assertEquals("streetValue", "", attrValue);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getAttributeNS03.java 72 String attrValue;
78 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
79 assertEquals("throw_Equals", "", attrValue);
documentimportnode14.java 82 String attrValue;
93 attrValue = ((Element) /*Node */imported).getAttributeNS("http://www.w3.org/2000/xmlns/", "emp");
94 assertEquals("explicitAttrImported", "http://www.nist.gov", attrValue);
elementgetattributenodens02.java 74 String attrValue;
80 attrValue = attribute.getNodeValue();
81 assertEquals("elementgetattributenodens02", "", attrValue);
elementgetattributenodens03.java 75 String attrValue;
83 attrValue = attribute.getNodeValue();
84 assertEquals("elementgetattributenodens03", "defaultVal", attrValue);
elementgetattributens02.java 74 String attrValue;
81 attrValue = element.getAttributeNS(nullNS, "defaultAttr");
82 assertEquals("elementgetattributens02", "defaultVal", attrValue);

Completed in 267 milliseconds

1 2 3 4 5 6 7 8 91011>>