HomeSort by relevance Sort by last modified time
    Searched refs:attr2 (Results 1 - 21 of 21) sorted by null

  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesNameTest.java 39 Attributes.Name attr2 = new Attributes.Name("Attr"); local
41 assertTrue(attr1.equals(attr2));
42 attr2 = new Attributes.Name("Attr1");
43 assertFalse(attr1.equals(attr2));
48 Attributes.Name attr2 = new Attributes.Name("Attr2"); local
50 assertNotSame(attr1.hashCode(), attr2.hashCode());
55 String str2 = "Attr2";
57 Attributes.Name attr2 = new Attributes.Name("Attr2"); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AttributeSortOrder.java 54 public int compare(Attr attr1, Attr attr2) {
57 if (XMLNS.equals(attr2.getPrefix())) {
61 } else if (XMLNS.equals(attr2.getPrefix())) {
67 attr2.getLocalName());
76 public int compare(Attr attr1, Attr attr2) {
78 IndexedRegion region2 = (IndexedRegion) attr2;
89 public int compare(Attr attr1, Attr attr2) {
92 if (XMLNS.equals(attr2.getPrefix())) {
96 } else if (XMLNS.equals(attr2.getPrefix())) {
100 return attr1.getLocalName().compareTo(attr2.getLocalName())
    [all...]
  /external/bluetooth/bluez/cups/
sdp.c 44 uint16_t attr1, attr2; local
55 attr2 = SDP_ATTR_ADD_PROTO_DESC_LIST;
56 attrs = sdp_list_append(attrs, &attr2);
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedCharacterIteratorAttributeTest.java 163 AttributedCharacterIterator.Attribute attr1, attr2; local
173 attr2 = (AttributedCharacterIterator.Attribute) in.readObject();
174 assertSame("resolved incorrectly", attr1, attr2);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeisequalnode15.js 91 var attr2;
110 attr2 = doc.createAttributeNS(nullNS,"title");
115 attr2 = doc.createAttribute("title");
118 attr2.value = "Yes";
120 isEqual = attr1.isEqualNode(attr2);
nodeisequalnode14.js 93 var attr2;
104 attr2 = doc.createAttributeNS(nullNSURI,"root");
105 isEqual = attr1.isEqualNode(attr2);
nodeisequalnode16.js 92 var attr2;
107 attr2 = attr1.cloneNode(true);
108 isEqual = attr1.isEqualNode(attr2);
nodeisequalnode19.js 92 var attr2;
103 attr2 = doc.createAttributeNS(nullNSURI,"lang");
104 isEqual = attr1.isEqualNode(attr2);
nodeissamenode06.js 92 var attr2;
105 attr2 = element1.getAttributeNode("class");
106 isSame = attr1.isSameNode(attr2);
nodecomparedocumentposition39.js 92 var attr2;
104 attr2 = elem.getAttributeNode("xsi:noNamespaceSchemaLocation");
105 attrPosition = attr1.compareDocumentPosition(attr2);
109 swappedPosition = attr2.compareDocumentPosition(attr1);
nodecomparedocumentposition40.js 92 var attr2;
105 attr2 = elem.getAttributeNode("xml:lang");
106 attrPosition = attr1.compareDocumentPosition(attr2);
110 swappedPosition = attr2.compareDocumentPosition(attr1);
nodeisequalnode18.js 92 var attr2;
116 attr2 = newDoc.adoptNode(attr1);
120 (attr2 != null)
123 isEqual = attr1.isEqualNode(attr2);
nodeisequalnode17.js 92 var attr2;
116 attr2 = newDoc.importNode(attr1,true);
117 isEqual = attr1.isEqualNode(attr2);
  /external/libxml2/
c14n.c 850 * @attr2: the pointer to second attr
854 * Returns -1 if attr1 < attr2, 0 if attr1 == attr2 or 1 if attr1 > attr2.
857 xmlC14NAttrsCompare(xmlAttrPtr attr1, xmlAttrPtr attr2)
864 if (attr1 == attr2)
868 if (attr2 == NULL)
870 if (attr1->ns == attr2->ns) {
871 return (xmlStrcmp(attr1->name, attr2->name));
881 if (attr2->ns == NULL
    [all...]
xpath.c 2845 int attr1 = 0, attr2 = 0; local
    [all...]
  /external/bluetooth/glib/gio/
glocalfileinfo.c 453 const char *attr, *attr2; local
527 attr2 = strchr (attr, ':');
528 if (attr2)
530 attr2 += 2; /* Skip '::' */
531 unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute);
608 const char *attr, *attr2; local
680 attr2 = strchr (attr, ':');
681 if (attr2)
683 attr2++; /* Skip ':' */
684 unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute)
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_namednodemapchildnoderange.js 124 assertNotNull("attr2",child);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_namednodemapchildnoderange.js 124 assertNotNull("attr2",child);
  /external/bluetooth/bluez/compat/
sdp.c 304 uint16_t attr2 = SDP_ATTR_SVCNAME_PRIMARY; local
317 attrid = sdp_list_append(attrid, &attr2);
329 attrid = sdp_list_append(attrid, &attr2);
  /external/webkit/Source/WebCore/dom/
Node.cpp 2200 Attr* attr2 = otherNode->nodeType() == ATTRIBUTE_NODE ? static_cast<Attr*>(otherNode) : 0; local
    [all...]
  /external/elfutils/src/
elflint.c 1805 GElf_Word attr2; member in struct:__anon5736
    [all...]

Completed in 563 milliseconds