HomeSort by relevance Sort by last modified time
    Searched full:attrvalue (Results 26 - 50 of 349) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementremoveattribute.java 64 String attrValue;
69 attrValue = testEmployee.getAttribute("class");
70 assertEquals("attrValue", "", attrValue);
documentcreateattribute.java 67 String attrValue;
72 attrValue = newAttrNode.getNodeValue();
73 assertEquals("value", "", 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);
elementremoveattribute.java 77 String attrValue;
82 attrValue = testEmployee.getAttribute("street");
83 assertEquals("streetYes", "Yes", attrValue);
hc_documentcreateattribute.java 66 String attrValue;
71 attrValue = newAttrNode.getNodeValue();
72 assertEquals("value", "", 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_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);
namednodemapsetnameditemreturnvalue.java 79 String attrValue;
86 attrValue = newNode.getNodeValue();
87 assertEquals("returnedNodeValue", "No", attrValue);
namednodemapsetnameditemthatexists.java 80 String attrValue;
89 attrValue = districtNode.getNodeValue();
90 assertEquals("streetValue", "", attrValue);
nodeattributenodevalue.java 68 String attrValue;
73 attrValue = addrAttr.getNodeValue();
74 assertEquals("nodeAttributeNodeValueAssert1", "Yes", attrValue);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getAttributeNS01.java 80 String attrValue;
84 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
85 assertEquals("attrValue", "DISTRICT", attrValue);
getAttributeNS05.java 76 String attrValue;
81 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");
82 assertEquals("attrValue", "Yes", 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);
elementgetattributenodens01.java 77 String attrValue;
89 attrValue = attribute.getNodeValue();
94 assertEquals("elementgetattributenodens01_attrValue", "", 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);
elementsetattributenodens02.java 80 String attrValue;
91 attrValue = newAttr.getNodeValue();
93 assertEquals("elementsetattributenodens02_attrValue", "Yes", attrValue);
elementsetattributens01.java 75 String attrValue;
81 attrValue = attribute.getNodeValue();
83 assertEquals("elementsetattributens01_attrValue", "value", attrValue);
elementsetattributens02.java 77 String attrValue;
84 attrValue = attribute.getNodeValue();
86 assertEquals("elementsetattributens02_attrValue", "Silver Street", attrValue);
elementsetattributens03.java 78 String attrValue;
87 attrValue = attribute.getNodeValue();
89 assertEquals("elementsetattributens03_attrValue", "default1", attrValue);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 220 * @param attrValue the value corresponding to the attribute (will be wrapped in a SET).
223 public AttributeTable add(ASN1ObjectIdentifier attrType, ASN1Encodable attrValue)
227 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue)));

Completed in 472 milliseconds

12 3 4 5 6 7 8 91011>>