OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashCode
(Results
201 - 225
of
5552
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
FieldId.java
69
public int
hashCode
() {
70
return declaringType.
hashCode
() + 37 * name.
hashCode
();
TypeList.java
52
public int
hashCode
() {
53
return Arrays.
hashCode
(types);
/external/easymock/src/org/easymock/internal/matchers/
Equals.java
59
public int
hashCode
() {
60
throw new UnsupportedOperationException("
hashCode
() is not supported");
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalKey.java
43
public int
hashCode
() {
44
int result = id.
hashCode
();
45
result = 31 * result + signature.
hashCode
();
/external/glide/library/src/main/java/com/bumptech/glide/signature/
MediaStoreSignature.java
61
public int
hashCode
() {
62
int result = mimeType != null ? mimeType.
hashCode
() : 0;
StringSignature.java
36
public int
hashCode
() {
37
return signature.
hashCode
();
/external/glide/library/src/main/java/com/bumptech/glide/util/
MultiClassKey.java
53
public int
hashCode
() {
54
int result = first.
hashCode
();
55
result = 31 * result + second.
hashCode
();
/external/guava/guava/src/com/google/common/base/
FunctionalEquivalence.java
70
@Override public int
hashCode
() {
71
return Objects.
hashCode
(function, resultEquivalence);
PairwiseEquivalence.java
70
public int
hashCode
() {
71
return elementEquivalence.
hashCode
() ^ 0x46a3eb07;
/external/guava/guava/src/com/google/common/collect/
AbstractMapEntry.java
27
* Implementation of the {@code equals}, {@code
hashCode
}, and {@code toString}
55
@Override public int
hashCode
() {
58
return ((k == null) ? 0 : k.
hashCode
()) ^ ((v == null) ? 0 : v.
hashCode
());
ByFunctionOrdering.java
61
@Override public int
hashCode
() {
62
return Objects.
hashCode
(function, ordering);
ComparatorOrdering.java
52
@Override public int
hashCode
() {
53
return comparator.
hashCode
();
CompoundOrdering.java
62
@Override public int
hashCode
() {
63
return comparators.
hashCode
();
Count.java
61
public int
hashCode
() {
FilteredKeySetMultimap.java
72
public int
hashCode
() {
ForwardingSet.java
62
@Override public int
hashCode
() {
63
return delegate().
hashCode
();
91
* A sensible definition of {@link #
hashCode
} in terms of {@link #iterator}.
LexicographicalOrdering.java
69
@Override public int
hashCode
() {
70
return elementOrder.
hashCode
() ^ 2075626741; // meaningless
MapDifference.java
81
int
hashCode
();
109
* {@code Arrays.asList(leftValue(), rightValue()).
hashCode
()}.
111
@Override int
hashCode
();
NullsFirstOrdering.java
72
@Override public int
hashCode
() {
73
return ordering.
hashCode
() ^ 957692532; // meaningless
NullsLastOrdering.java
72
@Override public int
hashCode
() {
73
return ordering.
hashCode
() ^ -921210296; // meaningless
RegularImmutableMultiset.java
76
public int
hashCode
() {
77
return map.
hashCode
();
ReverseOrdering.java
80
@Override public int
hashCode
() {
81
return -forwardOrder.
hashCode
();
/external/guava/guava/src/com/google/common/reflect/
AbstractInvocationHandler.java
30
* {@link Object#
hashCode
} and {@link Object#toString}. For example: <pre>
53
* <li>{@code proxy.
hashCode
()} delegates to {@link AbstractInvocationHandler#
hashCode
}
68
if (args.length == 0 && method.getName().equals("
hashCode
")) {
69
return
hashCode
();
92
* except {@link Object#equals}, {@link Object#
hashCode
} and {@link Object#toString}. The result
114
* By default delegates to {@link Object#
hashCode
}. The dynamic proxies' {@code
hashCode
()} will
117
@Override public int
hashCode
() {
118
return super.
hashCode
();
[
all
...]
TypeParameter.java
52
@Override public final int
hashCode
() {
53
return typeVariable.
hashCode
();
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Enums.java
97
public int
hashCode
() {
98
return enumClass.
hashCode
();
Completed in 1254 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>