Searched refs:hash (Results 1 – 5 of 5) sorted by relevance
160 int hash = 5; in hashCode() local161 hash = 67 * hash + (this.name != null ? this.name.hashCode() : 0); in hashCode()162 return hash; in hashCode()192 int hash = 5; in hashCode() local193 hash = 61 * hash + (this.name != null ? this.name.hashCode() : 0); in hashCode()194 hash = 61 * hash + (this.value != null ? this.value.hashCode() : 0); in hashCode()195 return hash; in hashCode()
124 document.location.hash = id;
420 public IAndroidTarget getTargetFromHashString(@NonNull String hash) { in getTargetFromHashString() argument421 return mManager.getTargetFromHashString(hash); in getTargetFromHashString()589 String hash = state.getTargetHashString(); in loadTargetAndBuildTools() local590 if (hash != null) { in loadTargetAndBuildTools()591 state.setTarget(target = getTargetFromHashString(hash)); in loadTargetAndBuildTools()
47 import com.google.common.hash.HashCode;48 import com.google.common.hash.HashFunction;49 import com.google.common.hash.Hashing;
80 com.google.common.hash,