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

/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DOpMapVector.java43 protected int m_mapSize; field in class:OpMapVector
54 m_mapSize = blocksize;
83 if (index >= m_mapSize)
85 int oldSize = m_mapSize;
87 m_mapSize += m_blocksize;
89 int newMap[] = new int[m_mapSize];
111 m_mapSize = size;
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DObjectVector.java46 protected int m_mapSize; field in class:ObjectVector
56 m_mapSize = m_blocksize;
69 m_mapSize = blocksize;
82 m_mapSize = blocksize;
93 m_map = new Object[v.m_mapSize];
94 m_mapSize = v.m_mapSize;
129 if ((m_firstFree + 1) >= m_mapSize)
131 m_mapSize += m_blocksize;
133 Object newMap[] = new Object[m_mapSize];
[all...]
H A DIntVector.java46 protected int m_mapSize; field in class:IntVector
56 m_mapSize = m_blocksize;
69 m_mapSize = blocksize;
82 m_mapSize = blocksize;
93 m_map = new int[v.m_mapSize];
94 m_mapSize = v.m_mapSize;
129 if ((m_firstFree + 1) >= m_mapSize)
131 m_mapSize += m_blocksize;
133 int newMap[] = new int[m_mapSize];
[all...]
H A DStringToIntTable.java48 private int m_mapSize; field in class:StringToIntTable
58 m_mapSize = m_blocksize;
72 m_mapSize = blocksize;
96 if ((m_firstFree + 1) >= m_mapSize)
98 m_mapSize += m_blocksize;
100 String newMap[] = new String[m_mapSize];
106 int newValues[] = new int[m_mapSize];
H A DStringVector.java42 protected int m_mapSize; field in class:StringVector
52 m_mapSize = m_blocksize;
65 m_mapSize = blocksize;
97 if ((m_firstFree + 1) >= m_mapSize)
99 m_mapSize += m_blocksize;
101 String newMap[] = new String[m_mapSize];
177 if ((m_firstFree + 1) >= m_mapSize)
179 m_mapSize += m_blocksize;
181 String newMap[] = new String[m_mapSize];
H A DNodeVector.java57 private int m_mapSize; // lazy initialization field in class:NodeVector
65 m_mapSize = 0;
76 m_mapSize = 0;
119 if ((m_firstFree + 1) >= m_mapSize)
124 m_mapSize = m_blocksize;
128 m_mapSize += m_blocksize;
130 int newMap[] = new int[m_mapSize];
153 if ((ff + 1) >= m_mapSize)
158 m_mapSize = m_blocksize;
162 m_mapSize
[all...]
H A DIntStack.java75 if ((m_firstFree + 1) >= m_mapSize)
77 m_mapSize += m_blocksize;
79 int newMap[] = new int[m_mapSize];
H A DObjectStack.java75 if ((m_firstFree + 1) >= m_mapSize)
77 m_mapSize += m_blocksize;
79 Object newMap[] = new Object[m_mapSize];
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
H A DStringToIntTable.java55 private int m_mapSize; field in class:StringToIntTable
65 m_mapSize = m_blocksize;
79 m_mapSize = blocksize;
103 if ((m_firstFree + 1) >= m_mapSize)
105 m_mapSize += m_blocksize;
107 String newMap[] = new String[m_mapSize];
113 int newValues[] = new int[m_mapSize];
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DNodeSet.java69 m_mapSize = 0;
80 m_mapSize = 0;
836 private int m_mapSize; // lazy initialization field in class:NodeSet
880 if ((m_firstFree + 1) >= m_mapSize)
885 m_mapSize = m_blocksize;
889 m_mapSize += m_blocksize;
891 Node newMap[] = new Node[m_mapSize];
914 if ((ff + 1) >= m_mapSize)
919 m_mapSize = m_blocksize;
923 m_mapSize
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java272 int m_mapSize = BLOCKSIZE; field in class:ChunkedIntArray.ChunksVector
286 if(pos >= m_mapSize)
288 int orgMapSize = m_mapSize;
289 while(pos >= m_mapSize)
290 m_mapSize+=BLOCKSIZE;
291 int[] newMap[] = new int[m_mapSize][];

Completed in 211 milliseconds