Searched refs:names (Results 1 - 6 of 6) sorted by relevance

/opengrok-sun/test/org/opensolaris/opengrok/index/
H A DIgnoredNamesTest.java41 List<String> names = instance.getItems();
42 assertNotNull(names);
45 for (String name : names) {
58 names = new ArrayList<String>();
59 names.add("*.o");
61 instance.setItems(names);
62 names = instance.getItems();
63 assertEquals(1, names.size());
71 names = instance.getItems();
72 assertEquals(2, names
[all...]
/opengrok-sun/test/org/opensolaris/opengrok/analysis/
H A DCtagsTest.java110 // Expected method names found in the file
111 String[] names = {"ts", "classNameOnly", "format"};
119 assertTrue("too many methods", count < names.length);
120 assertEquals("method name", names[count], tag.symbol);
125 assertEquals("method count", names.length, count);
134 // Expected method names found in the file
135 String[] names = {"foo", "bar", "_fce", "__fce"};
144 assertTrue("too many functions", count < names.length);
145 assertEquals("function name", names[count], tag.symbol);
150 assertEquals("function count", names
[all...]
/opengrok-sun/src/org/opensolaris/opengrok/analysis/
H A DFileAnalyzerFactory.java45 /** List of file names on which this kind of analyzer should be used. */
46 private final List<String> names; field in class:FileAnalyzerFactory
72 * @param names list of file names to recognize (possibly {@code null})
81 String[] names, String[] suffixes, String[] magics,
85 this.names = asList(names);
111 * Get the list of file names recognized by this analyzer (names must
114 * @return list of file names
80 FileAnalyzerFactory( String[] names, String[] suffixes, String[] magics, Matcher matcher, String contentType, Genre genre) argument
[all...]
H A DCtags.java253 String[] names=afters.split("[\\W]"); //this should just parse out variables, we assume first non empty text is the argument name
254 for (String name : names) {
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DUtil.java337 * <var>names</var> and optionally all redundant information like "." and
340 * @param names
341 * names to check
344 * @return a possible empty array of names all with a length &gt; 0.
346 private static String[] normalize(String[] names, boolean canonical) { argument
348 if (names == null || names.length == 0) {
351 for (int i = 0; i < names.length; i++ ) {
352 if (names[i] == null || names[
[all...]
/opengrok-sun/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 429 milliseconds