HomeSort by relevance Sort by last modified time
    Searched defs:add (Results 1 - 25 of 35) sorted by null

1 2

  /opengrok/trunk/src/org/opensolaris/opengrok/search/
Summarizer.java 74 tokenSet.add(token);
100 * Add a frag to the list.
102 public void add(Summary.Fragment fragment) { method in class:Summarizer.Excerpt
103 passages.add(fragment);
186 excerpt.add(new Summary.Ellipsis());
201 excerpt.add(new Summary.Fragment(text.substring(offset, t.startOffset())));
202 excerpt.add(new Summary.Highlight(text.substring(t.startOffset(),t.endOffset())));
215 // we need to add the trailing edge of text.
218 // text to add. (We haven't hit the end of the source doc.)
219 // Add the words since the last hit-term insert
    [all...]
Summary.java 91 public void add(Fragment fragment) { fragments.add(fragment); } method in class:Summary
  /opengrok/trunk/src/org/opensolaris/opengrok/search/context/
QueryMatchers.java 13 * If applicable, add the following below this CDDL HEADER, with the
65 matchers.add(0, new SingleTokenMatcher(term));
67 matchers.add(0, new TokenSetMatcher(terms));
106 matchers.add(new PhraseMatcher(termsArray));
112 terms.add(term = query.getTerm().text().toLowerCase());
118 matchers.add(new WildCardMatcher(query.getTerm().text().toLowerCase()));
123 matchers.add(new PrefixMatcher(query.getPrefix().text().toLowerCase()));
  /opengrok/trunk/src/org/opensolaris/opengrok/index/
IgnoredNames.java 13 * If applicable, add the following below this CDDL HEADER, with the
100 add(s);
105 * Add a pattern to the list of patterns of filenames to ignore
108 public void add(String pattern) { method in class:IgnoredNames
110 ignoredPatterns.add(pattern);
167 add(s);
174 patterns.add(new GlobFilenameFilter(pattern));
177 path.add(pattern);
179 path.add(File.separator + pattern);
182 ignore.add(pattern)
200 public boolean add(String pattern) { method in class:IgnoredNames.PatternList
    [all...]
CommandLineOptions.java 13 * If applicable, add the following below this CDDL HEADER, with the
71 options.add(new Option('q', null, "Run as quietly as possible"));
72 options.add(new Option('v', null, "Print progress information as we go along"));
73 options.add(new Option('e', null, "Economical - consumes less disk space. It does not generate hyper text cross reference files offline, but will do so on demand - which could be sightly slow."));
74 options.add(new Option('c', "/path/to/ctags", "Path to Exuberant Ctags from http://ctags.sf.net by default takes the Exuberant Ctags in PATH."));
75 options.add(new Option('R', "/path/to/configuration", "Read configuration from the specified file"));
76 options.add(new Option('W', "/path/to/configuration", "Write the current configuration to the specified file (so that the web application can use the same configuration"));
77 options.add(new Option('U', "host:port", "Send the current configuration to the specified address (This is most likely the web-app configured with ConfigAddress)"));
78 options.add(new Option('P', null, "Generate a project for each of the top-level directories in source root"));
79 options.add(new Option('p', "/path/to/default/project", "This is the path to the project that should be select (…)
    [all...]
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/archive/
BZip2Analyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
88 doc.add(new Field("t", "x", Field.Store.YES, Field.Index.NOT_ANALYZED));
GZIPAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
83 doc.add(new Field("t", "x", Field.Store.YES, Field.Index.NOT_ANALYZED));
TarAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
80 doc.add(new Field("full",dummy));
ZipAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
78 doc.add(new Field("full",dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/c/
CAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
59 doc.add(new Field("refs", dummy));
CxxAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
56 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/fortran/
FortranAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
56 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/java/
JavaAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
58 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/lisp/
LispAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
53 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/sh/
ShAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
59 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/tcl/
TclAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
53 doc.add(new Field("refs", dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/document/
TroffAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
81 doc.add(new Field("full", new StringReader("")));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/plain/
XMLAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
83 doc.add(new Field("full", dummy));
PlainAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
86 doc.add(new Field("full", dummy));
91 doc.add(new Field("defs", dummy));
92 doc.add(new Field("refs", dummy)); //@FIXME adding a refs field only if it has defs?
94 doc.add(new Field("tags", tags, Field.Store.YES));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/executables/
JavaClassAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
109 doc.add(new Field("defs", dummy));
110 doc.add(new Field("refs", dummy));
111 doc.add(new Field("full", dummy));
158 defs.add(t);
159 refs.add(t);
164 defs.add(t);
165 refs.add(t);
176 defs.add(t);
177 refs.add(t)
    [all...]
JarAnalyzer.java 13 * If applicable, add the following below this CDDL HEADER, with the
110 doc.add(new Field("full", new TagFilter(new StringReader(fullText.toString()))));
112 doc.add(new Field("defs",dummy));
115 doc.add(new Field("refs",dummy));
  /opengrok/trunk/src/org/opensolaris/opengrok/analysis/
Definitions.java 13 * If applicable, add the following below this CDDL HEADER, with the
135 tags.add(new Tag(line, internedSymbol, internedType, internedText));
141 lines.add(line);
AnalyzerGuru.java 13 * If applicable, add the following below this CDDL HEADER, with the
161 factories.add(factory);
167 * @param extension the file-extension to add
212 * @return The Lucene document to add to the index database
220 doc.add(new Field("u", Util.uid(path, date), Field.Store.YES, Field.Index.NOT_ANALYZED));
221 doc.add(new Field("fullpath", file.getAbsolutePath(), Field.Store.NO, Field.Index.NOT_ANALYZED));
226 doc.add(new Field("hist", hr));
232 doc.add(new Field("date", date, Field.Store.YES, Field.Index.NOT_ANALYZED));
234 doc.add(new Field("path", path, Field.Store.YES, Field.Index.ANALYZED));
237 doc.add(new Field("project", project.getPath(), Field.Store.YES, Field.Index.ANALYZED))
    [all...]
  /opengrok/trunk/src/org/opensolaris/opengrok/history/
FileHistoryCache.java 13 * If applicable, add the following below this CDDL HEADER, with the
94 String add; local
97 add = file.getCanonicalPath().substring(sourceRoot.length());
104 if (add.length() == 0) {
105 add = File.separator;
107 sb.append(add);
198 list.add(e);
  /opengrok/trunk/src/org/opensolaris/opengrok/management/
AgentIndexRunner.java 13 * If applicable, add the following below this CDDL HEADER, with the
283 notifListeners.add(new NotificationHolder(notiflistener, notfilt, obj));

Completed in 420 milliseconds

1 2