LongSparseArray.java
5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package android.support.v4.util;
import ec;
public class LongSparseArray<E>
implements Cloneable
{
private static final Object a = new Object();
private boolean b = false;
private long[] c;
private Object[] d;
private int e;
public LongSparseArray()
{
this(10);
}
public LongSparseArray(int paramInt)
{
if (paramInt == 0) {
this.c = ec.b;
}
for (this.d = ec.c;; this.d = new Object[paramInt])
{
this.e = 0;
return;
paramInt = ec.b(paramInt);
this.c = new long[paramInt];
}
}
private void a()
{
int m = this.e;
long[] arrayOfLong = this.c;
Object[] arrayOfObject = this.d;
int i = 0;
int k;
for (int j = 0; i < m; j = k)
{
Object localObject = arrayOfObject[i];
k = j;
if (localObject != a)
{
if (i != j)
{
arrayOfLong[j] = arrayOfLong[i];
arrayOfObject[j] = localObject;
arrayOfObject[i] = null;
}
k = j + 1;
}
i += 1;
}
this.b = false;
this.e = j;
}
public void append(long paramLong, E paramE)
{
if ((this.e != 0) && (paramLong <= this.c[(this.e - 1)]))
{
put(paramLong, paramE);
return;
}
if ((this.b) && (this.e >= this.c.length)) {
a();
}
int i = this.e;
if (i >= this.c.length)
{
int j = ec.b(i + 1);
long[] arrayOfLong = new long[j];
Object[] arrayOfObject = new Object[j];
System.arraycopy(this.c, 0, arrayOfLong, 0, this.c.length);
System.arraycopy(this.d, 0, arrayOfObject, 0, this.d.length);
this.c = arrayOfLong;
this.d = arrayOfObject;
}
this.c[i] = paramLong;
this.d[i] = paramE;
this.e = (i + 1);
}
public void clear()
{
int j = this.e;
Object[] arrayOfObject = this.d;
int i = 0;
while (i < j)
{
arrayOfObject[i] = null;
i += 1;
}
this.e = 0;
this.b = false;
}
public LongSparseArray<E> clone()
{
try
{
LongSparseArray localLongSparseArray = (LongSparseArray)super.clone();
return localCloneNotSupportedException1;
}
catch (CloneNotSupportedException localCloneNotSupportedException1)
{
try
{
localLongSparseArray.c = ((long[])this.c.clone());
localLongSparseArray.d = ((Object[])this.d.clone());
return localLongSparseArray;
}
catch (CloneNotSupportedException localCloneNotSupportedException2) {}
localCloneNotSupportedException1 = localCloneNotSupportedException1;
return null;
}
}
public void delete(long paramLong)
{
int i = ec.a(this.c, this.e, paramLong);
if ((i >= 0) && (this.d[i] != a))
{
this.d[i] = a;
this.b = true;
}
}
public E get(long paramLong)
{
return (E)get(paramLong, null);
}
public E get(long paramLong, E paramE)
{
int i = ec.a(this.c, this.e, paramLong);
if ((i < 0) || (this.d[i] == a)) {
return paramE;
}
return (E)this.d[i];
}
public int indexOfKey(long paramLong)
{
if (this.b) {
a();
}
return ec.a(this.c, this.e, paramLong);
}
public int indexOfValue(E paramE)
{
if (this.b) {
a();
}
int i = 0;
while (i < this.e)
{
if (this.d[i] == paramE) {
return i;
}
i += 1;
}
return -1;
}
public long keyAt(int paramInt)
{
if (this.b) {
a();
}
return this.c[paramInt];
}
public void put(long paramLong, E paramE)
{
int i = ec.a(this.c, this.e, paramLong);
if (i >= 0)
{
this.d[i] = paramE;
return;
}
int j = i ^ 0xFFFFFFFF;
if ((j < this.e) && (this.d[j] == a))
{
this.c[j] = paramLong;
this.d[j] = paramE;
return;
}
i = j;
if (this.b)
{
i = j;
if (this.e >= this.c.length)
{
a();
i = ec.a(this.c, this.e, paramLong) ^ 0xFFFFFFFF;
}
}
if (this.e >= this.c.length)
{
j = ec.b(this.e + 1);
long[] arrayOfLong = new long[j];
Object[] arrayOfObject = new Object[j];
System.arraycopy(this.c, 0, arrayOfLong, 0, this.c.length);
System.arraycopy(this.d, 0, arrayOfObject, 0, this.d.length);
this.c = arrayOfLong;
this.d = arrayOfObject;
}
if (this.e - i != 0)
{
System.arraycopy(this.c, i, this.c, i + 1, this.e - i);
System.arraycopy(this.d, i, this.d, i + 1, this.e - i);
}
this.c[i] = paramLong;
this.d[i] = paramE;
this.e += 1;
}
public void remove(long paramLong)
{
delete(paramLong);
}
public void removeAt(int paramInt)
{
if (this.d[paramInt] != a)
{
this.d[paramInt] = a;
this.b = true;
}
}
public void setValueAt(int paramInt, E paramE)
{
if (this.b) {
a();
}
this.d[paramInt] = paramE;
}
public int size()
{
if (this.b) {
a();
}
return this.e;
}
public String toString()
{
if (size() <= 0) {
return "{}";
}
StringBuilder localStringBuilder = new StringBuilder(this.e * 28);
localStringBuilder.append('{');
int i = 0;
if (i < this.e)
{
if (i > 0) {
localStringBuilder.append(", ");
}
localStringBuilder.append(keyAt(i));
localStringBuilder.append('=');
Object localObject = valueAt(i);
if (localObject != this) {
localStringBuilder.append(localObject);
}
for (;;)
{
i += 1;
break;
localStringBuilder.append("(this Map)");
}
}
localStringBuilder.append('}');
return localStringBuilder.toString();
}
public E valueAt(int paramInt)
{
if (this.b) {
a();
}
return (E)this.d[paramInt];
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v4/util/LongSparseArray.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/