Searched defs:tags (Results 1 - 10 of 10) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DGitTagEntry.java37 public GitTagEntry(String hash, Date date, String tags) { argument
38 super(date, tags);
H A DTagEntry.java43 protected String tags; field in class:TagEntry
58 * @param tags
60 public TagEntry(int revision, String tags) { argument
63 this.tags = tags;
66 public TagEntry(Date date, String tags) { argument
72 this.tags = tags;
76 return this.tags;
80 this.tags
[all...]
H A DHistoryEntry.java49 private String tags; field in class:HistoryEntry
70 this.tags = that.tags;
78 String tags, String message, boolean active) {
82 this.tags = tags;
96 LOGGER.log(Level.FINE, "HistoryEntry : tags = {0}", tags);
127 return tags;
146 public void setTags(String tags) { argument
77 HistoryEntry(String revision, Date date, String author, String tags, String message, boolean active) argument
[all...]
H A DGitRepository.java483 // Assign tags to changesets they represent
484 // We don't need to check if this repository supports tags,
497 private TagEntry buildTagEntry(File directory, String tags) throws HistoryException, IOException { argument
508 argv.add(tags + "^.." + tags);
541 // Git can have tags not pointing to any commit, but tree instead
546 TagEntry result = new GitTagEntry(hash, date, tags);
563 // First we have to obtain list of all tags, and put it asside
590 for (String tags : tagsList) {
591 TagEntry tagEntry = buildTagEntry(directory, tags);
[all...]
/opengrok/test/org/opensolaris/opengrok/search/context/
H A DContextTest.java354 * It used to nest the tags incorrectly. Bug #15632.
418 * The results from mixed-case symbol search should contain tags.
456 * @param tags the expected tags in the hit list
458 private void bug17582(QueryBuilder builder, int[] lines, String[] tags) argument
460 assertEquals(lines.length, tags.length);
474 assertEquals(tags[i], hits.get(i).getTag());
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java42 // Per line sym -> tags mapping
60 * List of all the tags.
62 private final List<Tag> tags; field in class:Definitions
67 tags = new ArrayList<>();
142 * Get a list of all tags.
144 * @return all tags
147 return tags;
151 * Get a list of all tags on given line.
154 * @return list of tags
220 tags
[all...]
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DContext.java123 String morePrefix, String path, Definitions tags,
125 return getContext(in, out, urlPrefix, morePrefix, path, tags, limit, isDefSearch, hits, null);
135 * @param tags format to highlight defs.
140 String morePrefix, String path, Definitions tags,
152 if (tags != null) {
155 for (Definitions.Tag tag : tags.getTags()) {
286 } else if (tokens.tags.containsKey(tokens.markedLine)) {
122 getContext(Reader in, Writer out, String urlPrefix, String morePrefix, String path, Definitions tags, boolean limit, boolean isDefSearch, List<Hit> hits) argument
139 getContext(Reader in, Writer out, String urlPrefix, String morePrefix, String path, Definitions tags, boolean limit, boolean isDefSearch, List<Hit> hits, Scopes scopes) argument
/opengrok/src/org/opensolaris/opengrok/configuration/messages/
H A DMessage.java65 protected Set<String> tags = new TreeSet<>(); field in class:Message
113 * @param t set of tags
114 * @return true if message has at least on of the tags
118 tmp.retainAll(tags);
124 * @param t set of tags
125 * @return true if message has all of the tags
128 return tags.containsAll(t);
137 return tags.contains(tag);
141 return tags;
144 public void setTags(Set<String> tags) { argument
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DUtil.java986 JSONArray tags = new JSONArray();
988 tags.add(Util.encode(t));
990 message.put("tags", tags);
1015 * Print messages for given tags into json array
1018 * @param tags list of tags
1023 public static JSONArray messagesToJson(JSONArray array, String... tags) { argument
1025 for (String tag : tags) {
1036 * Print messages for given tags int
1043 messagesToJson(String... tags) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java1308 * Remove all messages containing at least on of the tags.
1310 * @param tags set of tags
1312 public void removeAnyMessage(Set<String> tags) { argument
1316 return t.hasAny(tags);
1389 * application because the same message is duplicated for all of the tags in
1393 * total under different tags.

Completed in 38 milliseconds