qf$m.java
5.26 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
import com.google.common.annotations.GwtIncompatible;
import com.google.common.annotations.VisibleForTesting;
import java.util.Map.Entry;
import java.util.NavigableMap;
import java.util.NavigableSet;
import java.util.Set;
import java.util.SortedMap;
import javax.annotation.Nullable;
@GwtIncompatible("NavigableMap")
@VisibleForTesting
final class qf$m<K, V>
extends qf.t<K, V>
implements NavigableMap<K, V>
{
private static final long serialVersionUID = 0L;
transient NavigableSet<K> a;
transient NavigableMap<K, V> b;
transient NavigableSet<K> f;
qf$m(NavigableMap<K, V> paramNavigableMap, @Nullable Object paramObject)
{
super(paramNavigableMap, paramObject);
}
public final Map.Entry<K, V> ceilingEntry(K paramK)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).ceilingEntry(paramK), this.h);
return paramK;
}
}
public final K ceilingKey(K paramK)
{
synchronized (this.h)
{
paramK = ((NavigableMap)super.c()).ceilingKey(paramK);
return paramK;
}
}
public final NavigableSet<K> descendingKeySet()
{
synchronized (this.h)
{
if (this.a == null)
{
localNavigableSet = qf.a(((NavigableMap)super.c()).descendingKeySet(), this.h);
this.a = localNavigableSet;
return localNavigableSet;
}
NavigableSet localNavigableSet = this.a;
return localNavigableSet;
}
}
public final NavigableMap<K, V> descendingMap()
{
synchronized (this.h)
{
if (this.b == null)
{
localNavigableMap = qf.a(((NavigableMap)super.c()).descendingMap(), this.h);
this.b = localNavigableMap;
return localNavigableMap;
}
NavigableMap localNavigableMap = this.b;
return localNavigableMap;
}
}
public final Map.Entry<K, V> firstEntry()
{
synchronized (this.h)
{
Map.Entry localEntry = qf.a(((NavigableMap)super.c()).firstEntry(), this.h);
return localEntry;
}
}
public final Map.Entry<K, V> floorEntry(K paramK)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).floorEntry(paramK), this.h);
return paramK;
}
}
public final K floorKey(K paramK)
{
synchronized (this.h)
{
paramK = ((NavigableMap)super.c()).floorKey(paramK);
return paramK;
}
}
public final NavigableMap<K, V> headMap(K paramK, boolean paramBoolean)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).headMap(paramK, paramBoolean), this.h);
return paramK;
}
}
public final SortedMap<K, V> headMap(K paramK)
{
return headMap(paramK, false);
}
public final Map.Entry<K, V> higherEntry(K paramK)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).higherEntry(paramK), this.h);
return paramK;
}
}
public final K higherKey(K paramK)
{
synchronized (this.h)
{
paramK = ((NavigableMap)super.c()).higherKey(paramK);
return paramK;
}
}
public final Set<K> keySet()
{
return navigableKeySet();
}
public final Map.Entry<K, V> lastEntry()
{
synchronized (this.h)
{
Map.Entry localEntry = qf.a(((NavigableMap)super.c()).lastEntry(), this.h);
return localEntry;
}
}
public final Map.Entry<K, V> lowerEntry(K paramK)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).lowerEntry(paramK), this.h);
return paramK;
}
}
public final K lowerKey(K paramK)
{
synchronized (this.h)
{
paramK = ((NavigableMap)super.c()).lowerKey(paramK);
return paramK;
}
}
public final NavigableSet<K> navigableKeySet()
{
synchronized (this.h)
{
if (this.f == null)
{
localNavigableSet = qf.a(((NavigableMap)super.c()).navigableKeySet(), this.h);
this.f = localNavigableSet;
return localNavigableSet;
}
NavigableSet localNavigableSet = this.f;
return localNavigableSet;
}
}
public final Map.Entry<K, V> pollFirstEntry()
{
synchronized (this.h)
{
Map.Entry localEntry = qf.a(((NavigableMap)super.c()).pollFirstEntry(), this.h);
return localEntry;
}
}
public final Map.Entry<K, V> pollLastEntry()
{
synchronized (this.h)
{
Map.Entry localEntry = qf.a(((NavigableMap)super.c()).pollLastEntry(), this.h);
return localEntry;
}
}
public final NavigableMap<K, V> subMap(K paramK1, boolean paramBoolean1, K paramK2, boolean paramBoolean2)
{
synchronized (this.h)
{
paramK1 = qf.a(((NavigableMap)super.c()).subMap(paramK1, paramBoolean1, paramK2, paramBoolean2), this.h);
return paramK1;
}
}
public final SortedMap<K, V> subMap(K paramK1, K paramK2)
{
return subMap(paramK1, true, paramK2, false);
}
public final NavigableMap<K, V> tailMap(K paramK, boolean paramBoolean)
{
synchronized (this.h)
{
paramK = qf.a(((NavigableMap)super.c()).tailMap(paramK, paramBoolean), this.h);
return paramK;
}
}
public final SortedMap<K, V> tailMap(K paramK)
{
return tailMap(paramK, true);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qf$m.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/