Searched refs:get (Results 1 - 25 of 75) sorted by relevance

123

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DDiffType.java59 public static final DiffType get(char c) { method in class:DiffType
73 public static final DiffType get(String c) { method in class:DiffType
78 return get(c.charAt(0));
86 return get(c.charAt(0));
H A DSortOrder.java54 public static SortOrder get(String name) { method in class:SortOrder
H A DPrefix.java97 public static Prefix get(String servletPath) { method in class:Prefix
106 Prefix p = lookupTable.get(pathPrefix);
H A DEftarFile.java78 if (children.get(hash) == null) {
81 return children.get(hash);
84 public Node get(long hash) { method in class:EftarFile.Node
85 return children.get(hash);
113 public FNode get(long hash, RandomAccessFile f) throws Throwable { method in class:EftarFile.FNode
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceHistoryParserTest.java74 HistoryEntry e1 = result.getHistoryEntries().get(0);
80 HistoryEntry e2 = result.getHistoryEntries().get(1);
83 HistoryEntry e3 = result.getHistoryEntries().get(2);
86 HistoryEntry e4 = result.getHistoryEntries().get(3);
125 HistoryEntry e1 = result.getHistoryEntries().get(0);
131 HistoryEntry e2 = result.getHistoryEntries().get(1);
134 HistoryEntry e3 = result.getHistoryEntries().get(2);
137 HistoryEntry e4 = result.getHistoryEntries().get(3);
160 assertEquals("year", year, cal.get(Calendar.YEAR));
161 assertEquals("month", month, cal.get(Calenda
[all...]
H A DRazorHistoryParserTest.java113 HistoryEntry h1 = result.getHistoryEntries().get(0);
116 assertEquals(2009, cal.get(Calendar.YEAR));
117 assertEquals(23, cal.get(Calendar.DAY_OF_MONTH));
118 assertEquals(5, cal.get(Calendar.HOUR));
119 assertEquals(56, cal.get(Calendar.MINUTE));
120 assertEquals(24, cal.get(Calendar.SECOND));
H A DClearCaseHistoryParserTest.java113 HistoryEntry e1 = result.getHistoryEntries().get(0);
119 HistoryEntry e4 = result.getHistoryEntries().get(3);
177 HistoryEntry e1 = result.getHistoryEntries().get(0);
183 HistoryEntry e4 = result.getHistoryEntries().get(3);
H A DCVSHistoryParserTest.java114 HistoryEntry e0 = result.getHistoryEntries().get(0);
118 HistoryEntry e1 = result.getHistoryEntries().get(1);
122 HistoryEntry e2 = result.getHistoryEntries().get(2);
H A DJDBCHistoryCacheTest.java261 * Basic tests for the {@code store()} and {@code get()} methods.
274 // test get history for single file
279 History retrievedHistory = cache.get(makefile, repos, true, null);
280 History retrievedHistory2 = cache.get(makefile, repos, true, Boolean.FALSE);
283 retrievedHistory2 = cache.get(makefile, repos, true, Boolean.TRUE);
307 // test get history for directory
309 History dirHistory = cache.get(reposRoot, repos, true, null);
312 retrievedHistory2 = cache.get(reposRoot, repos, true, Boolean.TRUE);
315 retrievedHistory2 = cache.get(reposRoot, repos, true, Boolean.FALSE);
327 History updatedHistory = cache.get(reposRoo
[all...]
H A DGitHistoryParserTest.java129 HistoryEntry e0 = result.getHistoryEntries().get(0);
133 HistoryEntry e1 = result.getHistoryEntries().get(1);
137 HistoryEntry e2 = result.getHistoryEntries().get(2);
192 HistoryEntry e0 = result.getHistoryEntries().get(0);
199 HistoryEntry e1 = result.getHistoryEntries().get(1);
277 HistoryEntry e0 = result.getHistoryEntries().get(0);
284 HistoryEntry e1 = result.getHistoryEntries().get(1);
H A DSubversionHistoryParserTest.java137 HistoryEntry e1 = result.getHistoryEntries().get(0);
143 HistoryEntry e2 = result.getHistoryEntries().get(1);
149 HistoryEntry e3 = result.getHistoryEntries().get(2);
H A DBazaarHistoryParserTest.java127 HistoryEntry e1 = result.getHistoryEntries().get(0);
132 HistoryEntry e2 = result.getHistoryEntries().get(1);
137 HistoryEntry e3 = result.getHistoryEntries().get(2);
181 HistoryEntry e1 = result.getHistoryEntries().get(0);
/opengrok-jel/web/static/
H A Dopengrok-symbols-panel.js40 _getTop : function() { /* get optimal y position */
42 return h.getY() + h.get('offsetHeight') + this.get(PMARGIN)[TOP];
44 _getLeft : function() { /* get optimal x position */
45 return Y.DOM.winWidth() - this.get(WIDTH)
46 - this.get(PMARGIN)[RIGHT] - Y.DOM.getScrollbarWidth();
48 _getHeight: function() { /* get optimal height */
49 var h = Y.DOM.winHeight() - this._getTop() - this.get(PMARGIN)[BOTTOM];
50 if (h > this.get(PHEIGHT)) {
51 h = this.get(PHEIGH
[all...]
H A Dopengrok.js200 var num = O.lines || Y.one('#lines').get('childNodes.length');
403 sbox.one('#project').get('options').set('selected', true);
407 sbox.one('#project').get('options').each(function() {
408 this.set('selected', !this.get('selected'));
413 var selected = sbox.one('#project').get('value');
423 // selects event.get('target') before this one gets called, so:
427 if (sbox.one('#q').get('value').trim() == ''
428 && sbox.one('#defs').get('value').trim() == ''
429 && sbox.one('#refs').get('value').trim() == ''
430 && sbox.one('#path').get('valu
[all...]
H A Dopengrok-tooltip.js164 this._uiSetNodes(this.get('triggerNodes'));
183 var content = this.get('content');
188 content = content[node.get('id')];
206 contentBox = this.get('contentBox');
260 Y.bind(this._onDelegateMouseOver, this), this.get('delegate'));
316 if (!this.get('disabled')) {
318 var delay = (this.get('visible')) ? 0 : this.get('showDelay');
332 Y.later(this.get('hideDelay'), this, this._hideTooltip);
348 var cn = this.get('contentBo
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DInterner.java77 T interned = map.get(instance);
H A DGetopt.java121 ret = options.get(current).option;
142 ret = options.get(current).argument;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java90 Set<Integer> lines = symbols.get(symbol);
97 LineTagMap line_map = line_maps.get(lineNumber);
99 for (Tag tag : line_map.sym_tags.get(symbol)) {
119 Set<Integer> lines = symbols.get(symbol);
172 Set<Integer> lines = symbols.get(internedSymbol);
181 LineTagMap line_map = line_maps.get(aLine);
188 Set<Tag> tags = line_map.sym_tags.get(internedSymbol);
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAnnotation.java61 return lines.get(line-1).intValue();
73 return idx < 0 ? "" : infos.get(idx).rev;
95 return idx < 0 ? "" : infos.get(idx).author;
152 Integer rid = rev2rid.get(revision);
256 Integer rid = rev2rid.get(revision);
258 RevInfo info = infos.get(rid.intValue());
272 Integer idx = rev2rid.get(revision);
273 return idx == null ? null : infos.get(idx.intValue()).desc.getHtml();
H A DHistoryCache.java68 History get(File path, Repository repository, boolean withFiles, Boolean isDir) method in interface:HistoryCache
123 * {@code null}, revisions get simply ignored.
135 * {@code null}, revisions get simply ignored.
H A DDirectoryHistoryReader.java119 String rpath = doc.get("path");
125 cdate = DateTools.stringToDate(doc.get("date"));
127 logger.warning("Could not get date for '" + path
178 Map<String, Map<String, SortedSet<String>>> ac = hash.get(date);
184 Map<String, SortedSet<String>> cf = ac.get(author);
190 SortedSet<String> fls = cf.get(comment);
207 aiter = hash.get(idate = diter.next()).keySet().iterator();
213 citer = hash.get(idate).get(iauthor = aiter.next()).keySet().iterator();
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DDeltaDelTextLine.java28 Line l = (Line) lines.get(atLine);
H A DPhrases.java84 String value = get(key).toString();
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DResults.java81 String rpath = doc.get("path");
83 ArrayList<Document> dirDocs = dirHash.get(parent);
165 out.write(Util.htmlize(sh.desc.get(parent)));
170 String rpath = doc.get("path");
190 Genre genre = Genre.get(doc.get("t"));
199 // instead of summarizer, we'd also get rid of
/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java93 String fullpath = doc.get("fullpath");
162 c = fmap.get();
191 while ((c = fmap.get(start++)) != 0x00) {
249 if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f ||
250 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' ||
251 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' ||
252 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') {
256 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value()));
257 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value()));
258 ei_version = fmap.get(ELFIdentificatio
[all...]

Completed in 44 milliseconds

123