qe$d.java
2.35 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
import com.google.common.base.Preconditions;
import com.google.common.collect.Iterators;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
final class qe$d
extends qe<R, C, V>.h<C>
{
private qe$d(qe paramqe)
{
super(paramqe, (byte)0);
}
public final boolean contains(Object paramObject)
{
return this.a.containsColumn(paramObject);
}
public final Iterator<C> iterator()
{
return this.a.f();
}
public final boolean remove(Object paramObject)
{
if (paramObject == null) {
return false;
}
Iterator localIterator = this.a.a.values().iterator();
boolean bool1 = false;
while (localIterator.hasNext())
{
Map localMap = (Map)localIterator.next();
if (localMap.keySet().remove(paramObject))
{
boolean bool2 = true;
bool1 = bool2;
if (localMap.isEmpty())
{
localIterator.remove();
bool1 = bool2;
}
}
}
return bool1;
}
public final boolean removeAll(Collection<?> paramCollection)
{
Preconditions.checkNotNull(paramCollection);
Iterator localIterator = this.a.a.values().iterator();
boolean bool1 = false;
while (localIterator.hasNext())
{
Map localMap = (Map)localIterator.next();
if (Iterators.removeAll(localMap.keySet().iterator(), paramCollection))
{
boolean bool2 = true;
bool1 = bool2;
if (localMap.isEmpty())
{
localIterator.remove();
bool1 = bool2;
}
}
}
return bool1;
}
public final boolean retainAll(Collection<?> paramCollection)
{
Preconditions.checkNotNull(paramCollection);
Iterator localIterator = this.a.a.values().iterator();
boolean bool1 = false;
while (localIterator.hasNext())
{
Map localMap = (Map)localIterator.next();
if (localMap.keySet().retainAll(paramCollection))
{
boolean bool2 = true;
bool1 = bool2;
if (localMap.isEmpty())
{
localIterator.remove();
bool1 = bool2;
}
}
}
return bool1;
}
public final int size()
{
return Iterators.size(iterator());
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/qe$d.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/