Searched refs:NodeListCache (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java33 * @version $Id: NodeListCache.java,v 1.6 2010/07/20 20:25:25 joehw Exp $
35 class NodeListCache implements Serializable { class in inherits:Serializable
54 NodeListCache next;
56 NodeListCache(ParentNode owner) { method in class:NodeListCache
H A DCoreDocumentImpl.java115 /** NodeListCache free list */
116 transient NodeListCache fFreeNLCache;
2275 // NodeListCache pool
2278 * Returns a NodeListCache for the given node.
2280 NodeListCache getNodeListCache(ParentNode owner) {
2282 return new NodeListCache(owner);
2284 NodeListCache c = fFreeNLCache;
2299 * Puts the given NodeListCache in the free list.
2302 void freeNodeListCache(NodeListCache c) {
H A DParentNode.java88 protected transient NodeListCache fNodeListCache = null;

Completed in 46 milliseconds