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

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNodeVector.java47 private int m_map[]; field in class:NodeVector
93 if ((null != this.m_map) && (this.m_map == clone.m_map))
95 clone.m_map = new int[this.m_map.length];
97 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
123 if (null == m_map)
[all...]
H A DStringToStringTable.java37 private String m_map[]; field in class:StringToStringTable
54 m_map = new String[m_blocksize];
67 m_map = new String[blocksize];
97 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
99 m_map = newMap;
102 m_map[m_firstFree] = key;
106 m_map[m_firstFree] = value;
123 if (m_map[i].equals(key))
124 return m_map[i + 1];
140 if (m_map[
[all...]
H A DObjectVector.java42 protected Object m_map[]; field in class:ObjectVector
59 m_map = new Object[m_blocksize];
72 m_map = new Object[blocksize];
85 m_map = new Object[blocksize];
95 m_map = new Object[v.m_mapSize];
99 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
137 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
139 m_map = newMap;
142 m_map[m_firstFre
[all...]
H A DIntVector.java42 protected int m_map[]; // IntStack is trying to see this directly field in class:IntVector
59 m_map = new int[m_blocksize];
72 m_map = new int[blocksize];
85 m_map = new int[blocksize];
95 m_map = new int[v.m_mapSize];
99 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
137 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
139 m_map = newMap;
142 m_map[m_firstFre
[all...]
H A DStringVector.java38 protected String m_map[]; field in class:StringVector
55 m_map = new String[m_blocksize];
68 m_map = new String[blocksize];
105 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
107 m_map = newMap;
110 m_map[m_firstFree] = value;
124 return m_map[i];
142 if (m_map[i].equals(s))
164 if (m_map[i].equalsIgnoreCase(s))
185 System.arraycopy(m_map,
[all...]
H A DStringToStringTableVector.java37 private StringToStringTable m_map[]; field in class:StringToStringTableVector
54 m_map = new StringToStringTable[m_blocksize];
67 m_map = new StringToStringTable[blocksize];
104 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
106 m_map = newMap;
109 m_map[m_firstFree] = value;
128 String nsuri = m_map[i].get(key);
150 if (m_map[i].get(key) != null)
165 m_map[m_firstFree] = null;
180 return m_map[
[all...]
H A DSuballocatedIntVector.java60 protected int m_map[][]; field in class:SuballocatedIntVector
65 /** "Shortcut" handle to m_map[0]. Surprisingly helpful for short vectors. */
68 /** "Shortcut" handle to most recently added row of m_map.
104 m_map = new int[numblocks][];
105 m_map[0]=m_map0;
151 // Is the new index an index into the cache row of m_map?
166 if(index>=m_map.length)
170 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
171 m_map
[all...]
H A DSuballocatedByteVector.java55 protected byte m_map[][]; field in class:SuballocatedByteVector
60 /** "Shortcut" handle to m_map[0] */
81 m_map = new byte[m_numblocks][];
82 m_map[0]=m_map0;
133 if(index>=m_map.length)
137 System.arraycopy(m_map, 0, newMap, 0, m_map.length);
138 m_map=newMap;
140 byte[] block=m_map[index];
142 block=m_map[inde
[all...]
H A DObjectStack.java83 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
85 m_map = newMap;
88 m_map[m_firstFree] = i;
103 Object val = m_map[--m_firstFree];
104 m_map[m_firstFree] = null;
128 return m_map[m_firstFree - 1];
146 return m_map[m_firstFree-(1+n)];
164 m_map[m_firstFree - 1] = val;
H A DStringToIntTable.java40 private String m_map[]; field in class:StringToIntTable
43 * m_map. */
61 m_map = new String[m_blocksize];
75 m_map = new String[blocksize];
104 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
106 m_map = newMap;
115 m_map[m_firstFree] = key;
134 if (m_map[i].equals(key))
156 if (m_map[i].equalsIgnoreCase(key))
175 if (m_map[
[all...]
H A DIntStack.java83 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
85 m_map = newMap;
88 m_map[m_firstFree] = i;
103 return m_map[--m_firstFree];
125 return m_map[m_firstFree - 1];
143 return m_map[m_firstFree-(1+n)];
161 m_map[m_firstFree - 1] = val;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DOpMapVector.java39 protected int m_map[]; // IntStack is trying to see this directly field in class:OpMapVector
58 m_map = new int[blocksize];
70 return m_map[i];
93 System.arraycopy(m_map, 0, newMap, 0, oldSize);
95 m_map = newMap;
98 m_map[index] = value;
111 System.arraycopy(m_map, 0, newMap, 0, m_map[m_lengthPos]);
114 m_map = newMap;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DStringToIntTable.java47 private String m_map[]; field in class:StringToIntTable
50 * m_map. */
68 m_map = new String[m_blocksize];
82 m_map = new String[blocksize];
111 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
113 m_map = newMap;
122 m_map[m_firstFree] = key;
141 if (m_map[i].equals(key))
163 if (m_map[i].equalsIgnoreCase(key))
182 if (m_map[
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java830 Node m_map[]; field in class:NodeSet
852 if ((null != this.m_map) && (this.m_map == clone.m_map))
854 clone.m_map = new Node[this.m_map.length];
856 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
884 if (null == m_map)
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java273 int[] m_map[] = new int[BLOCKSIZE][]; field in class:ChunkedIntArray.ChunksVector
294 System.arraycopy(m_map, 0, newMap, 0, orgMapSize);
295 m_map = newMap;
299 m_map[pos] = value;
305 return m_map[pos];

Completed in 131 milliseconds