/opengrok/test/org/opensolaris/opengrok/analysis/ |
H A D | CtagsParserTest.java | 60 assertEquals(12, cDefs.getTags().size()); 61 assertEquals(13, ucDefs.getTags().size()); 117 assertEquals(35, cDefs.getTags().size()); 118 assertEquals(28, ucDefs.getTags().size()); 148 assertEquals(12, cDefs.getTags().size()); 149 assertEquals(16, ucDefs.getTags().size());
|
H A D | DefinitionsTest.java | 131 * Test of getTags method, of class Definitions. 134 public void getTags() { method in class:DefinitionsTest 136 assertEquals(instance.getTags().size(), 0); 138 assertEquals(instance.getTags().size(), 1); 140 assertEquals(instance.getTags().size(), 2); 142 assertEquals(instance.getTags().size(), 3); 151 assertEquals(instance.getTags().size(), 0); 153 assertEquals(instance.getTags().size(), 1); 165 assertEquals(instance.getTags().size(), instance2.getTags() [all...] |
H A D | CtagsTest.java | 120 for (Definitions.Tag tag : result.getTags()) { 145 for (Definitions.Tag tag : result.getTags()) {
|
/opengrok/test/org/opensolaris/opengrok/history/ |
H A D | JDBCHistoryCacheTest.java | 499 assertEquals(null, dirHistory.get(0).getTags()); 500 assertNull(dirHistory.get(1).getTags()); 501 assertEquals("start_of_novel", dirHistory.get(2).getTags()); 502 assertNull(dirHistory.get(3).getTags()); 508 assertEquals(null, novelHistory.get(0).getTags()); 509 assertEquals("start_of_novel", novelHistory.get(1).getTags()); 515 assertEquals("start_of_novel", maincHistory.get(0).getTags()); 516 assertNull(maincHistory.get(1).getTags());
|
H A D | CVSHistoryParserTest.java | 126 assertEquals(tag1, e1.getTags());
|
H A D | FileHistoryCacheTest.java | 121 assertEquals(expected.getTags(), actual.getTags()); 194 assertEquals("Invalid tag list for revision 13", "tag3", e0.getTags()); 199 "tag2, tag1, start_of_novel", e1.getTags()); 203 assertEquals("Invalid tag list for revision 1", null, e2.getTags());
|
H A D | HistoryEntryTest.java | 285 assertEquals(null, instance.getTags());
|
/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | TagEntry.java | 75 public String getTags() { method in class:TagEntry
|
H A D | History.java | 112 if (entry.getTags() != null) {
|
H A D | Repository.java | 225 if (ent.getTags() == null) { 226 ent.setTags(lastTagEntry.getTags()); 228 ent.setTags(ent.getTags() + ", " + lastTagEntry.getTags());
|
H A D | HistoryEntry.java | 126 public String getTags() { method in class:HistoryEntry
|
H A D | BazaarRepository.java | 328 tagEntry.setTags(higher.getTags() + ", " + tag);
|
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | Definitions.java | 146 public List<Tag> getTags() { method in class:Definitions 156 public List<Tag> getTags(int line) { method in class:Definitions
|
H A D | JFlexXref.java | 241 List<Tag> tags = defs.getTags(line); 380 for (Tag tag : defs.getTags()) {
|
/opengrok/src/org/opensolaris/opengrok/configuration/messages/ |
H A D | Message.java | 140 public Set<String> getTags() { method in class:Message 198 return getTags().size() - m.getTags().size();
|
/opengrok/src/org/opensolaris/opengrok/search/ |
H A D | Results.java | 103 private static String getTags(File basedir, String path, boolean compressed) { method in class:Results 224 String xtags = getTags(xrefDataDir, rpath, sh.compressed); 230 String htags = getTags(sh.sourceRoot, rpath, false);
|
/opengrok/src/org/opensolaris/opengrok/search/context/ |
H A D | Context.java | 155 for (Definitions.Tag tag : tags.getTags()) {
|
/opengrok/src/org/opensolaris/opengrok/configuration/ |
H A D | RuntimeEnvironment.java | 1277 for (String tag : m.getTags()) { 1476 m.getTags()); 1481 m.getTags());
|
/opengrok/src/org/opensolaris/opengrok/web/ |
H A D | Util.java | 987 for (String t : m.getTags()) {
|