Home | History | Annotate | Download | only in xml

Lines Matching defs:standard

85             + "    <name a:standard=\"strawberry\" deluxe=\"&sp;\">Waffles</name>\n"
108 private Attr standard;
151 standard = name.getAttributeNode("a:standard");
179 itemXmlnsA, name, standard, deluxe, waffles, description,
217 assertEquals("http://addons", standard.lookupNamespaceURI("a"));
249 assertEquals("http://food", standard.lookupNamespaceURI(null));
287 assertEquals("a", standard.lookupPrefix("http://addons"));
331 assertEquals(null, standard.lookupPrefix("http://usda"));
363 assertTrue(standard.isDefaultNamespace("http://food"));
404 assertFalse(standard.isDefaultNamespace(null));
486 standard.setTextContent("foobar");
487 String expected = original.replace("standard=\"strawberry\"", "standard=\"foobar\"");
816 standard.setUserData("c", "cat", handler);
820 Attr clonedStandard = clonedName.getAttributeNode("a:standard");
825 expected.add(notification(NODE_CLONED, "c", "cat", standard, clonedStandard));
836 standard.setUserData("c", "cat", handler);
840 Attr clonedStandard = clonedName.getAttributeNode("a:standard");
846 expected.add(notification(NODE_CLONED, "c", "cat", standard, clonedStandard));
859 standard.setUserData("c", "cat", handler);
864 Attr importedStandard = importedName.getAttributeNode("a:standard");
869 expected.add(notification(NODE_IMPORTED, "c", "cat", standard, importedStandard));
880 standard.setUserData("c", "cat", handler);
885 Attr importedStandard = importedName.getAttributeNode("a:standard");
891 expected.add(notification(NODE_IMPORTED, "c", "cat", standard, importedStandard));
990 assertSame(newDocument, standard.getOwnerDocument());
1016 standard.setUserData("c", "cat", handler);
1022 assertSame(newDocument, standard.getOwnerDocument());
1139 assertNull(standard.getBaseURI());
1206 TypeInfo typeInfo = standard.getSchemaTypeInfo();
1280 standard.setUserData("c", "cat", handler);
1405 * Hack: swap <name>'s a:standard attribute and deluxe attribute if
1410 Matcher attributeMatcher = Pattern.compile(" a:standard=\"[^\"]+\"").matcher(result);