Searched refs:FastStringBuffer (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStringBufferPool.java36 new ObjectPool(com.sun.org.apache.xml.internal.utils.FastStringBuffer.class);
44 public synchronized static FastStringBuffer get()
46 return (FastStringBuffer) m_stringBufPool.getInstance();
54 public synchronized static void free(FastStringBuffer sb)
H A DXMLStringFactory.java42 * Create a XMLString from a FastStringBuffer.
45 * @param string FastStringBuffer reference, which must be non-null.
49 * @return An XMLString object that wraps the FastStringBuffer reference.
51 public abstract XMLString newstr(FastStringBuffer string, int start,
55 * Create a XMLString from a FastStringBuffer.
58 * @param string FastStringBuffer reference, which must be non-null.
62 * @return An XMLString object that wraps the FastStringBuffer reference.
H A DXMLStringFactoryDefault.java48 * Create a XMLString from a FastStringBuffer.
51 * @param fsb FastStringBuffer reference, which must be non-null.
55 * @return An XMLString object that wraps the FastStringBuffer reference.
57 public XMLString newstr(FastStringBuffer fsb, int start, int length)
63 * Create a XMLString from a FastStringBuffer.
66 * @param string FastStringBuffer reference, which must be non-null.
70 * @return An XMLString object that wraps the FastStringBuffer reference.
H A DFastStringBuffer.java21 * $Id: FastStringBuffer.java,v 1.2.4.1 2005/09/15 08:15:44 suresh_emailid Exp $
31 * Note that Stree and DTM used a single FastStringBuffer as a string pool,
36 * FastStringBuffer operates as a "chunked buffer". Doing so
56 public class FastStringBuffer class
107 * the largest permissible chunk size is in this particular FastStringBuffer
117 * them as the first element of a FastStringBuffer using a chunk size
149 * chunks may actually be allocated, eg if the FastStringBuffer had
160 * FastStringBuffer's current content. Since m_array[][] is zero-based,
167 * Field m_innerFSB, when non-null, is a FastStringBuffer whose total
173 FastStringBuffer m_innerFS
197 public FastStringBuffer(int initChunkBits, int maxChunkBits, method in class:FastStringBuffer
232 public FastStringBuffer(int initChunkBits, int maxChunkBits) method in class:FastStringBuffer
246 public FastStringBuffer(int initChunkBits) method in class:FastStringBuffer
254 public FastStringBuffer() method in class:FastStringBuffer
1268 private FastStringBuffer(FastStringBuffer source) method in class:FastStringBuffer
[all...]
H A DDOMHelper.java1259 * getNodeData(Node,FastStringBuffer) for discussion of how
1265 * @see #getNodeData(Node,FastStringBuffer)
1271 FastStringBuffer buf = StringBufferPool.get();
1290 * user-supplied FastStringBuffer object. Note that attributes are
1302 * @param buf FastStringBuffer into which the contents of the text
1305 public static void getNodeData(Node node, FastStringBuffer buf)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXMLStringFactoryImpl.java25 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
64 * Create a XMLString from a FastStringBuffer.
67 * @param fsb FastStringBuffer reference, which must be non-null.
71 * @return An XMLString object that wraps the FastStringBuffer reference.
73 public XMLString newstr(FastStringBuffer fsb, int start, int length)
79 * Create a XMLString from a FastStringBuffer.
82 * @param string FastStringBuffer reference, which must be non-null.
86 * @return An XMLString object that wraps the FastStringBuffer reference.
H A DXStringForFSB.java26 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
33 * This class will wrap a FastStringBuffer and allow for
54 * @param val FastStringBuffer object this will wrap, must be non-null.
58 public XStringForFSB(FastStringBuffer val, int start, int length)
90 public FastStringBuffer fsb()
92 return ((FastStringBuffer) m_obj);
100 public void appendToFsb(com.sun.org.apache.xml.internal.utils.FastStringBuffer fsb)
269 FastStringBuffer fsb = fsb();
303 FastStringBuffer fsb = fsb();
348 FastStringBuffer fs
[all...]
H A DXStringForChars.java26 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
31 * This class will wrap a FastStringBuffer and allow for
47 * @param val FastStringBuffer object this will wrap, must be non-null.
58 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_FASTSTRINGBUFFER_CANNOT_BE_NULL, null)); //"The FastStringBuffer argument can not be null!!");
79 public FastStringBuffer fsb()
89 public void appendToFsb(com.sun.org.apache.xml.internal.utils.FastStringBuffer fsb)
H A DXRTreeFrag.java193 public void appendToFsb(com.sun.org.apache.xml.internal.utils.FastStringBuffer fsb)
H A DXObject.java732 public void appendToFsb(com.sun.org.apache.xml.internal.utils.FastStringBuffer fsb)
H A DXNodeSet.java266 public void appendToFsb(com.sun.org.apache.xml.internal.utils.FastStringBuffer fsb)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTM.java39 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
823 FastStringBuffer buf = StringBufferPool.get();
848 FastStringBuffer buf = StringBufferPool.get();
882 FastStringBuffer buf = StringBufferPool.get();
897 * user-supplied FastStringBuffer object. Note that attributes are
914 * @param buf FastStringBuffer into which the contents of the text
917 protected static void getNodeData(Node node, FastStringBuffer buf)
1255 FastStringBuffer buf = StringBufferPool.get();
1638 * user-supplied FastStringBuffer object. Note that attributes are
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDocumentImpl.java32 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
127 private FastStringBuffer m_char = new FastStringBuffer();
298 * @param buffer FastStringBuffer reference to an instance of
301 void setContentBuffer(FastStringBuffer buffer) {
308 * @return FastStringBuffer reference to an instance of buffer
310 FastStringBuffer getContentBuffer() {
424 // The FastStringBuffer has been previously agreed upon
1457 * FastStringBuffer may split a single node's text across
1486 * FastStringBuffer ma
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java34 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
84 //private FastStringBuffer m_chars = new FastStringBuffer(13, 13);
85 protected FastStringBuffer m_chars;
265 m_chars = new FastStringBuffer(7, 10);
274 m_chars = new FastStringBuffer(10, 13);
583 FastStringBuffer.sendNormalizedSAXcharacters(str.toCharArray(),
H A DSAX2DTM2.java27 import com.sun.org.apache.xml.internal.utils.FastStringBuffer;
3112 FastStringBuffer.sendNormalizedSAXcharacters(str.toCharArray(),

Completed in 1750 milliseconds