Searched refs:hash (Results 1 - 7 of 7) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DEftarFile.java64 public long hash; field in class:EftarFile.Node
71 public Node(long hash, String tag) { argument
72 this.hash = hash;
77 public Node put(long hash, String desc) { argument
78 if (children.get(hash) == null) {
79 children.put(hash, new Node(hash, desc));
81 return children.get(hash);
84 public Node get(long hash) { argument
92 public long hash; field in class:EftarFile.FNode
105 FNode(long hash, long offset, int childOffset, int num, int tagOffset) argument
113 get(long hash, RandomAccessFile f) argument
120 sbinSearch(long start, int len, long hash, RandomAccessFile f) argument
[all...]
H A DEftarFileReader.java50 public long hash; field in class:EftarFileReader.FNode
59 hash = f.readLong();
70 public FNode(long hash, long offset, int childOffset, int num, int tagOffset) { argument
71 this.hash = hash;
78 public FNode get(long hash) throws IOException { argument
82 return binarySearch(offset + childOffset, numChildren, hash);
85 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
86 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
93 if (hash > mhas
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java66 private final Map<Date, Map<String, Map<String, SortedSet<String>>>> hash = field in class:DirectoryHistoryReader
178 Map<String, Map<String, SortedSet<String>>> ac = hash.get(date);
181 hash.put(date, ac);
201 diter = hash.keySet().iterator();
207 aiter = hash.get(idate = diter.next()).keySet().iterator();
213 citer = hash.get(idate).get(iauthor = aiter.next()).keySet().iterator();
H A DGitRepository.java86 * Get path of the requested file given a commit hash.
90 * @param revision commit hash to track the path of the file
135 * the non-hybrid repository. Key is the full git revision aka 'hash', the
170 final char[] hash = new char[hex_uuid.length * 2];
179 hash[k++] = HEX[(b >> 4) & 0xF];
180 hash[k++] = HEX[(b & 0xF)];
182 m.put(new String(hash), Long.toString(rev, 10));
184 // sometimes the last record is a placeholder - the hash
194 m.remove(new String(hash));
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DMercurialRepositoryTest.java118 // Get the sequence number and the hash from one of the revisions.
122 String hash = revisionParts[1];
125 String constructedRevision = (number + 1) + ":" + hash;
/opengrok-jel/web/static/
H A Dopengrok.js219 txtNum = Y.config.win.location.hash;
222 Y.config.win.location.hash = txtNum;
538 if (!Y.config.win.location.hash) {
612 Y.config.win.location.hash = '#' + e.target.get('text');
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexDatabase.java1132 int hash = 7;
1133 hash = 41 * hash + (this.project == null ? 0 : this.project.hashCode());
1134 return hash;

Completed in 31 milliseconds