Searched refs:entity (Results 1 - 10 of 10) sorted by relevance

/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Ddocumenttypegetentitiestype.java67 Node entity;
75 entity = (Node) entityList.item(indexN10049);
76 entityType = (int) entity.getNodeType();
H A Ddocumenttypegetentities.java86 Node entity;
93 entity = (Node) entityList.item(indexN1007B);
94 name = entity.getNodeName();
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A DgetNamedItemNS03.java66 Entity entity;
73 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
74 assertNull("entityNull", entity);
H A Dnamednodemapgetnameditemns01.java34 * Using the method getNamedItemNS, retreive the entity "ent1" and notation "notation1"
76 Entity entity;
88 entity = (Entity) entities.getNamedItemNS(nullNS, "ent1");
89 assertNull("entityNull", entity);
H A Dnamednodemapsetnameditemns10.java37 * Attempt to add an entity to a NamedNodeMap of attribute nodes,
77 Entity entity;
86 entity = (Entity) entities.getNamedItem("ent1");
94 newNode = attributes.setNamedItemNS(entity);
H A Dnamednodemapsetnameditemns05.java34 * Retreive an entity and notation node and add the first notation to the
35 * notation node map and first entity node to the entity map. Since both these
76 Entity entity;
87 entity = (Entity) entities.getNamedItem("ent1");
93 newNode = entities.setNamedItemNS(entity);
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DPKIXRevocationCheckerTest.java23 PrivateKeyEntry entity; field in class:PKIXRevocationCheckerTest
40 entity = server.getPrivateKey("RSA", "RSA");
55 byte[] goodOCSPResponse = TestKeyStore.getOCSPResponseForGood(entity, issuer);
58 .singletonMap((X509Certificate) entity.getCertificate(), goodOCSPResponse);
63 byte[] returnedResponse = returnedResponses.get(entity.getCertificate());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
H A DDocumentBuilderTest.java531 InputStream entity = new ByteArrayInputStream("bar".getBytes());
534 resolver.addEntity("foo", "foo", new InputSource(entity));
607 InputStream entity = new ByteArrayInputStream("bar".getBytes());
610 resolver.addEntity("foo", "foo", new InputSource(entity));
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java236 * Found an entity reference. If an entity resolver is
238 * add an entity reference node.
240 String entity = parser.getName();
246 String resolved = resolvePredefinedOrCharacterEntity(entity);
250 node.appendChild(document.createEntityReference(entity));
393 * Returns the replacement text or null if {@code entity} isn't predefined.
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java21 // Contributors: Paul Hackenberger (unterminated entity handling in relaxed mode)
99 * entity values and default attribute values. These values are parsed at
100 * inclusion time and may contain both tags and entity references.
103 * define entity values manually}. Such entity values are literal strings
445 * report this as text, even if it was a CDATA block or entity
578 * must be parsed to capture entity values and default attribute values.
661 * Reads a quoted string, performing no entity escaping of the contents.
716 "Parameter entity references are not supported", this, null);
891 * Read an entity declaratio
1777 defineEntityReplacementText(String entity, String value) argument
[all...]

Completed in 190 milliseconds