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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/internal/get/
discovery.go 54 if attrValue(e.Attr, "name") != "go-import" {
57 if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
67 // attrValue returns the attribute value for the case-insensitive key
69 func attrValue(attrs []xml.Attr, name string) string {
  /prebuilts/go/linux-x86/src/cmd/go/internal/get/
discovery.go 54 if attrValue(e.Attr, "name") != "go-import" {
57 if f := strings.Fields(attrValue(e.Attr, "content")); len(f) == 3 {
67 // attrValue returns the attribute value for the case-insensitive key
69 func attrValue(attrs []xml.Attr, name string) string {
  /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);
elementremoveattribute.java 77 String attrValue;
82 attrValue = testEmployee.getAttribute("street");
83 assertEquals("streetYes", "Yes", 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_namednodemapsetnameditemreturnvalue.java 78 String attrValue;
86 attrValue = newNode.getNodeValue();
87 assertEquals("previousAttrValue", "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);
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/
elementgetattributenodens02.java 74 String attrValue;
80 attrValue = attribute.getNodeValue();
81 assertEquals("elementgetattributenodens02", "", attrValue);
elementgetattributens02.java 74 String attrValue;
81 attrValue = element.getAttributeNS(nullNS, "defaultAttr");
82 assertEquals("elementgetattributens02", "defaultVal", attrValue);
elementsetattributens01.java 75 String attrValue;
81 attrValue = attribute.getNodeValue();
83 assertEquals("elementsetattributens01_attrValue", "value", attrValue);
getAttributeNS05.java 76 String attrValue;
81 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");
82 assertEquals("attrValue", "Yes", attrValue);
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
NodeHandler.java 56 String attrValue = attrMatcher.group(3);
74 attrHandler.put(attrValue, subHandler);

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011>>