Searched defs:hist (Results 1 - 3 of 3) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DDirectoryHistoryReader.java144 History hist = null;
147 hist = HistoryGuru.getInstance().getHistory(f);
152 if (hist == null) {
156 readFromHistory(hist, rpath);
250 * Go through all history entries in @code hist for file @code path and
253 * @param hist history to store
256 private void readFromHistory(History hist, String rpath) { argument
257 for (HistoryEntry entry : hist.getHistoryEntries()) {
H A DRepository.java203 * @param hist History we want to assign tags to.
205 void assignTagsInHistory(History hist) throws HistoryException { argument
206 if (hist == null) {
215 for (HistoryEntry ent : hist.getHistoryEntries()) {
/opengrok/src/org/opensolaris/opengrok/search/
H A DQueryBuilder.java49 public static final String HIST = "hist";
146 * Set search string for the "hist" field.
148 * @param hist query string to set
151 public QueryBuilder setHist(String hist) { argument
152 return addQueryText(HIST, hist);
156 * Get search string for the "hist" field.

Completed in 10 milliseconds