Searched refs:type (Results 1 - 25 of 53) sorted by relevance

123

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRepositoryInfo.java46 /** the type of the repository. Usually a very short constant name. */
47 protected String type; field in class:RepositoryInfo
67 this.type = orig.type;
128 * get property type
129 * @return type
132 return type;
136 * Set property type
137 * @param type
139 public void setType(String type) { argument
[all...]
H A DHistoryGuru.java183 * Get the history for the specified file. The type of the returned history
198 * Get the history for the specified file. The type of the returned history
217 * Get the history for the specified path. The type of the returned history
227 * {@link #getHistory(File, boolean)} (auto detect history type).
228 * If {@code true} doesn't check the file and blindly assumes type
426 // @TODO: Search only for one type of repository - the one found here
475 String type = repository.getClass().getSimpleName();
480 new String[] { type, path });
486 logger.warning("Skipping update of " + type + " repository"
490 + path + "' (" + type
[all...]
H A DRepoRepository.java50 * Create a new instance of type {@code repo}
53 type = "repo";
/opengrok-jel/test/org/opensolaris/opengrok/analysis/
H A DDefinitionsTest.java92 String[] type= new String[1];
93 type[0]="";
95 assertEquals(instance.hasDefinitionAt("found", 0, type), false);
96 assertEquals(instance.hasDefinitionAt("found", 1, type), true);
97 assertEquals(instance.hasDefinitionAt("found", 2, type), false);
98 assertEquals(instance.hasDefinitionAt("notFound", 0, type), false);
99 assertEquals(instance.hasDefinitionAt("notFound", 1, type), false);
H A DCtagsTest.java113 if (tag.type.startsWith("method")) {
140 if (tag.type.startsWith("function")) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java86 * @param strs type of definition(to be passed back to caller)
101 strs[0] = tag.type;
149 /** The type of the tag. */
150 public final String type; field in class:Definitions.Tag
154 protected Tag(int line, String symbol, String type, String text) { argument
157 this.type = type;
162 public void addTag(int line, String symbol, String type, String text) { argument
164 // multiple definitions, multiple definitions can have the same type,
168 final String internedType = type
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DDiffData.java74 public DiffType type; field in class:DiffData
/opengrok-jel/src/org/opensolaris/opengrok/analysis/c/
H A DCSymbolTokenizer.lex41 %type boolean
H A DCxxSymbolTokenizer.lex38 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/java/
H A DJavaSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainSymbolTokenizer.lex36 %type boolean
H A DPlainFullTokenizer.lex38 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/python/
H A DPythonSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/sh/
H A DShSymbolTokenizer.lex36 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/tcl/
H A DTclSymbolTokenizer.lex41 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/vb/
H A DVBSymbolTokenizer.lex41 %type boolean
/opengrok-jel/lib/
H A Dswing-layout-0.9.jar ... .JComponent component1 javax.swing.JComponent component2 int type int position java.awt.Container parent int result ...
/opengrok-jel/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranSymbolTokenizer.lex37 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/analysis/document/
H A DTroffFullTokenizer.lex39 %type boolean
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryLineTokenizer.lex35 %type String
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunner.java222 log.log(Level.WARNING, "Received unknown notification type ''{0}''",
310 private void addFileAction(String type, String path) { argument
312 notifications.append(type);
443 private void doNotify(String type, String msg, Object userdata) { argument
449 Notification notif = new Notification(type, this, sequenceNo, ts, msg);

Completed in 21 milliseconds

123