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()
86 uint32_t hash = 5381; in HashFunction() local90 hash = ((hash << 5) + hash) + *key; in HashFunction()92 return hash; in HashFunction()
401 private void saveContentHash(File folder, String hash) { in saveContentHash() argument404 props.setProperty("content-hash", hash == null ? "" : hash); //$NON-NLS-1$ //$NON-NLS-2$ in saveContentHash()
300 public IAndroidTarget getTargetFromHashString(String hash) { in getTargetFromHashString() argument301 return mManager.getTargetFromHashString(hash); in getTargetFromHashString()444 String hash = state.getTargetHashString(); in loadTarget() local445 if (hash != null) { in loadTarget()446 state.setTarget(target = getTargetFromHashString(hash)); in loadTarget()
195 public IAndroidTarget getTargetFromHashString(String hash) { in getTargetFromHashString() argument196 if (hash != null) { in getTargetFromHashString()198 if (hash.equals(target.hashString())) { in getTargetFromHashString()