Searched defs:m_mapSize (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DStringToIntTable.java57 private int m_mapSize; field in class:StringToIntTable
67 m_mapSize = m_blocksize;
81 m_mapSize = blocksize;
105 if ((m_firstFree + 1) >= m_mapSize)
107 m_mapSize += m_blocksize;
109 String newMap[] = new String[m_mapSize];
115 int newValues[] = new int[m_mapSize];
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStringToIntTable.java50 private int m_mapSize; field in class:StringToIntTable
60 m_mapSize = m_blocksize;
74 m_mapSize = blocksize;
98 if ((m_firstFree + 1) >= m_mapSize)
100 m_mapSize += m_blocksize;
102 String newMap[] = new String[m_mapSize];
108 int newValues[] = new int[m_mapSize];
H A DStringToStringTable.java43 private int m_mapSize; field in class:StringToStringTable
53 m_mapSize = m_blocksize;
66 m_mapSize = blocksize;
91 if ((m_firstFree + 2) >= m_mapSize)
93 m_mapSize += m_blocksize;
95 String newMap[] = new String[m_mapSize];
H A DStringToStringTableVector.java43 private int m_mapSize; field in class:StringToStringTableVector
53 m_mapSize = m_blocksize;
66 m_mapSize = blocksize;
98 if ((m_firstFree + 1) >= m_mapSize)
100 m_mapSize += m_blocksize;
102 StringToStringTable newMap[] = new StringToStringTable[m_mapSize];
H A DStringVector.java44 protected int m_mapSize; field in class:StringVector
54 m_mapSize = m_blocksize;
67 m_mapSize = blocksize;
99 if ((m_firstFree + 1) >= m_mapSize)
101 m_mapSize += m_blocksize;
103 String newMap[] = new String[m_mapSize];
179 if ((m_firstFree + 1) >= m_mapSize)
181 m_mapSize += m_blocksize;
183 String newMap[] = new String[m_mapSize];
H A DIntVector.java48 protected int m_mapSize; field in class:IntVector
58 m_mapSize = m_blocksize;
71 m_mapSize = blocksize;
84 m_mapSize = blocksize;
95 m_map = new int[v.m_mapSize];
96 m_mapSize = v.m_mapSize;
131 if ((m_firstFree + 1) >= m_mapSize)
133 m_mapSize += m_blocksize;
135 int newMap[] = new int[m_mapSize];
[all...]
H A DObjectVector.java48 protected int m_mapSize; field in class:ObjectVector
58 m_mapSize = m_blocksize;
71 m_mapSize = blocksize;
84 m_mapSize = blocksize;
95 m_map = new Object[v.m_mapSize];
96 m_mapSize = v.m_mapSize;
131 if ((m_firstFree + 1) >= m_mapSize)
133 m_mapSize += m_blocksize;
135 Object newMap[] = new Object[m_mapSize];
[all...]
H A DNodeVector.java59 private int m_mapSize; // lazy initialization field in class:NodeVector
67 m_mapSize = 0;
78 m_mapSize = 0;
121 if ((m_firstFree + 1) >= m_mapSize)
126 m_mapSize = m_blocksize;
130 m_mapSize += m_blocksize;
132 int newMap[] = new int[m_mapSize];
155 if ((ff + 1) >= m_mapSize)
160 m_mapSize = m_blocksize;
164 m_mapSize
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DOpMapVector.java45 protected int m_mapSize; field in class:OpMapVector
56 m_mapSize = blocksize;
85 if (index >= m_mapSize)
87 int oldSize = m_mapSize;
89 m_mapSize += m_blocksize;
91 int newMap[] = new int[m_mapSize];
113 m_mapSize = size;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java274 int m_mapSize = BLOCKSIZE; field in class:ChunkedIntArray.ChunksVector
288 if(pos >= m_mapSize)
290 int orgMapSize = m_mapSize;
291 while(pos >= m_mapSize)
292 m_mapSize+=BLOCKSIZE;
293 int[] newMap[] = new int[m_mapSize][];
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java71 m_mapSize = 0;
82 m_mapSize = 0;
838 private int m_mapSize; // lazy initialization field in class:NodeSet
882 if ((m_firstFree + 1) >= m_mapSize)
887 m_mapSize = m_blocksize;
891 m_mapSize += m_blocksize;
893 Node newMap[] = new Node[m_mapSize];
916 if ((ff + 1) >= m_mapSize)
921 m_mapSize = m_blocksize;
925 m_mapSize
[all...]

Completed in 36 milliseconds