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

123

/opengrok/src/org/opensolaris/opengrok/history/
H A DRepositoryInfo.java40 protected String type; field in class:RepositoryInfo
56 this.type = orig.type;
122 * get property type
124 * @return type
127 return type;
131 * Set property type
133 * @param type
135 public void setType(String type) { argument
136 this.type
[all...]
/opengrok/test/org/opensolaris/opengrok/analysis/pascal/
H A DPascalAnalyzerFactoryTest.java118 String[] type = new String[1];
119 assertTrue(definitions.hasDefinitionAt("Sample", 22, type));
120 assertThat(type[0], is("unit"));
121 assertTrue(definitions.hasDefinitionAt("TSample", 28, type));
122 assertThat(type[0], is("Class"));
123 assertTrue(definitions.hasDefinitionAt("Id", 40, type));
124 assertThat(type[0], is("property"));
125 assertTrue(definitions.hasDefinitionAt("Description", 41, type));
126 assertThat(type[0], is("property"));
127 assertTrue(definitions.hasDefinitionAt("TSample.GetId", 48, type));
[all...]
/opengrok/test/org/opensolaris/opengrok/analysis/clojure/
H A DClojureAnalyzerFactoryTest.java118 String[] type = new String[1];
119 assertTrue(definitions.hasDefinitionAt("opengrok", 4, type));
120 assertThat(type[0], is("namespace"));
121 assertTrue(definitions.hasDefinitionAt("power-set", 8, type));
122 assertThat(type[0], is("function"));
123 assertTrue(definitions.hasDefinitionAt("power-set-private", 14, type));
124 assertThat(type[0], is("private function"));
125 assertTrue(definitions.hasDefinitionAt("author", 19, type));
126 assertThat(type[0], is("struct"));
127 assertTrue(definitions.hasDefinitionAt("author-first-name", 22, type));
[all...]
/opengrok/web/js/
H A Dtablesorter.parsers.js38 type: 'numeric'
87 type: 'numeric'
/opengrok/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);
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java94 * @param strs type of definition(to be passed back to caller)
109 strs[0] = tag.type;
188 * The type of the tag.
190 public final String type; field in class:Definitions.Tag
204 protected Tag(int line, String symbol, String type, String text, String namespace, String signature) { argument
207 this.type = type;
214 public void addTag(int line, String symbol, String type, String text) { argument
215 addTag(line, symbol, type, text, null, null);
218 public void addTag(int line, String symbol, String type, Strin argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/plain/
H A DPlainSymbolTokenizer.lex36 %type boolean
H A DPlainFullTokenizer.lex38 %type boolean
/opengrok/src/org/opensolaris/opengrok/web/
H A DDiffData.java60 public DiffType type; field in class:DiffData
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessages.java37 String type = null;
63 type = getopt.getOptarg();
113 if (type == null) {
114 type = "normal";
135 Message m = Message.createMessage(type);
138 System.err.println("Uknown message type " + type);
171 System.err.println("Message type");
172 System.err.println("-m <type> message type (defaul
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/c/
H A DCSymbolTokenizer.lex36 %type boolean
H A DCxxSymbolTokenizer.lex33 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/erlang/
H A DErlangSymbolTokenizer.lex38 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/haskell/
H A DHaskellSymbolTokenizer.lex43 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/java/
H A DJavaSymbolTokenizer.lex39 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/python/
H A DPythonSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/scala/
H A DScalaSymbolTokenizer.lex39 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/sh/
H A DShSymbolTokenizer.lex36 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/tcl/
H A DTclSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/vb/
H A DVBSymbolTokenizer.lex41 %type boolean
/opengrok/src/org/opensolaris/opengrok/analysis/clojure/
H A DClojureSymbolTokenizer.lex41 %type boolean

Completed in 27 milliseconds

123